Created
September 26, 2022 12:56
-
-
Save ictus4u/161af4d7a78a38e167e7193c1b51cf41 to your computer and use it in GitHub Desktop.
wireguard - Exclude single ip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from ipaddress import ip_network | |
from sys import argv | |
start = '0.0.0.0/0' | |
exclude = argv[1:] | |
result = [ip_network(start)] | |
for x in exclude: | |
n = ip_network(x) | |
new = [] | |
for y in result: | |
if y.overlaps(n): | |
new.extend(y.address_exclude(n)) | |
else: | |
new.append(y) | |
result = new | |
print(','.join(str(x) for x in sorted(result))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to Daniel Lautenbacher
Slighly modified to read exclusion arguments from command line.