Changes between Version 8 and Version 9 of MEBSandbox/UDTExample


Ignore:
Timestamp:
05/02/12 11:52:20 (12 years ago)
Author:
Mark Berman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MEBSandbox/UDTExample

    v8 v9  
    6666}}}
    6767
     68This information shows the internal configuration of the "pipes" used to emulate network characteristics.
     69You'll want to make note of the two pipe numbers, one for each direction of traffic along your link.
     70In the example above, they are 60111 and 60121.
     71
     72There are three link characteristics we'll manipulate in this experiment: bandwidth, delay, and packet loss rate.
     73You'll find their values listed on the
     74
    6875To change bandwidth (100M means 100Mbits/s):
    6976{{{
     
    7885}}}
    7986
     87To change packet loss rate (rate is a probability, so 0.001 means 0.1% packet loss):
     88{{{
     89sudo ipfw pipe 60111 config plr .0001
     90sudo ipfw pipe 60121 config plr .0001
     91}}}