rewrite of the network scripts and configuration

SVN-Revision: 4323
This commit is contained in:
Felix Fietkau
2006-07-30 03:09:09 +00:00
parent 9fb76c1dc2
commit 31e0ccf22f
39 changed files with 482 additions and 650 deletions

View File

@@ -1,15 +1,19 @@
#!/bin/sh
[ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1
. /etc/config/network
. /etc/functions.sh
include network
RESOLV_CONF="/tmp/resolv.conf"
hotplug_event() {
for ifname in lan wan wifi ${ifnames}; do
eval "proto=\"\${${ifname}_proto}\""
eval "if=\"\${${ifname}_ifname}\""
scan_interfaces
for ifc in $interfaces; do
config_get ifname $ifc ifname
[ "$ifname" = "$interface" ] || continue
config_get proto $ifc proto
[ "$proto" = "dhcp" ] || continue
[ "$if" = "$interface" ] || continue
env -i ACTION="$1" INTERFACE="$ifname" PROTO=dhcp /sbin/hotplug iface
done
}