1# DHCPv6 host declaration config 2 3# authoritative is mandatory 4authoritative; 5 6# subnet declaration 7subnet6 2001::/64 { 8 range6 2001::100 2001::200; 9} 10 11# host declarations 12host test1 { 13 hardware ethernet 00:07:0E:36:48:19; 14 fixed-address6 2001::1, 2001::10; 15} 16 17host test2 { 18 hardware fddi 00:07:0E:36:48:19; 19 fixed-prefix6 2001:0:0:1::/64; 20} 21