赞
踩
目录
在Centos7版本的防火墙使用的是firewall,Centos 6以下都是使用iptables;
目前多数版本都在使用firewall,如果iptables命令执行不了,可以使用firewall命令参数;
启动iptables:
modprobe ip_tables
关闭iptables(关闭命令要比启动复杂):
- iptalbes -F
- iptables -X
- iptables -Z
- iptables -P INPUT ACCEPT
- iptables -P OUTPUT ACCEPT
- iptables -P FORWARD ACCEPT
- modprobe -r ip_tables
依次执行以上命令即可关闭iptables,否则在执行modproble -r ip_tables时将会提示FATAL: Module ip_tables is in use.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。