I'm trying to setup my DHCPv6 on ubuntu to assign an address with a 112 prefix. My configuration looks like this:
subnet6 2001:db8:a0b::640a:0/112 {
range6 2001:db8:a0b::6464:640a 2001:db8:a0b::6464:640d;
default-lease-time 600;
max-lease-time 7200;
}
I'm expecting to be assigned with IPv6 with the following notation:
2001:db8:a0b::6464:640a/112
but instead I'm getting
2001:db8:a0b::6464:640a/64
What am I missing?