Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkfsn/dial
A Go based network health check tool
https://github.com/mkfsn/dial
cli go health network
Last synced: about 1 month ago
JSON representation
A Go based network health check tool
- Host: GitHub
- URL: https://github.com/mkfsn/dial
- Owner: mkfsn
- Created: 2020-02-03T12:13:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T12:13:38.000Z (almost 5 years ago)
- Last Synced: 2023-03-23T03:42:35.763Z (almost 2 years ago)
- Topics: cli, go, health, network
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dial
A Go based network health check tool.
# Example
```bash
$ dial -host github.com -port 443 -timeout 5s -retry 3 -verbose
dialing to 'github.com:443'
dial to 'github.com:443' successfully
```# Usage
```bash
Usage of dial:
-delay string
duration to delay retry, default is 1s (default "1s")
-host string
host to dial, e.g. 127.0.0.1
-network string
network to dial, default is tcp. (default "tcp")
-port int
port to dial, e.g. 80
-retry int
times to retry, default is 0 - no retry
-timeout string
dial timeout, default is 10s (default "10s")
-verbose
default is off
```