iptables防火墙操作-查看配置重启关闭
Posted phonecom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iptables防火墙操作-查看配置重启关闭相关的知识,希望对你有一定的参考价值。
- 查看iptables端口配置
iptables -L -n --line-number
- iptables端口配置(不开通3389无法远程连接,不开通icmp无法ping)
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 443 -j ACCEPT
iptables -A INPUT -p tcp --dport 3306 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 3306 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 80 -j ACCEPT
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 22 -j ACCEPT
- iptables删除端口配置
iptables -D INPUT 1
- iptables关闭所有配置
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
- 重启iptables
service iptables save && service iptables restart
- 关闭防火墙
chkconfig iptables off && service iptables stop
以上是关于iptables防火墙操作-查看配置重启关闭的主要内容,如果未能解决你的问题,请参考以下文章
Centos中iptables和firewall防火墙开启关闭查看状态基本设置等(转)