Ethr is a Comprehensive Network Measurement Tool for TCP, UDP & ICMP.
Go to file
2019-01-03 17:32:50 -08:00
.gitignore Fix .gitignore file to track proper files (#53) 2018-12-19 08:26:10 -08:00
.travis.yml Add support for custom ports for server. Fixes #15 (#50) 2018-12-17 08:52:58 -08:00
client.go Add support for -4 or -6 as parameter. (#65) 2019-01-03 17:25:00 -08:00
clientui.go Add support for TCP ping (#61) 2019-01-01 21:12:26 -08:00
Dockerfile Change Ethr -> ethr (#52) 2018-12-18 07:56:21 -08:00
ethr.go Add support for -4 or -6 as parameter. (#65) 2019-01-03 17:25:00 -08:00
Gopkg.lock MacOS support (#27) 2018-12-09 14:25:56 -08:00
Gopkg.toml Add dep (#11) 2018-12-05 05:41:16 -08:00
LICENSE Initial commit 2018-11-25 06:05:34 -08:00
log.go Add lint target and fix its warnings. (#37) 2018-12-11 07:28:33 -08:00
Makefile Change Ethr -> ethr (#52) 2018-12-18 07:56:21 -08:00
plt_darwin.go darwin: gen struct from C for TCP stats (#48) 2018-12-13 16:31:03 -08:00
plt_linux.go Minor change to avoid screen flooding due to #60 (#62) 2019-01-01 21:28:38 -08:00
plt_windows.go Add lint target and fix its warnings. (#37) 2018-12-11 07:28:33 -08:00
README.md Update README.md 2019-01-03 17:32:50 -08:00
server.go Add support for -4 or -6 as parameter. (#65) 2019-01-03 17:25:00 -08:00
serverui.go Add lint target and fix its warnings. (#37) 2018-12-11 07:28:33 -08:00
session.go Add support for -4 or -6 as parameter. (#65) 2019-01-03 17:25:00 -08:00
stats.go Add support for UDP bandwidth testing (#20) (#38) 2018-12-11 08:35:20 -08:00
ui.go Add lint target and fix its warnings. (#37) 2018-12-11 07:28:33 -08:00
utils.go Add support for -4 or -6 as parameter. (#65) 2019-01-03 17:25:00 -08:00
xclient.go Add support for -4 or -6 as parameter. (#65) 2019-01-03 17:25:00 -08:00

Ethr Build Status

Ethr is a cross platform network performance measurement tool written in golang. The goal of this project is to provide a native tool for comprehensive network performance measurements of bandwidth, connections/s, packets/s, latency, loss & jitter, across multiple protocols such as TCP, UDP, HTTP, HTTPS, and across multiple platforms such as Windows, Linux and other Unix systems.

Ethr server in action

Ethr takes inspiration from existing open source network performance tools and builds upon those ideas. For Bandwidth measurement for TCP & UDP, it is very similar to iPerf3. iPerf3 has many more options for doing such as throttled testing, richer feature set, while Ethr has support for multiple threads, that allows it to scale to 1024 or even higher connections, multiple clients to a single server etc. For latency measurements, it is similar to latte on Windows or sockperf on Linux.

Ethr provides more test measurements as compared to other tools, e.g. it provides measurements for bandwidth, connections/s, packets/s, latency, and TCP connection setup latency, all in a single tool. In the future, there are plans to add more features (hoping for others to contribute) as well as more protocol support to make it a comprehensive tool for network performance measurements.

Ethr is natively cross platform, thanks to golang, as compared to compiling via an abstraction layer like cygwin that may limit functionality. It hopes to unify performance measurement by combining the functionality of tools like iPerf3, ntttcp, psping, sockperf, and latte and offering a single tool across multiple platforms and multiple protocols.

Download

For Windows 10: https://github.com/Microsoft/Ethr/files/2640289/ethr.zip
For Ubuntu: https://github.com/Microsoft/Ethr/files/2640288/ethr.gz
For ArchLinux: https://aur.archlinux.org/packages/ethr

Installation

Note: go version 1.10 or higher is required building it from the source.

Building from Source

git clone https://github.com/Microsoft/ethr.git
cd ethr
dep ensure -v
go build

Docker

Build image using command:

docker build -t microsoft/ethr .

Make binary:

Linux

docker run -e GOOS=linux -v $(pwd):/out microsoft/ethr make build-docker

Windows

docker run -e BINARY_NAME=ethr.exe -e GOOS=windows -v $(pwd):/out microsoft/ethr make build-docker

OS X

docker run -e BINARY_NAME=ethr -e GOOS=darwin -v $(pwd):/out microsoft/ethr make build-docker

Using go get

go get github.com/Microsoft/ethr

Using ArchLinux AUR

Assuming you are using yay (https://github.com/Jguer/yay):

yay -S ethr

Usage

Simple Usage

Help:

ethr -h

Server:

ethr -s

Server with Text UI:

ethr -s -ui

Client:

ethr -c <server ip>

Example:

// Start server
ethr -s

// Start client for default (bandwidth) test measurement using 1 thread
ethr -c localhost

// Start connections/s test using 64 threads
ethr -c localhost -t c -n 64

Complete Command Line

Common Parameters

-h                        Help
-no                       Disable logging to a file
-o <filename>             Log to the file specified by filename
                          Default: ethrs.log for server, ethrc.log for client, ethrxc.log for external client mode
-debug                    Log debug output
-ports <string>           Use custom port numbers instead of default ones
                          Format: "Key1=Value, Key2=value, ..."
                          Default: "control=8888, tcp=9999, udp=9999, http=9899, https=9799"
                          Control is used for control channel communication for ethr.
                          For protocols, base port is specified by value and other ports are calculated.
                          Example: tcp=9999 means port for Bandwidth: 9999, CPS: 9998, PPS: 9997, Latency: 9996
                          Note: Same ports must be used on client and server
                          Note: This option is not valid for external client mode
-4                        Use only IP v4 version
-6                        Use only IP v6 version

Server Parameters

-s                        Server mode
-ui                       Display text UI

Client Parameters

-c <server>                   Client mode, connect to name or IP specified by server
-t <b|c|p|l>                  Test to be done, b: bandwidth, c: connections/s, p: packets/s, l: latency
                              Default is bandwidth test
-p <tcp|udp|http|https|icmp>  Protocol to use, default is TCP
-n <number>                   Number of sessions/threads to use
-l <number>                   Buffer size to use for each request
-i <number>                   Number of iterations for latency test
-d <duration>                 Duration for the test run, for example, 10s, 4m, 5h etc. 0 - forever, default: 10s

External Client Mode

-x <destination>              External client mode, connect to destination specified by host:port
                              Example: -x www.microsoft.com:443 or -x 10.1.0.4:22 etc.
-d <duration>                 Duration for the test run, for example, 10s, 4m, 5h etc. 0 - forever, default: 10s

Status

Protocol Bandwidth Connections/s Packets/s Latency
TCP Yes Yes No Yes
UDP Yes NA Yes No
HTTP Yes No No No
HTTPS No No No No
ICMP No NA No No

Platform Support

Windows

Tested: Windows 10, Windows 7 SP1

Untested: Other Windows versions

Linux

Tested: Ubuntu Linux 18.04.1 LTS, OpenSuse Leap 15

Untested: Other Linux versions

OSX

Tested: OSX is tested by contributors

Other

No other platforms are tested at this time

Todo List

Todo list work items are shown below. Contributions are most welcome for these work items or any other features and bugfixes.

  • Test Ethr on other Windows versions, other Linux versions, FreeBSD and other OS
  • Support for UDP bandwidth & latency testing
  • Support for HTTPS bandwidth, latency, requests/s
  • Support for HTTP latency and requests/s
  • Support for ICMP bandwidth, latency and packets/s

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.