<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body text="#000000" bgcolor="#FFFFFF">
Hi all,<br>
<br>
I need to implement handling NTP Server Option for DHCPv6 (option 56) on my machine.<br>
As I understand ISC DHCP doesn't support this option by default.<br>
RFC 5608 says the option itself does not contain any value. Instead, it contains one or several suboptions that carry NTP server or SNTP server location.<br>
<br>
So, I've modified my server and client configs.<br>
<br>
dhcpd6.conf:<br>
<blockquote><font face="monospace">option space ntp code width 2 length width 2;</font><br>
<font face="monospace">option ntp.address code 1 = array of ip6-address;</font><br>
<font face="monospace">option ntp.fqdn code 3 = text;</font><br>
<font face="monospace">option ntp56 code 56 = encapsulate ntp;</font><br>
<font face="monospace">option ntp.address <IPv6 address>;</font><br>
</blockquote>
dhclient.conf:<br>
<blockquote><font face="monospace">option space ntp code width 2 length width 2;<br>
option ntp.address code 1 = array of ip6-address;<br>
option ntp.fqdn code 3 = text;<br>
option ntp56 code 56 = encapsulate ntp;<br>
request ntp.address;</font><br>
</blockquote>
But it doesn't work. I don't see in tcpdump capture request and reply of option 56.<br>
Is the issue with my invalid configs? Did anybody utilize option 56?<br>
<pre class="moz-signature" cols="72">-- 
Regards,
Ivan</pre>
</body>
</html>