Hogyan kell a pppd-be belefordítani az MS-CHAP80 támogatást?

Kezdőlap Fórumok SOS! Bajban vagyok Hogyan kell a pppd-be belefordítani az MS-CHAP80 támogatást?

10 bejegyzés megtekintése - 1-10 / 17
  • Szerző
    Bejegyzés
  • #1893256
    admin
    Adminisztrátor

      Szia!

      1 Ha debianod van, akkor arra van kesz csomag.
      2. Ha nem, akkor az sf.net -en keress ra a cbcp -re talalni fogsz egy ilyen projektet.
      Azt letoltod, configure, make, make install.

      3. Ha eddig minden jo, akkor mar megy is a dolog, csak nehany aprosagot kell beallitani :)))))

      Ezt kell futtatni a kapcsolathoz:
      /etc/ppp/peers/apta:


      #!/bin/bash
      # Let us call the Windows NT 4.0 Server
      pppd /dev/ttyS1 115200 file „/etc/ppp/options.apta” callback ezazotthoniszamom

      ===============
      /etc/ppp/options.apta:


      connect ‘/usr/sbin/chat -v -f /etc/chatscripts/apta’
      crtscts
      bsdcomp 15
      noauth #Ha van helyi halod, akkor fontos
      lock
      debug
      lcp-echo-interval 20
      lcp-echo-failure 2
      #192.168.0.3:0.0.0.0
      netmask 255.255.252.0
      remotename apta
      name laci
      -detach
      receive-all
      ================
      /etc/chatscripts/apta:


      TIMEOUT 120 : Disconnect after 60 seconds if there is no response
      ABORT „NO CARRIER” : Abort if the modem report no carrier
      ABORT „BUSY” : Abort if the modem is busy
      ABORT „NO DIALTONE” : Abort if you have no dial tone
      ABORT „ERROR” : Abort when the modem reports error
      #: Initialize the modem
      ” ATZ
      #ispnumber
      OK-AT-OK ATDTidejon a szam
      CONNECT dc

      ===============
      /etc/ppp/chap-secrets:


      # Secrets for authentication using CHAP
      # client server secret IP addresses
      apta laci ittajelszavam
      laci apta ittajelszavam

      Udv Laci (blaci)

      #1893257
      admin
      Adminisztrátor

        Kössz az infót!
        Ha nem megy, akkor majd még írok.

        #1893258
        admin
        Adminisztrátor

          Valamiért nem fordul le a ppp-2.4.1, ha a Makefile-ba beleírom a -DCBCP_SUPPORT sort.
          Mellékelem a Makefile-t + a hibaüzenetet. Remélem tudsz segíteni, hogy mi lehet a baj.

          Itt a ppp2.4.1 Makefile.linux
          ========================
          #
          # pppd makefile for Linux
          # $Id: Makefile.linux,v 1.41 2001/03/08 05:00:35 paulus Exp $
          #

          # Default installation locations
          BINDIR = /usr/sbin
          MANDIR = /usr/man

          PPPDSRCS = main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c ccp.c
          ipxcp.c auth.c options.c sys-linux.c md4.c chap_ms.c cbcp.c
          demand.c utils.c multilink.c tdb.c tty.c
          HEADERS = callout.h pathnames.h patchlevel.h chap.h md5.h chap_ms.h md4.h
          ipxcp.h cbcp.h tdb.h
          MANPAGES = pppd.8
          PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o
          auth.o options.o demand.o utils.o sys-linux.o ipxcp.o multilink.o
          tdb.o tty.o

          all: pppd

          #
          # include dependancies if present and backup if as a header file
          ifeq (.depend,$(wildcard .depend))
          include .depend
          endif

          # CC = gcc
          #
          COPTS = -O2 -pipe -Wall -g
          LIBS =

          ifneq ($(wildcard /usr/lib/libcrypt.*),)
          LIBS += -lcrypt
          endif

          # Uncomment the next 2 lines to include support for Microsoft’s
          # MS-CHAP authentication protocol.
          CHAPMS=y
          USE_CRYPT=y
          ifneq ($(wildcard /usr/lib/libcrypt.*),)
          HAVE_CRYPT_H=y
          endif

          # Uncomment the next line to include support for PPP packet filtering.
          # This requires that the libpcap library and headers be installed
          # and that the kernel driver support PPP packet filtering, which it
          # doesn’t yet.
          #FILTER=y

          HAS_SHADOW=y
          #USE_PAM=y
          #HAVE_INET6=y

          PLUGIN=y

          INCLUDE_DIRS= -I../include

          #-COMPILE_FLAGS= -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP
          COMPILE_FLAGS= -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT #ezt írtam hozzá

          CFLAGS= $(COPTS) $(COMPILE_FLAGS) $(INCLUDE_DIRS)

          ifdef CHAPMS
          CFLAGS += -DCHAPMS=1
          ifndef USE_CRYPT
          LIBS := -ldes $(LIBS)
          else
          CFLAGS += -DUSE_CRYPT=1
          ifneq ($(wildcard /usr/include/crypt.h),)
          CFLAGS += -DHAVE_CRYPT_H=1
          endif
          endif
          PPPDOBJS += md4.o chap_ms.o
          ifdef MSLANMAN
          CFLAGS += -DMSLANMAN=1
          endif
          endif

          ifdef HAS_SHADOW
          CFLAGS += -DHAS_SHADOW
          #LIBS := -lshadow $(LIBS)
          endif

          # For „Pluggable Authentication Modules”, see http://ftp.redhat.com:/pub/pam/.
          ifdef USE_PAM
          CFLAGS += -DUSE_PAM
          LIBS := -lpam -ldl $(LIBS)
          endif

          # Lock library binary for Linux is included in ‘linux’ subdirectory.
          ifdef LOCKLIB
          LIBS := -llock $(LIBS)
          CFLAGS += -DLOCKLIB=1
          endif

          ifdef PLUGIN
          CFLAGS += -DPLUGIN
          LDFLAGS += -Wl,-E
          LIBS += -ldl
          endif

          ifdef FILTER
          LIBS += -lpcap
          CFLAGS += -DPPP_FILTER -I/usr/include/pcap
          endif

          ifdef HAVE_INET6
          PPPDSRCS += ipv6cp.c eui64.c
          HEADERS += ipv6cp.h eui64.h
          PPPDOBJS += ipv6cp.o eui64.o
          CFLAGS += -DINET6=1
          endif

          INSTALL= install -o root

          install: pppd
          mkdir -p $(BINDIR) $(MANDIR)
          $(INSTALL) -s -c -m 555 pppd $(BINDIR)/pppd
          if chgrp pppusers $(BINDIR)/pppd 2]/dev/null; then
          chmod o-rx,u+s $(BINDIR)/pppd; fi
          $(INSTALL) -c -m 444 pppd.8 $(MANDIR)/man8

          pppd: $(PPPDOBJS)
          $(CC) $(CFLAGS) $(LDFLAGS) -o pppd $(PPPDOBJS) $(LIBS)

          clean:
          rm -f $(PPPDOBJS) pppd *~ #* core

          depend:
          $(CPP) -M $(CFLAGS) $(PPPDSRCS) ].depend

          Itt a hibaüzenet!
          =================
          linux:/home/oddman/ppp/ppp-2.4.1# make
          cd chat; make all
          make[1]: Entering directory `/home/oddman/ppp/ppp-2.4.1/chat’
          cc -c -O2 -g -pipe -DTERMIOS -DSIGTYPE=void -UNO_SLEEP -DFNDELAY=O_NDELA
          Y -o chat.o chat.c
          cc -o chat chat.o
          make[1]: Leaving directory `/home/oddman/ppp/ppp-2.4.1/chat’
          cd pppd; make all
          make[1]: Entering directory `/home/oddman/ppp/ppp-2.4.1/pppd’
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o main.o main.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o magic.o magic.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o fsm.o fsm.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o lcp.o lcp.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o ipcp.o ipcp.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o upap.o upap.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o chap.o chap.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o md5.o md5.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o ccp.o ccp.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o auth.o auth.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o options.o options.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o demand.o demand.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o utils.o utils.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o sys-linux.o sys-linux.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o ipxcp.o ipxcp.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o multilink.o multilink.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o tdb.o tdb.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o tty.o tty.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o md4.o md4.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -c -o chap_ms.o chap_ms.c
          cc -O2 -pipe -Wall -g -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP -DCBCP_SUPPORT -I../include -DCHAPMS=1
          -DUSE_CRYPT=1 -DHAVE_CRYPT_H=1 -DHAS_SHADOW -DPLUGIN -Wl,-E -o pppd main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o au
          th.o options.o demand.o utils.o sys-linux.o ipxcp.o multilink.o tdb.o tty.o md4.o chap_ms.o -lcrypt -ldl
          main.o: In function `main’:
          /home/oddman/ppp/ppp-2.4.1/pppd/main.c:243: undefined reference to `cbcp_protent’
          auth.o: In function `network_phase’:
          /home/oddman/ppp/ppp-2.4.1/pppd/auth.c:525: undefined reference to `cbcp_protent’
          collect2: ld returned 1 exit status
          make[1]: *** [pppd] Error 1
          make[1]: Leaving directory `/home/oddman/ppp/ppp-2.4.1/pppd’
          make: *** [all] Error 2
          linux:/home/oddman/ppp/ppp-2.4.1#

          Mi lehet a baj?
          Az álltalad említett ppp-t is letöltöttem, de ugyan ezt csinálja.
          Ha a -DCBCP_SUPPORT sor nincs benne a Makefile-ba, akkor jól lefordul mindkettõ.

          #1893259
          admin
          Adminisztrátor

            Na csak sikerült!

            Makefile.linux
            ==========
            PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o cbcp.o #[-a cbcp.o hiányzott! Remélem, most már mûködni fog. Mindenesetre most tökéletesen lefordult.
            auth.o options.o demand.o utils.o sys-linux.o ipxcp.o multilink.o
            tdb.o tty.o

            #1893260
            admin
            Adminisztrátor

              Megcsináltam a callbackhez szükséges scripteket, de valami hiba még mindig van. :casstet:

              chap-secrets
              ========
              # MS-CHAP authentication file: /etc/ppp/chap-secrets
              # This file should have a permission of 600.
              # ~# chmod 600 /etc/ppp/chap-secrets
              # Username RemoteHost Password
              nevem gepem jelszo
              gepem nevem jelszo

              options
              =====
              connect ‘/usr/sbin/chat -v -f /etc/ppp/ppp-dialer’
              name nevem
              remotename gepem
              lock
              debug
              modem
              crtscts
              /dev/ttyS0
              115200
              noipdefault
              defaultroute
              #callback 654321
              #bsdcomp 15
              -detach
              receive-all

              ppp-dialer
              ========
              TIMEOUT 120
              ABORT „nBUSYr”
              ABORT „nNO CARRIERr”
              ABORT „nNO ANSWERr”
              „” ATZ
              OK-AT-OK ATDT123456
              CONNECT dc
              #RING ATA

              ppp-on
              =====
              #!/bin/bash
              # Let us call the Windows NT 4.0 Server
              pppd /dev/ttyS0 115200 file „/etc/ppp/options” callback 654321

              /var/log/debug
              ==========
              Sep 26 18:23:46 hexen pppd[1219]: sent [LCP ConfReq id=0x1 [asyncmap 0x0] [callback CBCP] [magic 0xdb13ef19] [pcomp] [accomp]]
              Sep 26 18:23:46 hexen pppd[1219]: rcvd [LCP ConfReq id=0x0 [asyncmap 0x0] [auth chap m$oft] [magic 0x6563] [pcomp] [accomp]]
              Sep 26 18:23:46 hexen pppd[1219]: sent [LCP ConfAck id=0x0 [asyncmap 0x0] [auth chap m$oft] [magic 0x6563] [pcomp] [accomp]]
              Sep 26 18:23:46 hexen pppd[1219]: rcvd [LCP ConfAck id=0x1 [asyncmap 0x0] [callback CBCP] [magic 0xdb13ef19] [pcomp] [accomp]]
              Sep 26 18:23:46 hexen pppd[1219]: cbcp_lowerup
              Sep 26 18:23:46 hexen pppd[1219]: want: 14
              Sep 26 18:23:46 hexen pppd[1219]: rcvd [CHAP Challenge id=0x19 [a03a9e39d13202b5], name = „”]
              Sep 26 18:23:46 hexen pppd[1219]: sent [CHAP Response id=0x19 [0000000000000000000000000000000000000000000000005ead8059876912f96a8b94a9e697e21287f5f4e8c6781d5001], name = „nevem”]
              Sep 26 18:23:46 hexen pppd[1219]: rcvd [CHAP Success id=0x19 „”]
              Sep 26 18:23:46 hexen pppd[1219]: cbcp_open
              Sep 26 18:23:46 hexen pppd[1219]: rcvd [CBCP Request id=0x1 [ NoCallback] 02 05 00 01 00]
              Sep 26 18:23:46 hexen pppd[1219]: length: 7
              Sep 26 18:23:46 hexen pppd[1219]: no callback allowed
              Sep 26 18:23:46 hexen pppd[1219]: length: 5
              Sep 26 18:23:46 hexen pppd[1219]: user callback allowed
              Sep 26 18:23:46 hexen pppd[1219]: cbcp_resp cb_type=6
              Sep 26 18:23:46 hexen pppd[1219]: cbcp_resp CONF_USER
              Sep 26 18:23:46 hexen pppd[1219]: sent [CBCP Response id=0x1 [ UserDefined delay = 5 number = 654321]] 33 31 31 31 36 35 00
              Sep 26 18:23:46 hexen pppd[1219]: rcvd [CBCP Ack id=0x1 [ UserDefined delay = 5 number = 654321]] 33 31 31 31 36 35 00
              Sep 26 18:23:46 hexen pppd[1219]: peer will call: 654321
              Sep 26 18:23:46 hexen pppd[1219]: sent [LCP TermReq id=0x2 „Call me back, please”]
              Sep 26 18:23:46 hexen pppd[1219]: rcvd [LCP TermAck id=0x2]


              Amikor elindítom a ppp-on filet, akkor szépen betárcsáz, aztán bontja is a vonalat, de szerintem a modemem nem várja a hívást a másik géptõl. Ezzel a #RING ATA-val nem kell valamit kezdeni?

              #1893261
              admin
              Adminisztrátor

                Szia!

                Sep 26 18:23:46 hexen pppd[1219]: peer will call: 654321
                !!!!!!Sep 26 18:23:46 hexen pppd[1219]: sent [LCP TermReq id=0x2 „Call me back, please”]
                Sep 26 18:23:46 hexen pppd[1219]: rcvd [LCP TermAck id=0x2]

                Szerintem itt van a gaz, ez valamiert visszahivast ker [LCP TermReq id=0x2 „Call me back, please”]
                de nem igazan latom, hogy miert.
                Az a helyzet, hogy en csak visszahivassal probaltam, ugy mukodott.
                De majd megnezem meg otthonrol.

                Udv Laci

                Ui: Milyen linuxon dolgozol?

                #1893262
                admin
                Adminisztrátor

                  Bocs, baromsagot irtam az elobb, most latom, hogy Te is visszahivassal probalkozol.
                  Meg az options file tartalmat nezd at, probald meg beirni a kulonbsegeket, az enyembol.
                  Nekem woody alatt siman megy.
                  Bar emlekszem, pl mandrake alatt nem igazan tudtam osszehozni a dolgot.

                  Laci

                  #1893263
                  admin
                  Adminisztrátor

                    Slackware Linux-ot használok!
                    Na, akkor othon még próbálkozok, aztán majd írok, hogy mire jutottam. 😉

                    #1893264
                    admin
                    Adminisztrátor

                      Valami még mindig nem jó!!!
                      Most már szépen vissza is hív az NT4, de a logban hierogifák jelennek meg a kapcsolódás után. A debug logban meg nem jelenik meg semmi. Szerinted ez valami autentikációs hiba lehet??? :casstet:

                      Sep 28 18:31:18 hexen pppd[269]: pppd 2.4.1 started by root, uid 0
                      Sep 28 18:31:19 hexen chat[270]: timeout set to 120 seconds
                      Sep 28 18:31:19 hexen chat[270]: abort on (nBUSYr)
                      Sep 28 18:31:19 hexen chat[270]: abort on (nNO CARRIERr)
                      Sep 28 18:31:19 hexen chat[270]: abort on (nNO ANSWERr)
                      Sep 28 18:31:19 hexen chat[270]: send (ATZ^M)
                      Sep 28 18:31:19 hexen chat[270]: expect (OK)
                      Sep 28 18:31:19 hexen chat[270]: ATZ^M^M
                      Sep 28 18:31:19 hexen chat[270]: OK
                      Sep 28 18:31:19 hexen chat[270]: — got it
                      Sep 28 18:31:19 hexen chat[270]: send (ATDT123456^M)
                      Sep 28 18:31:19 hexen chat[270]: expect (CONNECT)
                      Sep 28 18:31:19 hexen chat[270]: ^M
                      Sep 28 18:31:33 hexen chat[270]: ATDT123456^M^M
                      Sep 28 18:31:33 hexen chat[270]: CONNECT
                      Sep 28 18:31:33 hexen chat[270]: — got it
                      Sep 28 18:31:33 hexen chat[270]: send (d)
                      Sep 28 18:31:34 hexen pppd[269]: Serial connection established.
                      Sep 28 18:31:34 hexen pppd[269]: Using interface ppp0
                      Sep 28 18:31:34 hexen pppd[269]: Connect: ppp0 /dev/ttyS0
                      Sep 28 18:31:35 hexen pppd[269]: Connection terminated.
                      Sep 28 18:31:36 hexen pppd[269]: Exit.
                      Sep 28 18:31:36 hexen pppd[271]: pppd 2.4.1 started by root, uid 0
                      Sep 28 18:31:37 hexen chat[272]: timeout set to 120 seconds
                      Sep 28 18:31:37 hexen chat[272]: abort on (nBUSYr)
                      Sep 28 18:31:37 hexen chat[272]: abort on (nNO CARRIERr)
                      Sep 28 18:31:37 hexen chat[272]: abort on (nNO ANSWERr)
                      Sep 28 18:31:37 hexen chat[272]: send (ATZ^M)
                      Sep 28 18:31:37 hexen chat[272]: expect (RING)
                      Sep 28 18:31:38 hexen chat[272]: ATZ^M^M
                      Sep 28 18:31:38 hexen chat[272]: OK^M
                      Sep 28 18:31:53 hexen chat[272]: ^^@`^N@`pG^^NG„^N^@^|^@^NG^@^^@`^N@|^@^N|`^N^?`^N^?`^N^pG^@^pG^^@p8„^Nx`px`^@p`^@p`~^^N^@^^NG^^@^|^^N?^|p
                      Sep 28 18:31:54 hexen chat[272]: `^@|p^?^^Nx`^N^@^^@^N^|pG^^N?^^@|p8|`p^@G^^NG|pG^^@`^N@`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@`^@
                      Sep 28 18:31:56 hexen chat[272]: ^@p^^@`^@^@^@`^N@^@||^@`^@^@^@^@`^@^@^||„|`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@`^@^@p^^@`^@^@^@`^N@^@|
                      Sep 28 18:31:59 hexen chat[272]: |^@`^@^@^@^@`^@^@^||„|`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@`^@^@p^^@`^@^@^@`^N@^@||^@`^@^@^@^@`^@^@^||
                      Sep 28 18:32:07 hexen chat[272]: „|`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@`^@^@p^^@`^@^@^@`^N@^@||^@`^@^@^@^@`^@^@^||„|`^|^@^@^@^^@`^N
                      Sep 28 18:32:11 hexen chat[272]: ^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@`^@^@p^^@`^@^@^@`^N@^@||^@`^@^@^@^@`^@^@^||„|`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@
                      Sep 28 18:32:15 hexen chat[272]: ^@^@^@|^@^@^^@`^@~|^@`^@^@p^^@`^@^@^@`^N@^@||^@`^@^@^@^@`^@^@^||„|`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@
                      Sep 28 18:32:19 hexen chat[272]: `^@^@p^^@`^@^@^@`^N@^@||^@`^@^@^@^@`^@^@^||„|`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@`^@^@p^^@`^@^@^@`^N@
                      Sep 28 18:32:23 hexen chat[272]: ^@||^@`^@^@^@^@`^@^@^||„|`^|^@^@^@^^@`^N^@@^@^@^~@`^@^@`^@^@^@^@^@|^@^@^^@`^@~|^@`^@^@p^^@`^@^@^@`^N@^@||^@`^@^@^@^@`^@^@^
                      Sep 28 18:32:38 hexen pppd[271]: Terminating on signal 2.
                      Sep 28 18:32:39 hexen pppd[271]: Terminating on signal 2.
                      Sep 28 18:32:39 hexen pppd[271]: Exit.

                      😮

                      #1893265
                      admin
                      Adminisztrátor

                        K0ssz mindenkinek a segitseget.
                        Sikerult vegre megoldanom a visszahivast.
                        Ezt a szoveget mar az otthoni Linuxom-rol irtam.
                        Na szasztok!

                      10 bejegyzés megtekintése - 1-10 / 17
                      • Be kell jelentkezni a hozzászóláshoz.