https://github.com/jackdcasey/uup
A fast and lightweight TCP tester for macOS
https://github.com/jackdcasey/uup
macos swift tcp
Last synced: 3 months ago
JSON representation
A fast and lightweight TCP tester for macOS
- Host: GitHub
- URL: https://github.com/jackdcasey/uup
- Owner: jackdcasey
- Created: 2020-04-23T06:23:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-02T05:05:54.000Z (over 4 years ago)
- Last Synced: 2023-03-02T22:42:38.277Z (over 3 years ago)
- Topics: macos, swift, tcp
- Language: Swift
- Homepage:
- Size: 1.69 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# uup (You Up?)
A fast and lightweight TCP tester for macOS

uup connects using TCP instead of ICMP, allowing for greater compatibility
### Example:
In this example, we reboot a server while using uup to monitor it coming back online

### Installation:
#### Homebrew (recommended):
```
brew install jackdcasey/tap/uup
```
#### From source:
```
git clone https://github.com/jackdcasey/uup && cd uup
make install
```
### Usage:
```
OVERVIEW: A fast and lightweight ping alternative
USAGE: test-options
[--port ] [--count ] [--delay ] [--recurrent] [--time]
ARGUMENTS:
The address used to connect to
OPTIONS:
-p, --port The TCP port used to connect with (default: 443)
Can also be specified in address:port format
-c, --count How may times to run the test (default: 1)
-d, --delay How many seconds to wait betwen tests (default: 2)
-r, --recurrent Run test indefinitely
-t, --time Display the time when testing
--version Show the version.
-h, --help Show help information.
```
### Uninstallation:
#### Homebrew:
```
brew uninstall uup
```
#### From source:
```
cd
make uninstall
```