From owner-freebsd-current Sat Mar 11 0: 3:24 2000 Delivered-To: freebsd-current@freebsd.org Received: from fgwmail6.fujitsu.co.jp (fgwmail6.fujitsu.co.jp [192.51.44.36]) by hub.freebsd.org (Postfix) with ESMTP id 0B51737B8F1 for ; Sat, 11 Mar 2000 00:03:22 -0800 (PST) (envelope-from shin@nd.net.fujitsu.co.jp) Received: from m3.gw.fujitsu.co.jp by fgwmail6.fujitsu.co.jp (8.9.3/3.7W-MX0002-Fujitsu Gateway) id RAA00147; Sat, 11 Mar 2000 17:02:33 +0900 (JST) (envelope-from shin@nd.net.fujitsu.co.jp) Received: from incapgw.fujitsu.co.jp by m3.gw.fujitsu.co.jp (8.9.3/3.7W-0002-Fujitsu Domain Master) id RAA00460; Sat, 11 Mar 2000 17:02:32 +0900 (JST) Received: from localhost ([192.168.245.169]) by incapgw.fujitsu.co.jp (8.9.3/3.7W-0002) id RAA05641; Sat, 11 Mar 2000 17:02:31 +0900 (JST) To: fido@yaahoo.yi.org Cc: freebsd-current@FreeBSD.ORG Subject: Re: IPv6 setup... In-Reply-To: References: <20000311054828E.shin@nd.net.fujitsu.co.jp> X-Mailer: Mew version 1.94 on Emacs 20.4 / Mule 4.0 (HANANOEN) X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000311170326L.shin@nd.net.fujitsu.co.jp> Date: Sat, 11 Mar 2000 17:03:26 +0900 From: Yoshinobu Inoue X-Dispatcher: imput version 990905(IM130) Lines: 32 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > How/Where is the setup for the IPv6? > > Shaun If you have recent tree or Freebsd4.0 RC3, then there will be IPv6 specific configuration examples in /etc/defaults/rc.conf. The lines which start from "ipv6_..." are them. At least you need to set ipv6_enable to YES. You need to add the follwing line into /etc/rc.conf. ipv6_enable="YES" If you want to use your machine as IPv6 router, then you need to assigne your interfaces IPv6 prefix (like IPv4 subnet). Typical configurations will be, ipv6_gateway_enable="YES" # Set to YES if this host will be a gateway. ipv6_router_enable="YES" # Set to YES to enable an IPv6 routing daemon. ipv6_router_flags="-l" # Flags to IPv6 routing daemon. Also, if your router has ed0 and ep0, and you want to assigne IPv6 site local prefixes fec0:0000:0000:0001::/64 and fec0:0000:0000:0003::/64, then following additions will be enough. ipv6_network_interfaces="ed0 ep0" ipv6_prefix_ed0=fec0:0000:0000:0001 ipv6_prefix_ep0=fec0:0000:0000:0003 Cheers, Yoshinobu Inoue To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message