I connected to IPv6 via Freenet6, logged into ipv6.google.com and captured the Wireshark trace. In the trace it does not show any IPv4 address. Connection mode is IPv6-in-UDP-IPv4 Tunnel (NAT Traversal). My question is,
If anyone knows please help me. Thank You Shreehari M asked 10 Oct '12, 20:58 Shreehari M |
One Answer:
Are you sure that there is no IPv4 layer in your packets? Keep in mind that looking at the packet list won't help since Wireshark will always show the "highest" IP address found in a packet, so if you transport IPv6 over IPv4 it will always show the IPv6 address. If you take a look at the decode of the packet you will see the real layers, usually: Ethernet -> IPv4 -> IPv6 -> TCP/UDP/ICMP... or (in your case) Ethernet -> IPv4 -> UDP -> IPv6 -> TCP/UDP/ICMP... answered 11 Oct '12, 00:25 Jasper ♦♦ |
Thank You very much Jasper