diff options
| author | 2012-10-02 02:42:21 +0200 | |
|---|---|---|
| committer | 2013-10-02 01:33:22 +0200 | |
| commit | 40b48713e6b5d5570906ae1cebd1c022abd52358 (patch) | |
| tree | 0809b62d7f06f6f15825718439f052ec92969c54 /ramfs/sbin/dhcpassign.sh | |
| download | kernel-pwn-challenge-master.tar.xz kernel-pwn-challenge-master.zip | |
Diffstat (limited to 'ramfs/sbin/dhcpassign.sh')
| -rwxr-xr-x | ramfs/sbin/dhcpassign.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ramfs/sbin/dhcpassign.sh b/ramfs/sbin/dhcpassign.sh new file mode 100755 index 0000000..347a37c --- /dev/null +++ b/ramfs/sbin/dhcpassign.sh @@ -0,0 +1,34 @@ +#!/bin/sh + +RESOLV_CONF="/etc/resolv.conf" +[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" +[ -n "$subnet" ] && NETMASK="netmask $subnet" + +case "$1" in + deconfig) + /sbin/ifconfig $interface 0.0.0.0 + ;; + + renew|bound) + /sbin/ifconfig $interface $ip $BROADCAST $NETMASK + + if [ -n "$router" ] ; then + echo "deleting routers" + while route del default gw 0.0.0.0 dev $interface ; do + : + done + + for i in $router ; do + route add default gw $i dev $interface + done + fi + + echo -n > $RESOLV_CONF + [ -n "$domain" ] && echo search $domain >> $RESOLV_CONF + for i in $dns ; do + echo nameserver $i >> $RESOLV_CONF + done + ;; +esac + +exit 0 |
