Changes between Version 2 and Version 3 of HowTo/virtualMobility
- Timestamp:
- Sep 6, 2006, 4:08:33 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowTo/virtualMobility
v2 v3 7 7 8 8 The method described here is a third way. It is implemented as a modification to the madwifi driver. Basically what it does is allows incoming packets to be filtered by sending MAC address. These filtered packets can have an arbitrary RSSI assigned to them and an arbitrary percent of these incoming packets can be ignored in order to simulate a poor radio environment. 9 10 == Using the Filter == 9 11 10 12 The format for the command looks like this: … … 21 23 }}} 22 24 25 If you wish to set a global filter for all nodes that do not have a specific filter, simply use a MAC address with all bits set. The following example blocks packets from all nodes that do not have a specific filter. 26 {{{ 27 node1-2:~# iwpriv ath1 orbitfilter 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0 0 28 }}} 23 29 30 Removing the global filter works the same way as removing a specific filter. 31 {{{ 32 node1-2:~# iwpriv ath1 orbitfilter 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 33 }}} 34 35 If you wish to clear all filters, both specific and global, use this command. 36 {{{ 37 node1-2:~# iwpriv ath1 orbitfilter_rst 1 38 }}} 39 40