I have a cap file, and I want to check whether there actually was much interference in the wireless channel. Is there a way to do this using Wireshark? I guess there is no PPI information, because if I filter for PPI, I don't get any information. Any other way to get some information about the interference in the wireless channel? asked 19 Apr '17, 11:43 whatever edited 19 Apr '17, 13:09 Guy Harris ♦♦ |
One Answer:
What you get from radiotap, PPI, or other radio metadata headers is information that the Wi-Fi adapter reports. I don't think they explicitly report "hey, there's a lot of interference"; you might be able to infer it from the rate of CRC errors, but CRC errors aren't necessarily due to interference, and I'm not sure that interference would always cause CRC errors instead of, for example, a failure to start receiving a packet. This article in Network Computing speaks of spectrum analyzers as being useful tools for detecting interference; it also says
answered 19 Apr '17, 13:18 Guy Harris ♦♦ |