1 # 6in4.sh - IPv6-in-IPv4 tunnel backend
2 # Copyright (c) 2010 OpenWrt.org
5 local if=$
(ip
-4 r l e
0.0.0.0/0); if="${if#default* dev }"; if="${if%% *}"
6 [ -n "$if" ] && grep -qs "^ *$if:" /proc
/net
/dev
&& echo "$if"
10 local ip
=$
(ip
-4 a s dev
"$1"); ip
="${ip#*inet }"
11 echo "${ip%%[^0-9.]*}"
14 # Hook into scan_interfaces() to synthesize a .device option
15 # This is needed for /sbin/ifup to properly dispatch control
16 # to setup_interface_6in4() even if no .ifname is set in
19 config_set
"$1" device
"6in4-$1"
22 coldplug_interface_6in4
() {
23 setup_interface_6in4
"6in4-$1" "$1"
26 setup_interface_6in4
() {
29 local link
="6in4-$cfg"
31 local local4
=$
(uci_get network
"$cfg" ipaddr
)
34 config_get remote4
"$cfg" peeraddr
37 config_get local6
"$cfg" ip6addr
40 config_get mtu
"$cfg" mtu
43 config_get ttl
"$cfg" ttl
46 config_get metric
"$cfg" metric
49 config_get_bool defaultroute
"$cfg" defaultroute
1
51 # If local4 is unset, guess local IPv4 address from the
52 # interface used by the default route.
54 local wanif
=$
(find_6in4_wanif
)
56 local4
=$
(find_6in4_wanip
"$wanif")
57 uci_set_state network
"$cfg" wan_device
"$wanif"
62 # creating the tunnel below will trigger a net subsystem event
63 # prevent it from touching or iface by disabling .auto here
64 uci_set_state network
"$cfg" ifname
$link
65 uci_set_state network
"$cfg" auto
0
67 ip tunnel add
$link mode sit remote
$remote4 local $local4 ttl
${ttl:-64}
69 ip link
set mtu
${mtu:-1280} dev
$link
70 ip addr add
$local6 dev
$link
72 uci_set_state network
"$cfg" ipaddr
$local4
73 uci_set_state network
"$cfg" ip6addr
$local6
75 [ "$defaultroute" = 1 ] && {
76 ip
-6 route add
::/0 ${metric:+metric $metric} dev
$link
77 uci_set_state network
"$cfg" defaultroute
1
80 env
-i ACTION
="ifup" INTERFACE
="$cfg" DEVICE
="$link" PROTO
=6in4
/sbin
/hotplug-call
"iface" &
82 echo "Cannot determine local IPv4 address for 6in4 tunnel $cfg - skipping"
86 stop_interface_6in4
() {
88 local link
="6in4-$cfg"
90 local local6
=$
(uci_get_state network
"$cfg" ip6addr
)
91 local defaultroute
=$
(uci_get_state network
"$cfg" defaultroute
)
93 grep -qs "^ *$link:" /proc
/net
/dev
&& {
94 env
-i ACTION
="ifdown" INTERFACE
="$cfg" DEVICE
="$link" PROTO
=6in4
/sbin
/hotplug-call
"iface" &
96 [ "$defaultroute" = "1" ] && {
97 ip
-6 route del
::/0 dev
$link
100 ip addr del
$local6 dev
$link
101 ip link
set $link down