diff options
author | Bill Nottingham <notting@redhat.com> | 2001-06-26 18:41:40 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-06-26 18:41:40 +0000 |
commit | f573a7e992587ca13791d33d344e582af811dff6 (patch) | |
tree | e188fb83caffdc03782d3db0da0b2399966e812e /sysconfig/network-scripts | |
parent | 5732dd0388bccb15948406340abe8fc983dde814 (diff) | |
download | initscripts-f573a7e992587ca13791d33d344e582af811dff6.tar initscripts-f573a7e992587ca13791d33d344e582af811dff6.tar.gz initscripts-f573a7e992587ca13791d33d344e582af811dff6.tar.bz2 initscripts-f573a7e992587ca13791d33d344e582af811dff6.tar.xz initscripts-f573a7e992587ca13791d33d344e582af811dff6.zip |
don't set multicast routes
Diffstat (limited to 'sysconfig/network-scripts')
-rwxr-xr-x | sysconfig/network-scripts/ifup | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index 559052cb..c41ff582 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -226,12 +226,6 @@ else arping -q -A -c 1 -I ${DEVICE} ${IPADDR} ( sleep 2; arping -q -U -c 1 -I ${DEVICE} ${IPADDR} ) > /dev/null 2>&1 < /dev/null & - ip route add unreachable 224.0.0.0/24 > /dev/null 2>&1 - - # if the device is multicast enabled, add a default multicast route - if [ `ip link ls ${DEVICE} | grep -c MULTICAST` -ge 1 ]; then - ip route add 224.0.0.0/4 dev ${DEVICE} scope global >& /dev/null - fi # Add a route for the subnet. Replace any existing route. if [ "${ISALIAS}" = no ]; then |