Download and install OpenVPN and the NetworkManager plugin with your package manager.
sudo apt-get install openvpn resolvconf network-manager-openvpn network-manager-openvpn-gnome
sudo yum install openvpn networkmanager-openvpn
sudo pacman -S openvpn networkmanager-openvpn
You will also need our CA certificate, available here: https://vpn.ccrypto.org/ca.crt
You can right click on that link and save the file or download it differently.
It will be required to connect, so make sure to not delete it later.
Create a new connection and choose the type OpenVPN.
You will need to fill in the following VPN configuration:
Tab VPN
gw.random.204vpn.net
for a random server, or pick one in the server list.Tab VPN, click on Advanced, then the first General tab
Save the new connection and connect to it.
Download and install OpenVPN with your package manager.
sudo apt-get install openvpn
sudo yum install openvpn
sudo pacman -S openvpn
Download the .ovpn file you need in your account and put
it in /etc/openvpn/
.
ie: /etc/openvpn/ccrypto.conf
Start the OpenVPN service:
sudo systemctl start openvpn@ccrypto
(Optional) To make OpenVPN start at boot,
create a text file anywhere and write your username and
password inside, on two lines.
Then, add at the end of your ccrypto.conf file:
auth-user-pass /path/to/the/file.txt
And enable the systemd service :
systemctl enable openvpn@ccrypto
For additional security, you can make sure only root is be able to access this file:
sudo chown root:root /path/to/the/file.txt
sudo chmod 600 /path/to/the/file.txt
Download and install OpenVPN with your package manager.
sudo apt-get install openvpn resolvconf
sudo yum install openvpn
Download the .ovpn file you need in your account and put
it in /etc/openvpn/
.
ie: /etc/openvpn/ccrypto.conf
Start the OpenVPN service:
sudo service openvpn start ccrypto
(Optional) To make OpenVPN start at boot,
create a text file anywhere and write your username and
password inside, on two lines.
Then, add at the end of your ccrypto.conf file:
auth-user-pass /path/to/the/file.txt
And add the configuration file name to the AUTOSTART list in /etc/default/openvpn
(you can add it at the end):
AUTOSTART="ccrypto"
For additional security, you can make sure only root is be able to access this file:
sudo chown root:root /path/to/the/file.txt
sudo chmod 600 /path/to/the/file.txt