I’ve been trying to setup my erx as an open vpn client connected to private internet access’s service. I’ve followed this guide (linked here) and am stuck at a point at which I cannot figure how to enable vtun0. Here’s what I’ve done.
- Download the .ovpn file from PIA.
- Placed the ca.crt, crl.pem, US-Texas.ovpn and user-pas-auth.txt in /config/auth
- Issued command “set interfaces openvpn vtun0 config-file /config/auth/US_Texas.ovpn”
- Issued command “set interfaces openvpn vtun0 description ‘Private Internet Access VPN’
- Issued command “commit” and “save” then rebooted erx.
- Once rebooted, logged back into erx and issued command “set interfaces openvpn vtun0 enabled” and this is where I’m stuck.
I’m receiving the error message “The specified configuration node is not valid. Set failed.”
I cannot figure out why I’m receiving this error message to save my life. Any ideas? Thanks.
Here’s my .ovpn file contents:
client
dev-type tun
proto udp
remote us-texas.privateinternetaccess.com 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca /config/auth/ca.crt
tls-client
remote-cert-tls server
auth-user-pass /config/auth/auth-user-pass.txt
comp-lzo
verb 1
reneg-sec 0
crl-verify /config/auth/crl.pem
Here’s the contents of my /config/auth folder:
giant22000@ubnt:~$ sudo su -
root@ubnt:~# ls /config/auth
US_Texas.ovpn auth-user-pass.txt ca.crt crl.pem
root@ubnt:~#