[SOLVED]DHCPDv6 whining about no IPV6 address on an interface designated NO IPv6

Started by lrosenman, October 18, 2021, 11:44:32 PM

Previous topic - Next topic
Thank You.  I now have IPv6 on all interfaces.  and we'll see if the whines shut up.

Quote# em4 is the WAN interface for my installation.
# Setup requests for the WAN interface.
interface em4 {
   # Request a single IPv6 address for WAN interface (RG responds with 2600:1702:xxxx:yyy0::48)
   send ia-na 0;
   # Request 8x /64 prefix delegations:
   send ia-pd 0;
   send ia-pd 1;
   send ia-pd 2;
   send ia-pd 3;
   send ia-pd 4;
   send ia-pd 5;
   send ia-pd 6;
   send ia-pd 7;
   request domain-name-servers;
   request domain-name;
   script "/var/etc/dhcp6c_opt5_script.sh";
   #script "/conf/set_wan_static_v6.sh";
};
# These blocks are required, and I should probably
# assign the prefixes to the LAN interfaces here.
# Since my /60 has not changed since I implemented
# this, I treat them as static and assign them as such.
id-assoc na 0 { };
id-assoc pd 0 {
   prefix-interface em0 {
      sla-id 0;
      sla-len 0;
   };
};
id-assoc pd 1 {
   prefix-interface em0_vlan8 {
      sla-id 0;
      sla-len 0;
#      prefix 2600:1700:210:b18e::/64 600 200;
   };
};
id-assoc pd 2 {
   prefix-interface em0_vlan2 {
      sla-id 0;
      sla-len 0;
#      prefix 2600:1700:210:b18d::/64 600 200;
   };
};
id-assoc pd 3 {
   prefix-interface em0_vlan10 {
     sla-id 0;
     sla-len 0;
   };
};
id-assoc pd 4 { };
id-assoc pd 5 { };
id-assoc pd 6 { };
id-assoc pd 7 { };
root@home-fw:~ #

No worries. Let us know how it goes.

Glad you could keep your comments - and the extra PDs - so far anyway...

It appears I just learnt OPNsense VLAN device notation. That should come in handy in coming weeks...  ;D


FTR, the upgrade to 21.7.4 went flawlessly, and on reboot, all the services and IPv6 came up without manual intervention.  I'd say this is solved.  Thanks to @benyamin for the pointers to my typographical non-skills.