All of lore.kernel.org
 help / color / mirror / Atom feed
* [parisc-linux] PPTP and PPPOE under Debian HPPA Linux.
@ 2001-10-16 16:22 DUTOT Stéphane
  2001-10-16 17:50 ` Grant Grundler
  2001-10-18 21:46 ` Richard Hirst
  0 siblings, 2 replies; 4+ messages in thread
From: DUTOT Stéphane @ 2001-10-16 16:22 UTC (permalink / raw)
  To: parisc-linux

[-- Attachment #1: Type: text/plain, Size: 557 bytes --]

Hello,

I have a HP 712/100, I will install my HP station on Adsl gateway. For this, i need make a pptp or pppoe connexion.

When, the debian install kernel 2.4.0-32, when i start pppoe or pptp connexion, the pppd is launch and just after all system is block. With the last kernel version (2.4.9-pa45) downloaded on paris-linux site. When, i start pptp connexion, he has a kernel panic.

I have check the mailing-list archive. And i haven't found a begin of solution.

Maybe, do you have see this problem under the past ?

Thanks Stéphane DUTOT.

[-- Attachment #2: Type: text/html, Size: 1237 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [parisc-linux] PPTP and PPPOE under Debian HPPA Linux.
  2001-10-16 16:22 [parisc-linux] PPTP and PPPOE under Debian HPPA Linux DUTOT Stéphane
@ 2001-10-16 17:50 ` Grant Grundler
  2001-10-18 21:46 ` Richard Hirst
  1 sibling, 0 replies; 4+ messages in thread
From: Grant Grundler @ 2001-10-16 17:50 UTC (permalink / raw)
  To: DUTOT Stéphane; +Cc: parisc-linux

=?iso-8859-1?Q?DUTOT_St=E9phane?= wrote:
> When, the debian install kernel 2.4.0-32, when i start pppoe or pptp =
> connexion, the pppd is launch and just after all system is block. With =
> the last kernel version (2.4.9-pa45) downloaded on paris-linux site. =
> When, i start pptp connexion, he has a kernel panic.

I was using ppp in the past to connect via a c3k and filed
the following bug:
	http://bugs.parisc-linux.org/db/13/132.html

I haven't tried again recently.

grant

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [parisc-linux] PPTP and PPPOE under Debian HPPA Linux.
  2001-10-16 16:22 [parisc-linux] PPTP and PPPOE under Debian HPPA Linux DUTOT Stéphane
  2001-10-16 17:50 ` Grant Grundler
@ 2001-10-18 21:46 ` Richard Hirst
  2001-10-19  6:49   ` Richard Hirst
  1 sibling, 1 reply; 4+ messages in thread
From: Richard Hirst @ 2001-10-18 21:46 UTC (permalink / raw)
  To: DUTOT Stéphane; +Cc: parisc-linux

I've just had a look at this.  Seems to be a problem related to
the kernel trying to invoke non-existant usermode helper progs.

I created a script /sbin/hotplug containing just


#!/bin/sh
echo hotplug: $* > /dev/console


and my kernel no longer crashes when trying to establish an async
ppp link.  Instead, I get this in syslog:

Mar 20 16:24:33 merlin pppd[221]: Serial connection established.
Mar 20 16:24:34 merlin insmod: Note: /etc/modules.conf is more recent than /lib/modules/2.4.9-32/modules.dep
Mar 20 16:24:34 merlin pppd[221]: using channel 1
Mar 20 16:24:34 merlin pppd[221]: Using interface ppp0
Mar 20 16:24:34 merlin pppd[221]: Connect: ppp0 <--> /dev/ttyS1
Mar 20 16:24:34 merlin pppd[221]: read: Resource temporarily unavailable       
Mar 20 16:24:34 merlin pppd[221]: read /dev/ppp: Resource temporarily unavailable
Mar 20 16:24:35 merlin pppd[221]: read: Resource temporarily unavailable
Mar 20 16:24:35 merlin pppd[221]: read /dev/ppp: Resource temporarily unavailable
Mar 20 16:24:35 merlin pppd[221]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x7837ff6f> <pcomp> <accomp>]
Mar 20 16:24:35 merlin pppd[221]: read: Resource temporarily unavailable
Mar 20 16:24:35 merlin pppd[221]: read /dev/ppp: Resource temporarily unavailable
Mar 20 16:24:36 merlin pppd[221]: rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 0x7837ff6f> <pcomp> <accomp>]
Mar 20 16:24:38 merlin pppd[221]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x7837ff6f> <pcomp> <accomp>]
etc
etc

I guess next I need to figure out what is causing the "Resource
temporarily unavailable" (assuming that is an error).

iirc we have had problems with non-existant usermode helpers before,
and had to turn module support off until we had modutils ported.

Richard


On Tue, Oct 16, 2001 at 06:22:44PM +0200, DUTOT Stéphane wrote:
> Hello,
> 
> I have a HP 712/100, I will install my HP station on Adsl gateway. For this, i need make a pptp or pppoe connexion.
> 
> When, the debian install kernel 2.4.0-32, when i start pppoe or pptp connexion, the pppd is launch and just after all system is block. With the last kernel version (2.4.9-pa45) downloaded on paris-linux site. When, i start pptp connexion, he has a kernel panic.
> 
> I have check the mailing-list archive. And i haven't found a begin of solution.
> 
> Maybe, do you have see this problem under the past ?
> 
> Thanks Stéphane DUTOT.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [parisc-linux] PPTP and PPPOE under Debian HPPA Linux.
  2001-10-18 21:46 ` Richard Hirst
@ 2001-10-19  6:49   ` Richard Hirst
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Hirst @ 2001-10-19  6:49 UTC (permalink / raw)
  To: DUTOT Stéphane; +Cc: parisc-linux

On Thu, Oct 18, 2001 at 10:46:44PM +0100, Richard Hirst wrote:
> I've just had a look at this.  Seems to be a problem related to
> the kernel trying to invoke non-existant usermode helper progs.
> 
> I created a script /sbin/hotplug containing just
> 
> 
> #!/bin/sh
> echo hotplug: $* > /dev/console
> 

Don't forget to chmod +x that script.

> and my kernel no longer crashes when trying to establish an async
> ppp link.  Instead, I get this in syslog:

The real problem there was that I was using the wrong authentication
method for my isp.  Once I set that right the link came up.

Richard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2001-10-19  6:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-16 16:22 [parisc-linux] PPTP and PPPOE under Debian HPPA Linux DUTOT Stéphane
2001-10-16 17:50 ` Grant Grundler
2001-10-18 21:46 ` Richard Hirst
2001-10-19  6:49   ` Richard Hirst

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.