Linux-Networking Digest #114, Volume #11 Tue, 11 May 99 10:14:26 EDT
Contents:
Re: US Robotics 56k modem (Denis Kholodar)
Re: Win98 And Samba ("Dave Ewart")
Re: IP Masquerade advantages ("Per Jessen")
Re: US Robotics 56k modem (Denis Kholodar)
DHCP w/ Red Hat 6.0 & PCMCIA Net Card ("Aaron Mulder")
FTP server Questions(ftpd) (Michael Tin)
daemon sockd? ("Dennis S. Tepe")
Re: reading Ethernet card address (Paul Nevin)
Re: script, auto ppp hang up . ("Greg")
Re: Strange problem while connected to foreing host (Joerg Sauer)
LCP Timeout problem (Xaendiss)
----------------------------------------------------------------------------
From: Denis Kholodar <[EMAIL PROTECTED]>
Subject: Re: US Robotics 56k modem
Date: Mon, 10 May 1999 00:48:40 -0400
guys, since i did exactly that today i thought i would jump in.
namely i did configure exact same model of the modem (a 3Com US
Robotics 56K) and i did have to deal with isapnp business for the
last day or two.
my modem was working for a long time (in my RH 5.1), but then i
configured my soound card, SB 64, and it screwed up my modem,
because when configuring it sndconf (pnpdump is the same thing but
doesn't create a file as i belive) created a NEW /etc/isapnp.conf
and as you noticed it doesn't uncomment there the right lines by
default. so check where you modem should be with for exampl
setserial /dev/ttyS1,2,3,4 then go to that /etc/isapnp.conf file,
uncomment the right lines and run isapnp with this file, and then i
needed to reboot.
here is my newborn uncommented (and without other stuff that i don't
need)
isapnp.conf:
(READPORT 0x0203)
(ISOLATE)
(IDENTIFY *)
# Card 1: (serial identifier 02 14 12 91 dd e4 00 8c 0e)
# CTL00e4 Serial No 336761309 [checksum 02]
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative SB AWE64 PnP<--
# Vendor defined tag: 73 02 45 20
#
# Logical device id CTL0045
(CONFIGURE CTL00e4/336761309 (LD 0
(INT 0 (IRQ 5 (MODE +E)))
(DMA 0 (CHANNEL 0))
(DMA 1 (CHANNEL 5))
(IO 0 (BASE 0x220))
(ACT Y)
))
# Card 2: (serial identifier 91 c3 93 8b a2 70 30 72 56)
# USR3070 Serial No -1013740638 [checksum 91]
# Version 1.0, Vendor version 0.0
# ANSI string -->U.S. Robotics 56K Voice INT<--
#
# Logical device id USR3070
(CONFIGURE USR3070/-1013740638 (LD 0
(IO 0 (BASE 0x02f8))
(INT 0 (IRQ 3 (MODE +E)))
(ACT Y)
))
# Returns all cards to the "Wait for Key" state
(WAITFORKEY)
note, my modem is at ttyS1.
good luck.
email me directly if you need more from me.
denis
Jeff Howard wrote:
>
> Keith,
>
> Take a real good look at your isapnp.conf file. The isapnp tools that come
> with RH 5.2 couldn't identify my modem (USR 56K internal faxmodem)
> properly. I think it was getting confused by my sound card or something.
> Anyway, the problem I was experiencing was the pnpdump utility was getting
> the wrong number in the parameter that identifies the Local (or Logical?)
> Device number for the modem:
> (CONFIGURE USR3050/4104249251 (LD 0
> The last 3 characters on the above line are very important.
> As I understand it, each pnp card may have several local devices installed
> on it. (midi, dsp, synth and so on for sound cards...) These are numbered,
> per card, starting at 0. Problem was that the darn utility wasn't resetting
> the LD value after it finished identifying my sound card devices and so the
> resulting LD value it was trying to use on the modem was 4. It should have
> been 0. It took me a little while to track this down.
> Also, you may need to play around with the IRQ and ports assigned to the
> modem in the isapnp.conf file. It'll probably be necessary to use setserial
> to make sure the TTYSx you're wanting to use for the modem is properly
> configured for the UART, port, and IRQ of the modem. I can probably help if
> ya run into problems on that. (I've done it a few times now... )
> I recently upgraded to RH6. There's a whole new bag of crap to sort through
> to get the modem working there...
> All in all, once it's working, it's an excellent piece of hardware.
> Good luck,
> Jeff Howard
>
> Keith Piwowarski wrote:
>
> > Has anyone out there successfully installed a 3Com US Robotics 56K
> > Faxmodem? I'm running Redhat 5.2, the isapnp tools produce config files
> > but I still can't get at the thing.
> >
> > Keith
------------------------------
From: "Dave Ewart" <[EMAIL PROTECTED]>
Subject: Re: Win98 And Samba
Date: Tue, 11 May 1999 13:16:51 +0100
<[EMAIL PROTECTED]> wrote in message
news:7h925m$p11$[EMAIL PROTECTED]...
> All,
>
> I have a Unix(freebsd) and a Win 98 machine that I am trying to network
> together to use the same internet connection and to be able to share
> files. I currently can telnet to the unix machine but not the unix to
> the 98 machine. Could anyone point me to a web page on how to setup up
> Samba to work with win 98. I am new at this so I need good directions.
Try http://www.eunuchs.org/
Dave.
--
Dave Ewart, Computing Manager
Imperial Cancer Research Fund (Cancer Epidemiology Unit), Oxford
[EMAIL PROTECTED]
------------------------------
From: "Per Jessen" <[EMAIL PROTECTED]>
Subject: Re: IP Masquerade advantages
Date: Tue, 11 May 1999 12:43:12 +0100
Reply-To: "Per Jessen" <[EMAIL PROTECTED]>
DB7654321 wrote in message <[EMAIL PROTECTED]>...
>What are the advantages of using IP masquerading compared to assigning IP
>addresses to every computer on the network?
>
>P.S I am new to Linux and networking so descriptions are handy.
>
You will in fact need to do both. I.e. if you choose to use masquerading,
you will still
need to assign IP addresses to your systems. But with masquerading you can
simply
select addresses from the private ranges (e.g. 192.168.x.x), whereas without
masque-
rading you'll need to assign addresses allocated to you by your ISP.
Per Jessen, London
------------------------------
From: Denis Kholodar <[EMAIL PROTECTED]>
Subject: Re: US Robotics 56k modem
Date: Mon, 10 May 1999 01:16:33 -0400
guys, since i did exactly that today i thought i would jump in.
namely i did configure exact same model of the modem (a 3Com US
Robotics 56K) and i did have to deal with isapnp business for the
last day or two.
my modem was working for a long time (in my RH 5.1), but then i
configured my soound card, SB 64, and it screwed up my modem,
because when configuring it sndconf (pnpdump is the same thing but
doesn't create a file as i belive) created a NEW /etc/isapnp.conf
and as you noticed it doesn't uncomment there the right lines by
default. so check where you modem should be with for exampl
setserial /dev/ttyS1,2,3,4 then go to that /etc/isapnp.conf file,
uncomment the right lines and run isapnp with this file, and then i
needed to reboot.
here is my newborn uncommented (and without other stuff that i don't
need)
isapnp.conf:
(READPORT 0x0203)
(ISOLATE)
(IDENTIFY *)
# Card 1: (serial identifier 02 14 12 91 dd e4 00 8c 0e)
# CTL00e4 Serial No 336761309 [checksum 02]
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative SB AWE64 PnP<--
# Vendor defined tag: 73 02 45 20
#
# Logical device id CTL0045
(CONFIGURE CTL00e4/336761309 (LD 0
(INT 0 (IRQ 5 (MODE +E)))
(DMA 0 (CHANNEL 0))
(DMA 1 (CHANNEL 5))
(IO 0 (BASE 0x220))
(ACT Y)
))
# Card 2: (serial identifier 91 c3 93 8b a2 70 30 72 56)
# USR3070 Serial No -1013740638 [checksum 91]
# Version 1.0, Vendor version 0.0
# ANSI string -->U.S. Robotics 56K Voice INT<--
#
# Logical device id USR3070
(CONFIGURE USR3070/-1013740638 (LD 0
(IO 0 (BASE 0x02f8))
(INT 0 (IRQ 3 (MODE +E)))
(ACT Y)
))
# Returns all cards to the "Wait for Key" state
(WAITFORKEY)
note, my modem is at ttyS1.
good luck.
email me directly if you need more from me.
denis
Jeff Howard wrote:
>
> Keith,
>
> Take a real good look at your isapnp.conf file. The isapnp tools that come
> with RH 5.2 couldn't identify my modem (USR 56K internal faxmodem)
> properly. I think it was getting confused by my sound card or something.
> Anyway, the problem I was experiencing was the pnpdump utility was getting
> the wrong number in the parameter that identifies the Local (or Logical?)
> Device number for the modem:
> (CONFIGURE USR3050/4104249251 (LD 0
> The last 3 characters on the above line are very important.
> As I understand it, each pnp card may have several local devices installed
> on it. (midi, dsp, synth and so on for sound cards...) These are numbered,
> per card, starting at 0. Problem was that the darn utility wasn't resetting
> the LD value after it finished identifying my sound card devices and so the
> resulting LD value it was trying to use on the modem was 4. It should have
> been 0. It took me a little while to track this down.
> Also, you may need to play around with the IRQ and ports assigned to the
> modem in the isapnp.conf file. It'll probably be necessary to use setserial
> to make sure the TTYSx you're wanting to use for the modem is properly
> configured for the UART, port, and IRQ of the modem. I can probably help if
> ya run into problems on that. (I've done it a few times now... )
> I recently upgraded to RH6. There's a whole new bag of crap to sort through
> to get the modem working there...
> All in all, once it's working, it's an excellent piece of hardware.
> Good luck,
> Jeff Howard
>
> Keith Piwowarski wrote:
>
> > Has anyone out there successfully installed a 3Com US Robotics 56K
> > Faxmodem? I'm running Redhat 5.2, the isapnp tools produce config files
> > but I still can't get at the thing.
> >
> > Keith
------------------------------
From: "Aaron Mulder" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.help,comp.os.linux.portable
Subject: DHCP w/ Red Hat 6.0 & PCMCIA Net Card
Date: Thu, 06 May 1999 17:33:32 GMT
I had a Red Hat 5.2 laptop, which worked fine. The network here is
pretty messy, with multiple Class C addresses, and a gateway that must be
crossed just to get to the DNS servers, etc. This was not a problem -
everything was configured correctly via DHCP on boot.
I got another hard drive for the laptop, and instealled Red Hat 6.0 from
scratch. The result? Networking doesn't work at all. That is, it gets an
IP address via DHCP, but fails to get any other information, including the
DNS Servers, Gateway, routing, etc. So I can't look up addresses, can't
ping, can't do anything over the network - but I do have an IP address!
I can configure many of those details manually, but that was never
necessary before. And the routing table only lists localhost after booting;
I am not confident that I can configure *that* all correctly.
I suspect this is an issue with the Red Hat 6 DHCP configuration: it
looks like Red Hat 6.0 uses a homegrown program called "pump" instead of the
old DHCP client to configure a card. "man pump" just gives a brief list of
non-applicable parameters - there's no way to force it to use more of the
information supplied by DHCP.
Even more worrisome, I have an @Home cable modem connection at home,
which requires DHCP requests to include the @Home-supplied hostname or else
it will ignore the request. The old DHCP client had a command-line
parameter to specify the hostname, but I have no idea how to do that with
pump.
And finally, I don't know where pump records the information in receives
(there's no more /etc/dhcpcd). So I can't tell if it's not reading things,
or just ignoring them.
Needless to say, any help would be appreciated...
Thanks,
Aaron
------------------------------
From: Michael Tin <[EMAIL PROTECTED]>
Subject: FTP server Questions(ftpd)
Date: Tue, 11 May 1999 05:20:45 GMT
Hi, I am just starting an ftp site but I need to know a few basic
things.
I have a alpha 466 mhz with AlphaLinux(Red Hat 5.2). I just let Red Hat
do all the configing. What I want to know is which file to edit to get a
cool welcome message like "you are now logged into my ftp server, and if
you biff up this system, I will track you down and kill you", well maybe
not that exact welcome message, but something similar.
Next question, is it possible to control the # of ftp users
automatically? Like Serv-U FTP's max user limit?
3rd question: is it possible to have a ratio of UL/DL with the standard
ftpd?
Thanks!
[EMAIL PROTECTED]
------------------------------
From: "Dennis S. Tepe" <[EMAIL PROTECTED]>
Subject: daemon sockd?
Date: Sun, 09 May 1999 21:54:02 -0400
In the HOWTOs downloaded along with Slackware 3.5 there exists a howto
titled "Netscape + Proxy". In the howto, the author refers to a daemon
called sockd. I have tried to find this critter and have been unable to
locate so much as a reference (other than the one in the howto.) Does
anyone know of it's existance, where it can be located? I'm trying to
Proxy serve several winXX machines thru Linux running 2.2.7 kernel. I
know the IP-masq is available but I have been unable to get it to work
either.
Dennis
------------------------------
From: Paul Nevin <[EMAIL PROTECTED]>
Subject: Re: reading Ethernet card address
Date: Tue, 11 May 1999 13:27:08 +0800
Victor Kwok wrote:
> Hi,
> I want to write a program to read the hardware address of my
> Ethernet card. I know that I can read the address using ifconfig. Is
> there anywhere I can find the source code of it? Or can anyone point
> me to other method?
>
> Thanks!
>
> Victor
try
more /var/log/dmesg | grep eth0
------------------------------
From: "Greg" <[EMAIL PROTECTED]>
Subject: Re: script, auto ppp hang up .
Date: Tue, 11 May 1999 09:23:08 -0400
Hello Rick,
Adding idle <n> with <n> being the number of seconds idle.
add this to your /etc/ppp/options file this may do the trick.
Greg.
Rick wrote in message <[EMAIL PROTECTED]>...
>I want to hang up my ppp link via modem after no internet traffic is
>sensed for some period of time e.g. when I have a huge ftp download and
>leave it going into the night, not to waste time (money) on my isp
>costs.
>Any bash scripts gratefully accepted, thanks.
>
>Rick. remove nospam when replying taa.
>
------------------------------
From: [EMAIL PROTECTED] (Joerg Sauer)
Crossposted-To: de.alt.comm.isdn4linux
Subject: Re: Strange problem while connected to foreing host
Date: Sat, 08 May 1999 08:36:49 GMT
Hi,
Seems not to be the problem, because down and uploads are working fine
on both sides when connected to the Internet. Which is done over the
same line!
Thanks
J�rg
------------------------------
From: Xaendiss <" Xaendiss"@hotmail.com>
Subject: LCP Timeout problem
Date: Tue, 11 May 1999 11:56:43 +0200
Hi,
I,ve got a problem when connecting to my ISP. I've got two ISP's and I
got none of them to work. So I think the problem is on my
Linux Box (kernel 2.2.5, pppd 2.3.5).
Here are the scripts used for te connection:
* ppp-on
#!/bin/sh
#
exec /usr/sbin/pppd /dev/modem 115200 debug kdebug 0 lcp-max-configure
50 \
connect "/usr/sbin/chat -v -f /etc/ppp/generic.chat"
* generic.chat
TIMEOUT 60
ABORT 'NO CARRIER'
ABORT 'BUSY'
ABORT 'NO DIALTONE'
ABORT 'ERROR'
'' +++ATZ
'OK' ATDTXXXXXXX
'CONNECT' ''
ogin: XXXXXXXX
word: XXXXXXXX
\~ ''
And here are the messages generated by pppd:
Archimede pppd[481]: pppd 2.3.5 started by root, uid 0
Archimede chat[482]: timeout set to 60 seconds
Archimede chat[482]: abort on (NO CARRIER)
Archimede chat[482]: abort on (BUSY)
Archimede chat[482]: abort on (NO DIALTONE)
Archimede chat[482]: abort on (ERROR)
Archimede chat[482]: send (+++ATZ^M)
Archimede chat[482]: expect (OK)
Archimede chat[482]: +++ATZ^M^M
Archimede chat[482]: OK
Archimede chat[482]: -- got it
Archimede chat[482]: send (ATDTXXXXXXX^M)
Archimede chat[482]: expect (CONNECT)
Archimede chat[482]: ^M
Archimede chat[482]: ATDT2246011^M^M
Archimede chat[482]: CONNECT
Archimede chat[482]: -- got it
Archimede chat[482]: send (^M)
Archimede chat[482]: expect (ogin:)
Archimede chat[482]: 115200^M
Archimede chat[482]: Dial1.liege.eunet.be Port S3^M
Archimede chat[482]: ^M
Archimede chat[482]: ^M
Archimede chat[482]: Eunet belgium login:
Archimede chat[482]: -- got it
Archimede chat[482]: send (XXXXXXXX^M)
Archimede chat[482]: expect (word:)
Archimede chat[482]: ^M
Archimede chat[482]: Eunet belgium login:XXXXXXXX^M
Archimede chat[482]: Password:
Archimede chat[482]: -- got it
Archimede chat[482]: send (XXXXXXXX^M)
Archimede chat[482]: expect (~)
Archimede chat[482]: ^M
Archimede chat[482]: PPP session from (193.74.147.252) to 195.207.174.89
beginning....~
Archimede chat[482]: -- got it
Archimede chat[482]: send (^M)
Archimede pppd[481]: Serial connection established.
Archimede pppd[481]: Using interface ppp0
Archimede pppd[481]: Connect: ppp0 <--> /dev/modem
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x2 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x2 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x3 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x3 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x4 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x4 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x5 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x5 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x6 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x6 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x7 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x7 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x8 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x8 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x9 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x9 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0xa <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0xa <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0xb <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0xb <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0xc <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0xc <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0xd <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0xd <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0xe <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0xe <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0xf <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0xf <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x10 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x10 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x11 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x11 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x12 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x12 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x13 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x13 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede pppd[481]: rcvd [LCP ConfReq id=0x14 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfAck id=0x14 <asyncmap 0x0> <magic
0xb8fe3b4d> <pcomp> <accomp>]
Archimede pppd[481]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic
0x88ad11b1> <pcomp> <accomp>]
Archimede last message repeated 4 times
Archimede pppd[481]: Hangup (SIGHUP)
Archimede pppd[481]: Modem hangup
Archimede pppd[481]: Connection terminated.
Archimede pppd[481]: Exit.
There seems to be a problem with the LCP packet which id=0x01. I tried
different asyncmaps and a lot of the options of pppd, but
I didn't succeed to get it work.
Thanks in advance
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list (and comp.os.linux.networking) via:
Internet: [EMAIL PROTECTED]
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Networking Digest
******************************