2010-11-14 23:51:16 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ "$ACTION" = ifup ]; then
|
|
|
|
. /etc/functions.sh
|
|
|
|
|
2012-03-15 09:49:33 +00:00
|
|
|
INCLUDE_ONLY=1
|
|
|
|
. /lib/netifd/proto/6to4.sh
|
|
|
|
|
2010-11-14 23:51:16 +00:00
|
|
|
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")
|
|
|
|
|
2012-03-15 09:49:33 +00:00
|
|
|
[ -n "$wanip" ] && ifup "$cfg"
|
2010-11-14 23:51:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
config_foreach update_tunnel interface
|
|
|
|
fi
|