1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 12:42:07 +02:00
tldr/pages/common/netperf.md
Jay Thomas f590e064b0
net{perf,server}: add page (#12075)
* netperf: add pages

* move pages to common; adjust syntax

* use placeholder syntax for port numbers

* Add mnemonics and manned.org link per style guide

* missing period

* Add commas
2024-01-17 17:47:33 +08:00

21 lines
605 B
Markdown

# netperf
> Client-side command for `netperf`, the benchmarking application that measures network throughput. Similar to `iperf`.
> See also: `netserver`, for the server-side command.
> More information: <https://hewlettpackard.github.io/netperf/doc/netperf.html#Global-Command_002dline-Options>.
- Connect to server on a specific IP address via default port (12865):
`netperf {{address}}`
- Specify [p]ort:
`netperf {{address}} -p {{port}}`
- Specify the sampling [l]ength in seconds (default is 10):
`netperf {{address}} -l {{seconds}}`
- Force IPv[4] or IPv[6]:
`netperf {{address}} -{{4|6}}`