An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# uup (You Up?)

A fast and lightweight TCP tester for macOS

![image](./screenshots/commands.png)

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
![image](./screenshots/uup_demo.gif)

### 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
```