Document double/triple matching
This commit is contained in:
parent
f4372580c4
commit
42f5e00e74
3 changed files with 25 additions and 4 deletions
|
|
@ -55,7 +55,12 @@ class L2Controller(object):
|
|||
|
||||
self.info['v6_mask'] = 64
|
||||
self.info['v6_base'] = ipaddress.ip_network("2001:db8::/32")
|
||||
self.info['v6_gen'] = self.info['v6_base'].subnets(new_prefix=self.info['v6_mask'])
|
||||
self.info['v6_base_hostnet'] = ipaddress.ip_network("2001:db8::/48")
|
||||
|
||||
# possible new range for NAT64 prefixes
|
||||
self.info['v6_base_nat64'] = ipaddress.ip_network("2001:db8:1::/48")
|
||||
|
||||
self.info['v6_gen'] = self.info['v6_base_hostnet'].subnets(new_prefix=self.info['v6_mask'])
|
||||
|
||||
self.info['v4_mask'] = 24
|
||||
self.info['v4_base'] = ipaddress.ip_network("10.0.0.0/8")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue