<div dir="ltr">Hi All, <div><br></div><div>I am currently using ISC DHCPv6 on my local setup, and it works well, for one of the use cases. I am attempting to print the DUID, lease start time, and lease end time for each lease entry. While I am able to successfully print the DUID, I am having trouble retrieving and printing the lease start and end time variables.<br></div><div><br>Below is the approach I used to print the DUID:<br><br>on commit {<br>    log(info, concat("DUID:", binary-to-ascii(16, 8, ":", option dhcp6.client-id)));<br>    log(info, concat("T1 (Preferred Lifetime): ", binary-to-ascii(10, 32, "", substring(option dhcp6.ia-na, 4, 4)), " seconds"));<br>    log(info, concat("T2 (Valid Lifetime): ", binary-to-ascii(10, 32, "", substring(option dhcp6.ia-na, 8, 4)), " seconds"));<br>}<br>```<br><br>However, when printing T1 and T2, I am only getting zeros. I've tried different methods but haven't been able to obtain the correct values for the lease start and end times.<br><br>If anyone with experience in working with these variables could offer guidance, it would be greatly appreciated.<br><br>Thank you in advance!<br>Kraishak</div><div><br></div></div>