aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/ipv6/6in4/files/6in4.sh
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2014-01-17 13:59:47 +0000
committerSteven Barth <steven@midlink.org>2014-01-17 13:59:47 +0000
commit6e39ca25a897f1ad568c292c19dc7edf6d3dd7ad (patch)
tree51c517d5e911a20e0a37f7aecf7264ba1818493b /package/network/ipv6/6in4/files/6in4.sh
parent62fa26dd74cc58354998a3b9ff49d609632e4351 (diff)
downloadmaster-187ad058-6e39ca25a897f1ad568c292c19dc7edf6d3dd7ad.tar.gz
master-187ad058-6e39ca25a897f1ad568c292c19dc7edf6d3dd7ad.tar.bz2
master-187ad058-6e39ca25a897f1ad568c292c19dc7edf6d3dd7ad.zip
6in4, 6rd, 6to4: Use source-restricted routes by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39307 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/ipv6/6in4/files/6in4.sh')
-rwxr-xr-xpackage/network/ipv6/6in4/files/6in4.sh16
1 files changed, 12 insertions, 4 deletions
diff --git a/package/network/ipv6/6in4/files/6in4.sh b/package/network/ipv6/6in4/files/6in4.sh
index 647a2f89cf..d508df788f 100755
--- a/package/network/ipv6/6in4/files/6in4.sh
+++ b/package/network/ipv6/6in4/files/6in4.sh
@@ -14,8 +14,8 @@ proto_6in4_setup() {
local iface="$2"
local link="6in4-$cfg"
- local mtu ttl ipaddr peeraddr ip6addr ip6prefix tunnelid username password
- json_get_vars mtu ttl ipaddr peeraddr ip6addr ip6prefix tunnelid username password
+ local mtu ttl ipaddr peeraddr ip6addr ip6prefix tunnelid username password sourcerouting
+ json_get_vars mtu ttl ipaddr peeraddr ip6addr ip6prefix tunnelid username password sourcerouting
[ -z "$peeraddr" ] && {
proto_notify_error "$cfg" "MISSING_ADDRESS"
@@ -34,16 +34,23 @@ proto_6in4_setup() {
}
proto_init_update "$link" 1
- proto_add_ipv6_route "::" 0
+
+ local source=""
+ [ "$sourcerouting" != "0" ] && source="::/128"
+ proto_add_ipv6_route "::" 0 "" "" "" "$source"
[ -n "$ip6addr" ] && {
local local6="${ip6addr%%/*}"
local mask6="${ip6addr##*/}"
[[ "$local6" = "$mask6" ]] && mask6=
proto_add_ipv6_address "$local6" "$mask6"
+ [ "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$local6/$mask6"
}
- [ -n "$ip6prefix" ] && proto_add_ipv6_prefix "$ip6prefix"
+ [ -n "$ip6prefix" ] && {
+ proto_add_ipv6_prefix "$ip6prefix"
+ [ "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$ip6prefix"
+ }
proto_add_tunnel
json_add_string mode sit
@@ -90,6 +97,7 @@ proto_6in4_init_config() {
proto_config_add_string "password"
proto_config_add_int "mtu"
proto_config_add_int "ttl"
+ proto_config_add_boolean "soucerouting"
}
[ -n "$INCLUDE_ONLY" ] || {