-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63cb39a
commit ac8cbf7
Showing
5 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Baseline speed | ||
|
||
iperf3 | ||
|
||
```bash | ||
ubuntu@tRex:/opt/trex/v3.00$ iperf3 -s -p 8001 | ||
[ 24] 0.00-60.01 sec 674 MBytes 94.2 Mbits/sec receiver | ||
[SUM] 0.00-60.01 sec 6.70 GBytes 958 Mbits/sec receiver | ||
----------------------------------------------------------- | ||
Server listening on 8001 | ||
----------------------------------------------------------- | ||
``` | ||
|
||
```bash | ||
ubuntu@xdp-DUT:~/linux-aws-5.15.0$ iperf3 -c 10.0.1.37 -P 10 -i 1 -t 60 -V -p 8001 | ||
... | ||
[SUM] 0.00-60.00 sec 6.70 GBytes 960 Mbits/sec 7769 sender | ||
[SUM] 0.00-60.01 sec 6.70 GBytes 958 Mbits/sec receiver | ||
CPU Utilization: local/sender 5.3% (0.3%u/5.0%s), remote/receiver 11.2% (2.0%u/9.1%s) | ||
snd_tcp_congestion cubic | ||
rcv_tcp_congestion cubic | ||
|
||
iperf Done. | ||
``` | ||
|
||
t2.micro | ||
TCP ~1Gbps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# set hostname | ||
# hostname tRex | ||
|
||
# run as root | ||
# create trex dir | ||
mkdir -p /opt/trex | ||
|