diff options
author | shin <shin@FreeBSD.org> | 2000-02-23 18:05:58 +0000 |
---|---|---|
committer | shin <shin@FreeBSD.org> | 2000-02-23 18:05:58 +0000 |
commit | af0bb085250e0cfb160fc34ac4d3aa545bc5940a (patch) | |
tree | 9ecbdd1111b9f930840a3a81e289545774991a0d /etc/defaults | |
parent | 8e95d00d2495c79517e8b1865fabe090db0bade2 (diff) | |
download | FreeBSD-src-af0bb085250e0cfb160fc34ac4d3aa545bc5940a.zip FreeBSD-src-af0bb085250e0cfb160fc34ac4d3aa545bc5940a.tar.gz |
Add IPv6 configuration scripts.
Initial version created by, and kindly much tested by:
bmah@CA.Sandia.GOV (Bruce A. Mah)
Approved by: jkh
Reviewed by: bmah@CA.Sandia.GOV (Bruce A. Mah),
Ollivier Robert <roberto@keltia.freenix.fr>
Obtained from: KAME project
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/rc.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 3d04582..30f48e4 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -184,6 +184,34 @@ isdn_traceflags="-f /var/tmp/isdntrace0" # Flags for isdntrace ### Miscellaneous network options: ### icmp_bmcastecho="NO" # respond to broadcast ping packets +### IPv6 options: ### +ipv6_enable="NO" # Set to YES to set up for IPv6. +ipv6_network_interfaces="auto" # List of network interfaces (or "auto"). +ipv6_gateway_enable="NO" # Set to YES if this host will be a gateway. +ipv6_router_enable="NO" # Set to YES to enable an IPv6 routing daemon. +ipv6_router="/usr/sbin/route6d" # Name of IPv6 routing daemon. +ipv6_router_flags="" # Flags to IPv6 routing daemon. +#ipv6_router_flags="-l" # Example for route6d with only IPv6 site local + # addrs. +#ipv6_network_interfaces="ed0 ep0" # Examples for router. + # Choose correct prefix value. +#ipv6_prefix_ed0="fec0:0000:0000:0001 fec0:0000:0000:0002" # Examples for rtr. +#ipv6_prefix_ep0="fec0:0000:0000:0003 fec0:0000:0000:0004" # Examples for rtr. +ipv6_default_interface="" # Default output interface for scoped addrs. + # Now this works only for IPv6 link local + # multicast addrs. +prefixcmd_enable="YES" # Use prefix command to assign router prefix. +rtadvd_enable="NO" # Set to YES to enable an IPv6 router + # advertisement daemon. +mroute6d_enable="NO" # Do IPv6 multicast routing. +mroute6d_program="/usr/sbin/pim6dd" # Name of IPv6 multicast routing + # daemon. +mroute6d_flags="" # Flags to IPv6 multicast routing daemon. +gif_interfaces="NO" # List of GIF tunnels (or "NO"). +#gif_interfaces="gif0 gif1" # Examples typically for a router. + # Choose correct tunnel addrs. +#gifconfig_gif0="10.1.1.1 10.1.2.1" # Examples typically for a router. +#gifconfig_gif1="10.1.1.2 10.1.2.2" # Examples typically for a router. ############################################################## ### System console options ################################# |