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