diff options
-rwxr-xr-x | sysconfig/network-scripts/ifdown-eth | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifdown-eth b/sysconfig/network-scripts/ifdown-eth index cdf44f56..5ce3e1df 100755 --- a/sysconfig/network-scripts/ifdown-eth +++ b/sysconfig/network-scripts/ifdown-eth @@ -111,10 +111,15 @@ retcode=0 # brought up. Flush all addresses associated with this # instance instead. if [ -d "/sys/class/net/${REALDEVICE}" ]; then + if [ "${REALDEVICE}" = "lo" ]; then + SCOPE="host" + else + SCOPE="global" + fi if [ "${REALDEVICE}" = "${DEVICE}" ]; then - ip addr flush dev ${REALDEVICE} scope global 2>/dev/null + ip addr flush dev ${REALDEVICE} scope ${SCOPE} 2>/dev/null else - ip addr flush dev ${REALDEVICE} label ${DEVICE} scope global 2>/dev/null + ip addr flush dev ${REALDEVICE} label ${DEVICE} scope ${SCOPE} 2>/dev/null fi if [ "${SLAVE}" = "yes" -a -n "${MASTER}" ]; then |