firewall-cmd --reload报错!
通过命令行加了几条规则
firewall-cmd --direct --permanent --add-rule ipv4 filter OUTPUT 0 \
--out-interface enp0s8 --destination 224.0.0.18 --protocol vrrp -j ACCEPT
重启后报如下错误
Error: COMMAND_FAILED: Direct: '/usr/sbin/iptables-restore -w -n' failed: iptables-restore v1.4.21: option "--in-interface" requires an argument
Error occurred at line: 4
Try `iptables-restore -h' or 'iptables-restore --help' for more information.
能将我加的所有规则删除么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
把添加命令里的
--add-rule
改成--remove-rule
,执行下就删除了