https://github.com/yamada95/tcpping
Simple utility to ping a TCP port.
https://github.com/yamada95/tcpping
ping tcping tcpping
Last synced: 22 days ago
JSON representation
Simple utility to ping a TCP port.
- Host: GitHub
- URL: https://github.com/yamada95/tcpping
- Owner: eycorsican
- Created: 2021-09-25T08:00:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T12:27:00.000Z (9 months ago)
- Last Synced: 2024-09-09T14:57:24.183Z (9 months ago)
- Topics: ping, tcping, tcpping
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 23
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TcpPing
Simple utility to ping a TCP port.
## Example
```sh
> tcpping 1.1.1.1 53 -b en0 -i 1 -t 4
Connected to 1.1.1.1:53 in 21 ms
Connected to 1.1.1.1:53 in 3 ms
Connected to 1.1.1.1:53 in 3 ms
Connected to 1.1.1.1:53 in 7 ms
Connected to 1.1.1.1:53 in 5 ms
Connected to 1.1.1.1:53 in 5 ms
Connected to 1.1.1.1:53 in 6 ms
Connected to 1.1.1.1:53 in 2 ms
Connected to 1.1.1.1:53 in 11 ms
Connected to 1.1.1.1:53 in 9 ms
Connected to 1.1.1.1:53 in 11 ms
Connected to 1.1.1.1:53 in 3 ms
Connected to 1.1.1.1:53 in 2 ms
^C
```## Usage
```sh
> tcpping --help
Usage: tcpping [-i ] [-t ] [-b ]TCP ping utility.
Options:
-i, --interval ping interval (Default 1)
-t, --timeout handshake timeout (Default 4)
-b, --boundif bound interface (Unix only)
--help display usage information
```