diff options
author | Bill Nottingham <notting@redhat.com> | 2001-02-07 23:59:52 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-02-07 23:59:52 +0000 |
commit | be228f2705ed785c3b0669a45fb80709d184dc20 (patch) | |
tree | e9df99f27980bc0f9c6967a46acf14b840278910 | |
parent | 360366ced865c450ed936b04a6aed701a3186fd4 (diff) | |
download | initscripts-be228f2705ed785c3b0669a45fb80709d184dc20.tar initscripts-be228f2705ed785c3b0669a45fb80709d184dc20.tar.gz initscripts-be228f2705ed785c3b0669a45fb80709d184dc20.tar.bz2 initscripts-be228f2705ed785c3b0669a45fb80709d184dc20.tar.xz initscripts-be228f2705ed785c3b0669a45fb80709d184dc20.zip |
more ipv6 sync-ups
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | sysconfig.txt | 4 | ||||
-rw-r--r-- | sysconfig/network-scripts/network-functions-ipv6 | 67 |
3 files changed, 27 insertions, 47 deletions
@@ -62,8 +62,7 @@ changelog: clean: (cd src; make clean) (cd po; make clean) - @rm -fv *~ changenew ChangeLog.old - + @rm -fv *~ changenew ChangeLog.old *gz tag-archive: @cvs -Q tag -F $(CVSTAG) diff --git a/sysconfig.txt b/sysconfig.txt index d9d008d2..06235bc5 100644 --- a/sysconfig.txt +++ b/sysconfig.txt @@ -116,7 +116,7 @@ Files in /etc/sysconfig IPXINTERNALNETNUM=<netnum> IPXINTERNALNODENUM=<nodenum> NETWORKING_IPV6=yes|no - Enable or disable global IPv6 initialiation + Enable or disable global IPv6 initialization All the IPX stuff is optional, and should default to off. @@ -169,7 +169,7 @@ Files in /etc/sysconfig eth0 2000::/3 3ffe:400:100:f101::1 eth0 3ffe::/16 3ffe:400:100:f101::1 - so called "default" route for clients + so-called "default" route for clients sit1 2000::/3 sit1 3ffe::/16 diff --git a/sysconfig/network-scripts/network-functions-ipv6 b/sysconfig/network-scripts/network-functions-ipv6 index 2c0e7846..aa6bb35e 100644 --- a/sysconfig/network-scripts/network-functions-ipv6 +++ b/sysconfig/network-scripts/network-functions-ipv6 @@ -29,35 +29,23 @@ function test_ipv6() # Test for IPv6 enabled kernel if ! [ -f /proc/net/if_inet6 ]; then - echo "Did not find IPv6 in kernel, trying to load module" modprobe ipv6 if ! [ -f /proc/net/if_inet6 ]; then - echo "Kernel not compiled for IPv6 - stop!" + echo $"Kernel is not compiled with IPv6 support" return 2 fi fi # Test for IPv6 enabled needed binaries - if ! ifconfig -? 2>&1 | grep -q "(IPv6)"; then - echo "'`which ifconfig`' (net-tools) not compiled for IPv6 - stop!" - return 2 - fi - - if ! route -? 2>&1 | grep -q "(IPv6)"; then - echo "'`which route`' (net-tools) not compiled for IPv6 - stop!" - return 2 - fi - - return 0 } ##### Control IPv6 forwarding # Display usage function forwarding_ipv6_usage() { - echo "Usage: $0 yes|no [device]" + echo $"Usage: $0 yes|no [device]" } @@ -69,13 +57,13 @@ function forwarding_ipv6() { device=$2 # maybe empty if [ -z $control ]; then - echo "Missing option forwarding control'" + echo $"Missing parameter forwarding control'" forwarding_ipv6_usage return 1 fi if ! [ "$control" = "yes" -o "$control" = "no" -o "$control" = "on" -o "$control" = "off" ]; then - echo "Don't understand forwarding control option '$control'" + echo $"Don't understand forwarding control parameter '$control'" forwarding_ipv6_usage return 1 fi @@ -97,17 +85,12 @@ function forwarding_ipv6() { # Global control? (if no device is given) if [ -z $device ]; then - if [ -f /proc/sys/net/ipv6/conf/all/forwarding ]; then - echo "$status" > /proc/sys/net/ipv6/conf/all/forwarding - fi + sysctl -w net.ipv6.conf.all.forwarding=$status >/dev/null 2>&1 fi # Per device control if [ ! -z $device ]; then - if [ -f /proc/sys/net/ipv6/conf/$device/forwarding ]; then - echo "$string IPv6 forwarding for device '$device'" - echo "$status" > /proc/sys/net/ipv6/conf/$device/forwarding - fi + sysctl -w net.ipv6.conf.$device.forwarding=$status >/dev/null 2>&1 fi } @@ -130,13 +113,13 @@ function ifup_ipv6_route() { device=$3 # maybe empty if [ -z $networkipv6 ]; then - echo $"Missing option 'IPv6-network'" + echo $"Missing parameter 'IPv6-network'" ifupdown_ipv6_route_usage return 1 fi if [ -z $gatewayipv6 ]; then - echo "Missing option 'IPv6-gateway'" + echo "Missing parameter 'IPv6-gateway'" ifupdown_ipv6_route_usage return 1 fi @@ -168,13 +151,13 @@ function ifdown_ipv6_route() { device=$3 # maybe empty if [ -z $networkipv6 ]; then - echo $"Missing option IPv6-network'" + echo $"Missing parameter IPv6-network'" ifup_ipv6_route_usage return 1 fi if [ -z $gatewayipv6 ]; then - echo $"Missing option 'IPv6-gateway'" + echo $"Missing parameter 'IPv6-gateway'" ifup_ipv6_route_usage return 1 fi @@ -189,7 +172,6 @@ function ifdown_ipv6_route() { if [ -z $device ]; then - echo "Delete IPv6 route '$networkipv6' gateway '$gatewayipv6'" route -A inet6 del $networkipv6 gw $gatewayipv6 else route -A inet6 del $networkipv6 gw $gatewayipv6 dev $device @@ -235,7 +217,6 @@ function ifdown_ipv6_autotunnel() { true else # basic tunnel device to down - echo "Bring down basic tunnel device 'sit0'" # Switch off forwarding forwarding_ipv6 off sit0 @@ -248,7 +229,7 @@ function ifdown_ipv6_autotunnel() { ##### static tunneling configuration function ifupdown_ipv6_tunnel_usage() { - echo "Usage: $0 interfacename IPv4-tunneladdress IPv6-route" + echo $"Usage: $0 interfacename IPv4-tunneladdress IPv6-route" } @@ -262,19 +243,19 @@ function ifup_ipv6_tunnel() { routeipv6=$3 if [ -z $device ]; then - echo "Missing option 'device'" + echo $"Missing parameter 'device'" ifupdown_ipv6_tunnel_usage return 1 fi if [ -z $addressipv4tunnel ]; then - echo "Missing option 'IPv4-tunneladdress'" + echo $"Missing parameter 'IPv4-tunneladdress'" ifupdown_ipv6_tunnel_usage return 1 fi if [ -z $routeipv6 ]; then - echo "Missing option 'IPv6-route'" + echo $"Missing parameter 'IPv6-route'" ifupdown_ipv6_tunnel_usage return 1 fi @@ -302,19 +283,19 @@ function ifdown_ipv6_tunnel() { routeipv6=$3 if [ -z $device ]; then - echo "Missing option 'device'" + echo $"Missing parameter 'device'" ifupdown_ipv6_tunnel_usage return 1 fi if [ -z $addressipv4tunnel ]; then - echo "Missing option 'IPv4-tunneladdress'" + echo $"Missing parameter 'IPv4-tunneladdress'" ifupdown_ipv6_tunnel_usage return 1 fi if [ -z $routeipv6 ]; then - echo "Missing option 'IPv6-route'" + echo $"Missing parameter 'IPv6-route'" ifupdown_ipv6_tunnel_usage return 1 fi @@ -334,7 +315,7 @@ function ifdown_ipv6_tunnel() { ##### Interface configuration function ifupdown_ipv6_usage() { - echo "Usage: $0 interfacename IPv6-address [IPv6-prefixlength]" + echo $"Usage: $0 interfacename IPv6-address [IPv6-prefixlength]" } ## Add an IPv6 address for given interface @@ -347,7 +328,7 @@ function ifup_ipv6_real() { prefixlength=$3 if [ -z $device ]; then - echo "Missing option 'device'" + echo $"Missing parameter 'device'" ifupdown_ipv6_usage return 1 fi @@ -358,7 +339,7 @@ function ifup_ipv6_real() { fi if [ -z $address ]; then - echo "Missing option 'IPv6-address'" + echo $"Missing parameter 'IPv6-address'" ifupdown_ipv6_usage return 1 fi @@ -412,8 +393,8 @@ function ifdown_ipv6_real_all() { device=$1 if [ -z $device ]; then - echo "Missing option 'device'" - echo "Usage: ifdown_ipv6_real_all interfacename" + echo $"Missing parameter 'device'" + echo $"Usage: ifdown_ipv6_real_all interfacename" return 1 fi @@ -443,7 +424,7 @@ function ifdown_ipv6_real() { prefixlength=$3 if [ -z $device ]; then - echo "Missing option 'device'" + echo $"Missing parameter 'device'" ifupdown_ipv6_usage return 1 fi @@ -454,7 +435,7 @@ function ifdown_ipv6_real() { fi if [ -z $address ]; then - echo "Missing option 'IPv6-address'" + echo $"Missing parameter 'IPv6-address'" ifupdown_ipv6_usage return 1 fi |