Настроил инет! И снес систему. Затем вновь установил и снова настроил инет! :D Как бы потренировался. :-)
Сейчас такие параметры файлов. А вот вывод команд. Теперь возникло еще пара вопросов. :-)
Надо ли переделать скрипт bad_ip в формат .sh, а то приходится его в ручную запускать, так как он при старте xl2tpd не срабатывает по моему. Хотя поставил ему chmod +x.
Куда запихнуть команду route add gefault gw 10.97.136.1 metric 200 а то каждый раз при запуске системы чот касяк её набирать. Пробовал записывать в /etc/rc.d/network но чот мне кажется так неправильно.
Пакет net-tools установлен. Пробовал host tp.internet.beeline.ru, пишет нет такой команды. Вот что будет в ifconfig и route -n до и после поднятия xl2tpd. Также добавил скрипт от sig_wall в /etc/ppp/ip-up.d/ но чот тоже не помогло.
Первое время использовал только винду, потом краем уха услышал про линукс. И началось - был испробован десяток дистрибутивов, чуть ли ни каждый день сменялась бесконечная череда убунт, мандрив и прочих сусей, но окончательный выбор пал на убунту. Долго время провозившись в ней, захотелось подробностей работы системы. Таким макаром перешел на арч. Достаточно быстро разобравшись, оценил всю правильность концепции арча и остался доволен. Потом ушел в армию. Вернувшись снова установил арч. Щас вот сижу, вспоминаю как тут чо делается, вот инет никак не могу настроить. :-)
Здравствуйте! Никоим образом не получается у меня настроить подключение к интернету в корбине. Уже и тот способ запробовал, и этот. И бесполезно. Поэтому спрашиваю у вас - что сделал не так?
Конфиги руководящих файлов прилагаю.

/etc/rc.conf
#
# /etc/rc.conf - Main Configuration for Arch Linux
#
# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
LOCALE="ru_RU.UTF-8"
DAEMON_LOCALE="no"
HARDWARECLOCK="UTC"
TIMEZONE="Europe/Moscow"
KEYMAP="ru"
CONSOLEFONT="cyr-sun16"
CONSOLEMAP=
USECOLOR="yes"
MODULES=()
# Udev settle timeout (default to 30)
UDEV_TIMEOUT=30
# Scan for FakeRAID (dmraid) Volumes at startup
USEDMRAID="no"
# Scan for BTRFS volumes at startup
USEBTRFS="no"
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
interface=eth0
address=
netmask=
broadcast=
gateway=
# Setting this to "yes" will skip network shutdown.
# This is required if your root device is on NFS.
NETWORK_PERSIST="no"
DAEMONS=(hwclock syslog-ng network netfs crond gpm) 

/etc/xl2tpd/xl2tpd.conf
[global]
access control = yes
auth file = /etc/ppp/chap-secrets
[lac corbina]
lns = tp.internet.beeline.ru
redial = yes
redial timeout = 10
require chap = yes
require authentication = no
name = [email protected]
ppp debug = no
pppoptfile = /etc/ppp/options.xl2tpd
require pap = no
autodial = yes
tx bps = 100000000

/etc/ppp/options.xl2tpd
lcp-echo-interval 10
lcp-echo-failure 2
name [email protected]
remotename l2tp
ipparam corbina
connect /bin/true
mru 1460
mtu 1460
nodeflate
nobsdcomp
persist
maxfail 0
nopcomp
noaccomp
noauth

/etc/rc.d/xl2tpd
#!/bin/bash
# general config
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
    start)
        [ -d /var/run/xl2tpd ] || mkdir -p /var/run/xl2tpd
        stat_busy "Starting xl2tpd"
        /usr/sbin/xl2tpd
        if [ $? -gt 0 ]; then
            stat_fail
        else
            add_daemon xl2tpd
            stat_done
        fi
	route add -host tp.internet.beeline.ru gw 10.97.136.1
	route add -host 213.234.192.8 gw 10.97.136.1
	route add -host 85.21.192.3 gw 10.97.136.1
	sleep 1
	route del default
        ;;
    stop)
        stat_busy "Stopping xl2tpd"
	[ -f /var/run/xl2tpd.pid ] && kill `cat /var/run/xl2tpd.pid`
        if [ $? -gt 0 ]; then
            stat_fail
        else
	    rm -f /var/run/xl2tpd.pid
            rm_daemon xl2tpd
            stat_done
        fi
	route add default gw 10.97.136.1
        ;;
    restart)
        $0 stop
	sleep 1
        $0 start
        ;;
    *)
        echo "usage: $0 {start|stop|restart}"
	;;
esac
exit 0

/etc/ppp/chap-secrets
# Secrets for authentication using CHAP
# client	server	secret			IP addresses
[email protected] * mypass *

Часть /var/log/messages.log
Mar  1 22:56:18 localhost xl2tpd[824]: This binary does not support kernel L2TP.
Mar  1 22:56:18 localhost xl2tpd[825]: xl2tpd version xl2tpd-1.3.0 started on myhost PID:825
Mar  1 22:56:18 localhost xl2tpd[825]: Written by Mark Spencer, Copyright (C) 1998, Adtran, Inc.
Mar  1 22:56:18 localhost xl2tpd[825]: Forked by Scott Balmos and David Stipp, (C) 2001
Mar  1 22:56:18 localhost xl2tpd[825]: Inherited by Jeff McAdams, (C) 2002
Mar  1 22:56:18 localhost xl2tpd[825]: Forked again by Xelerance (www.xelerance.com) (C) 2006
Mar  1 22:56:18 localhost xl2tpd[825]: Listening on IP address 0.0.0.0, port 1701
Mar  1 22:56:18 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:56:18 localhost xl2tpd[825]: Connection established to 89.179.17.27, 1701.  Local: 13664, Remote: 65281 (ref=0/0).
Mar  1 22:56:18 localhost xl2tpd[825]: Calling on tunnel 13664
Mar  1 22:56:18 localhost xl2tpd[825]: Call established with 89.179.17.27, Local: 58284, Remote: 5693, Serial: 1 (ref=0/0)
Mar  1 22:56:18 localhost pppd[830]: pppd 2.4.5 started by letarch, uid 0
Mar  1 22:56:18 localhost kernel: [  371.098203] PPP generic driver version 2.4.2
Mar  1 22:56:18 localhost pppd[830]: Serial connection established.
Mar  1 22:56:18 localhost pppd[830]: Using interface ppp0
Mar  1 22:56:18 localhost pppd[830]: Connect: ppp0 <--> /dev/pts/2
Mar  1 22:56:40 localhost xl2tpd[825]: handle_avps:  don't know how to handle atribute 46.
Mar  1 22:56:40 localhost xl2tpd[825]: handle_avps:  don't know how to handle atribute 104.
Mar  1 22:56:40 localhost xl2tpd[825]: control_finish: Connection closed to 89.179.17.27, serial 1 (Locally generated disconnect)
Mar  1 22:56:40 localhost pppd[830]: Terminating on signal 15
Mar  1 22:56:40 localhost pppd[830]: Modem hangup
Mar  1 22:56:40 localhost pppd[830]: Connection terminated.
Mar  1 22:56:40 localhost pppd[830]: Exit.
Mar  1 22:56:50 localhost xl2tpd[825]: Calling on tunnel 13664
Mar  1 22:56:55 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 13664.  Closing.
Mar  1 22:56:55 localhost xl2tpd[825]: Connection 65281 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 22:57:05 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:57:08 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:57:10 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 39229.  Closing.
Mar  1 22:57:10 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.78, port 1701 (Timeout)
Mar  1 22:57:15 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:57:16 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:57:24 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:57:25 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:57:30 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 9581.  Closing.
Mar  1 22:57:30 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.204, port 1701 (Timeout)
Mar  1 22:57:32 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:57:35 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:57:40 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:57:45 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:57:48 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:57:50 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 42773.  Closing.
Mar  1 22:57:50 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.215, port 1701 (Timeout)
Mar  1 22:57:55 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:57:56 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:58:04 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:58:05 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:58:10 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 63153.  Closing.
Mar  1 22:58:10 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.78, port 1701 (Timeout)
Mar  1 22:58:12 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:58:15 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:58:20 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:58:25 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:58:28 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:58:30 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 24355.  Closing.
Mar  1 22:58:30 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.202, port 1701 (Timeout)
Mar  1 22:58:35 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:58:36 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:58:44 localhost xl2tpd[825]: Can not find tunnel 13664 (refhim=0)
Mar  1 22:58:45 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:58:50 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 10116.  Closing.
Mar  1 22:58:50 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 22:58:55 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:59:05 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:59:10 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 22814.  Closing.
Mar  1 22:59:10 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.120, port 1701 (Timeout)
Mar  1 22:59:15 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:59:26 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:59:31 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 26918.  Closing.
Mar  1 22:59:31 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.26, port 1701 (Timeout)
Mar  1 22:59:36 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 22:59:46 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 22:59:51 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 63361.  Closing.
Mar  1 22:59:51 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 22:59:56 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:00:06 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:00:11 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 61380.  Closing.
Mar  1 23:00:11 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.194, port 1701 (Timeout)
Mar  1 23:00:16 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:00:26 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:00:31 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 47195.  Closing.
Mar  1 23:00:31 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.26, port 1701 (Timeout)
Mar  1 23:00:36 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:00:46 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:00:51 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 37362.  Closing.
Mar  1 23:00:51 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.206, port 1701 (Timeout)
Mar  1 23:00:56 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:01:06 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:01:11 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 30946.  Closing.
Mar  1 23:01:11 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.216, port 1701 (Timeout)
Mar  1 23:01:16 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:01:26 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:01:31 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 53368.  Closing.
Mar  1 23:01:31 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 23:01:36 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:01:46 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:01:51 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 36859.  Closing.
Mar  1 23:01:51 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.78, port 1701 (Timeout)
Mar  1 23:01:56 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:02:06 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:02:11 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 567.  Closing.
Mar  1 23:02:11 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 23:02:16 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:02:26 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:02:31 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 64795.  Closing.
Mar  1 23:02:31 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.201, port 1701 (Timeout)
Mar  1 23:04:06 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:04:11 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 30193.  Closing.
Mar  1 23:04:11 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.201, port 1701 (Timeout)
Mar  1 23:04:16 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:04:26 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:04:31 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 23967.  Closing.
Mar  1 23:04:31 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.26, port 1701 (Timeout)
Mar  1 23:04:36 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:04:46 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:04:51 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 2265.  Closing.
Mar  1 23:04:51 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.126, port 1701 (Timeout)
Mar  1 23:04:56 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:05:07 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:05:12 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 41301.  Closing.
Mar  1 23:05:12 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.202, port 1701 (Timeout)
Mar  1 23:05:17 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:05:27 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:05:32 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 3183.  Closing.
Mar  1 23:05:32 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.198, port 1701 (Timeout)
Mar  1 23:05:37 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:05:47 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:05:52 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 59725.  Closing.
Mar  1 23:05:52 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 23:05:57 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:06:07 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:06:12 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 8061.  Closing.
Mar  1 23:06:12 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.26, port 1701 (Timeout)
Mar  1 23:06:17 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:06:27 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:06:32 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 2110.  Closing.
Mar  1 23:06:32 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.78, port 1701 (Timeout)
Mar  1 23:06:37 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:06:47 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:06:52 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 41118.  Closing.
Mar  1 23:06:52 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 23:06:57 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:07:07 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:07:12 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 63619.  Closing.
Mar  1 23:07:12 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.78, port 1701 (Timeout)
Mar  1 23:07:17 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:07:27 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:07:32 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 18715.  Closing.
Mar  1 23:07:32 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.26, port 1701 (Timeout)
Mar  1 23:07:37 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:07:47 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:07:52 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 61482.  Closing.
Mar  1 23:07:52 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.205, port 1701 (Timeout)
Mar  1 23:07:57 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:08:07 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:08:12 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 1641.  Closing.
Mar  1 23:08:12 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.218, port 1701 (Timeout)
Mar  1 23:08:17 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:08:27 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:08:32 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 40801.  Closing.
Mar  1 23:08:32 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.200, port 1701 (Timeout)
Mar  1 23:08:37 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:08:47 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:08:52 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 28528.  Closing.
Mar  1 23:08:52 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.78, port 1701 (Timeout)
Mar  1 23:08:57 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:09:07 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:09:12 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 11247.  Closing.
Mar  1 23:09:12 localhost xl2tpd[825]: Connection 0 closed to 78.107.38.198, port 1701 (Timeout)
Mar  1 23:09:17 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:09:27 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:09:32 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 52104.  Closing.
Mar  1 23:09:32 localhost xl2tpd[825]: Connection 0 closed to 89.179.17.27, port 1701 (Timeout)
Mar  1 23:09:37 localhost xl2tpd[825]: Will redial in 10 seconds
Mar  1 23:09:47 localhost xl2tpd[825]: Connecting to host tp.internet.beeline.ru, port 1701
Mar  1 23:09:52 localhost xl2tpd[825]: Maximum retries exceeded for tunnel 26112.  Closing.
Mar  1 23:09:52 localhost xl2tpd[825]: Connection 0 closed to 85.21.230.78, port 1701 (Timeout)

А вот что происходит при выполнении команд:
ping tp.internet.beeline.ru
connect: Network is unreachable
:: Starting Network                                                      [DONE] 
[[email protected] ~]$ sudo /etc/rc.d/xl2tpd start
:: Starting xl2tpd                                                       [FAIL] 
tp.internet.beeline.ru: Host name lookup failure
SIOCDELRT: No such process
[[email protected] ~]$ 

Подскажите, пожалуйста, куда копать, где искать решение, а то я уж совсем отчаялся…