防火墙问题:添加22端口到防火墙
系统:Centos7
开启防火墙:systemctl start firewalld
关闭防火墙:systemctl stop firewalld
开机自动启动防火墙:systemctl enable firewalld
开机不自动启动防火墙:systemctl disable firewalld
方式一:图像化界面:
1、点击左上角应用程序->杂项->防火墙
2、点击配置修改为永久状态
注意:修改防火墙配置的时候需要将配置改为永久状态,否则reload的时候不会生效。
3、添加22端口到防火墙:
端口->添加
输入22默认为tcp不用作修改。
4、确定后需要将firewall 重新加载:
选项->重载防火墙
方式二:命令行模式
添加端口
[root@data1 ~]# firewall-cmd --permanent --add-port=22/tcp
--permanent 持久化
--add-port 添加端口22
tcp 表示添加端口类型为tcp
重载firewall
[root@data1 ~]# firewall-cmd --reload
[root@data1 ~]# firewall-cmd --permanent --add-port=22/tcp
success
[root@data1 ~]# firewall-cmd --reload
success
[root@data1 ~]#
本文转自守护我们的幸福 51CTO博客,原文链接:http://blog.51cto.com/12085228/1958363,如需转载请自行联系原作者