If a server has only IPv6 addresses without a domain name, how can I connect to the server from my web-browser?
3 Answers
According to RFC2732, literal IPv6 addresses should be put inside square brackets in URLs, e.g. like this:
If you also need to specify a port other then 80 to access the server it has to be placed after the closing bracket:
Of course, you have to have end-to-end IPv6 connectivity to that host. E.g. if the server is not inside your own local network, you need to have IPv6 connectivity, either via your ISP (rare), or via some kind of IPv6 in IPv4 encapsulation (tunnel).
Put the ipv6 address into your browser address bar like you would a dns name or an IPv4 address, except enclosed in square brackets:
http://[::1]
(example with localhost)
This is supported in Chrome, Firefox, IE and probably other browsers.
Note that you need to have IPv6 working on your OS, and every device in the path to the destination (including proxy servers if you use one).
- 60,031
- 19
- 150
- 170
If required to test locally with IPv6, put the below AAAA Record in the address bar:
[::1]
This is equivalent to writing:
localhost
or to this IPv4 A (Host) Record:
127.0.0.1
ssh -fND 1080 x.x.x.x. You can then connect to the proxy localhost:1080 in your web browser. – baptx Jun 14 '19 at 15:26[::1]:3000, but not a different computer on the same network, on either Firefox or Chrome. I can connect to the other server in-browser with the IPv4 address, and I canpingthe other device withping6. Both servers have the same exact content, if that matters. – trysis Jul 18 '20 at 12:43