33 lines
967 B
Markdown
33 lines
967 B
Markdown
# Proxynet
|
|
|
|
Proxy to route regular TCP/UDP traffic through Reticulum.
|
|
|
|
## Installation
|
|
```bash
|
|
poetry install
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Server Mode
|
|
```bash
|
|
# Basic server startup
|
|
poetry run proxynet --server --identity my_server
|
|
|
|
# Verbose server startup
|
|
poetry run proxynet --server --identity my_server -v
|
|
```
|
|
|
|
### Client Mode
|
|
```bash
|
|
# Start SOCKS5 proxy on localhost:1080 with a preferred server
|
|
poetry run proxynet --client --port 1080 --preferred <server_hash>
|
|
|
|
# Start proxy using any discovered servers (decentralized mode)
|
|
poetry run proxynet --client --port 1080
|
|
```
|
|
|
|
## Privacy
|
|
Traffic over Reticulum is end-to-end encrypted and anonymized between the client and the server using Reticulum's native Link encryption (X25519 and AES-256) and anonymity features. For internet traffic, use HTTPS/TLS to ensure the server operator cannot see your data contents. If operators are using wireshark, they will still be able to see what websites/IP you are connecting to.
|
|
|