<div dir="ltr">Hello DHCP experts! We are implementing Option 82 in our network and I am just scratching the surface of how to setup my server. I have successfully created my first Option 82 ACL based on the agent circuit ID that is contained in the packet, now I just need guidance on how I get the Option 82 data into the logs. Here is my O82 setup on the server:<div><br></div><div><div>## Option 82 Class</div><div>class "myvendor" {</div><div>match if option agent.circuit-id = 00:04:00:6b:00:84;<br></div><div>}<br></div></div><div><br></div><div><div># Test Option 82 logging</div><div>if exists agent.circuit-id</div><div>{</div><div>log (info, concat( "Lease for ", option agent.circuit-id (leased-address), "is an address assigned using Option82"));</div><div>}</div></div><div><br></div><div><div>pool {</div><div>                allow members of "myvendor";</div><div>                range x.x.x.x x.x.x.x;</div><div>        }</div></div><div><br></div><div>The problem I am having is when I go to check the conf before restarting dhcpd I am getting the error:</div><div><br></div><div><div>etc/dhcp/dhcpd.conf line 135: right parenthesis expected.</div><div>log (info, concat( "Lease for ", option agent.circuit-id (</div><div>                                                          ^</div></div><div>Can anyone tell me what I am doing wrong and how to fix this error?</div></div>