mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-26 06:17:01 +00:00
Networking
- Perform network throughput tests
This commit is contained in:
parent
8ed1acc61b
commit
8e6a0f8eb9
10
README.md
10
README.md
@ -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.
|
[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.
|
[wrk](https://github.com/wg/wrk) - HTTP benchmark.
|
||||||
|
|
||||||
|
|
||||||
##### Performance monitoring tool - sar
|
##### Performance monitoring tool - sar
|
||||||
```bash
|
```bash
|
||||||
# installation
|
# installation
|
||||||
@ -2416,6 +2417,15 @@ curl -I http://example.com/
|
|||||||
# Vary: Accept-Encoding
|
# 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
|
## Data wrangling
|
||||||
[[back to top](#handy-bash-one-liners)]
|
[[back to top](#handy-bash-one-liners)]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user