zoukankan      html  css  js  c++  java
  • centos7 firewall指定IP与端口访问(常用)

    基本使用

    启动:systemctl start firewalld

    关闭:systemctl stop firewalld

    查看状态:systemctl status firewalld

    开机禁用:systemctl disable firewalld

    开机启用:systemctl enable firewalld

    配置firewalld-cmd

    查看版本:firewall-cmd --version

    查看帮助:firewall-cmd --help

    显示状态:firewall-cmd --state

    查看所有打开的端口:firewall-cmd --zone=public --list-ports

    更新防火墙规则:firewall-cmd --reload

    端口开放

    添加:firewall-cmd --zone=public --add-port=80/tcp --permanent

    重新载入:firewall-cmd --reload

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

    端口转发

    添加(例如3306 -> 3336):

    firewall-cmd --permanent --zone=public --add-forward-port=port=3336:proto=tcp:toport=3306:toaddr=

    删除:

    firewall-cmd --permanent --remove-forward-port=port=3306:proto=tcp:toport=3336:toaddr=

    查看转发的端口:firewall-cmd --list-forward-ports

    查看当前开了哪些端口

    其实一个服务对应一个端口,每个服务对应/usr/lib/firewalld/services下面一个xml文件。

    firewall-cmd --list-services

    查看还有哪些服务可以打开

    firewall-cmd --get-services

    查看所有打开的端口: 

    firewall-cmd --zone=public --list-ports

    更新防火墙规则: 

    firewall-cmd --reload

    # 添加多个端口

    firewall-cmd --permanent --zone=public --add-port=8080-8083/tcp
     
    # 删除某个端口
    firewall-cmd --permanent --zone=public --remove-port=81/tcp
     
    # 针对某个 IP开放端口
    firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.142.166" port protocol="tcp" port="6379" accept"
    firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.0.233" accept"
     
    # 删除某个IP
    firewall-cmd --permanent --remove-rich-rule="rule family="ipv4" source address="192.168.1.51" accept"
     
    # 针对一个ip段访问
    firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.0.0/16" accept"
    firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.1.0/24" port protocol="tcp" port="9200" accept"
     
    # 添加操作后别忘了执行重载
    firewall-cmd --reload
     
     
    遇见过的问题:
    服务器之间网络不通,如下,查询防火墙,selinux 发现都是关闭的。然后telnet不通
    telnet: connect to address 192.168.200.66: No route to host
    可以尝试下如下命令清除防火墙规则:
    1  iptables -F                     //清除规则
    2 service iptables save     //保存到/etc/sysconfig/iptables ,不然重启会失效。
    3  systemctl restart network.service
     
     
  • 相关阅读:
    通过XmlHttpRequest实现带进度条异步下载文件
    关于SharpZipLib压缩分散的文件及整理文件夹的方法
    最大尺寸限制的容器,根据内容显示滑条的计算问题
    页面localStorage用作数据缓存的简易封装
    基于jquery封装的颜色下拉选择框
    模仿win10样式,基于jquery的时间控件
    js对象的继承以及公有私有属性的定义和读写
    The remote name could not be resolved问题的解决方法
    vs快捷方式
    C++STL中的全排列函数
  • 原文地址:https://www.cnblogs.com/ENU7/p/13652247.html
Copyright © 2011-2022 走看看