jnetperf/README.md

38 lines
1.1 KiB
Markdown
Raw Normal View History

2023-06-22 06:40:31 +00:00
# jPerf
2023-06-26 10:56:46 +00:00
Small utility to measure network performance between two hosts.
2023-06-22 06:40:31 +00:00
## Requirements
2023-06-26 10:56:46 +00:00
You need Java (JRE) version 8 or later to run jperf.
2023-06-22 06:40:31 +00:00
## Usage Instructions
- Install the jperf package (*.deb*, *.rpm* or *.jar*) from [downloads](https://bitbucket.org/mnellemann/jperf/downloads/) or compile from source.
- Run **/opt/jperf/bin/jperf**, if installed from package
- Or as **java -jar /path/to/jperf.jar**
```shell
2023-06-26 10:56:46 +00:00
Usage: jperf [-hV] [-l=SIZE] [-n=NUM] [-p=PORT] (-c=HOST | -s)
Network performance measurement tool.
-c, --connect=HOST Connect to remote server
-h, --help Show this help message and exit.
-l, --pkt-len=SIZE Datagram size in bytes, max 65507 [default: 65507]
-n, --pkt-num=NUM Number of packets to send [default: 150000]
-p, --port=PORT Network port [default: 4445]
-s, --server Run server and wait for client
-V, --version Print version information and exit.
2023-06-22 06:40:31 +00:00
```
## Development Information
2023-06-26 10:56:46 +00:00
You need Java (JDK) version 8 or later to build jperf.
2023-06-22 06:40:31 +00:00
### Build & Test
Use the gradle build tool, which will download all required dependencies:
```shell
2023-06-26 10:56:46 +00:00
./gradlew clean build
2023-06-22 06:40:31 +00:00
```