Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

If i connect a wifi device in my circuit.I am tx(transmitted) the signals from the wi-fi device.I want to know about,how the signals are Tx in what format and can i see the data that is tx (monitoring)???

share|improve this question
For that you need to read the data sheet of the device you want to use. Without more information about that we cannot help you further. – hli Jul 26 '12 at 7:32
This question currently does not have enough detail for us to understand exactly what you need. – Kortuk Jul 31 '12 at 10:19

closed as not a real question by Brian Carlton, Kortuk Jul 31 '12 at 10:18

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

As Joel B pointed out, Wi-Fi traffic can be sniffed using software and remote PC. Wireshark is your friend. Please note, however, sniffing card should support promiscuous mode.

Traffic can be sniffed locally as well. If your device is running embedded Linux, you can create a monitor interface and use tcpdump. Be aware, that sniffing Wi-Fi traffic using tcpdump will not give you all packets, because some control packets will be filtered out by firmware (but most likely you don't want them anyways, unless you are Wi-Fi driver developer). Also, monitor mode is not supported by all drivers.

share|improve this answer

If you want to view over the air WiFi traffic (this is known as "sniffing"), the (somewhat) standard way of doing this is using a computer with a wireless adapter and monitoring software. The software should let you start capturing all traffic or filter out only certain traffic of interest to you. Then you can decompose packets in the software and see the various components of each packet.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.