This is a client for vpngate.net.
This client fetches the list of available relay servers provided by vpngate.net, and allows you to filter and connect to a server of your liking.
You can check out your current IP address and region at https://ipinfo.io/json, or run the following:
curl ipinfo.io- OpenVPN
- macOS, Linux, or Windows
Check out vpngate-mac for a native macOS Client
You can install vpngate in a few different ways, and it will differ slightly depending on your OS.
vpngate can be installed with homebrew (if on macOS, ensure that xcode is installed before installing homebrew by running xcode-select --install).
brew install openvpn davegallant/public/vpngateInstall OpenVPN from the official website, then manually download and extract the Windows release from the relevant Github release.
Once the release is extracted, open Command Prompt as Administrator, and run vpngate.exe from the location where it was extracted.
Ensure that go is installed.
CGO_ENABLED=0 go get github.com/davegallant/vpngateEnsure that the go bin path is discoverable:
echo 'export PATH=$PATH:$HOME/go/bin' >> ~/.profile
source ~/.profileFor full usage instructions, see the cli docs.
If on macOS, you may need to add openvpn to your PATH (if you installed it with brew):
export PATH=$(brew --prefix openvpn)/sbin:$PATH
Run in the background, then check on it, tail its log, or disconnect later.
status, logs, and disconnect need sudo too, since the daemon's state
is only readable by the user that ran connect -d (root):
sudo vpngate connect -d --country Japan
sudo vpngate status
sudo vpngate logs -f
sudo vpngate disconnectList Japanese servers sorted by lowest ping:
vpngate list --country Japan --sort pingList high-scoring US servers as JSON:
vpngate list --country us --min-score 1000000 --output jsonConnect to a random server with quality filters:
sudo vpngate connect --random --country Japan --max-ping 100 --min-score 500000Refresh the cached server list before listing:
vpngate list --refreshBypass the cache entirely:
vpngate list --no-cacheInspect or clear the cache:
vpngate cache path
vpngate cache clear- I do not maintain any of the servers on vpngate.net (connect to these servers at your own discretion)
- Many of the listed servers claim to have a logging policy of 2 weeks
