diff options
| author | Bill Nottingham <notting@redhat.com> | 2006-11-20 22:07:41 +0000 |
|---|---|---|
| committer | Bill Nottingham <notting@redhat.com> | 2006-11-20 22:07:41 +0000 |
| commit | 092e6f1869ab877b1116acb8083c9e3508b3c195 (patch) | |
| tree | c9e84f86e0fbbff18ef940ae8f1d0d8567d0d64f /sysconfig/network-scripts | |
| parent | b17ded48cd5f1d5e23b378d94a75ca6626509d43 (diff) | |
- ifup: fix actual 169.254 networks (#203591)
Diffstat (limited to 'sysconfig/network-scripts')
| -rwxr-xr-x | sysconfig/network-scripts/ifup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index be400a30..03c76047 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -445,7 +445,7 @@ if [ "${TYPE}" = "Bonding" ] || ethtool -i $DEVICE 2>/dev/null| grep -q "driver fi # Add Zeroconf route. -if [ -z "${NOZEROCONF}" -a "${ISALIAS}" = "no" ]; then +if [ -z "${NOZEROCONF}" -a "${ISALIAS}" = "no" -a "${REALDEVICE}" != "lo" ]; then ip route replace 169.254.0.0/16 dev ${REALDEVICE} fi |
