I need to connect to a L2TP IPsec VPN using Ubuntu 14.10. I previously used L2TP IPsec VPN Manager 1.0.9 from Werner Jaeger in Ubuntu 14.04, and it worked great, but that no longer appears to be supported in 14.10. I have xl2tpd installed. I no longer see the option to add a L2TP Ipsec VPN connection under the VPN Connections menu in Network Connections. Any help or guidance is appreciated.
Asked
Active
Viewed 7.9k times
2 Answers
19
The lt2p-ipsec-vpn package was deprecated along with OpenSwan. Ubuntu has replaced OpenSwan with StrongSwan, which is available in the main, along with a corresponding network manager plugin in universe.
apt-get install strongswan network-manager-strongswan
Ben Grimm
- 1,430
0
StrongSwan should work with xl2tpd
I know it's a best practice to paste the actual scripts but it's quite a bit. And honestly a link here would have saved me some trouble so hopefully someone finds this useful...
http://www.jasonernst.com/2016/06/21/l2tp-ipsec-vpn-on-ubuntu-16-04/ https://www.rapidvpn.com/setup-vpn-l2tp-ubuntu https://gist.github.com/psanford/42c550a1a6ad3cb70b13e4aaa94ddb1c
Maybe after I'm done I'll share the final script.
EDIT
A few implementation notes
- I had to remove the
lockkeyword from /etc/ppp/options.l2tpd.client - Username and password should be specified when
echointo /var/run/xl2tpd/l2tp-control rightsubnet=0.0.0.0/0was added to the connection in /etc/ipsec.conf even though mine was a site-to-site VPNip linklists your devices. There should be apppNin the list where N is a number from0- For site-to-site I used the following to add a new route...
ip route add 192.168.192.0/24 dev ppp0
kervin
- 1,451