欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux CentOS 7.0防火墙常用操作

程序员文章站 2022-03-12 08:05:09
...

CentOS 7.0默认使用的是firewall作为防火墙,使用iptables必须重新设置一下

1、直接关闭防火墙

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall开机启动

2、设置 iptables service

yum -y install iptables-services

如果要修改防火墙配置,如增加防火墙端口3306

vi /etc/sysconfig/iptables

增加规则

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

保存退出后

systemctl restart iptables.service #重启防火墙使配置生效

systemctl enable iptables.service #设置防火墙开机启动

防火墙

# 查看所有已开放端口
firewall-cmd --list-all
# 查看默认防火墙状态(关闭后显示notrunning,开启后显示running)
firewall-cmd --state
# 查看已开放端口:
iptables-save
# 开放端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
# 重启防火墙使修改生效
firewall-cmd --reload