aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d/iface/10-routes
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-06-02 00:22:13 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-06-02 00:22:13 +0000
commitefc8f05994dd50a66926335ef45ba7138ad38a1f (patch)
tree63074f28f107485b0e23d336682726c404117d51 /package/base-files/files/etc/hotplug.d/iface/10-routes
parent334cc41eaba0c76cc34e372db3ead1b5006b942b (diff)
downloadmaster-187ad058-efc8f05994dd50a66926335ef45ba7138ad38a1f.tar.gz
master-187ad058-efc8f05994dd50a66926335ef45ba7138ad38a1f.tar.bz2
master-187ad058-efc8f05994dd50a66926335ef45ba7138ad38a1f.zip
[package] base-files:
- add aliases to device by default (not ifname) - introduce option "layer" to select the target ifname to attach the alias to: - 3 use tun device (tun over bridge over device) fallback to bridge or device - 2 use bridge (bridge over device) fallback to device - 1 use device git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21655 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc/hotplug.d/iface/10-routes')
-rw-r--r--package/base-files/files/etc/hotplug.d/iface/10-routes3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/files/etc/hotplug.d/iface/10-routes b/package/base-files/files/etc/hotplug.d/iface/10-routes
index 118c1a665d..14fb75eec2 100644
--- a/package/base-files/files/etc/hotplug.d/iface/10-routes
+++ b/package/base-files/files/etc/hotplug.d/iface/10-routes
@@ -93,8 +93,9 @@ case "$ACTION" in
;;
ifdown)
# Bring down named aliases
+ local device=$(uci_get_state network "$INTERFACE" device)
local ifn
- for ifn in $(ifconfig | sed -ne "s/^\($DEVICE:[^[:space:]]\+\).*/\1/p"); do
+ for ifn in $(ifconfig | sed -ne "s/^\(\($DEVICE${device:+\|$device}\|br-$INTERFACE\):[^[:space:]]\+\).*/\1/p"); do
ifconfig "$ifn" down
done
;;