aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2021-06-18 22:22:16 +0000
committerterminaldweller <thabogre@gmail.com>2021-06-18 22:22:16 +0000
commitb1b8fb265ad4c46b458e03240ab3c942ae474d63 (patch)
tree6d221038391b44cd5a50ca5a0282233a3f106a76 /bin
parenttoo much to talk about... (diff)
downloadscripts-b1b8fb265ad4c46b458e03240ab3c942ae474d63.tar.gz
scripts-b1b8fb265ad4c46b458e03240ab3c942ae474d63.zip
so many things
Diffstat (limited to 'bin')
-rwxr-xr-xbin/exclude_ip_list3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/exclude_ip_list b/bin/exclude_ip_list
index 2fa3e6f..8ddd42e 100755
--- a/bin/exclude_ip_list
+++ b/bin/exclude_ip_list
@@ -2,7 +2,8 @@
from ipaddress import ip_network
start = '0.0.0.0/0'
-exclude = ['127.0.0.1', '192.168.1.0/24', '185.126.202.69', '87.236.209.206']
+exclude = ['127.0.0.1', '192.168.1.0/24',
+ '185.126.202.69', '87.236.209.206', '185.126.202.69', '94.182.18.223']
result = [ip_network(start)]
for x in exclude: