diff options
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/ifup-ctc | 4 | ||||
-rw-r--r-- | sysconfig/network-scripts/ifup-escon | 4 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup-iucv | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sysconfig/network-scripts/ifup-ctc b/sysconfig/network-scripts/ifup-ctc index 98be8223..1cfa4970 100755 --- a/sysconfig/network-scripts/ifup-ctc +++ b/sysconfig/network-scripts/ifup-ctc @@ -24,7 +24,7 @@ then fi [ -n "${MTU}" ] && opts="${opts} mtu ${MTU}" -ifconfig ${DEVICE} ${IPADDR} ${opts} pointopoint ${REMIP} +ifconfig ${DEVICE} ${IPADDR} ${opts} pointopoint ${REMIP} netmask ${NETMASK} # Wait for the device to come up - the chandev'ified ctc driver can take # quite a while... @@ -38,7 +38,7 @@ while ! ping -w 30 -c 1 ${REMIP} &>/dev/null; do done if [ "${NETWORK}" != "" ] ; then - route add -net ${NETWORK} netmask ${NETMASK} ${DEVICE} + route add -host ${REMIP} metric 1 ${DEVICE} fi . /etc/sysconfig/network diff --git a/sysconfig/network-scripts/ifup-escon b/sysconfig/network-scripts/ifup-escon index 1e29840b..311aeb4b 100644 --- a/sysconfig/network-scripts/ifup-escon +++ b/sysconfig/network-scripts/ifup-escon @@ -25,7 +25,7 @@ then fi [ -n "${MTU}" ] && opts="${opts} mtu ${MTU}" -ifconfig ${DEVICE} ${IPADDR} ${opts} pointopoint ${REMIP} +ifconfig ${DEVICE} ${IPADDR} ${opts} pointopoint ${REMIP} netmask ${NETMASK} # Wait for the device to come up - the chandev'ified ctc driver can take # quite a while... @@ -39,7 +39,7 @@ while ! ping -w 30 -c 1 ${REMIP} &>/dev/null; do done if [ "${NETWORK}" != "" ] ; then - route add -net ${NETWORK} netmask ${NETMASK} ${DEVICE} + route add -host ${REMIP} metric 1 ${DEVICE} fi . /etc/sysconfig/network diff --git a/sysconfig/network-scripts/ifup-iucv b/sysconfig/network-scripts/ifup-iucv index 5f4bb2fc..48c822da 100755 --- a/sysconfig/network-scripts/ifup-iucv +++ b/sysconfig/network-scripts/ifup-iucv @@ -24,9 +24,9 @@ then fi [ -n "${MTU}" ] && opts="${opts} mtu ${MTU}" -ifconfig ${DEVICE} ${IPADDR} ${opts} pointopoint ${REMIP} +ifconfig ${DEVICE} ${IPADDR} ${opts} pointopoint ${REMIP} netmask ${NETMASK} if [ "${NETWORK}" != "" ] ; then - route add -net ${NETWORK} netmask ${NETMASK} ${DEVICE} + route add -host ${REMIP} metric 1 ${DEVICE} fi . /etc/sysconfig/network |