In our setup radvd and dibbler allowed /80 subnets to work without problems, I'd like to move this dhcpv6 server from a linux box into an openwrt router, so far I wasn't able to come up with the correct odhcpd config. Below are the two config files for both radvd and dibbler. What would be the correct odhcpd analog to this?
/etc/radvd.conf
interface ztDDDDDDDD {
AdvSendAdvert on;
prefix fcNN:NNNN:NN::/40 { };
route fcNN:NNNN:NNCC:CCCC:CCCC:de::/96 { };
};
interface enp2s0.6 {
AdvSendAdvert on;
AdvManagedFlag on;
prefix fcNN:NNNN:NNCC:CCCC:CCCC:de:ca::/112 { AdvAutonomous off; };
};
/etc/dibbler/server.conf
iface "enp2s0.6" {
class {
pool fcNN:NNNN:NNCC:CCCC:CCCC:de:ca::/112
}
}
I'm aware that subnets smaller than /64 on ipv6 are bad since they break SLAAC and other stuff, but the /80 subnet I'm working with is a limitation of the technology already in place, designed originally to work with docker autoconf, that only requires a /80 subnet. Thanks for understanding!