Hey all,
I've been working a few days on getting ipv6 to work. I have a lab setup with a HE tunnel to get to the IPV6 world. Everything works perfectly, except the automatic process of clients getting addresses. I've did a lot of home work on this and I understand that you need to send out a RA to the clients. I have /etc/rtadvd.conf modified with the following prefix;
I'm not sure if that is correct or not as I'm reflecting what the FreeBSD handbook displayed to do so. Below is my dhcpd6.conf file;
Everything starts perfectly.. I hop on a windows 7 computer and no addresses are obtained. I'm new to this ipv6 stuff and I really like the entire design of it. Some reason it's being a bear to get anything to work unless you feed static addresses to it then it's fine.
I've been working a few days on getting ipv6 to work. I have a lab setup with a HE tunnel to get to the IPV6 world. Everything works perfectly, except the automatic process of clients getting addresses. I've did a lot of home work on this and I understand that you need to send out a RA to the clients. I have /etc/rtadvd.conf modified with the following prefix;
Code:
em1:\
:addrs#1:addr="2001:470:1f10:125d::":prefixlen#64:tc=ether:
Code:
archangel# cat dhcpd6.conf
default-lease-time 2592000;
preferred-lifetime 604800;
option dhcp-renewal-time 3600;
option dhcp-rebinding-time 7200;
# Enable RFC 5007 support (same than for DHCPv4)
allow leasequery;
# The path of the lease file
dhcpv6-lease-file-name "/var/db/dhcpd6.leases";
# Global definitions for name server address(es) and domain search list
#
#
option dhcp6.name-servers 2001:470:20::2;
option dhcp6.domain-search "test.example.com","example.com";
option dhcp6.info-refresh-time 21600;
# The subnet where the server is attached
subnet6 2001:470:1f10:125d::/64 {
range6 2001:470:1f10:125d::100 2001:470:1f10:125d::200;
}