Changes between Version 14 and Version 15 of PlasticSlices/Experiments
- Timestamp:
- 07/24/12 15:08:01 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PlasticSlices/Experiments
v14 v15 292 292 = GigaPerfTCP = 293 293 294 This experiment uses the iperf command to send 1 GB of data via TCP, measuring performance throughout the transfer. 294 This experiment uses the iperf command to send 1 GB of data via TCP, measuring performance throughout the transfer. It sets the TCP window size to 1 MB, to reduce the effects of latency on performance. 295 295 296 296 == Setup == … … 323 323 {{{ 324 324 server=<ipaddr> 325 nice -n 19 iperf -B $server -p <port> -s -i 1 325 nice -n 19 iperf -B $server -p <port> -s -i 1 -w 1m 326 326 }}} 327 327 … … 339 339 {{{ 340 340 server=<ipaddr> 341 nice -n 19 iperf -c $server -p <port> -n <size>M 341 nice -n 19 iperf -c $server -p <port> -n <size>M -w 1m 342 342 }}} 343 343 … … 738 738 = SteadyPerfTCP = 739 739 740 This experiment uses the iperf command to send data via TCP, measuring performance throughout the transfer. Note that it doesn't allow you to directly control the rate at which data is sent.740 This experiment uses the iperf command to send data via TCP, measuring performance throughout the transfer. It sets the TCP window size to 1 MB, to reduce the effects of latency on performance. Note that it doesn't allow you to directly control the rate at which data is sent. 741 741 742 742 == Setup == … … 769 769 {{{ 770 770 server=<ipaddr> 771 nice -n 19 iperf -B $server -p <port> -s -i 1 771 nice -n 19 iperf -B $server -p <port> -s -i 1 -w 1m 772 772 }}} 773 773 … … 785 785 {{{ 786 786 server=<ipaddr> 787 nice -n 19 iperf -c $server -p <port> -t <time> 787 nice -n 19 iperf -c $server -p <port> -t <time> -w 1m 788 788 }}} 789 789