How to use NordVPN on Linux
NordVPN Review
Ranks #2nd out of 35 VPNs
- Based in Panama
- Speed test: 74 Mbps out of 100 Mbps
- Usability: 5/5
- Logging policy: No logs are being kept.
- Netflix: Yes.
- Torrenting: Yes.
- Six simultaneous connections
- Servers in 70 countries
- Choice of IKEv2, OpenVPN, PPTP, L2TP, and IPSec VPN protocols
- Double VPN
- Tor over VPN
- CyberSec anti-malwate protection
- No IP or DNS Leaks Found
- Cost: $3.29/mo and up on
NordVPN.com
Install the necessary packages
How to connect to OpenVPN via shell:
Open terminal (keyboard shortcut: Ctrl + Alt + T).
Install OpenVPN client by entering:
1
sudo apt-get install openvpn
Navigate to OpenVPN configuration directory with command:
1
cd /etc/openvpn
Download OpenVPN configuration files with command:
1
sudo wget https://downloads.nordcdn.com/configs/archives/servers/ovpn.zip
- In case you will get
ERROR: The certificate ofnordvpn.com’ is not trusted., please installca-certificates` package with command:1
sudo apt-get install ca-certificates
- If you do not have
unzippackage installed, download it by typing in:1
sudo apt-get install unzip
- Extract
ovpn.zipwith command:1
sudo unzip ovpn.zip
- Remove files which will be no longer used:
1
sudo rm ovpn.zip
- Depending on the connection protocol you want to be using(TCP or UDP),
UDP is recommended, you can do either one of these commands:or1
cd ovpn_udp
1
cd ovpn_tcp
9.Now, to see the list of all available servers, simply enter the
1 | ls -al |
command and it will print full configuration file list.
10. Choose a server which you would like to connect to. This link could help you: NordVPN servers recommended
11. Start OpenVPN with a chosen configuration by entering:
1 | sudo openvpn [file name] |
For example:
1 | sudo openvpn us842.nordvpn.com.udp.ovpn |
- OpenVPN will ask you for credentials, so simply enter those in with your NordVPN account credentials.
- You have successfully connected to VPN. To disconnect from the OpenVPN connection simply open terminal and press Ctrl + C on your keyboard.
