Good day everyone. Currently I'm interested in tunneling. For example I have a tunnel with the following protocols stack: And my question is how does wireshrk store all the addresses for each packet (in my example there are three IPv4-addresses)? I thought of packet_info structure, but there are only two fields:
Thanks in advance. asked 28 Apr '15, 06:46 ustas |
One Answer:
Wireshark will keep the outermost IP addresses in the packet_info struct, as there are the real addresses for the particular packet at the network layer. These addresses are used in the source and destination column. However, for each IP address encountered in an IP header, it will add a ip.src or ip.dst field to the dissection tree (as well as an ip.addr for both of them). So when using the display filter answered 29 Apr '15, 13:12 SYN-bit ♦♦ |