For 10Mb/s links, we should certainly be network-limited rather

than CPU-limited, which should expose the feature we are trying
to demonstrate (TCP data rate slowing down as latency increases
due to congestion control.)
This commit is contained in:
Bob Lantz
2016-10-21 13:25:40 -07:00
parent cc1cd9619f
commit 54bd4e4d3a
+1 -1
View File
@@ -87,7 +87,7 @@ def linearBandwidthTest( lengths ):
info( "*** testing", datapath, "datapath\n" )
Switch = switches[ datapath ]
results[ datapath ] = []
link = partial( TCLink, delay='2ms' )
link = partial( TCLink, delay='2ms', bw=10 )
net = Mininet( topo=topo, switch=Switch,
controller=Controller, waitConnected=True,
link=link )