2005-11-07 01:12:51 +00:00
|
|
|
#!/bin/sh
|
2006-06-27 00:36:13 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
|
2005-02-06 00:58:10 +00:00
|
|
|
. /etc/functions.sh
|
2007-03-02 13:21:33 +00:00
|
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
|
|
|
[ "x$1" = "x-a" ] && {
|
2008-10-29 20:31:14 +00:00
|
|
|
[ -e "/tmp/resolv.conf.auto" ] && rm /tmp/resolv.conf.auto
|
2007-03-02 13:21:33 +00:00
|
|
|
config_cb() {
|
2007-04-15 07:22:11 +00:00
|
|
|
[ interface != "$1" -o -z "$2" ] || eval "$0 $2"
|
2007-03-02 13:21:33 +00:00
|
|
|
}
|
|
|
|
config_load network
|
|
|
|
exit
|
|
|
|
}
|
2007-06-16 00:01:33 +00:00
|
|
|
|
2006-09-24 13:32:18 +00:00
|
|
|
include /lib/network
|
2006-07-30 03:09:09 +00:00
|
|
|
scan_interfaces
|
2005-11-07 01:12:51 +00:00
|
|
|
|
2006-07-30 13:21:18 +00:00
|
|
|
cfg=$1
|
|
|
|
debug "### ifdown $cfg ###"
|
2005-11-07 01:12:51 +00:00
|
|
|
|
2006-07-30 13:21:18 +00:00
|
|
|
config_get proto "$cfg" proto
|
2006-07-30 03:09:09 +00:00
|
|
|
[ -z "$proto" ] && { echo "interface not found."; exit; }
|
2005-11-19 03:17:20 +00:00
|
|
|
|
2006-11-09 22:22:45 +00:00
|
|
|
config_get iface "$cfg" device
|
2009-09-14 16:14:27 +00:00
|
|
|
[ "static" = "$proto" -o "none" = "$proto" ] && {
|
|
|
|
env -i ACTION="ifdown" INTERFACE="$cfg" DEVICE="$iface" PROTO="$proto" /sbin/hotplug-call "iface"
|
2006-11-09 22:22:45 +00:00
|
|
|
}
|
|
|
|
|
2006-11-04 00:01:51 +00:00
|
|
|
# call interface stop handler
|
|
|
|
( type "stop_interface_$proto" ) >/dev/null 2>/dev/null && eval "stop_interface_$proto '$cfg'"
|
|
|
|
|
2006-07-30 13:21:18 +00:00
|
|
|
config_get ifname "$cfg" ifname
|
2007-02-06 01:02:30 +00:00
|
|
|
config_get device "$cfg" device
|
2006-10-24 23:59:08 +00:00
|
|
|
|
|
|
|
[ ."$device" != ."$ifname" ] || device=
|
|
|
|
for dev in $ifname $device; do
|
2007-02-06 01:02:30 +00:00
|
|
|
ifconfig "$dev" 0.0.0.0 down >/dev/null 2>/dev/null
|
2006-10-24 23:59:08 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
config_get iftype "$cfg" type
|
2007-06-15 16:07:09 +00:00
|
|
|
[ "bridge" = "$iftype" ] && brctl delbr "$ifname" >/dev/null 2>/dev/null
|
2006-07-30 03:09:09 +00:00
|
|
|
|
2010-05-30 18:23:43 +00:00
|
|
|
# remove the interface's dns entries
|
|
|
|
remove_dns "$cfg"
|
|
|
|
|
2008-08-03 21:00:01 +00:00
|
|
|
# remove the interface's network state
|
|
|
|
uci_revert_state network "$1"
|
|
|
|
|
2008-08-07 15:28:48 +00:00
|
|
|
# revert aliases state as well
|
|
|
|
config_get aliases "$1" aliases
|
|
|
|
for config in $aliases; do
|
|
|
|
uci_revert_state network "$config"
|
|
|
|
done
|