• Linux查询端口是否被防火墙屏蔽


    1.查看firewall的状态

    firewall-cmd --state

    2.查询端口状态

    firewall-cmd --query-port=8080/tcp

    3.开启端口

    firewall-cmd --permanent --add-port=8080/tcp

    4.移除端口

    firewall-cmd --permanent --remove-port=8080/tcp

    5.刷新防火墙配置

    firewall-cmd --reload 

    6.其他操作

    开启防火墙:service firewalld start

    关闭防火墙:service firewalld stop

    重启防火墙:service firewalld restart

  • 相关阅读:
    HDU 6043
    HDU 6033
    HDU 6041
    HDU 6050
    HDU 6053
    HDU 6055
    HDU 6045
    HDU 6044
    HDU 6040
    ZUFE 1035 字符宽度编码(字符串)
  • 原文地址:https://www.cnblogs.com/wudidd/p/13389525.html
Copyright © 2020-2023  润新知