Send ICMPv6 echoes to check IPv6 connectivity and latency quickly. 21.04.2026 | reading time: 2 min Check an IPv6 address fast. ping6 sends ICMPv6 Echo Requests and reports round-trip time, packet loss and basic path behaviour so you can decide the next troubleshooting step. Try this now Run a quick probe from a terminal to confirm reachability: ```ping6 -c 4 2001:db8::1``` Example reply summary you might see: ```PING 2001:db8::1(2001:db8::1) 56 data bytes 64 bytes from 2001:db8::1: icmp_seq=1 ttl=64 time=10.2 ms 64 bytes from 2001:db8::1: icmp_seq=2 ttl=64 time=9.8 ms --- 2001:db8::1 ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 3004ms rtt min/avg/max/mdev = 9.831/10.023/10.251/0.197 ms``` Options worth trying Count with -c, pick an interface with -I, change payload with -s, set a deadline with -w or a per-packet timeout with -W, quiet summary with -q and flood with -f (root only); try combinations to reproduce latency or packet loss patterns quickly. Link-local quirks When addressing link-local peers include the interface like `fe80::1%eth0`; remember ICMPv6 is used heavily by Neighbor Discovery, so a missing reply can mean missing ND entries or firewall rules rather than a dead host. Other tools to reach deeper If ping6 shows problems, follow up with traceroute6 or tracepath6 to map hops, use tcpdump to capture ICMPv6 and ND packets, and `ip -6` to inspect addresses and routes before changing configuration. Final push Use ping6 as a first, fast check and then escalate methodically: map the path, capture traffic, and verify MTU and neighbor state; learn more to become proficient and consider formal certification like CompTIA Linux+ or LPIC-1, with intensive exam preparation at bitsandbytes.academy. Join Bits & Bytes Academy First class LINUX exam preparation. network utilities troubleshooting