iptables防火墙常用命令
Posted sunarmy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iptables防火墙常用命令相关的知识,希望对你有一定的参考价值。
iptables防火墙启动停止和基本操作
iptables是centos7之前常用的防火墙,在centos7上使用了firewall
防火墙基本操作:
# 查询防火墙状态
service iptables status
# 关闭防火墙
service iptables stop
# 开启防火墙
service iptables start
# 重启防火墙
service iptables restart
# 永久关闭防火墙
chkconfig iptables off
# 永久关闭后开启防火墙
chkconfig iptables on
# 查询当前iptables的规则
iptables -L --line-numbers
开放端口和关闭端口
关于端口的开放和关闭,我们这里采用编辑配置文件的形式,配置文件是/etc/sysconfig/iptables
在配置文件中添加一行
# 开放端口
-A INPUT -p tcp --dport 22 -j ACCEPT
# 关闭端口
-A INPUT -p tcp --dport 22 -j DROP
以上是关于iptables防火墙常用命令的主要内容,如果未能解决你的问题,请参考以下文章