2005-11-07 01:12:51 +00:00
|
|
|
#!/bin/sh
|
2006-06-27 00:36:13 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
|
2005-07-15 16:56:23 +00:00
|
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
2005-02-06 00:58:10 +00:00
|
|
|
. /etc/functions.sh
|
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-07-30 03:09:09 +00:00
|
|
|
# kill active ppp daemon
|
2006-07-30 13:21:18 +00:00
|
|
|
pid="$(cat /var/run/ppp-${cfg}.pid 2>/dev/null)"
|
2006-07-30 03:09:09 +00:00
|
|
|
[ -n "$pid" -a -d "/proc/$pid" ] && {
|
|
|
|
kill $pid
|
|
|
|
sleep 1
|
|
|
|
[ -d "/proc/$pid" ] && kill -9 $pid
|
|
|
|
}
|
2005-11-07 01:12:51 +00:00
|
|
|
|
2006-07-30 03:09:09 +00:00
|
|
|
# kill any other process associated with the interface
|
2006-07-30 13:21:18 +00:00
|
|
|
config_get ifname "$cfg" ifname
|
2006-07-30 03:09:09 +00:00
|
|
|
pid="$(cat /var/run/${ifname}.pid 2>/dev/null)"
|
|
|
|
[ -n "$pid" -a -d "/proc/$pid" ] && kill -9 $pid
|
|
|
|
|
2006-07-30 13:21:18 +00:00
|
|
|
config_get ifname "$cfg" ifname
|
2006-07-30 03:09:09 +00:00
|
|
|
ifconfig "$ifname" >/dev/null 2>/dev/null && {
|
|
|
|
ifconfig "$ifname" 0.0.0.0 down
|
|
|
|
|
2006-07-30 13:21:18 +00:00
|
|
|
config_get iftype "$cfg" type
|
2006-07-30 03:09:09 +00:00
|
|
|
[ "$iftype" = "bridge" ] && brctl delbr "$ifname"
|
|
|
|
}
|