Choose the IPv6 address that refers to the local host itself.
Which address is appropriate?
IPv6 loopback is ::1/128, corresponding to IPv4 127.0.0.1.
Detailed explanation
::1Correct. ::1 is the IPv6 loopback address.
Correct. ::1 is the IPv6 loopback address.
::Incorrect. :: is the unspecified address.
Incorrect. :: is the unspecified address.
fe80::1Incorrect. fe80 is link-local unicast.
Incorrect. fe80 is link-local unicast.
ff02::1Incorrect. ff02::1 is all-nodes multicast.
Incorrect. ff02::1 is all-nodes multicast.
Try it yourself
An example you can run in a temporary verification environment.
python3 -c "import ipaddress; print(ipaddress.ip_address('::1').is_loopback)"Expected result
TrueKey points
- ::1 is loopback
- :: is unspecified
- ff00::/8 is multicast
Notes
- Environment: Python 3 ipaddress
- Command output formatting can vary slightly by distribution or tool version.
- Run the example in a temporary directory or process when possible.
Foundation review
Read the scope first
Check whether the command acts on the current shell, a new process, an existing process, or a file.
Verify the observable result
Use the supplied command and compare the output with the expected result.