时间:2021-05-19
centos 7中防火墙是一个非常的强大的功能了,但对于centos 7中在防火墙中进行了升级了,下面我们一起来详细的看看关于CentOS7中防火墙的一些常用配置。
# 启动 systemctl start firewalld# 查看状态systemctl status firewalld# 停止关闭systemctl disable firewalldsystemctl stop firewalld# 把一个源地址加入白名单,以便允许来自这个源地址的所有连接# 这个在集群中使用常见# 设置后利用firewall-cmd --reload更新防火墙规则firewall-cmd --add-rich-rule 'rule family="ipv4" source address="192.168.1.215" accept' --permanentfirewall-cmd --reload# 特定域内的用户通过ssh可以连接,24标识255.255.255.0firewall-cmd --remove-service=ssh --permanentfirewall-cmd --add-rich-rule 'rule family=ipv4 source address=172.16.30.0/24 service name=ssh accept' --permanent firewall-cmd --reloadfirewall-cmd --list-all # 将一个用户加入白名单firewall-cmd --add-lockdown-whitelist-user=hadoop --permanentfirewall-cmd --reload# 将用户id从白名单中去掉firewall-cmd --remove-lockdown-whitelist-uid=uidfirewall-cmd --reload# 查看所有打开的端口:firewall-cmd --list-ports# 在某个区域打开端口firewall-cmd --zone=public --add-port=8080/tcp --permanent# 关闭端口firewall-cmd --remove-port=465/tcp # 打开服务,参见/etc/firewalld 目录下services文件夹中的服务,可以配置firewall-cmd --permanent --zone=public --add-service=sambafirewall-cmd --add-service=http --permanent firewall-cmd --reload# 关闭服务firewall-cmd --zone=public --remove-service=sambafirewall-cmd --reload官方文档以及常用参考:
https://access.redhat.com/documentation/zh-CN/Red_Hat_Enterprise_Linux/7/html/Security_Guide/sec-Using_Firewalls.html
https://www.server-world.info/en/note?os=CentOS_7&p=firewalld
以上所述是小编给大家介绍的CentOS7中防火墙的一些常用配置介绍,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
centos7查看防火墙状态的方法是: 1、首先输入用户名和密码进入centos7。 2、接着查看centos7的防火墙的状态,查看的命令为:sudosys
介绍CentOS7默认没有使用iptables,所以通过编辑iptables的配置文件来开启80端口是不可以的CentOS7采用了firewalld防火墙如要查
CentOS配置防火墙昨天帮朋友配置CentOS服务器,一开始为了方便测试直接把防火墙关了,之后便需要配置好防火墙,网上找了几个防火墙规则都有错误,后来发现是博
CentOS7默认的防火墙不是iptables,而是firewalle.安装iptableiptable-service#先检查是否安装了iptablesser
CentOS7默认的防火墙不是iptables,而是firewalle.安装iptableiptable-service#先检查是否安装了iptablesser