Bug 1522 - IPX normally not running
Summary: IPX normally not running
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: initscripts
Version: 5.2
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: David Lawrence
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 1999-03-16 07:10 UTC by bombe
Modified: 2008-03-06 19:57 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 1999-03-16 15:46:37 UTC
Embargoed:


Attachments (Terms of Use)

Description bombe 1999-03-16 07:10:41 UTC
The /etc/sysconfig/network-scripts/ifup-ipx script
doesn't configure correctly IPX interfaces. It reads the IPX
options from ifcfg-eth0, cuts the frame type and passes
frame type, network number, etc. to /usr/bin/ipx_interface
program. The problem is that the IPX frametypes are passed
as arguments to ipx_interface as 802_2 and 802_3 but
ipx_interface program expects that they're passed as 802.2
and 802.3. So, the solutions is to add next line in ifup-ipx
script just before the ipx_interface command is executed:

REAL_FRAMETYPE=`echo $frametype | sed 's/_/./g'`

and to change ipx_interface's option from FRAMETYPE to
REAL_FRAMETYPE

In this way the underbars are changed with periods for 802.2
and 802.3 frametypes. EtherII and SNAP frames are not
affected in this case. I haven't tested if they work - no
need at all.

Comment 1 Bill Nottingham 1999-03-16 15:46:59 UTC
this has been fixed in a later initscripts release.


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