从centos7开始使用systemctl来管理服务和程序,包括了service和chkconfig。

#systemctl list-unit-files|grep firewalld.service

  

[root@localhost ~]#systemctl status firewalld.service

  

关闭防火墙:

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

  

启动一个服务:systemctl start firewalld.service

关闭一个服务:systemctl stop firewalld.service

重启一个服务:systemctl restart firewalld.service

显示一个服务的状态:systemctl status firewalld.service

在开机时启用一个服务:systemctl enable firewalld.service

在开机时禁用一个服务:systemctl disable firewalld.service

查看服务是否开机启动:systemctl is-enabled firewalld.service;echo $?

查看已启动的服务列表:systemctl list-unit-files|grep enabled

  

Centos 7 firewall 命令:

查看已经开放的端口:

1
firewall-cmd --list-ports

开启端口

1
firewall-cmd --zone=public --add-port=80/tcp --permanent

命令含义:

–zone #作用域

–add-port=80/tcp #添加端口,格式为:端口/通讯协议

–permanent #永久生效,没有此参数重启后失效

关闭防火墙 

1) 永久性生效,重启后不会复原

开启: chkconfig iptables on

关闭: chkconfig iptables off

2) 即时生效,重启后复原

开启: service iptables start

关闭: service iptables stop

查看防火墙状态: service iptables status

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

1、直接关闭防火墙

1
2
3
systemctl stop firewalld.service #停止firewall
 
systemctl disable firewalld.service #禁止firewall开机启动

2、设置 iptables service

1
yum -y install iptables-services

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

1
vi /etc/sysconfig/iptables

增加规则

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

保存退出后

1
2
3
systemctl restart iptables.service #重启防火墙使配置生效
 
systemctl enable iptables.service #设置防火墙开机启动

最后重启系统使设置生效即可。

1
2
3
systemctl start iptables.service #打开防火墙
 
systemctl stop iptables.service #关闭防火墙

最新文章

  1. EZchip将推全球首款100核64位ARM A-53芯片
  2. Swiper基本上使用
  3. gerrit: Error in POST /accounts/self/preferences
  4. 成熟的RosettaNet解决方案软件介绍
  5. vs2008 添加与修改模板.
  6. 关于Javascript的内存泄漏问题的整理稿
  7. freemarker 数字,字符的操作
  8. 用delphi的THTTPRIO控件调用了c#写的webservice。
  9. 安装oneproxy实现数据库的读写分离
  10. WPF界面设计技巧(8)—自制山寨版CheckListBox
  11. Android 最热的高速发展框架XUtils
  12. URL设置问题
  13. oracle求时间差的常用函数
  14. IFrame父页面和子页面的交互
  15. hash在URL上的用法及作用
  16. 【我的前端自学之路】【HTML5】.html和.htm的区别
  17. 两矩阵各向量余弦相似度计算操作向量化.md
  18. React篇-报错信息:warning: Can't call setState (or forceUpdate) on an unmounted component.
  19. 铁三测试题——权限、你是管理员吗?——WP
  20. hihocoder 二分

热门文章

  1. 【线段树+离散化】POJ2528-Mayor's posters
  2. Nginx配置自签名的SSL证书(转载)
  3. Linux 下的图形库介绍
  4. jquery动态添加表单数据
  5. select标签中option内容加链接
  6. Dos网络查看命令
  7. cmake处理多源文件目录的方法
  8. Java笔记8:Hibernate连接Oracle
  9. idea autoscroll from source
  10. TestNG 六 测试结果