<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none"><!--P{margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Hey folks,</p>
<p>I'm trying to restrict access to a pool of addresses based on either the dhcp6 interface id or remote id (I've tried both, same outcome).</p>
<p><br>
</p>
<p>Here's a config snippet which can probably explain things a lot faster:</p>
<p><br>
</p>
<p>class "my_dhcp6" {<br>
  match if option dhcp6.interface-id = "GOOD_DHCP6";<br>
  log(info, option dhcp6.interface-id);<br>
}<br>
<br>
<br>
log(info, option dhcp6.remote-id);<br>
# The path of the lease file<br>
dhcpv6-lease-file-name "/srv/dhcpd6.leases";<br>
<br>
shared-network  "network6" {<br>
    subnet6 2607:fa40:fffd:0:0:0:0:0/64 {<br>
    }<br>
    subnet6 2607:fa40:fffe::/48 {<br>
        pool6 {<br>
            allow members of "my_dhcp6";<br>
            prefix6 2607:fa40:fffe:9100:: 2607:fa40:fffe:ffff:: /64;<br>
            range6 2607:fa40:fffe:9000::/56;<br>
        }<br>
    }<br>
}<br>
</p>
<p><br>
</p>
<p>When I do this, I get errors about no addresses being available.  As soon as I remove the allow_members statement from the pool, it works.  I'm doing this with DHCPD 4.3.5.</p>
<p><br>
</p>
<p>Is this functionality supported?<br>
</p>
<div style="FONT-SIZE: 8PT; FONT-FAMILY: Calibri, sans-serif;">
<hr>
<i>The information contained in this email and any attachments may be privileged, confidential, and/or proprietary and is intended solely for the use of the person(s) to whom it is addressed. If you are not the intended recipient, any review, retransmission,
 dissemination or any other use of the information contained in this email and any attachments is strictly prohibited and may be unlawful. If you have received this communication in error, please notify the sender immediately by replying to this email and then
 delete this material from any system that it may be on. LightSpeed Networks, Inc. does not accept responsibility for any changes made to the information contained in this communication after it was originally sent.
</i></div>
</body>
</html>