前言:CentOS7 的防火墙默认使用是firewall,而我们通常使用iptables;

本文记录了firewall基础的命令和iptables的安装和使用。

firewall部分:

part1 : 服务命令

systemctl start firewalld#启动

systemctl status firewalld #查看运行状态

systemctl stop firewalld.service #停止firewall

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

firewall-cmd --state #

firewall-cmd--reload 重启

part2 : 端口命令:

添加

firewall-cmd --zone=public --add-port=80/tcp --permanent   (--permanent永久生效,没有此参数重启后失效)

重新载入

firewall-cmd --reload

查看

firewall-cmd --zone= public --query-port=80/tcp

删除

firewall-cmd --zone= public --remove-port=80/tcp --permanent

part3:示例

示例:firewall端口操作完之后需要重启服务生效

  1. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --zone=public --query-port=3307/tcp
  2. no
  3. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --zone=public --add-port=3307/tcp --permanent
  4. success
  5. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --zone=public --query-port=3307/tcp
  6. no
  7. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --reload
  8. success
  9. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --zone=public --query-port=3307/tcp
  10. yes

示例:mysql开放远程端口

  1. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --zone=public --add-port=3306/tcp --permanent
  2. success
  3. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --reload
  4. success
  5. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --state
  6. running
  7. [root@iZ2zeczh9tfpmxmijw5qppZ ~]#
  8. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# firewall-cmd --zone=public --query-port=3306/tcp
  9. yes
  10. [root@iZ2zeczh9tfpmxmijw5qppZ ~]#

iptables部分

part1 : 服务命令

systemctl start iptables #启动

systemctl status iptables #查看运行状态

systemctl restart iptables.service #停止iptables

systemctl stop iptables.service #停止iptables

systemctl disable iptables.service #禁用:禁止iptables开机启动

systemctl enable iptables.service #

part2 : 安装

step1 : 查看是否安装

  1. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# systemctl status iptables
  2. Unit iptables.service could not be found.
  3. [root@iZ2zeczh9tfpmxmijw5qppZ ~]#

没有相关服务

step2 : yum install

  1. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# yum install iptables-services
  2. Loaded plugins: fastestmirror
  3. base                                                                                                             | 3.6 kB  00:00:00
  4. epel                                                                                                             | 4.3 kB  00:00:00
  5. extras                                                                                                           | 3.4 kB  00:00:00
  6. mysql-connectors-community                                                                                       | 2.5 kB  00:00:00
  7. mysql-tools-community                                                                                            | 2.5 kB  00:00:00
  8. mysql56-community                                                                                                | 2.5 kB  00:00:00
  9. updates                                                                                                          | 3.4 kB  00:00:00
  10. updates/7/x86_64/primary_db                                                                                      | 6.4 MB  00:00:06
  11. Loading mirror speeds from cached hostfile
  12. * base: mirrors.aliyuncs.com
  13. * epel: mirrors.aliyuncs.com
  14. * extras: mirrors.aliyuncs.com
  15. * updates: mirrors.aliyuncs.com
  16. Resolving Dependencies
  17. --> Running transaction check
  18. ---> Package iptables-services.x86_64 0:1.4.21-17.el7 will be installed
  19. --> Finished Dependency Resolution
  20. Dependencies Resolved
  21. ========================================================================================================================================
  22. Package                                Arch                        Version                             Repository                 Size
  23. ========================================================================================================================================
  24. Installing:
  25. iptables-services                      x86_64                      1.4.21-17.el7                       base                       50 k
  26. Transaction Summary
  27. ========================================================================================================================================
  28. Install  1 Package
  29. Total download size: 50 k
  30. Installed size: 24 k
  31. Is this ok [y/d/N]: Y
  32. Downloading packages:
  33. iptables-services-1.4.21-17.el7.x86_64.rpm                                                                       |  50 kB  00:00:00
  34. Running transaction check
  35. Running transaction test
  36. Transaction test succeeded
  37. Running transaction
  38. Installing : iptables-services-1.4.21-17.el7.x86_64                                                                               1/1
  39. warning: /etc/sysconfig/iptables created as /etc/sysconfig/iptables.rpmnew
  40. Verifying  : iptables-services-1.4.21-17.el7.x86_64                                                                               1/1
  41. Installed:
  42. iptables-services.x86_64 0:1.4.21-17.el7
  43. Complete!
  44. [root@iZ2zeczh9tfpmxmijw5qppZ ~]#

安装成功!

step3 : check

  1. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# systemctl status iptables
  2. iptables.service - IPv4 firewall with iptables
  3. Loaded: loaded (/usr/lib/systemd/system/iptables.service; disabled; vendor preset: disabled)
  4. Active: inactive (dead)
  5. [root@iZ2zeczh9tfpmxmijw5qppZ ~]#

step4 : start

  1. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# systemctl start iptables
  2. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# systemctl enable iptables.service
  3. Created symlink from /etc/systemd/system/basic.target.wants/iptables.service to /usr/lib/systemd/system/iptables.service.
  4. [root@iZ2zeczh9tfpmxmijw5qppZ ~]#
  1. [root@iZ2zeczh9tfpmxmijw5qppZ ~]# systemctl status iptables
  2. iptables.service - IPv4 firewall with iptables
  3. Loaded: loaded (/usr/lib/systemd/system/iptables.service; enabled; vendor preset: disabled)
  4. Active: active (exited) since Wed 2017-06-21 15:44:41 CST; 1min 17s ago
  5. Main PID: 506 (code=exited, status=0/SUCCESS)
  6. Jun 21 15:44:41 iZ2zeczh9tfpmxmijw5qppZ systemd[1]: Starting IPv4 firewall with iptables...
  7. Jun 21 15:44:41 iZ2zeczh9tfpmxmijw5qppZ iptables.init[506]: iptables: Applying firewall rules: [  OK  ]
  8. Jun 21 15:44:41 iZ2zeczh9tfpmxmijw5qppZ systemd[1]: Started IPv4 firewall with iptables.
  9. [root@iZ2zeczh9tfpmxmijw5qppZ ~]#

step5 : 修改配置文件

vi /etc/sysconfig/iptables

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

step6 : 关闭SELINUX

vi/etc/selinux/config

#SELINUX=enforcing #注释掉

#SELINUXTYPE=targeted #注释掉

SELINUX=disabled #增加

:wq! #保存退出

setenforce 0 #使配置立即生效

备注:

SELINUX不关闭时,iptables不读取配置文件,一般采取关闭SELINUX的方式避免这种冲突

CentOS7的firewall和安装iptables的更多相关文章

  1. Linux学习之八--关闭firewall防火墙安装iptables并配置

    CentOS 7之后默认使用的是firewall作为防火墙,这里改为iptables防火墙,并开启80端口.3306端口. 1.关闭firewall: systemctl stop firewalld ...

  2. [CENTOS7] [IPTABLES] 卸载Firewall Id安装 IPTABLES及防火墙设置

    卸载Firewall ID,重装IPTABLES:先停止服务 systemctl stop firewalldsystemctl mask firewalld   yum install iptabl ...

  3. CentOS7将firewall切换为iptables防火墙

  4. CentOS7.3下的一个iptables配置

    centos7.3默认使用的防火墙应该是firewall,而不是iptables.而我们xxmj服务器使用的是iptables防火墙.所以,在配置防火墙之前,我们需要先关闭firewall,安装ipt ...

  5. centos7 关闭firewall安装iptables并配置

    一.配置防火墙,开启80端口.3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop fi ...

  6. Centos7下安装iptables防火墙

    说明:centos7默认使用的firewalld防火墙,由于习惯使用iptables做防火墙,所以在安装好centos7系统后,会将默认的firewall关闭,并另安装iptables进行防火墙规则设 ...

  7. CentOS7安装iptables防火墙

    CentOS7默认的防火墙不是iptables,而是firewalle. 安装iptable iptable-service #先检查是否安装了iptables service iptables st ...

  8. CentOS之——CentOS7安装iptables防火墙

    转载请注明出处:http://blog.csdn.net/l1028386804/article/details/50779761 CentOS7默认的防火墙不是iptables,而是firewall ...

  9. centos7上安装iptables

    centos7上安装iptables的步骤 注意:CentOS7默认的防火墙不是iptables,而是firewalle. 安装iptable iptable-service #安装iptables ...

随机推荐

  1. UVALive 7505 Hungry Game of Ants (2015Ecfinal)

    题意: 长度是n的线段上点的编号从1~n,每个点有一只蚂蚁蚂蚁的体重等于该点的编号,最初每只蚂蚁可以选择向右走或者向左走两只蚂蚁相遇时体重大的吃掉体重小的并且体重增加为两只的体重和,走到边界时掉头,问 ...

  2. 编程语言教程书该怎么写: 向K&R学习!

    原文地址:Lax Language TutorialsAndrew Binstock 每年在评审Jolt Awards图书的时候,我都会被一些语言教程类图书弄得心力交瘁.从这些年的评审经验来看,这些语 ...

  3. 字典的setdefault() 和get()方法比较

    Python 字典 setdefault() 函数 和get() 类似: 如果键存在字典中,返回其value值 如果键不存在字典中,创建键值对.完后,返回值为默认值. 话不多说,上栗子: setdef ...

  4. css基础--简单介绍css

    --引入 什么是css? CSS 指层叠样式表 (Cascading Style Sheets) 样式定义如何显示 HTML 元素 样式通常存储在样式表中 把样式添加到 HTML 4.0 中,是为了解 ...

  5. K8S发布解释型语言应用的最佳实践

    说明 我们知道,k8s在发布编译型语言的应用时,几乎不用多考虑,就会选择将编译好jar/war包(java语言)或者二进制文件(golang/c++)直接打到镜像当中,生成新的应用镜像,然后将镜像推到 ...

  6. P1147 连续自然数和

    P1147 连续自然数和 题目描述 对一个给定的自然数 M ,求出所有的连续的自然数段,这些连续的自然数段中的全部数之和为 M . Solution 两点问题 弄两个点 \(l,r\) , 因为前缀和 ...

  7. 2017年Java面试题整理

    原文出处:CSDN邓帅 面试是我们每个人都要经历的事情,大部分人且不止一次,这里给大家总结最新的2016年面试题,让大家在找工作时候能够事半功倍. 1.Switch能否用string做参数? a.在 ...

  8. Linux 下搭建 Svn+Apache

    一.安装apache 1.检查apache是否安装 rpm -qa|grep httpd 2.使用yum安装apache yum -y install httpd 3.记住安装的版本号 httpd.x ...

  9. Android 6.0 7.0 8.0 一个简单的app内更新版本-okgo app版本更新

    登陆时splash初始页调用接口检查app版本.如有更新,使用okGo的文件下载,保存到指定位置,调用Android安装apk. <!-- Android 8.0 (Android O)为了针对 ...

  10. 从咖啡馆的经营看 Web 应用的扩展

    我经营着一家咖啡馆.经营成本同所用的资源成正比. 我的咖啡馆店面大概有一百平方英尺(约九平方米),雇佣了一个咖啡师,一台咖啡机. 营业能力: 每次能够服务一个顾客,用三分钟泡制一杯咖啡,算下来服务一个 ...