Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Mar 2000 17:03:26 +0900
From:      Yoshinobu Inoue <shin@nd.net.fujitsu.co.jp>
To:        fido@yaahoo.yi.org
Cc:        freebsd-current@FreeBSD.ORG
Subject:   Re: IPv6 setup...
Message-ID:  <20000311170326L.shin@nd.net.fujitsu.co.jp>
In-Reply-To: <Pine.BSF.4.21.0003102137470.17355-100000@cr759667-a.nvcr1.bc.wave.home.com>
References:  <20000311054828E.shin@nd.net.fujitsu.co.jp> <Pine.BSF.4.21.0003102137470.17355-100000@cr759667-a.nvcr1.bc.wave.home.com>

next in thread | previous in thread | raw e-mail | index | archive | help
> 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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000311170326L.shin>