I've got an openvpn connection set up, which I basically always need to use. Is there a way to always make it connect whenever there is an internet connection?
Asked
Active
Viewed 1.2k times
1 Answers
3
Edit /etc/default/openvpn. Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo gedit /etc/default/openvpn
then Uncomment the AUTOSTART="all" line.
these steps are issued from this link : Starting OpenVPN client automatically at boot
save and close.
If a username/password is required,
edit the .conf file
edit auth-user-pass user-password-filename
Create a file containing:
username
password
save and close. reboot your system.

Kaylee
- 63
-
But if the connection is dropped and later restored, will this make it reconnect? – majorgear Jun 04 '22 at 04:50