我正在尝试使用 Python3 遍历 IP 地址列表,然后使用 firewalld 阻止它们。
注意:我是 Python 的新手,所以请原谅任何简单的错误。
import subprocess
with open("ips.txt") as ipList:
ips = ipList.readlines()
for ip in ips:
process = subprocess.Popen(['firewall-cmd',
'--permanent',
'--add-rich-rule=\'rule family=\"ipv4\" source address=\"{0}\" reject\''.format(ip.rstrip())
])
我正在使用 format.rstrip 删除列表中每个 IP 地址后的换行符。
运行脚本时,我收到以下错误;
root@mediaserver:~# python3 block.py
Error: INVALID_RULE: internal error in _lexer(): rule family="ipv4" source address="1.56.0.0/13" reject
Error: INVALID_RULE: internal error in _lexer(): rule family="ipv4" source address="1.48.0.0/15" reject
此错误消息会遍历我列表中的所有 IP 块。
如果我在脚本之外运行 firewall-cmd,我不会收到任何错误消息,并且规则已正确添加。
root@mediaserver:~# firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="223.198.0.0/15" reject'
success
root@mediaserver:~# firewall-cmd --reload
success
root@mediaserver:~# firewall-cmd --zone=public --list-all
public (default, active)
interfaces: eth0
sources:
services: dhcpv6-client ssh
ports:
masquerade: no
forward-ports:
icmp-blocks:
rich rules:
rule family="ipv4" source address="223.198.0.0/15" reject
root@mediaserver:~# iptables -L IN_public_deny
Chain IN_public_deny (1 references)
target prot opt source destination
REJECT all -- 223.198.0.0/15 anywhere reject-with icmp-port-unreachable
root@mediaserver:~# which python3
/usr/bin/python3
root@mediaserver:~# firewall-cmd --version
0.3.7
我认为这个问题可能与我如何在我的 python 脚本中转义字符有关,但据我所知,它们被正确转义了。如果我可以提供任何其他调试信息,请告诉我。