<div dir="ltr"><div>Dear mailing list users, <br></div><div>I have been trying to define NTPv6 option to use with ISC-DHCPD6 daemon (4.4.1 running on Ubuntu 22.04 server) as follows</div><div><br></div><div># ntp option 56<br>option space ntp code width 2 length width 2 hash size 2;<br>option ntp.address code 1 = array of ip6-address;<br>option opt56 code 56 = encapsulate ntp;</div><div><br></div><div>and then use it in a subnet as follows</div><div><br></div><div>shared-network enp7s0 {<br>    authoritative;<br>    # deny bootp;<br>    subnet6 fc00:6ce4:40:146::/64 {<br>        pool6 {<br>            # vendor-option-space ntp;<br>            option ntp.address fc00:6ce4:40:146::1;<br>            default-lease-time 600;<br>            min-lease-time 450;<br>            max-lease-time 900;<br>            allow all clients;<br>            range6 fc00:6ce4:40:146::10 fc00:6ce4:40:146::ffff;<br>        }<br>    }<br>}</div><div><br></div><div>but no matter what I do, the ISC does not seem to include Option 56 in the Reply / Advertise messages, even though the client does request Option 56. I have spent probably 48 hrs in total already, resulting in discovering that the only thing that seems to be working is a brute force hex encoded string (example below)</div><div><br></div><div>option dhcp6.ntp-servers code 56 = string;<br>option dhcp6.ntp-servers 00:01:00:10:20:01:0d:b8:0c:a2:00:02:00:00:00:00:00:00:00:01;</div><div><br></div><div>Is there any trick to forcing the ISC daemon to include the encapsulation option?</div><div><br></div><div>Thank you in advance <br></div><div><br></div><div>M<br> </div></div>