From 7031f62d9b750568b5e98bdb8c59c3c1a72e073d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 8 May 2006 03:20:50 +0000 Subject: add back in udhcp support --- networking/udhcp/samples/sample.bound | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 networking/udhcp/samples/sample.bound (limited to 'networking/udhcp/samples/sample.bound') diff --git a/networking/udhcp/samples/sample.bound b/networking/udhcp/samples/sample.bound new file mode 100755 index 000000000..200352672 --- /dev/null +++ b/networking/udhcp/samples/sample.bound @@ -0,0 +1,30 @@ +#!/bin/sh +# Sample udhcpc renew script + +RESOLV_CONF="/etc/udhcpc/resolv.conf" + +[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" +[ -n "$subnet" ] && NETMASK="netmask $subnet" + +/sbin/ifconfig $interface $ip $BROADCAST $NETMASK + +if [ -n "$router" ] +then + echo "deleting routers" + while /sbin/route del default gw 0.0.0.0 dev $interface + do : + done + + for i in $router + do + /sbin/route add default gw $i dev $interface + done +fi + +echo -n > $RESOLV_CONF +[ -n "$domain" ] && echo domain $domain >> $RESOLV_CONF +for i in $dns +do + echo adding dns $i + echo nameserver $i >> $RESOLV_CONF +done \ No newline at end of file -- cgit v1.2.3