Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arkamar/tapcat
Minimalistic tap-ucspi utility
https://github.com/arkamar/tapcat
tap tunnel tuntap ucspi vpn
Last synced: 17 days ago
JSON representation
Minimalistic tap-ucspi utility
- Host: GitHub
- URL: https://github.com/arkamar/tapcat
- Owner: arkamar
- License: mit
- Created: 2019-07-25T09:08:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-19T16:33:31.000Z (over 4 years ago)
- Last Synced: 2024-11-16T19:42:35.829Z (3 months ago)
- Topics: tap, tunnel, tuntap, ucspi, vpn
- Language: C
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tapcat
A minimalistic ucspi utility to concatenate and redirect `tap` devices.
## Usage
Create `tap0` device on both local and remote machines and turn them on
```sh
ip tuntap add tap0 mode tap user user_name group group_name
ip link set dev tap0 up
```### Creating vpn tunnel over ssh
```sh
tapcat tap0 ssh user@server tapcat tap0
```### Creating insecure tunnel over TCP with ncat
Server side:
```sh
tapcat tap0 ncat -klp 1234
```Client side:
```sh
tapcat tap0 ncat 10.0.0.2 1234
```### See Also
[`vpnbox`](https://github.com/tempestsecurity/vpnbox)