| 71 | == Virtual Mobility == |
| 72 | |
| 73 | Virtual mobility is acheived by simply adjusting the arbitrary topologies in real time. For example, if you wanted to mimic that two nodes started together and then moved further and further apart until they were out of range you would start with both nodes being configured like this: |
| 74 | |
| 75 | {{{ |
| 76 | iwpriv ath0 orbitfilter [MAC] 100 90 |
| 77 | }}} |
| 78 | |
| 79 | as time continued you would keep dropping the RSSI value (currently 90) until it reached about 15. At that point you would start to drop the percent of packets received. In the following example only 90% of packets are being received and the RSSI is 15. |
| 80 | |
| 81 | {{{ |
| 82 | iwpriv ath0 orbitfilter [MAC] 90 15 |
| 83 | }}} |
| 84 | |
| 85 | You would continue this trend until the percent of packets received was 0 and the RSSI was 0. |
| 86 | |
| 87 | {{{ |
| 88 | iwpriv ath0 orbitfilter [MAC] 0 0 |
| 89 | }}} |
| 90 | |