This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

IPv4 options

0

I have a IPv4 packet which has encapsulated over IPv6. tunneling setup protocol is used. Now i want to check which options from IPv4 header are being used in a packet. What is the way to do that? How can I identify which options are being used?

asked 21 Apr '17, 16:13

Prashantvaria9's gravatar image

Prashantvaria9
6112
accept rate: 0%


One Answer:

1

You can apply a Wireshark display filter of ip.hdr_len > 20 or ip.opt.type, which will isolate those packets that contain IPv4 options, and then expand the IPv4 protocol details within the packet details pane to reveal the packet details. You should see the "Options" listed, and you can expand those too if you like.

answered 21 Apr '17, 18:36

cmaynard's gravatar image

cmaynard ♦♦
9.4k1038142
accept rate: 20%