connchk
is command-line network checking tool written in Rust. It aims
to provide a cross platform utility that can verify if your host can reach
targets defined in a TOML document. These hosts are checked in the following
ways:
The application expects exactly one argument which is the TOML document defining target hosts.
To get connchk
run cargo install connchk
on a system with Cargo installed.
For the time being this is the only way. At a later date packages for various systems may be included in the repository.
```toml
[[tcp]] desc = "GitLab SSH" addr = "gitlab.com:22"
[[tcp]] desc = "Freenode IRC" addr = "irc.freenode.net:6667"
[[http]] desc = "httpbin IP endpoint" addr = "https://httpbin.org/ip"
[[http]] desc = "httpbin POST endpoint (form)" addr = "https://httpbin.org/status/undefined" custom = { params = { someKey = "SpecialValue" }, ok = 400, bad = 403 }
```
$ ./connchk ~/Projects/connchk/example.toml
Successfully connected to GitLab SSH
Successfully connected to Freenode IRC
Successfully connected to httpbin IP endpoint
Successfully connected to httpbin POST endpoint (form)
This project uses GPL-3.0+.
Copyright (C) 2020 Anthony Martinez