Changes between Version 13 and Version 14 of HowTo/bssidFix
- Timestamp:
- Aug 26, 2006, 1:54:07 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowTo/bssidFix
v13 v14 6 6 When wifi network cards are placed in ad-hoc mode (iwconfig ath0 mode 'ad-hoc') they will automatically search for networks with the same essid (iwconfig ath0 essid 'blah'). They will adopt the bssid of the first node to turn on that has the specified essid. 7 7 8 Unfortunately, this algorithm and/or implementation is not very good and even relatively small networks, nodes that have the same 'essid' will end up with different a 'bssid'. Since the wifi card drivers filterby bsssid, nodes that should be in the same ad-hoc network can't exchange packets.8 Unfortunately, this algorithm and/or implementation is not very good and even in relatively small networks, nodes that have the same 'essid' will end up with different a 'bssid'. Since the wifi card drivers filter incoming packets by bsssid, nodes that should be in the same ad-hoc network can't exchange packets. 9 9 10 10 The solution to this problem can be found by modifying the madwifi drivers (for Atheros wifi cards only), so that the bssid a node generates is a hash of the essid instead of its MAC address. This ensures that nodes with identical essid's end up with identical bssid's.