IPv6
Start the server on localhost, which is IPv6 ::1, port 8080.
python3 -m http.server 8080 --bind ::1
Connect to the server. According to the RFC, literal IPv6 addresses in URLs should be enclosed in [ ].
curl http://[::1]:8080
Start the server on localhost, which is IPv6 ::1, port 8080.
python3 -m http.server 8080 --bind ::1
Connect to the server. According to the RFC, literal IPv6 addresses in URLs should be enclosed in [ ].
curl http://[::1]:8080