Bug 9374 - 6.1 ppp will continue dialling out with failed connects. "feature or bug?"
Summary: 6.1 ppp will continue dialling out with failed connects. "feature or bug?"
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: ppp
Version: 6.1
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Nalin Dahyabhai
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2000-02-12 06:21 UTC by tsmith
Modified: 2008-05-01 15:37 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2000-02-14 14:17:07 UTC
Embargoed:


Attachments (Terms of Use)

Description tsmith 2000-02-12 06:21:02 UTC
I wonder if someone would mind helping me with a mystery that is causing me
to pull my hair out......

I have been using a Linux server based on RedHat 5.2 for some time to
connect to the Internet and provide masquerade for a bunch of Windows boxes
on a private network behind it.


Today I decided to redo the server to incorporate a few more sophisticated
things like DNS, DHCP and HTTP serving for a prototype intranet.

All went very well with one small hiccup. There seems to be an undocumented
change in the behavior of ppp between RedHat 6.1 and 5.2.

Using 5.2 invoking "ifup ppp1" will result in the server making one and one
only attempt to connect to the internet.

This is exactly what I want

Using 6.1 if the dialout attempt fails, it simply loops and tries again and
again until it either connects or is stopped.

I don't want this, nor do I think it is intelligent designed behaviour.

I have compared all the relevant (I hope) scripts between 5.2 and 6.1 but I
cannot find a difference that would account for the changed behavior.

I have the awful feeling I've missed something important (it's been a long
day), could someone please tell me what it is?

On the other hand, it just might be a genuine bug.....


Tony Smith

Comment 1 Nalin Dahyabhai 2000-02-14 14:17:59 UTC
I believe the ppp-watch process started in the ifup-ppp script is what you're
looking for here.  It monitors the interface and continues trying to bring it
up until the interface has been connected at least once.  This eliminates
problems caused by intermittent dialing and connecting errors, which is
generally a good thing.

I'm not completely sure if this will work or not, but commenting these lines out
from /etc/sysconfig/network-scripts/ifup-ppp should restore the behavior you
want:

#if [ "$1" != daemon ] ; then
#  # just in case a full path to the configuration file is passed in
#  ifcfg=$(basename $1)
#  shift
#  # let ppp-watch do the right thing
#  exec /sbin/ppp-watch "$ifcfg" "$@"
#fi
#shift


Note You need to log in before you can comment on or make changes to this bug.