IPv6 log remote-id

Nicholas Thompson Nicholas.Thompson at brandenburgtel.com
Wed Nov 7 12:40:29 UTC 2018


I am having issues logging remote-id in IPv6.  I can see in the packet capture that option 37 does have the proper information.  

However when I attempt to log it I get blank string and the lines after it don't process either.


Here is what I have

log(info, 
      concat("IP Address: ",
        binary-to-ascii(16, 16, ":", suffix(option dhcp6.ia-pd, 16)),
        "/",
        binary-to-ascii(10, 8, ":", substring(suffix(option dhcp6.ia-pd, 17), 0, 1)),
        " | Subscriber:", 
        v6relay(1, option dhcp6.remote-id),
        " | MacID: ",
        binary-to-ascii(16, 8, ":", suffix(option dhcp6.client-id, 6))
      )
    );

Here is the log result: 
IP Address: 2604:b400:1e59:b400:0:0:0:0/56 | Subscriber:

If I take out the subscriber section:
log(info, 
      concat("IP Address: ",
        binary-to-ascii(16, 16, ":", suffix(option dhcp6.ia-pd, 16)),
        "/",
        binary-to-ascii(10, 8, ":", substring(suffix(option dhcp6.ia-pd, 17), 0, 1)),
      " | MacID: ",
        binary-to-ascii(16, 8, ":", suffix(option dhcp6.client-id, 6))
      )
    );

Here is the log result:
IP Address: 2604:b400:1e92:6700:0:0:0:0/56 | MacID: 0:23:6a:9:8e:2e

We have the same logging format working with IPv4 and option82 not sure why I can't log option 37 in v6

Thank you in advance for any help you can provide.


More information about the dhcp-users mailing list