You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In both Wireshark and tcpdump (unfiltered) I see large numbers of control packets but no data packets at all.
Here's the results of various capture filters:
net 192.168.10.0/24 or net 2601:1c0:xxxx:xxxx::/64 or net fe80::/12 (my local ipv4/6 network prefixes) - no packets captured
wlan type data - I see 43 byte Null function (No data) packets about twice per second but nothing else.
For the following I perform some action such as using the browser on my iPhone, which is on the WiFi network, while the capture is running
wlan ra [my iphone mac] or wlan ta [my iphone mac] - no packets captured
wlan addr1 [my iphone mac] or wlan addr2 [my iphone mac] or wlan addr3 [my iphone mac] or wlan addr4 [my iphone mac] - Lots of short control packets but no data. Packet types are 802.11 Block Ack, Clear-to-send, Request-to-send and Trigger Buffer Status Report Poll (BSRP)
Is this just a limitation of the adapter or driver? Any suggestions on how to troubleshoot further?
The text was updated successfully, but these errors were encountered:
Is this just a limitation of the adapter or driver?
Driver. Realtek does a poor job on their out-of-kernel USB drivers. A project that I have been helping with over the last just upstreamed new, Linux Wireless Standards compliant drivers for the rtl8812au, rtl8821/11au chips. The drivers are fully in kernel 6.14. In the meantime, you can go over the following repo and install the same code as an out-of-kernel drivers and it will work on kernels all the way back to 5.4:
Hardware is
Bus 001 Device 002: ID 2357:0120 TP-Link Archer T2U PLUS [RTL8821AU]
)Driver built and installed with no difficulties. Connections are:
Wireshark is configured with "802.11 protocol Enable Decryption" and the correct key (Type:
wpa-pwd
, Key:[password]:[SSID]
)I put the adapter into monitor mode using
start-mon.sh
, then adjust channel width to match my APOutput from
iw dev
:In both Wireshark and tcpdump (unfiltered) I see large numbers of control packets but no data packets at all.
Here's the results of various capture filters:
net 192.168.10.0/24 or net 2601:1c0:xxxx:xxxx::/64 or net fe80::/12
(my local ipv4/6 network prefixes) - no packets capturedwlan type data
- I see 43 byteNull function (No data)
packets about twice per second but nothing else.For the following I perform some action such as using the browser on my iPhone, which is on the WiFi network, while the capture is running
wlan ra [my iphone mac] or wlan ta [my iphone mac]
- no packets capturedwlan addr1 [my iphone mac] or wlan addr2 [my iphone mac] or wlan addr3 [my iphone mac] or wlan addr4 [my iphone mac]
- Lots of short control packets but no data. Packet types are802.11 Block Ack
,Clear-to-send
,Request-to-send
andTrigger Buffer Status Report Poll (BSRP)
Is this just a limitation of the adapter or driver? Any suggestions on how to troubleshoot further?
The text was updated successfully, but these errors were encountered: