-1

Say you have a wifi device (D) and a wifi router (R) that have never shared radio waves before, and are within range. How does D discover that R exists? Does R constantly broadcast a message with its MAC, SSID, etc that D will eventually passively pick up? The other way around? Some combination?

In general, what messages are sent between D and R that will ultimately produce that wonderful list of available networks to choose from (including details such as SSID [or lack thereof], encryption mechanism, etc)? Bonus: What, if any, is the difference between this and ARP?

Keith
  • 109
  • 2

2 Answers2

4

The access point broadcasts its SSID periodically (unless configured not to). The client scans the channels looking for SSID broadcasts.

David Schwartz
  • 31,449
  • 2
  • 55
  • 84
  • 1
    Really= Is there a way for a device to ASK for a broadcast? How often do they happen? I mean, I can see networks immediately, it does not look like I have to wait for the next braodcast OR the broadcastas are quite frequent. – TomTom Jul 14 '12 at 07:44
  • There is no way for a device to ask for a broadcast. Typically, an access point broadcasts its SSID ten times per second. – David Schwartz Jul 14 '12 at 07:46
  • Ok, that explins why I see them "immediately": 10 times per second is quite often. Thanks. – TomTom Jul 14 '12 at 09:09
3

It's called a 802.11 beacon and it broadcasts a lot more information than just the SSID/MAC address.

sybreon
  • 7,405
  • 1
  • 21
  • 20