L2TP Client: Linux: Difference between revisions
(→top: clean up) |
(Updated with a little troubleshooting info) |
||
Line 30: | Line 30: | ||
</ol> |
</ol> |
||
This should give you a new PPP device which encapsulates the L2TP connection. |
This should give you a new PPP device which encapsulates the L2TP connection. |
||
== Troubleshooting == |
|||
Logs are written /var/log/daemon.log |
|||
If you see "No such tunnel", you might want to try restarting the daemon |
Revision as of 10:51, 9 April 2020
Linux / xl2tpd
- Ensure the following kernel options are set or the corresponding modules are available:
CONFIG_PPPOL2TP
CONFIG_L2TP
- Install xl2tpd and pppd on your Linux router.
- Edit
/etc/xl2tpd/xl2tpd.conf
to contain the following:
[lac aaisp]
lns = l2tp.aaisp.net.uk
require authentication = no
pppoptfile = /etc/ppp/options.aaisp - Create
/etc/ppp/options.aaisp
containing the following (obviously change the name and password to match your L2TP login details):
+ipv6
ipv6cp-use-ipaddr
name xyz@a.X
password Your_xyz@A.X_password
noauth - Create the xl2tpd control file:
mkdir -p /var/run/xl2tpd
touch /var/run/xl2tpd/l2tp-control - Start the xl2tpd service (for systemd, use service command for older RC systems):
systemctl start xl2tpd
- Tell the daemon to connect to aaisp:
echo "c aaisp" > /var/run/xl2tpd/l2tp-control
This should give you a new PPP device which encapsulates the L2TP connection.
Troubleshooting
Logs are written /var/log/daemon.log If you see "No such tunnel", you might want to try restarting the daemon