diff options
author | terminaldweller <thabogre@gmail.com> | 2021-07-10 22:56:23 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-07-10 22:56:23 +0000 |
commit | 4ed623d52ff73c70be739a476daa12f58ddf7e46 (patch) | |
tree | 0e11c7efa44dee99f5efaf0ebcac80087d3fec80 /bin/exclude_ip_list | |
parent | update (diff) | |
download | scripts-4ed623d52ff73c70be739a476daa12f58ddf7e46.tar.gz scripts-4ed623d52ff73c70be739a476daa12f58ddf7e46.zip |
switch between vim and tmux with c-w c-w. feels comfy. changed diasm into actual asm for c and c++ in the makefiles. some more things for vim.
Diffstat (limited to 'bin/exclude_ip_list')
-rwxr-xr-x | bin/exclude_ip_list | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/exclude_ip_list b/bin/exclude_ip_list index 8ddd42e..a4df77b 100755 --- a/bin/exclude_ip_list +++ b/bin/exclude_ip_list @@ -3,7 +3,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', '185.126.202.69', '94.182.18.223'] + '185.126.202.69', '87.236.209.206', '185.126.202.69', + '94.182.18.223'] result = [ip_network(start)] for x in exclude: |