Additionally I've installed another raspi and setting it up as OpenVPN Gateway (client).
Steps I've taken:
Code: Select all
sudo apt-get install openvpn
sudo systemctl enable openvpn
# transferred client.ovpn from PiVPN to raspi
sudo mv client.ovpn /etc/openvpn/client.conf
cd /etc/openvpn
sudo nano auth.txt
# added username and password to auth.txt
sudo chmod 600 /etc/openvpn/auth.txt
sudo nano /etc/openvpn/client.conf
# added "auth-user-pass /etc/openvpn/auth.txt" to client.conf
sudo service openvpn restart
Code: Select all
Broadcast message from root@raspberrypi (Fri 2018-11-09 19:47:11 CET):
Password entry required for 'Enter Private Key Password:' (PID 1632).
Please enter password with the systemd-tty-ask-password-agent tool!
... and how to enter it?