As I understand, the IPv6-DHCP server can be used to distribute addresses from the assigned pool. I've tried it out following your instructions, thank you very much, but I'm still not sure if it worked.You can provide your own DNS server within your LAN via /ipv6/nd's dns property and /ipv6/dhcp-server/option (I recommend to set it up both ways to support all clients). The latter approach also allows to provide other standard configuration options to clients, such as domain name.
I am not yet sure how to ensure that the current IPv6 address of the DNS server is always distributed. The ISP assigns a dynamic pool, so I can't distribute the address of the local DNS dynamically via code 23?
Code:
/ipv6 dhcp-clientadd add-default-route=yes comment="Netcologne DHCPv6 Pool" interface=PPPoE_Out pool-name=DHCPv6-Pool-64 prefix-hint=::/48 rapid-commit=no request=prefix use-peer-dns=no/ipv6 addressadd address=::1 advertise=no from-pool=DHCPv6-Pool-64 interface=vlan100_internadd address=::1 advertise=no from-pool=DHCPv6-Pool-64 interface=vlan200_guests/ipv6 dhcp-server optionadd code=24 name=search-domain-home-lan value="0x04'home'0x06'lan'0x00"add code=24 name=search-domain-home-guests value="0x04'home'0x06'guests'0x00"/ipv6 dhcp-serveradd address-pool=DHCPv6-Pool-64 dhcp-option=search-domain-home-lan interface=vlan100_intern lease-time=1d name=internadd address-pool=DHCPv6-Pool-64 dhcp-option=search-domain-home-guests interface=vlan200_guests lease-time=1d name=guests/ipv6 ndadd hop-limit=64 interface=vlan100_intern other-configuration=yes ra-preference=high reachable-time=5madd hop-limit=64 interface=vlan200_guests other-configuration=yes ra-preference=high reachable-time=5m
Statistics: Posted by lenox89 — Fri Dec 29, 2023 11:53 pm