1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-20 22:48:10 +02:00
openwrt/package/6to4/files/6to4.hotplug
Felix Fietkau 7dcb1402e5 6to4: add netifd support
SVN-Revision: 30949
2012-03-15 09:49:33 +00:00

30 lines
506 B
Bash

#!/bin/sh
if [ "$ACTION" = ifup ]; then
. /etc/functions.sh
INCLUDE_ONLY=1
. /lib/netifd/proto/6to4.sh
include /lib/network
scan_interfaces
update_tunnel() {
local cfg="$1"
local proto
config_get proto "$cfg" proto
[ "$proto" = 6to4 ] || return 0
local wandev
config_get wandev "$cfg" wan_device "$(find_6to4_wanif)"
[ "$wandev" = "$DEVICE" ] || return 0
local wanip=$(find_6to4_wanip "$wandev")
[ -n "$wanip" ] && ifup "$cfg"
}
config_foreach update_tunnel interface
fi