Inconsistency Between Expected 802.11 Frame Format and Observed Ethernet II Frames in Wireless Data Transmission
I have successfully established a TCP connection between a server and a client using socket programming, with data being transmitted over a wireless network interface. According to my understanding, data packets sent over a wireless network should adhere to the 802.11 standard, and the frame format should align with 802.11 specifications. However, upon capturing packets using Wireshark at both the server and client ends, I discovered that the transmitted data is in the Ethernet II frame format, which is inconsistent with my expectations.
I would like assistance in understanding why the data packets appear as Ethernet II frames rather than the anticipated 802.11 frame format. Are there specific considerations or configurations that need to be addressed in order to ensure compliance with the 802.11 standard during wireless data transmission using socket programming?
I appreciate any insights or guidance on resolving this discrepancy and aligning the transmitted data with the expected 802.11 frame format.