IEEE802.11 data packet data is encapsulated in the LLC header (see here ):
An 802.11 frame shall contain an LLC header if and only if it is a Data Frame. The type and subtype of the frame are part of the frame control field in the MAC header; Data is one of the values โโof the frame type (others are control and management). The subtype does not matter - all Data Frames must contain the LLC header, and no other frames should.
There are two types of LLC header: 3 bytes, 8 bytes. IEEE 802.11 uses the second (see here ). In this case, the last two bytes of the LLC header are equivalent to the Ether Type field in the Ethernet protocol. So, 0x800 for this field means IPv4 , for example.
Sub
source share