0

I'm trying to connect a Raspberry Pi 3 to my VPN.
The VPN server is installed on a pfSense Apliance.

I followed the tutorial on this link to install and configure the VPN on the Raspberry Pi.

However, in place of the firewall files that the tutorial suggests, I put in the "/etc/openvpn" folder a file that I generated through the pfSense interface (.ovpn extension), in the VPN>OpenVPN>Client Export option.

After following all the installation steps and starting the VPN service, I get these errors in the system log:

System Log

1 Answers1

0

First you install openvpn sudo apt install openvpn

make your openvpn file from your pfsense server (client export) insert the text inside a file in: /etc/openvpn/client, like this: sudo nano /etc/openvpn/client/newfile.ovpn

Also you may autostart openvpn if you like Edit this file: sudo nano /etc/default/openvpn and uncomment, or remove, the “#” in front of AUTOSTART="all"

aboyum
  • 55
  • 7