Rename all crates, CLI commands, constants, type names, doc comments, and documentation from wraith to alknet. Includes wire-protocol changes: ALPN wraith-ssh -> alknet-ssh, reserved destination prefix wraith- -> alknet-, SSH auth username wraith -> alknet.
1.1 KiB
1.1 KiB
status, last_updated
| status | last_updated |
|---|---|
| deprecated | 2026-06-01 |
TUN Shim (Deprecated)
Note
: TUN functionality has been deferred from the alknet project. For VPN-like "route all traffic" behavior, use
tun2proxyalongside alknet's SOCKS5 proxy. See ADR-014 for the rationale.
What Changed
The alknet-tun separate process and all TUN-related code is out of scope. The recommended approach for VPN-like behavior is:
# Terminal 1: alknet SOCKS5 proxy (no root required)
alknet connect --server example.com --identity ~/.ssh/id_ed25519
# Terminal 2: tun2proxy routes all traffic through alknet's SOCKS5
sudo tun2proxy --proxy socks5://127.0.0.1:1080
This keeps the core alknet binary free of TUN complexity and leverages an existing, well-tested tool for TUN-to-SOCKS5 bridging.