码迷,mamicode.com
首页 > 其他好文 > 详细

iptables:应用防火墙规则:iptables-restore: line 18failed

时间:2015-12-18 14:54:45      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:iptables:应用防火墙规则:iptables-restore: line 18failed

# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p tcp --dport 10000 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
18行就是COMMIT,
iptables:将链设置为政策 ACCEPT:filter [确定]
iptables:清除防火墙规则: [确定]
iptables:正在卸载模块: [确定]
iptables:应用防火墙规则:iptables-restore: line 18 failed
[失败]

系统报COMMIT这一行出错指的是你防火墙里面有某条过滤规则有错误,这一条有问题:-A INPUT -m state --state NEW -m udp -p tcp--dport 10000 -j ACCEPT  将“-m udp -p tcp”中的两个协议统一,就正常启动

技术分享

本文出自 “boyhack” 博客,请务必保留此出处http://461205160.blog.51cto.com/274918/1725996

iptables:应用防火墙规则:iptables-restore: line 18failed

标签:iptables:应用防火墙规则:iptables-restore: line 18failed

原文地址:http://461205160.blog.51cto.com/274918/1725996

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!