diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-15 09:49:33 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-15 09:49:33 +0000 |
commit | 7dcb1402e59fde9501ef490ff26709468c5ba0a9 (patch) | |
tree | 42c1da1969b64df5000ed6eab9cba9254c515c13 /package/6to4/files.old/6to4.hotplug | |
parent | b60539115ec05052c111bc5764f28f15d1171857 (diff) | |
download | upstream-7dcb1402e59fde9501ef490ff26709468c5ba0a9.tar.gz upstream-7dcb1402e59fde9501ef490ff26709468c5ba0a9.tar.bz2 upstream-7dcb1402e59fde9501ef490ff26709468c5ba0a9.zip |
6to4: add netifd support
SVN-Revision: 30949
Diffstat (limited to 'package/6to4/files.old/6to4.hotplug')
-rw-r--r-- | package/6to4/files.old/6to4.hotplug | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/package/6to4/files.old/6to4.hotplug b/package/6to4/files.old/6to4.hotplug new file mode 100644 index 0000000000..1e3d26c418 --- /dev/null +++ b/package/6to4/files.old/6to4.hotplug @@ -0,0 +1,34 @@ +#!/bin/sh + +if [ "$ACTION" = ifup ]; then + . /etc/functions.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" ] && { + lsmod | grep -q ^sit || { + logger -t 6to4 "Tunneling driver not loaded yet, deferring action" + exit 0 + } + + uci_set_state network "$cfg" ipaddr "$wanip" + ( ifup "$cfg" )& + } + } + + config_foreach update_tunnel interface +fi |