I have recently been working on a number of "test-codes" to exercise the "head", specifically codes involving Unix sockets . The most recent code I wrote was a simple server that receives a new connection from one client every 2 seconds. The...
To know IPv4 I can use the code on a page:
<?php
echo $_SERVER["REMOTE_ADDR"];
?>
But I can not find anything similar to do the same with IPv6, which appears to me a lot is already sites with converters.
Even though there is no...
I developed a hybrid application using Ionic and when I sent it to the Apple Store review it was rejected, I got the following error message:
We discovered one or more bugs in your app when reviewed on iPad and
iPhone running iOS 9.3.5 o...
I've always used $_SERVER['REMOTE_ADDR'] to get the IP user / visitor on some systems.
But I started to use a fixed IP at work, which is IPV4 , but when I go to see the registry I have accessed IPV6 .
But on sites like forums an...
There are already a few days that I am searching the Internet for such a response but I have not gotten any so far.
I'm trying to figure out ifconfig's Global IPv6 to be used on MOTD on Ubuntu.
With IPv4 it was quite easy to do this with this...
I wrote a server in C using the UNIX sockets API for some tests and I ended up with a "weird" problem: The server is blocking connections > IPv4 and it was programmed to only accept IPv6 connections.
Follow the code and a few details b...
I was watching the Golang net library, until I found the IPAddr type which is exactly:
type IPAddr struct {
IP IP
Zone string // IPv6 scoped addressing zone
}
What caught my attention is this "Zone", which refers to th...
How can I connect to mysql using IPv6?
I'm using a Linux (Virtual Machine) Debian VM and am trying to connect via the prompt
When I try like this:
mysql --host=9999:9999:9999:1:xxx9:x999:2b23:ccab --user=admin --password
This error oc...