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