8/22/22
This commit is contained in:
38
scripts/sysfiles/default.script
Normal file
38
scripts/sysfiles/default.script
Normal file
@@ -0,0 +1,38 @@
|
||||
#!/bin/sh
|
||||
# udhcpc Interface Configuration
|
||||
# Based on http://lists.debian.org/debian-boot/2002/11/msg00500.html
|
||||
# udhcpc script edited by Tim Riker <Tim@Rikers.org>
|
||||
|
||||
[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1
|
||||
|
||||
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
|
||||
while route del default gw 0.0.0.0 dev $interface ; do
|
||||
true
|
||||
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
|
||||
@@ -1,6 +1,6 @@
|
||||
# Begin /etc/hosts (network card version)
|
||||
|
||||
127.0.0.1 localhost
|
||||
192.168.1.1 [<HOSTNAME>.example.org] everest
|
||||
192.168.1.1 everest.everestlinux.org everest
|
||||
|
||||
# End /etc/hosts (network card version)
|
||||
|
||||
Reference in New Issue
Block a user