From ced9dffda28f1ec2b060f3e419cf3c6b964b03a1 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Tue, 16 Sep 1997 14:12:05 +0000 Subject: Initial revision --- sysconfig/network-scripts/ifup-plip | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 sysconfig/network-scripts/ifup-plip (limited to 'sysconfig/network-scripts/ifup-plip') diff --git a/sysconfig/network-scripts/ifup-plip b/sysconfig/network-scripts/ifup-plip new file mode 100755 index 00000000..ea423944 --- /dev/null +++ b/sysconfig/network-scripts/ifup-plip @@ -0,0 +1,29 @@ +#!/bin/sh +PATH=/sbin:/usr/sbin:/bin:/usr/bin + +. $1 + +if [ "foo$2" = "fooboot" -a ${ONBOOT} = "no" ] +then + exit +fi + +ifconfig ${DEVICE} ${IPADDR} pointopoint ${REMIP} +route add -net ${NETWORK} netmask ${NETMASK} ${DEVICE} + +# this is broken! it's only here to keep compatibility with old RH sytstems +if [ "${GATEWAY}" != "" -a "${GATEWAY}" != "none" ] +then + route add default gw ${GATEWAY} metric 1 ${DEVICE} +fi + +. /etc/sysconfig/network + +if [ "${GATEWAY}" != "" ]; then + if [ "${GATEWAYDEV}" = "" -o "${GATEWAYDEV}" = "${DEVICE}" ]; then + # set up default gateway + route add default gw ${GATEWAY} + fi +fi + +/etc/sysconfig/network-scripts/ifup-post $1 -- cgit v1.2.1