Reputation: 139
As you can see in first figure, what does that Raw packet data mean? What is the difference between normal tcp packet in figure 2?
FYI, I'm using Wireshark 2.2.0.
Upvotes: 3
Views: 13446
Reputation: 346
Basically when you are capturing packets on an interface you have an associated link type to it (ethernet, 802.11, 802.15.4, etc).
Raw packet is used when you dont have any, the first bytes captured are directly the IPv6 or IPv4 header.
Raw IP; the packet begins with an IPv4 or IPv6 header, with the "version" field of the header indicating whether it's an IPv4 or IPv6 header.
From http://www.tcpdump.org/linktypes.html
Upvotes: 4