Bug 134923 - Bug in adsl-connect if MTU is not set
Summary: Bug in adsl-connect if MTU is not set
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: rp-pppoe
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Than Ngo
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2004-10-07 09:56 UTC by Jan Arne Petersen
Modified: 2007-11-30 22:10 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2004-10-07 10:17:41 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Jan Arne Petersen 2004-10-07 09:56:36 UTC
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3)
Gecko/20040930 Epiphany/1.4.0

Description of problem:
In /sbin/adsl-connect

[ -z "MTU" ] && MTU="1492"
[ -z "MRU" ] && MRU="1492"

should be

[ -z "$MTU" ] && MTU="1492"
[ -z "$MRU" ] && MRU="1492"

Version-Release number of selected component (if applicable):
rp-pppoe-3.5-18

How reproducible:
Always

Steps to Reproduce:
1. create DSL connection
2. try to connect to DSL

Additional info:

tail /var/log/messages:

adsl-connect: ADSL connection lost; attempting re-connection.
pppd[10379]: invalid numeric parameter 'mru' for mtu option

Comment 1 Than Ngo 2004-10-07 10:17:41 UTC
it's typo bugs :( it's now fixed in rp-pppoe-3.5-19, thanks for your
report.


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