Здравствуйте! Почему-то возникает проблема настройки xl2tpd в Ubuntu Server 12.04. Файлы конфигурации я скопировал с Destcop-ной версии. в которой все работает прекрасно.
options.xl2tpdunit 0
name elsy_*****
remotename l2tp
ipparam flex
connect /bin/true
nodeflate
nobsdcomp
persist
mtu 1460
mru 1460
holdoff 10
maxfail 0
nopcomp
noauth
noaccomp
defaultroute
replacedefaultroute
chap-secrets# Secrets for authentication using CHAP
# client server secret IP addresses
login * password
xl2tpd (/etc/init.d/xl2tpd)#! /bin/sh
### BEGIN INIT INFO
# Provides: xl2tpd l2tpd
# Required-Start: $network $syslog $remote_fs
# Required-Stop: $network $syslog $remote_fs
# Should-Start: ipsec
# Should-Stop: ipsec
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: layer 2 tunelling protocol daemon
# Description: xl2tpd is usually used in conjunction with an ipsec
# daemon (such as openswan).
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/xl2tpd
NAME=xl2tpd
DESC=xl2tpd
test -x $DAEMON || exit 0
# Include xl2tpd defaults if available
if [ -f /etc/default/xl2tpd ] ; then
. /etc/default/xl2tpd
fi
PIDFILE=/var/run/$NAME.pid
set -e
case "$1" in
start)
###################################################
if !([ -f /var/run/xl2tpd/l2tp-control ]); then
mkdir -p /var/run/xl2tpd
touch /var/run/xl2tpd/l2tp-control
fi
###################################################
echo -n "Starting $DESC: "
test -d ${XL2TPD_RUN_DIR:-/var/run/xl2tpd} || mkdir -p ${XL2TPD_RUN_DIR:-/var/run/xl2tpd}
start-stop-daemon --start --quiet --pidfile $PIDFILE \
--exec $DAEMON -- $DAEMON_OPTS
echo "$NAME."
route add -host 10.255.255.254 gw шлюз_по_договору
route add -net 80.252.130.248/29 gw шлюз_по_договору
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --oknodo --stop --quiet --pidfile $PIDFILE \
--exec $DAEMON
echo "$NAME."
;;
force-reload)
test -d ${XL2TPD_RUN_DIR:-/var/run/xl2tpd} || mkdir -p ${XL2TPD_RUN_DIR:-/var/run/xl2tpd}
# check whether $DAEMON is running. If so, restart
start-stop-daemon --stop --test --quiet --pidfile \
$PIDFILE --exec $DAEMON \
&& $0 restart \
|| exit 0
;;
restart)
test -d ${XL2TPD_RUN_DIR:-/var/run/xl2tpd} || mkdir -p ${XL2TPD_RUN_DIR:-/var/run/xl2tpd}
echo -n "Restarting $DESC: "
start-stop-daemon --oknodo --stop --quiet --pidfile \
$PIDFILE --exec $DAEMON
sleep 1
start-stop-daemon --start --quiet --pidfile \
$PIDFILE --exec $DAEMON -- $DAEMON_OPTS
echo "$NAME."
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
xl2tpd.conf[global]
access control = yes
[lac flex]
lns = l2tp.flex.ru
redial = yes
redial timeout = 1
require chap = yes
require authentication = no
name = elsy_*******
ppp debug = yes
pppoptfile = /etc/ppp/options.xl2tpd
require pap = no
autodial = yes
tunnel rws = 8
tx bps =100000000
Запускаю командой:
sudo xl2tpd -DНачинает вылезать следующее:
http://yadi.sk/d/dYVPW5Xt5wGyWhttp://yadi.sk/d/d-7jOHvn5wH3Mhttp://yadi.sk/d/s6jWZm0f5vOnEhttps://forum.ubuntu.ru/index.php?topic=223466.msg1730290#msg1730290
Тема закрыта (п. 2.7. Правил форума).--andrew_bye