Below is the output of the ipconfig of the machine where web server is hosted:
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . : Link-local IPv6 Address . . . . . : fe80::f85b:4256:ee76:24a4%11 IPv4 Address. . . . . . . . . . . : 10.213.254.119 Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 10.213.254.252
I can access the website using say: "http://10.213.254.119/test" Now I am interested to know how can I access the same page using link local IPv6 address?
Most browsers don't support that, and even if they did you would have to use a URL like
http://[fe80::f85b:4256:ee76:24a4%eth0]/
whereeth0
is the identifier of the link on the client system, and so can be different for each client.Better to use routable IPv6 address.