Commit 2823bf93 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent ea98e50b
...@@ -9,7 +9,6 @@ import netifaces ...@@ -9,7 +9,6 @@ import netifaces
import netaddr import netaddr
from socket import AF_INET6 from socket import AF_INET6
from math import log2, ceil from math import log2, ceil
from os.path import exists
import sys import sys
import subprocess import subprocess
...@@ -59,6 +58,7 @@ def main(): ...@@ -59,6 +58,7 @@ def main():
n += 1 # also leaving first range for the original tap n += 1 # also leaving first range for the original tap
ptake = ceil(log2(n)) ptake = ceil(log2(n))
# do the split
for i, subnet in enumerate(net.subnet(prefixlen + ptake)): for i, subnet in enumerate(net.subnet(prefixlen + ptake)):
if i == 0: if i == 0:
print('preserve %s' % subnet) print('preserve %s' % subnet)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment