aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2004-12-08 22:49:59 +0000
committerBill Nottingham <notting@redhat.com>2004-12-08 22:49:59 +0000
commit8d3061f35f5811328b41ab424b2c51585ecaa22b (patch)
tree23b6a0a6961e3494bab17aa7ff1113b1a5b04951
parentd8dd807c0b8702ce2ed97e87cb7830ac0179804e (diff)
downloadinitscripts-8d3061f35f5811328b41ab424b2c51585ecaa22b.tar
initscripts-8d3061f35f5811328b41ab424b2c51585ecaa22b.tar.gz
initscripts-8d3061f35f5811328b41ab424b2c51585ecaa22b.tar.bz2
initscripts-8d3061f35f5811328b41ab424b2c51585ecaa22b.tar.xz
initscripts-8d3061f35f5811328b41ab424b2c51585ecaa22b.zip
change setting of IPv6 default route (#142308, <pb@bieringer.de>
-rw-r--r--sysconfig/network-scripts/network-functions-ipv611
1 files changed, 4 insertions, 7 deletions
diff --git a/sysconfig/network-scripts/network-functions-ipv6 b/sysconfig/network-scripts/network-functions-ipv6
index 3922965f..adac28e1 100644
--- a/sysconfig/network-scripts/network-functions-ipv6
+++ b/sysconfig/network-scripts/network-functions-ipv6
@@ -8,7 +8,7 @@
# You will find more information on the initscripts-ipv6 homepage at
# http://www.deepspace6.net/projects/initscripts-ipv6.html
#
-# Version: 2004-03-21
+# Version: 2004-12-08
#
# Extended address detection is enabled, if 'ipv6calc' is installed
# see here for more: http://www.deepspace6.net/projects/ipv6calc.html
@@ -1487,11 +1487,9 @@ ipv6_set_default_route() {
if [ -z "$device" ]; then
# Note: this can cause a warning and a not installed route, if given address is not reachable on the link
- #ipv6_add_route ::/0 $addressgw
- ipv6_add_route 2000::/3 $addressgw
+ ipv6_add_route ::/0 $addressgw
else
- #ipv6_add_route ::/0 $addressgw $device
- ipv6_add_route 2000::/3 $addressgw $device
+ ipv6_add_route ::/0 $addressgw $device
fi
elif [ -n "$device" ]; then
# Check whether the route belongs to the specific given interface
@@ -1511,8 +1509,7 @@ ipv6_set_default_route() {
return 3
fi
- #ipv6_add_route ::/0 :: $device
- ipv6_add_route 2000::/3 :: $device
+ ipv6_add_route ::/0 :: $device
else
ipv6_log $"No parameters given to setup a default route" err $fn
return 3