Announcement

Collapse
No announcement yet.

Выход в интернет через VPN протокол pptp

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Выход в интернет через VPN протокол pptp

    Выход в интернет через VPN протокол pptp



    1. В первую очередь убедиться, в поддержке протокола PPP в ядре Вашей ОС.


    Следующие опции обязательно должны быть включены:


    Code:
    PPP (point-to-point protocol) support 
    PPP support for async serial ports 
    PPP support for sync tty ports

    Если у вас установленно дефолтное ядро, то скорее всего поддержка протокола PPP уже включена в нем. Об этом можно узнать из конфигурационного файла поставляемого с ядром при помощи команды:


    Code:
    $cat config | grep PPP

    Конфигурационный файл ядра config обычно находится в каталоге /boot, если Вы используете ядро установленное в систему по умолчанию. Если у Вас имеется поддержка протокола PPP, то появятся следующие строчки:


    Code:
    CONFIG_PPP=m
    CONFIG_PPP_ASYNC=m
    CONFIG_PPP_SYNC_TTY=m

    m - обозначает что поддержка PPP собрана в виде модуля. y - поддержка PPP включена непосредственно в ядро. Если в начале этих строк есть символ решетки - #, то у Вас отсутствует поддержка PPP, следовательно необходимо пересобрать ядро.
    2. Скачайте себе pptp клиента для Linux.


    Его можно найти либо по ссылке


    Code:
     http://pptpclient.sourceforge.net/

    В данном архиве предоставлен pptp-клиент в виде исходных кодов. На сайте PPTP Client вы можете скачать его в любом удобном для Вас формате.
    Примечание: возможно в Вашей системе уже установлен pptp клиент, либо имеется в составе дистрибутива. Об этом можно узнать из поставляемой с системой документации, либо конфигурационных файлов Вашей системы.
    Внимание! Для Debian 5.0 и выше действия указанные в пункте 1 выполнять не требуется. Установка pptp клиента в Debian а также Дебиано подобных системах Убунту, Ксубунту, Линукс минт и прочии
    выполняется следующей коммандой apt-get install pptp-linux


    3. Настройка PPTP подключения.


    Переходим в каталог /etc/ppp и создаем, либо редактируем файл chap-secrets. Он должен содержать следующую информацию:


    Code:
    # Secrets for authentication using CHAP
    # client     server     secret     IP addresses
    login        *          passwd     *

    Где login - Ваш логин используемый при подключении VPN; passwd - пароль для подключения. Строки начинающиеся с символа "#" являются коментариями и не обязательны.
    После этого переходим в каталог /etc/ppp/peers (создаем его, если не существует) и создаем файл cifra1. Название файла может быть любым, но не забывайте, что при активизации подключения командой pppd Вы используете это имя в качестве аргумента. Данный файл должен содержать опции PPTP подключения. Пишем в него следующие строки:


    Code:
     
    pty "pptp 10.28.11.1 --nolaunchpppd"
    name login
    remotename cifra1
    lock
    noauth
    defaultroute
    nobsdcomp
    nodeflate

    Не забудьте, если это необходимо, заменить pptp 10.28.11.1 на адрес соответствующий вашему подключению (например, central.ultranet.ru).
    Слово login обязательно замените на свой VPN-логин.
    Примечание: опция defaultroute означает, что после активации подключения, оно автоматически установится у Вас в маршрут по умолчанию. Поэтому желательно настроить маршрутизацию для локальной сети отдельно, при помощи команды route.


    4. Подключение и проверка соединения.


    Для подключения VPN-соединения необходимо выполнить команду:


    Code:
    #pppd call vpn_connect

    Примечание: если при создании файла содержащего опции подключения Вы задали название отличное от vpn_connect, то не забудьте заменить его в аргументе команды pppd.
    Проверить удачность подключения можно при помощи команды ifconfig:


    Code:
    root@gw0:~# ifconfig
    eth0      Link encap:Ethernet  HWaddr 50:e5:49:24:1f:cc
              inet addr:10.15.10.1  Bcast:10.15.10.7  Mask:255.255.255.248
              inet6 addr: 2001:470:71:1f9::/64 Scope:Global
              inet6 addr: fe80::52e5:49ff:fe24:1fcc/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:15581709 errors:0 dropped:0 overruns:0 frame:0
              TX packets:17230636 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:3529689316 (3.2 GiB)  TX bytes:8774536811 (8.1 GiB)
              Interrupt:27 Base address:0xc000
    
    
    eth1      Link encap:Ethernet  HWaddr 00:1c:23:87:86:ea
              inet addr:10.28.11.36  Bcast:10.28.11.255  Mask:255.255.255.0
              inet6 addr: fe80::21c:23ff:fe87:86ea/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:22309860 errors:0 dropped:0 overruns:0 frame:0
              TX packets:22597991 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:9728148983 (9.0 GiB)  TX bytes:4635113022 (4.3 GiB)
    
    
    lo        Link encap:Local Loopback
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:243736 errors:0 dropped:0 overruns:0 frame:0
              TX packets:243736 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:31021579 (29.5 MiB)  TX bytes:31021579 (29.5 MiB)
    
    
    ppp0      Link encap:Point-to-Point Protocol
              inet addr:81.25.59.234  P-t-P:10.7.3.5  Mask:255.255.255.255
              UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
              RX packets:2553454 errors:0 dropped:0 overruns:0 frame:0
              TX packets:2571550 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:3
              RX bytes:424695516 (405.0 MiB)  TX bytes:551524268 (525.9 MiB)

    Если вы увидели подобную информацию, то можете проверить возможность передачи данных через созданное подключение при помощи команды ping. На случай возникновения возможных проблем с настройками маршрутизации в Вашей системе, рекомендуется выполнить ping с опцией -I:
    #ping 8.8.8.8 -I ppp0
    Где ppp0 - имя созданного pptp интерфейса. Возможно в Вашей системе оно окажется другим. Например ppp1, ppp2 и т.д. Если связь удачно установлена, то вы будете получать ответы от узла заданного в аргументе команды ping.


    Если по какой-то причине после выполнения команды pppd call vpn_connect в системе не появился интерфейс ppp0 (либо любой другой ppp), т.е. его не видно в выводе команды ifconfig , то рекомендуется выполнить команду:
    #pppd call vpn_connect debug logfd 2 nodetach
    В результате Вы увидите возникающие ошибки, и сможете попробовать их устранить.
    Посмотреть информацию о статусе соединения и событиях можно следующей командой.


    Code:
     grep -e pptp -a -e pppd /var/log/messages

    В ответ на консоль будет выведена следующая информация.


    Code:
    root@gw0:~# grep -e pptp -a -e pppd /var/log/messages
    Oct  3 16:39:19 gw0 pppd[4030]: pppd 2.4.5 started by root, uid 0
    Oct  3 16:39:19 gw0 pppd[4030]: Using interface ppp0
    Oct  3 16:39:19 gw0 pppd[4030]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 16:39:21 gw0 pppd[4030]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 16:39:21 gw0 pppd[4030]: Modem hangup
    Oct  3 16:39:21 gw0 pppd[4030]: Connection terminated.
    Oct  3 16:39:21 gw0 pppd[4030]: Exit.
    Oct  3 16:40:03 gw0 pppd[4053]: pppd 2.4.5 started by root, uid 0
    Oct  3 16:40:03 gw0 pppd[4053]: Using interface ppp0
    Oct  3 16:40:03 gw0 pppd[4053]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 16:40:04 gw0 pppd[4053]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 16:40:05 gw0 pppd[4053]: Modem hangup
    Oct  3 16:40:05 gw0 pppd[4053]: Connection terminated.
    Oct  3 16:40:05 gw0 pppd[4053]: Exit.
    Oct  3 16:44:26 gw0 pppd[4353]: pppd 2.4.5 started by root, uid 0
    Oct  3 16:44:26 gw0 pppd[4353]: Using interface ppp0
    Oct  3 16:44:26 gw0 pppd[4353]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 16:44:27 gw0 pppd[4353]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 16:44:27 gw0 pppd[4353]: Modem hangup
    Oct  3 16:44:27 gw0 pppd[4353]: Connection terminated.
    Oct  3 16:44:27 gw0 pppd[4353]: Exit.
    Oct  3 16:52:11 gw0 pppd[4118]: pppd 2.4.5 started by root, uid 0
    Oct  3 16:52:11 gw0 pppd[4118]: Using interface ppp0
    Oct  3 16:52:11 gw0 pppd[4118]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 16:52:13 gw0 pppd[4118]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 16:52:13 gw0 pppd[4118]: Modem hangup
    Oct  3 16:52:13 gw0 pppd[4118]: Connection terminated.
    Oct  3 16:52:13 gw0 pppd[4118]: Exit.
    Oct  3 16:57:29 gw0 pppd[4323]: pppd 2.4.5 started by root, uid 0
    Oct  3 16:57:29 gw0 pppd[4323]: Using interface ppp0
    Oct  3 16:57:29 gw0 pppd[4323]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 16:57:31 gw0 pppd[4323]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 16:57:31 gw0 pppd[4323]: Terminating on signal 15
    Oct  3 16:57:34 gw0 pppd[4323]: Connection terminated.
    Oct  3 16:57:35 gw0 pppd[4323]: Modem hangup
    Oct  3 16:57:35 gw0 pppd[4323]: Exit.
    Oct  3 16:59:03 gw0 pppd[4450]: pppd 2.4.5 started by root, uid 0
    Oct  3 16:59:03 gw0 pppd[4450]: Using interface ppp0
    Oct  3 16:59:03 gw0 pppd[4450]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 16:59:05 gw0 pppd[4450]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 16:59:05 gw0 pppd[4450]: Terminating on signal 15
    Oct  3 16:59:08 gw0 pppd[4450]: Connection terminated.
    Oct  3 16:59:09 gw0 pppd[4450]: Modem hangup
    Oct  3 16:59:09 gw0 pppd[4450]: Exit.
    Oct  3 17:00:22 gw0 pppd[4606]: pppd 2.4.5 started by root, uid 0
    Oct  3 17:00:22 gw0 pppd[4606]: Using interface ppp0
    Oct  3 17:00:22 gw0 pppd[4606]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 17:00:23 gw0 pppd[4606]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 17:00:24 gw0 pppd[4606]: Modem hangup
    Oct  3 17:00:24 gw0 pppd[4606]: Connection terminated.
    Oct  3 17:00:24 gw0 pppd[4606]: Exit.
    Oct  3 17:32:35 gw0 pppd[6284]: pppd 2.4.5 started by root, uid 0
    Oct  3 17:32:35 gw0 pppd[6284]: Using interface ppp0
    Oct  3 17:32:35 gw0 pppd[6284]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 17:32:37 gw0 pppd[6284]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 17:32:37 gw0 pppd[6284]: Modem hangup
    Oct  3 17:32:37 gw0 pppd[6284]: Connection terminated.
    Oct  3 17:32:37 gw0 pppd[6284]: Exit.
    Oct  3 17:34:51 gw0 pppd[4016]: pppd 2.4.5 started by root, uid 0
    Oct  3 17:34:51 gw0 pppd[4016]: Using interface ppp0
    Oct  3 17:34:51 gw0 pppd[4016]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 17:34:52 gw0 pppd[4016]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 17:34:52 gw0 pppd[4016]: Modem hangup
    Oct  3 17:34:52 gw0 pppd[4016]: Connection terminated.
    Oct  3 17:34:52 gw0 pppd[4016]: Exit.
    Oct  3 18:10:52 gw0 pppd[6033]: pppd 2.4.5 started by root, uid 0
    Oct  3 18:10:52 gw0 pppd[6033]: Using interface ppp0
    Oct  3 18:10:52 gw0 pppd[6033]: Connect: ppp0 <--> /dev/pts/3
    Oct  3 18:10:53 gw0 pppd[6033]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 18:10:53 gw0 pppd[6033]: Modem hangup
    Oct  3 18:10:53 gw0 pppd[6033]: Connection terminated.
    Oct  3 18:10:53 gw0 pppd[6033]: Exit.
    Oct  3 18:12:01 gw0 pppd[6657]: pppd 2.4.5 started by root, uid 0
    Oct  3 18:12:01 gw0 pppd[6657]: Using interface ppp0
    Oct  3 18:12:01 gw0 pppd[6657]: Connect: ppp0 <--> /dev/pts/3
    Oct  3 18:12:02 gw0 pppd[6657]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 18:12:02 gw0 pppd[6657]: Modem hangup
    Oct  3 18:12:02 gw0 pppd[6657]: Connection terminated.
    Oct  3 18:12:02 gw0 pppd[6657]: Exit.
    Oct  3 18:12:34 gw0 pppd[6677]: pppd 2.4.5 started by root, uid 0
    Oct  3 18:12:34 gw0 pppd[6677]: Using interface ppp0
    Oct  3 18:12:34 gw0 pppd[6677]: Connect: ppp0 <--> /dev/pts/3
    Oct  3 18:12:35 gw0 pppd[6677]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 18:12:35 gw0 pppd[6677]: Modem hangup
    Oct  3 18:12:35 gw0 pppd[6677]: Connection terminated.
    Oct  3 18:12:35 gw0 pppd[6677]: Exit.
    Oct  3 19:25:49 gw0 pppd[9323]: pppd 2.4.5 started by root, uid 0
    Oct  3 19:25:49 gw0 pppd[9323]: Using interface ppp0
    Oct  3 19:25:49 gw0 pppd[9323]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 19:25:52 gw0 pppd[9323]: LCP terminated by peer (peer refused to authenticate)
    Oct  3 19:25:52 gw0 pppd[9323]: Terminating on signal 15
    Oct  3 19:25:55 gw0 pppd[9323]: Connection terminated.
    Oct  3 19:25:56 gw0 pppd[9323]: Modem hangup
    Oct  3 19:25:56 gw0 pppd[9323]: Exit.
    Oct  3 19:41:59 gw0 pppd[10023]: pppd 2.4.5 started by root, uid 0
    Oct  3 19:41:59 gw0 pppd[10023]: Using interface ppp0
    Oct  3 19:41:59 gw0 pppd[10023]: Connect: ppp0 <--> /dev/pts/4
    Oct  3 19:42:02 gw0 pppd[10023]: CHAP authentication succeeded
    Oct  3 19:42:02 gw0 pppd[10023]: local  IP address 81.25.59.234
    Oct  3 19:42:02 gw0 pppd[10023]: remote IP address 10.7.3.5
    Oct  3 19:43:21 gw0 pppd[10023]: Modem hangup
    Oct  3 19:43:21 gw0 pppd[10023]: Connect time 1.4 minutes.
    Oct  3 19:43:21 gw0 pppd[10023]: Sent 107788 bytes, received 0 bytes.
    Oct  3 19:43:21 gw0 pppd[10023]: Connection terminated.
    Oct  3 19:43:23 gw0 pppd[10023]: Exit.
    Oct  3 19:45:38 gw0 pppd[10867]: pppd 2.4.5 started by root, uid 0
    Oct  3 19:45:38 gw0 pppd[10867]: Using interface ppp0
    Oct  3 19:45:38 gw0 pppd[10867]: Connect: ppp0 <--> /dev/pts/4
    Oct  3 19:45:39 gw0 pppd[10867]: CHAP authentication succeeded
    Oct  3 19:45:39 gw0 pppd[10867]: CHAP authentication succeeded
    Oct  3 19:45:39 gw0 pppd[10867]: local  IP address 81.25.59.234
    Oct  3 19:45:39 gw0 pppd[10867]: remote IP address 10.7.3.5
    Oct  3 19:46:32 gw0 pppd[10867]: Terminating on signal 2
    Oct  3 19:46:32 gw0 pppd[10867]: Connect time 0.9 minutes.
    Oct  3 19:46:32 gw0 pppd[10867]: Sent 0 bytes, received 31084 bytes.
    Oct  3 19:46:32 gw0 pppd[10867]: Child process pptp 10.28.11.1 --nolaunchpppd (pid 10868) terminated with signal 2
    Oct  3 19:46:32 gw0 pppd[10867]: Modem hangup
    Oct  3 19:46:32 gw0 pppd[10867]: Connection terminated.
    Oct  3 19:46:32 gw0 pppd[10867]: Exit.
    Oct  3 19:49:03 gw0 pppd[4029]: pppd 2.4.5 started by root, uid 0
    Oct  3 19:49:03 gw0 pppd[4029]: Using interface ppp0
    Oct  3 19:49:03 gw0 pppd[4029]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 19:49:05 gw0 pppd[4029]: CHAP authentication succeeded
    Oct  3 19:49:05 gw0 pppd[4029]: CHAP authentication succeeded
    Oct  3 19:49:05 gw0 pppd[4029]: local  IP address 81.25.59.234
    Oct  3 19:49:05 gw0 pppd[4029]: remote IP address 10.7.3.5
    Oct  3 19:51:29 gw0 pppd[4029]: Terminating on signal 2
    Oct  3 19:51:29 gw0 pppd[4029]: Connect time 2.4 minutes.
    Oct  3 19:51:29 gw0 pppd[4029]: Sent 0 bytes, received 90657 bytes.
    Oct  3 19:51:29 gw0 pppd[4029]: Child process pptp 10.28.11.1 --nolaunchpppd (pid 4033) terminated with signal 2
    Oct  3 19:51:29 gw0 pppd[4029]: Modem hangup
    Oct  3 19:51:29 gw0 pppd[4029]: Connection terminated.
    Oct  3 19:51:29 gw0 pppd[4029]: Exit.
    Oct  3 19:51:34 gw0 pppd[4126]: pppd 2.4.5 started by root, uid 0
    Oct  3 19:51:34 gw0 pppd[4126]: Using interface ppp0
    Oct  3 19:51:34 gw0 pppd[4126]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 19:51:35 gw0 pppd[4126]: Modem hangup
    Oct  3 19:51:35 gw0 pppd[4126]: Connection terminated.
    Oct  3 19:51:35 gw0 pppd[4126]: Exit.
    Oct  3 19:51:46 gw0 pppd[4140]: pppd 2.4.5 started by root, uid 0
    Oct  3 19:51:46 gw0 pppd[4140]: Using interface ppp0
    Oct  3 19:51:46 gw0 pppd[4140]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 19:51:48 gw0 pppd[4140]: CHAP authentication succeeded
    Oct  3 19:51:48 gw0 pppd[4140]: CHAP authentication succeeded
    Oct  3 19:51:48 gw0 pppd[4140]: local  IP address 81.25.59.234
    Oct  3 19:51:48 gw0 pppd[4140]: remote IP address 10.7.3.5
    Oct  3 19:51:59 gw0 pppd[4181]: pppd 2.4.5 started by root, uid 0
    Oct  3 19:51:59 gw0 pppd[4181]: Using interface ppp1
    Oct  3 19:51:59 gw0 pppd[4181]: Connect: ppp1 <--> /dev/pts/3
    Oct  3 19:51:59 gw0 pppd[4181]: CHAP authentication succeeded
    Oct  3 19:51:59 gw0 pppd[4181]: CHAP authentication succeeded
    Oct  3 19:51:59 gw0 pppd[4181]: local  IP address 81.25.59.234
    Oct  3 19:51:59 gw0 pppd[4181]: remote IP address 10.7.3.5
    Oct  3 19:53:48 gw0 pppd[4140]: Modem hangup
    Oct  3 19:53:48 gw0 pppd[4140]: Connect time 2.0 minutes.
    Oct  3 19:53:48 gw0 pppd[4140]: Sent 0 bytes, received 28010 bytes.
    Oct  3 19:53:48 gw0 pppd[4140]: Connection terminated.
    Oct  3 19:53:48 gw0 pppd[4140]: Exit.
    Oct  3 19:53:59 gw0 pppd[4181]: Modem hangup
    Oct  3 19:53:59 gw0 pppd[4181]: Connect time 2.0 minutes.
    Oct  3 19:53:59 gw0 pppd[4181]: Sent 0 bytes, received 0 bytes.
    Oct  3 19:53:59 gw0 pppd[4181]: Connection terminated.
    Oct  3 19:53:59 gw0 pppd[4181]: Exit.
    Oct  3 20:08:07 gw0 pppd[6401]: pppd 2.4.5 started by root, uid 0
    Oct  3 20:08:07 gw0 pppd[6401]: Using interface ppp0
    Oct  3 20:08:07 gw0 pppd[6401]: Connect: ppp0 <--> /dev/pts/1
    Oct  3 20:08:08 gw0 pppd[6401]: CHAP authentication succeeded
    Oct  3 20:08:08 gw0 pppd[6401]: CHAP authentication succeeded
    Oct  3 20:08:08 gw0 pppd[6401]: local  IP address 81.25.59.234
    Oct  3 20:08:08 gw0 pppd[6401]: remote IP address 10.7.3.5
    Oct  3 20:13:55 gw0 pppd[6401]: Terminating on signal 2
    Oct  3 20:13:55 gw0 pppd[6401]: Connect time 5.8 minutes.
    Oct  3 20:13:55 gw0 pppd[6401]: Sent 167049 bytes, received 165911 bytes.
    Oct  3 20:13:55 gw0 pppd[6401]: Child process pptp 10.28.11.1 --nolaunchpppd (pid 6402) terminated with signal 2
    Oct  3 20:13:55 gw0 pppd[6401]: Modem hangup
    Oct  3 20:13:55 gw0 pppd[6401]: Connection terminated.
    Oct  3 20:13:55 gw0 pppd[6401]: Exit.
    Oct  3 20:24:00 gw0 pppd[5542]: pppd 2.4.5 started by root, uid 0
    Oct  3 20:24:00 gw0 pppd[5542]: Using interface ppp0
    Oct  3 20:24:00 gw0 pppd[5542]: Connect: ppp0 <--> /dev/pts/0
    Oct  3 20:24:02 gw0 pppd[5542]: CHAP authentication succeeded
    Oct  3 20:24:02 gw0 pppd[5542]: CHAP authentication succeeded
    Oct  3 20:24:02 gw0 pppd[5542]: local  IP address 81.25.59.234
    Oct  3 20:24:02 gw0 pppd[5542]: remote IP address 10.7.3.5
    Oct  3 21:26:04 gw0 pppd[5542]: Modem hangup
    Oct  3 21:26:04 gw0 pppd[5542]: Connect time 62.1 minutes.
    Oct  3 21:26:04 gw0 pppd[5542]: Sent 105754382 bytes, received 2892167272 bytes.
    Oct  3 21:26:04 gw0 pppd[5542]: Connection terminated.
    Oct  3 21:26:04 gw0 pppd[5542]: Exit.
    Oct  3 21:35:20 gw0 pppd[13385]: pppd 2.4.5 started by root, uid 0
    Oct  3 21:35:20 gw0 pppd[13385]: Using interface ppp0
    Oct  3 21:35:20 gw0 pppd[13385]: Connect: ppp0 <--> /dev/pts/0
    Oct  3 21:35:22 gw0 pppd[13385]: CHAP authentication succeeded
    Oct  3 21:35:22 gw0 pppd[13385]: CHAP authentication succeeded
    Oct  3 21:35:22 gw0 pppd[13385]: local  IP address 81.25.59.234
    Oct  3 21:35:22 gw0 pppd[13385]: remote IP address 10.7.3.5
    Oct  3 21:36:01 gw0 pppd[13385]: Modem hangup
    Oct  3 21:36:01 gw0 pppd[13385]: Connect time 0.7 minutes.
    Oct  3 21:36:01 gw0 pppd[13385]: Sent 123575 bytes, received 0 bytes.
    Oct  3 21:36:01 gw0 pppd[13385]: Connection terminated.
    Oct  3 21:36:02 gw0 pppd[13385]: Exit.
    Oct  3 21:36:21 gw0 pppd[13975]: pppd 2.4.5 started by root, uid 0
    Oct  3 21:36:21 gw0 pppd[13975]: Using interface ppp0
    Oct  3 21:36:21 gw0 pppd[13975]: Connect: ppp0 <--> /dev/pts/0
    Oct  3 21:36:22 gw0 pppd[13975]: Modem hangup
    Oct  3 21:36:22 gw0 pppd[13975]: Connection terminated.
    Oct  3 21:36:22 gw0 pppd[13975]: Exit.
    Oct  3 21:36:30 gw0 pppd[13990]: pppd 2.4.5 started by root, uid 0
    Oct  3 21:36:30 gw0 pppd[13990]: Using interface ppp0
    Oct  3 21:36:30 gw0 pppd[13990]: Connect: ppp0 <--> /dev/pts/0
    Oct  3 21:36:32 gw0 pppd[13990]: CHAP authentication succeeded
    Oct  3 21:36:32 gw0 pppd[13990]: CHAP authentication succeeded
    Oct  3 21:36:32 gw0 pppd[13990]: local  IP address 81.25.59.234
    Oct  3 21:36:32 gw0 pppd[13990]: remote IP address 10.7.3.5
    Oct  4 12:16:57 gw0 pppd[13990]: No response to 4 echo-requests
    Oct  4 12:16:57 gw0 pppd[13990]: Serial link appears to be disconnected.
    Oct  4 12:16:57 gw0 pppd[13990]: Connect time 880.5 minutes.
    Oct  4 12:16:57 gw0 pppd[13990]: Sent 2673535930 bytes, received 693273002 bytes.
    Oct  4 12:17:03 gw0 pppd[13990]: Connection terminated.
    Oct  4 12:17:03 gw0 pppd[13990]: Modem hangup
    Oct  4 12:17:03 gw0 pppd[13990]: Exit.
    Oct  4 12:18:09 gw0 pppd[5655]: pppd 2.4.5 started by root, uid 0
    Oct  4 12:18:09 gw0 pppd[5655]: Using interface ppp0
    Oct  4 12:18:09 gw0 pppd[5655]: Connect: ppp0 <--> /dev/pts/0
    Oct  4 12:18:10 gw0 pppd[5655]: CHAP authentication succeeded
    Oct  4 12:18:10 gw0 pppd[5655]: CHAP authentication succeeded
    Oct  4 12:18:10 gw0 pppd[5655]: local  IP address 81.25.59.234
    Oct  4 12:18:10 gw0 pppd[5655]: remote IP address 10.7.3.5
    Oct  4 12:50:24 gw0 pppd[6305]: pppd 2.4.5 started by root, uid 0
    Oct  4 12:50:24 gw0 pppd[6305]: Using interface ppp1
    Oct  4 12:50:24 gw0 pppd[6305]: Connect: ppp1 <--> /dev/pts/3
    Oct  4 12:50:25 gw0 pppd[6305]: CHAP authentication succeeded
    Oct  4 12:50:25 gw0 pppd[6305]: CHAP authentication succeeded
    Oct  4 12:50:25 gw0 pppd[6305]: local  IP address 81.25.59.234
    Oct  4 12:50:25 gw0 pppd[6305]: remote IP address 10.7.3.5
    Oct  4 12:51:00 gw0 pppd[6305]: Modem hangup
    Oct  4 12:51:00 gw0 pppd[6305]: Connect time 0.6 minutes.
    Oct  4 12:51:00 gw0 pppd[6305]: Sent 85523 bytes, received 0 bytes.
    Oct  4 12:51:00 gw0 pppd[6305]: Connection terminated.
    Oct  4 12:51:00 gw0 pppd[6305]: Exit.
    Oct  4 12:51:11 gw0 pppd[5655]: No response to 4 echo-requests
    Oct  4 12:51:11 gw0 pppd[5655]: Serial link appears to be disconnected.
    Oct  4 12:51:11 gw0 pppd[5655]: Connect time 33.1 minutes.
    Oct  4 12:51:11 gw0 pppd[5655]: Sent 240048313 bytes, received 206241262 bytes.
    Oct  4 12:51:17 gw0 pppd[5655]: Connection terminated.
    Oct  4 12:51:17 gw0 pppd[5655]: Modem hangup
    Oct  4 12:51:17 gw0 pppd[5655]: Exit.
    Oct  4 12:51:46 gw0 pppd[6897]: pppd 2.4.5 started by root, uid 0
    Oct  4 12:51:46 gw0 pppd[6897]: Using interface ppp0
    Oct  4 12:51:46 gw0 pppd[6897]: Connect: ppp0 <--> /dev/pts/0
    Oct  4 12:51:47 gw0 pppd[6897]: CHAP authentication succeeded
    Oct  4 12:51:47 gw0 pppd[6897]: CHAP authentication succeeded
    Oct  4 12:51:47 gw0 pppd[6897]: local  IP address 81.25.59.234
    Oct  4 12:51:47 gw0 pppd[6897]: remote IP address 10.7.3.5

    Внимание имя файла по адресу /etc/ppp/peers/cifra1 и строка remotename cifra1 должны иметь одинаковое имя. в противоположном случае соединение вылет с ошибкой аутентификации.
    Конфиги.
    chap-secrets


    Code:
    ""  ""  ""
    10.28.11.1 
    000000       
    10.28.11.36ivanov  "*"  000000
    ivanov  "*"  000000
    Options
    Code:
    lock
    nodetach
    noauth
    refuse-eap
    refuse-chap
    refuse-mschap
    nobsdcomp
    nodeflate
    persist
    nobuffer
    mtu 1460

    cifra1


    Code:
    pty "pptp 10.28.11.1 --nolaunchpppd"
    name ivanov
    remotename cifra1
    lock
    noauth
    defaultroute
    nobsdcomp
    nodeflate
    persist

    Удачной вам настройки и стабильного коннекта.
    IPv6 Certification Badge for terra2039
Working...
X