Hi all,
I have finally setup a FreeBSD box as a router/firewall for my native IPv6 /56 network assignment.
I use my modem in bridge mode and PPPoE from the FreeBSD box to initiate the connection. Everything works fine and all the PCs get IPv6 addresses from rtadvd().
The problem:
I want to use statefull DHCP and DNS dynamic updates for each client. net/isc-dhcp41-server is already installed. But rtadvd.conf() completely ignores the below configuration which would instruct to only advertise the IPv6 routing on the network :
Instead it expects to find something similar to this:
I am really stack here because it looks like the documentation for rtadvd.conf for FreeBSD is very limited. Any help will be appreciated!
PS1 The box runs FreeBSD 9.1-RC1
PS2 Sample of dhcpd6.conf
I have finally setup a FreeBSD box as a router/firewall for my native IPv6 /56 network assignment.
I use my modem in bridge mode and PPPoE from the FreeBSD box to initiate the connection. Everything works fine and all the PCs get IPv6 addresses from rtadvd().
The problem:
I want to use statefull DHCP and DNS dynamic updates for each client. net/isc-dhcp41-server is already installed. But rtadvd.conf() completely ignores the below configuration which would instruct to only advertise the IPv6 routing on the network :
Code:
interface re0 {
AdvManagedFlag on;
AdvSendAdvert on;
AdvAutonomous off;
AdvOtherConfigFlag on;
MinRtrAdvInterval 3;
MaxRtrAdvInterval 60;
};
Instead it expects to find something similar to this:
Code:
re0:\
:raflags="o":
I am really stack here because it looks like the documentation for rtadvd.conf for FreeBSD is very limited. Any help will be appreciated!
PS1 The box runs FreeBSD 9.1-RC1
PS2 Sample of dhcpd6.conf
Code:
# The path of the lease file
dhcpv6-lease-file-name "/var/db/dhcpd6/dhcpd6.leases";
subnet6 2a02:xxx:xxx:xxxx::/64 {
range6 2a02:xxx:xxx:xxxx::10 2a02:xxx:xxx:xxxx::1000;
}