VPN — server (vpn-server)¶
vpn-server implements full IP-level VPN functionality over the Skywire
network. A visor runs the server; another visor runs the
client, which tunnels all of its machine's traffic through
the server. Unlike the per-application SOCKS5 proxy,
the VPN captures traffic at the IP layer.
The server optionally requires a passcode (set in its configuration). If no passcode is set, the server accepts connections without authentication.
Separate machines
Because of how the VPN reconfigures host networking, the VPN server and VPN client must run on different machines — you cannot run both on one host.
Usage¶
The server is controlled via skywire cli vpn server.
# Start the VPN server
skywire cli vpn server start
# Status
skywire cli vpn server status
# Stop
skywire cli vpn server stop
Configuration¶
vpn-server ships in a generated config (port 44, auto_start: true).
To require a passcode, pass -passcode in args:
Leave args empty for an open (no-auth) server.
See also¶
- VPN client — tunnel a machine's traffic through a VPN server.
- SOCKS5 proxy — per-application proxying as a lighter alternative.
- Command reference:
skywire cli vpn