diff options
author | Miloslav Trmac <mitr@volny.cz> | 2006-05-10 00:08:02 +0000 |
---|---|---|
committer | Miloslav Trmac <mitr@volny.cz> | 2006-05-10 00:08:02 +0000 |
commit | 906238c891d3f02b4c706457783694e3a01d91ce (patch) | |
tree | 4e2003e9100435d47a727d23dfdcb3f182b987f7 /sysconfig/network-scripts/ifup-eth | |
parent | 3bd074fd404b4863d811d0a50e9ef484523c6b57 (diff) | |
download | initscripts-906238c891d3f02b4c706457783694e3a01d91ce.tar initscripts-906238c891d3f02b4c706457783694e3a01d91ce.tar.gz initscripts-906238c891d3f02b4c706457783694e3a01d91ce.tar.bz2 initscripts-906238c891d3f02b4c706457783694e3a01d91ce.tar.xz initscripts-906238c891d3f02b4c706457783694e3a01d91ce.zip |
Add METRIC= support for default routes (#124045)
* ifup-ppp, network-functions: Save all default routes, lose no data.
* network-functions:
- (find_gateway_dev): Fix - it should find the device while $GATEWAY is not
the default route
- (add_default_route): Don't use configuration for the device that is being
brought down; document function purpose and bugs.
Diffstat (limited to 'sysconfig/network-scripts/ifup-eth')
-rwxr-xr-x | sysconfig/network-scripts/ifup-eth | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth index 081c3fd1..5d05c171 100755 --- a/sysconfig/network-scripts/ifup-eth +++ b/sysconfig/network-scripts/ifup-eth @@ -258,12 +258,14 @@ else if [ -z "${GATEWAYDEV}" -o "${GATEWAYDEV}" = "${REALDEVICE}" ]; then # set up default gateway. replace if one already exists if [ -n "${GATEWAY}" -a "`ipcalc --network ${GATEWAY} ${NETMASK} 2>/dev/null`" = "NETWORK=${NETWORK}" ]; then - ip route replace default via ${GATEWAY} ${WINDOW:+window $WINDOW} ${SRC} ${GATEWAYDEV:+dev $GATEWAYDEV} + ip route replace default ${METRIC:+metric $METRIC} \ + via ${GATEWAY} ${WINDOW:+window $WINDOW} ${SRC} \ + ${GATEWAYDEV:+dev $GATEWAYDEV} elif [ "${GATEWAYDEV}" = "${DEVICE}" ]; then - ip route replace default ${SRC} ${WINDOW:+window $WINDOW} dev ${REALDEVICE} + ip route replace default ${METRIC:+metric $METRIC} \ + ${SRC} ${WINDOW:+window $WINDOW} dev ${REALDEVICE} fi fi - fi # Bonding initialization part II - for static, enslave the devices. For |