Networking

- Perform network throughput tests
This commit is contained in:
bonnie 2020-07-19 22:12:40 +08:00
parent 8ed1acc61b
commit 8e6a0f8eb9

View File

@ -2114,6 +2114,7 @@ top|grep sublime_text
[unixbench](https://github.com/kdlucas/byte-unixbench) - the original BYTE UNIX benchmark suite, provide a basic indicator of the performance of a Unix-like system.
[wrk](https://github.com/wg/wrk) - HTTP benchmark.
##### Performance monitoring tool - sar
```bash
# installation
@ -2416,6 +2417,15 @@ curl -I http://example.com/
# Vary: Accept-Encoding
```
##### Perform network throughput tests
```bash
# server side:
$ sudo iperf -s -p 80
# client side:
iperf -c <server IP address> --parallel 2 -i 1 -t 2 -p 80
```
## Data wrangling
[[back to top](#handy-bash-one-liners)]