OpenVPN client with user/pass authentication

Not specific to the use of OVPN files but I do this to permit use of VyprVPN through my VyOS 1.1.7 router.

This is just a note I left for myself.

For OpenVPN to work with VyprVPN edits are made to:

/opt/vyatta/share/perl5/Vyatta/OpenVPN/Config.pm

Code is commented out (using if(0) ) between Line 701 and Line 715 - this removes
a check when configuration is committed so that VyOS doesn’t complain about
tls cert-file and tls key-file.
[i]This is also documented here: http://forum.goldenfrog.com/t/edgemax-support/644/6[/i]

And these are the commands I use to configure the connection.

set interfaces openvpn vtun0 firewall in name ‘VPN-IN’

set interfaces openvpn vtun0 firewall local name ‘VPN-LOCAL’
set interfaces openvpn vtun0 mode ‘client’
set interfaces openvpn vtun0 openvpn-option ‘–verb 3’
set interfaces openvpn vtun0 openvpn-option ‘–comp-lzo’
set interfaces openvpn vtun0 openvpn-option ‘–auth-user-pass /config/auth/secret.txt’
set interfaces openvpn vtun0 openvpn-option ‘–link-mtu 1542’
set interfaces openvpn vtun0 openvpn-option ‘–script-security 2’
set interfaces openvpn vtun0 protocol ‘udp’
set interfaces openvpn vtun0 remote-host ‘uk1.vpn.giganews.com
set interfaces openvpn vtun0 remote-port ‘1194’
set interfaces openvpn vtun0 tls ca-cert-file ‘/config/auth/ca.vyprvpn.com.crt’