IPV6 addresses
Posted: Fri Aug 04, 2023 11:09 am
WWebserver now resolv IPV6 addresses for hosts, for example localhost will bind only to IPV6 ::1 if available and not to the IPV4 127.0.0.1 address!
You should append the IPV4 address separated by comma to bind it twice:
If you type in all then it will bind to the default IPV4 addresses of your system (visible from outside!).
To bind it also to the IPV6 addresses you should insert the IPV6 addresses separated by comma, for example:
If you want to bind to a IPV6 address with extra port, you have to encapsulate it with brackets:
You should append the IPV4 address separated by comma to bind it twice:
Code: Select all
localhost,127.0.0.1
To bind it also to the IPV6 addresses you should insert the IPV6 addresses separated by comma, for example:
Code: Select all
all,2a01:4f8:221:3107::2,::1
Code: Select all
all,[2a01:4f8:221:3107::2]:8080