This is a NordVPN client docker container using openvpn that use the recommended NordVPN servers, and opens a SOCKS5 (dante server) and http proxy (tinyproxy).
VPN servers selection is performed through nordnvpn API.(country, technology, protocol)
Added docker image version for amd64,arm64, arm/v7, arm/v6
Whenever the connection is lost the unbound, tinyproxy and sock daemons are killed, disconnecting all active connections (tunnel down event).
Healtcheck tests dns resolution, openvpn status (connected), tinyproxy listening address, https/socks proxies.
Protected status was checked through nordvpn api, as the endpoint was removed, this image does not test its protected status. As long as openvpn returns a connected status, vpn is up.
This image is largely based on jeroenslot/nordvpn-proxy with dante free socks server added.
you can then expose port 1080
from the container to access the VPN connection via the SOCKS5 proxy.
To sum up, this container:
eth0:8888
to eth0:1080
(socks server) with tinyproxyeth0:1080
to tun0/nordlynx
with dante-server.The main advantage is that you get the best recommendation for each selection.
Script for OpenVpn config download is base on the one developped for haugene 's docker transmission openvpn https://haugene.github.io/docker-transmission-openvpn/provider-specific/
The container is expecting three parameters to select the vpn server:
NOTE: This container works best using the
p2p
technology.NOTE: At the moment, this container has no kill switch... meaning that when the VPN connection is down, the connection will be rerouted through your provider. although, on tunnel down event, the socks server is stopped preventing to relay unprotected requests, and defaults route through eth0 (not vpn) are deleted.
NOTE: as of 22/03/28, NORDVPN_LOGIN and NORDVPN_PASS secrets file are replaced with a single file, NORDVPN_CREDS, having login at first line and password as the second line.
nordvpn_creds:
thisismyusername
thisismypassword
Nordvpn openvpn credentials are to be found following that procedure:
Go to NordVPN website and log in
Under accounts - Services - click NordVPN
Click - Set up NordVPN manually - at the bottom right of the page.
You will receive a verification code in your email that you use for NordVPN services. Type the code in the popup window the preceded the email check.
Copy the credentials using the “Copy” buttons on the right for your new encrypted user name and password and paste them in nordvpn_creds
start the container: docker compose up -d
once the container is started, you will see in the logs these two lines, indicating that both socks and http proxies are up.
nordvpn-proxy | INFO: OPENVPN: up: starting tinyproxy
.....
nordvpn-proxy | ok: run: tinyproxy: (pid 103) 1s, normally down
see docker-compose-dist.yml for an example to setup and run this image.
```yaml
services:
proxy:
image: edgd1er/nordvpn-proxy:latest
restart: unless-stopped
ports:
- "1081:1080" # socks port udp or tcp
- "8888:8888/tcp" # http proxy tcp.
# devices:
# - /dev/net/tun #Optional, will be created if not preset
sysctls:
- net.ipv4.conf.all.rp_filter=2
cap_add:
- NET_ADMIN
environment:
- TZ=America/Chicago
- DNS=1.1.1.1@853#cloudflare-dns.com 1.0.0.1@853#cloudflare-dns.com
- NORDVPN_COUNTRY=germany #Optional, by default, servers in user's country.
- NORDVPN_PROTOCOL=udp #Optional, udp by default, udp or tcp
- NORDVPN_CATEGORY=p2p #Optional, Africa_The_Middle_East_And_India, Asia_Pacific, Europe, Onion_Over_VPN, P2P, Standard_VPN_Servers, The_Americas
- NORDVPN_USER=<email> #Not required if using secrets
- NORDVPN_PASS=<pass> #Not required if using secrets
- OPENVPN_PARAMETERS= #optional, empty by default, overrides openvpn config file with parameters
- OPENVPN_LOGLEVEL= #Optional, define openvpn verbose level 0-9
- EXIT_WHEN_IP_NOTASEXPECTED=0 # when detected ip is not belonging to remote vpn network
- LOCAL_NETWORK=192.168.0.0/24 # allow network access for socks and tinyproxy.
- TINYPORT=8888 #define tinyport inside the container, optional, 8888 by default,
- TINY_LOGLEVEL=Error #Critical (least verbose), Error, Warning, Notice, Connect (to log connections without Info's noise), Info
- DANTE_LOGLEVEL="error" #Optional, error by default, available values: connect disconnect error data
- DANTE_ERRORLOG=/dev/stdout #Optional, /dev/null by default
- CRON_LOGLEVEL=9 #optional, from 0 to 9, 8 default, 9 quiet.
- DEBUG=0 #(0/1) activate debug mode for scripts, dante, nginx, tinproxy
- TINYUSER=username #define http/socks proxy password, not required if using secrets
- TINYPASS=password #define http/socks proxy password, not required if using secrets
secrets:
- NORDVPN_CREDS
- TINY_CREDS
volumes:
- ./myconfig/:/config/
secrets:
NORDVPN_CREDS:
file: ./nordvpn_creds
TINY_CREDS:
file: ./tiny_creds
script checks for:
if any of these fail, services are restarted.
dockerfile healtcheck:
When vpn interface (tun) is up, default route through unprotected interface (eth0) is removed. To ensure that little or no traffic is forwarded unprotected, services are stopped on any of these events:
Another image is available using nordvpn's client. Openvpn and wireguard (nordlynx) protocols are available. better speed may be achieved with wireguard.
names | links |
---|---|
nordlynx-proxy | image: https://hub.docker.com/r/edgd1er/nordlynx-proxy |
nordlynx-proxy | github: https://github.com/edgd1er/nordlynx-proxy |