The IPv6 address is 2002::1. So why does packednot include the inner "2" in the IPv6 address?
>>>
>>> ip = ipaddress.ip_address('2002::1')
>>> ip
IPv6Address('2002::1')
>>> ip.packed
b' \x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01'
>>>
The IPv6 address is
2002::1
. So why doespacked
not include the inner "2" in the IPv6 address?