diff options
author | Steven Barth <cyrus@openwrt.org> | 2014-01-17 13:59:47 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2014-01-17 13:59:47 +0000 |
commit | a5ee266cd9f4f7909aa7df0bff2e96a0e9199611 (patch) | |
tree | a569019491693edf12f50d999ff89d42b7c8013f /package/network/ipv6/6in4 | |
parent | bc8412b90e8d1c9ce29142801ec7fda9fe938b29 (diff) | |
download | upstream-a5ee266cd9f4f7909aa7df0bff2e96a0e9199611.tar.gz upstream-a5ee266cd9f4f7909aa7df0bff2e96a0e9199611.tar.bz2 upstream-a5ee266cd9f4f7909aa7df0bff2e96a0e9199611.zip |
6in4, 6rd, 6to4: Use source-restricted routes by default
SVN-Revision: 39307
Diffstat (limited to 'package/network/ipv6/6in4')
-rwxr-xr-x | package/network/ipv6/6in4/files/6in4.sh | 16 |
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" ] || { |