Changes between Version 2 and Version 3 of HowTo/virtualMobility


Ignore:
Timestamp:
Sep 6, 2006, 4:08:33 PM (18 years ago)
Author:
cmdavies
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/virtualMobility

    v2 v3  
    77
    88The 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 ==
    911
    1012The format for the command looks like this:
     
    2123}}}
    2224
     25If 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{{{
     27node1-2:~# iwpriv ath1 orbitfilter 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0 0
     28}}}
    2329
     30Removing the global filter works the same way as removing a specific filter.
     31{{{
     32node1-2:~# iwpriv ath1 orbitfilter 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF
     33}}}
     34
     35If you wish to clear all filters, both specific and global, use this command.
     36{{{
     37node1-2:~# iwpriv ath1 orbitfilter_rst 1
     38}}}
     39
     40