Bug 14673

Summary: Multicas route not added by ifup
Product: [Retired] Red Hat Linux Reporter: Tomasz Kepczynski <tomek>
Component: initscriptsAssignee: Bill Nottingham <notting>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6.2CC: rvokal
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2000-07-26 23:49:27 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Tomasz Kepczynski 2000-07-26 19:07:25 UTC
I created route for multicast with linuxconf which yielded:
any net 224.0.0.0 netmask 240.0.0.0 gw eth0
in /etc/sysconfig/static-routes.
This is the only route in this file. The route is not added
as there is an error in ifup-routes script.
Line 19 in script reads:
  if [ "$dev" = "$device" ]; then
This will  return false as in my case $device
has not been assigned yet. I guess this line should
be:
  if [ "$dev" = "$1" ]; then

Comment 1 Jeff Johnson 2000-07-26 23:49:26 UTC
*** Bug 14674 has been marked as a duplicate of this bug. ***

Comment 2 Bill Nottingham 2000-08-07 05:21:45 UTC
Fixed in initscripts-5.40-1; thanks for the bug report.