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?
range6 2001:db8:a0b:0:0:0:6464:0 2001:db8:a0b:0:0:0:6464:ffff;– Terrance Dec 04 '17 at 15:462001:db8::is the prefix reserved for IPv6 documentation examples. It's appropriate if the OP has modified the question with a dummy documentation address; a calculator might mark it invalid because it is invalid for an actual device. – user4556274 Dec 04 '17 at 15:586464ais an invalid address segment. I misunderstood which part of the address you were talking about. – user4556274 Dec 04 '17 at 16:03