Step 1 — Install OpenVPN
On Linux, there are several ways to use OpenVPN. This guide uses the widely-supported open-source CLI openvpn package, but any OpenVPN installation or Network Manager that supports OpenVPN configurations will work. If you hit trouble, look up an OpenVPN installation guide specific to your distribution.
Use the appropriate command for your distribution:
- Ubuntu / Debian:
sudo apt-get install openvpn - Fedora:
sudo dnf install openvpn - CentOS / RHEL:
sudo yum install openvpn - Arch Linux:
sudo pacman -S openvpn
Step 2 — Download an Arresti VPN connection profile
After OpenVPN is installed, you need a connection profile tied to your Arresti VPN account.
- Open a web browser.
- Go to the Arresti VPN downloads page: portal.arresti.com/downloads.php.
- Log in with your account credentials.
- Scroll down to the list of server locations and choose one.
- Save the resulting
.ovpnfile to your Linux system.
Step 3 — Manually start the connection
To start a connection profile manually, run:
sudo openvpn --config /path/to/your/configuration/profile.ovpn
For example:
sudo openvpn --config /path/to/AUSSydneyDirect.ovpn
You can verify the status of your connection at whatismyipaddress.com — the location shown should be the VPN exit, not your real one.
Optional: auto-login via the service daemon
To set up an auto-login connection that survives reboots:
- Place the
client.ovpnfile in/etc/openvpn/. - Rename it to end with
.conf. For example:sudo mv /etc/openvpn/client.ovpn /etc/openvpn/client.conf -
Enable the OpenVPN service to start at boot:
systemd (Ubuntu, Debian, Fedora, CentOS, RHEL):
sudo systemctl enable openvpn@client
sudo systemctl start openvpn@clientSysVinit (older distributions):
sudo service openvpn start
sudo chkconfig openvpn on - Reboot to apply changes:
sudo reboot
After reboot, the auto-login profile will be picked up automatically. Verify with ifconfig — you should see a tun0 network adapter listed.
Stuck somewhere? Send our support team a quick message and we'll get back to you within one business day.