Changes between Version 2 and Version 3 of HowTo/bssidFix
- Timestamp:
- Aug 25, 2006, 11:34:56 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowTo/bssidFix
v2 v3 16 16 These instructions are designed to be applied to the baseline.ndz as of Aug 25,2006. 17 17 18 1.ssh to one of the nodes (ssh root@node1-2)19 2.open /usr/src/madwifi/trunk/net80211/ieee80211_node.c in your favourite text editor20 3.goto line 427, you'll see some code that looks like this:18 * ssh to one of the nodes (ssh root@node1-2) 19 * open /usr/src/madwifi/trunk/net80211/ieee80211_node.c in your favourite text editor 20 * goto line 427, you'll see some code that looks like this: 21 21 {{{ 22 22 if (ic->ic_flags & IEEE80211_F_DESBSSID) … … 25 25 ni->ni_bssid[0] |= 0x02; /* local bit for IBSS */ 26 26 }}} 27 4.Right after these lines add the lines:27 * Right after these lines add the lines: 28 28 {{{ 29 29 int len = 0; … … 34 34 } 35 35 }}} 36 5.Save the file37 6.cd /usr/src/madwifi/trunk38 7.make39 8.cp /usr/src/madwifi/trunk/net80211/*.ko /lib/modules/2.6.12/net40 9.modprobe -r ath_pci41 10.modprobe ath_pci36 * Save the file 37 * cd /usr/src/madwifi/trunk 38 * make 39 * cp /usr/src/madwifi/trunk/net80211/*.ko /lib/modules/2.6.12/net 40 * modprobe -r ath_pci 41 * modprobe ath_pci 42 42 43 43 You will probably want to save the image this modified node so that you can save running these steps each time you want to perform an experiment.