CentOS7.3にxl2tp1.3.8をインストールする方法

2018年2月10日

1.xl2tpdとlibreswanのインストール
#yum -y install libpcap-devel
#tar -zxvf xl2tpd-1.3.8.tar.gz
#cd xl2tpd-1.3.8
#make && make install

2.xl2tpd.confの設定
#vim /etc/xl2tpd/xl2tpd.conf`
修正内容
[global]
[lns default]
ip range = 172.100.1.100-172.100.1.150
local ip = 172.100.1.1
require chap = yes
refuse pap = yes
require authentication = yes
name = LinuxVPNserver
ppp debug = yes
pppoptfile = /etc/ppp/options.xl2tpd
length bit = yes

3.pppdの設定
#vim /etc/ppp/options.xl2tpd`
修正内容
ipcp-accept-local
ipcp-accept-remote
ms-dns 8.8.8.8
ms-dns xxx.xxx.0.3
ms-dns xxx.xxx.222.222
name xl2tpd
#noccp
auth
crtscts
idle 1800
mtu 1410
mru 1410
nodefaultroute
debug
lock
proxyarp
connect-delay 5000
refuse-pap
refuse-chap
refuse-mschap
require-mschap-v2
persist
logfile /var/log/xl2tpd.log

4.l2tpのユーザ、パスワードの設定
#vim /etc/ppp/chap-secrets`
修正内容
vpnuser * pass *

5.xl2tpdの起動
#/sbin/chkconfig xl2tpd on
#systemctl enable xl2tpd
#systemctl restart xl2tpd

Linux

Posted by arkgame