Update README.md

This commit is contained in:
Sangye Ince-Johannsen 2025-01-17 19:43:05 +00:00
parent 4d0ee8a2f0
commit 61706931da

View file

@ -137,10 +137,9 @@ Automatically corrects common package names:
--- ---
## 🔒 vpn - Tailscale Exit Node Manager ## 🔒 vpn - Tailscale Exit Node Manager
Privacy-focused Tailscale exit node management. Privacy-focused Tailscale exit node management with automated logging.
### Setup ### Setup
```bash ```bash
@ -149,39 +148,40 @@ pip3 install requests
### Usage ### Usage
```bash ```bash
vpn <action> # actions: start, stop, new, shh vpn <action> [<country>] # Actions: start, stop, new, shh, to, status
``` ```
### Actions ### Actions
- `start`: Connect to a suggested exit node if not already connected - **`start`**: Connect to a suggested exit node if not already connected.
- `stop`: Disconnect from current exit node - **`stop`**: Disconnect from the current exit node.
- `new`: Switch to a new suggested exit node - **`new`**: Switch to a new suggested exit node.
- `shh`: Connect to a random exit node in a privacy-friendly country - **`shh`**: Connect to a random exit node in a privacy-friendly country.
- **`to <country>`**: Connect to a random exit node in a specific country.
- **`status`**: Display the current exit node, external IP, and connection duration.
### Key Features ### Features
- Auto-connects to suggested nodes - **Privacy-Friendly Quick Selection**: Supports random exit nodes from:
- Privacy-friendly country selection (SE, CH, DE, FI, NL, NO) `Finland`, `Germany`, `Iceland`, `Netherlands`, `Norway`, `Sweden`, `Switzerland`.
- Connection verification via Mullvad API - **Connection Verification**: Ensures exit node and IP via Mullvad API.
- Default Tailscale arguments: - **Automated Logging**: Tracks all connections, disconnections, and IP changes in `/var/log/vpn_rotation.txt`.
- **Default Tailscale arguments**:
- `--exit-node-allow-lan-access` - `--exit-node-allow-lan-access`
- `--accept-dns` - `--accept-dns`
- `--accept-routes` - `--accept-routes`
### Examples ### Examples
```bash ```bash
vpn start # Connect to suggested node vpn start # Connect to a suggested node.
vpn shh # Connect via privacy-friendly country vpn shh # Connect to a random privacy-friendly node.
vpn to Germany # Connect to a random exit node in Germany.
vpn status # Show current connection details.
vpn stop # Disconnect from the exit node.
``` ```
### Verification
- Checks Tailscale's reported exit node
- Verifies connection using Mullvad's API
- Confirms hostname matches
### Notes ### Notes
- Requires active Tailscale configuration - Requires active Tailscale configuration and internet access.
- Internet connectivity needed for verification - Logging is handled automatically in `/var/log/vpn_rotation.txt`.
- Some commands may need admin privileges - Use `sudo` for actions requiring elevated permissions (e.g., `crontab`).
--- ---