diff options
Diffstat (limited to 'network/nordvpn/README')
-rw-r--r-- | network/nordvpn/README | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/network/nordvpn/README b/network/nordvpn/README index 7e00584469..b4f3ba5626 100644 --- a/network/nordvpn/README +++ b/network/nordvpn/README @@ -5,6 +5,12 @@ More than 5000 servers worldwide. No logs of your online activity. Secure up to 6 devices with a single account. Access online content securely, with no restrictions. +This script requires a 'nordvpn' group to exist before running. +You can create this group like this (Run these as root): + groupadd -g 373 nordvpn + usermod -aG nordvpn $USER (Replace $USER with your username) +Then log out of the system and login again. + The following can be used to start/stop NordVPN automatically: /etc/rc.d/rc.local if [ -x /etc/rc.d/rc.nordvpn ]; then @@ -17,13 +23,17 @@ The following can be used to start/stop NordVPN automatically: fi NOTE: NordVPN has implemented NordLynx (WireGuard protocol) into the -app. It is still under heavy development. You can switch to -NordLynx with the following command: +app. Dependencies already satisfied at full install. +In case of any issue, you need to reinstall following packages: + +wireguard-linux-compat +wireguard-tools - 'nordvpn set technology NordLynx' +Then you can switch to NordLynx with the following command: +'nordvpn set technology NordLynx' And connect using: - 'nordvpn c' +'nordvpn c' You can always switch back to OpenVPN using this command: - 'nordvpn set technology OpenVPN' +'nordvpn set technology OpenVPN' |