diff options
author | Travis Kemen <thepeople@openwrt.org> | 2011-05-08 17:03:07 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2011-05-08 17:03:07 +0000 |
commit | b41ab252a9e9257e0ee6ae596c700256eb627d53 (patch) | |
tree | 60ba5d81b88a05419606e44294f3b65e4654166c /package/6to4 | |
parent | c7cf7f306b7cc988b827336b934ba20791db856d (diff) | |
download | upstream-b41ab252a9e9257e0ee6ae596c700256eb627d53.tar.gz upstream-b41ab252a9e9257e0ee6ae596c700256eb627d53.tar.bz2 upstream-b41ab252a9e9257e0ee6ae596c700256eb627d53.zip |
Deployment of IPv6 has opened up many more prefixes than just the
2000::/3 space, so a default route of ::/0 is more correct.
Thanks Dave Taht
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26857 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/6to4')
-rwxr-xr-x | package/6to4/files/6to4.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/6to4/files/6to4.sh b/package/6to4/files/6to4.sh index cb4a463b01..65f4ffa5c2 100755 --- a/package/6to4/files/6to4.sh +++ b/package/6to4/files/6to4.sh @@ -160,7 +160,7 @@ setup_interface_6to4() { [ "$defaultroute" = 1 ] && { logger -t "$link" " * Adding default route" - ip -6 route add 2000::/3 via ::192.88.99.1 metric ${metric:-1} dev $link + ip -6 route add ::/0 via ::192.88.99.1 metric ${metric:-1} dev $link uci_set_state network "$cfg" defaultroute 1 } @@ -239,7 +239,7 @@ stop_interface_6to4() { } [ "$defaultroute" = "1" ] && { - ip -6 route del 2000::/3 via ::192.88.99.1 dev $link metric 1 + ip -6 route del ::/0 via ::192.88.99.1 dev $link metric 1 } ip addr del $local6 dev $link |