• RHEL 7.0 修改防火墙配置


    RHEL 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。

    关闭firewall:

    1. systemctl stop firewalld.service #停止firewall 
    2. systemctl disable firewalld.service #禁止firewall开机启动 
    3. yum install iptables-services  #安装iptables 
    4. vi /etc/sysconfig/iptables  #编辑防火墙配置文件 
    5. # Firewall configuration written by system-config-firewall 
    6. # Manual customization of this file is not recommended. 
    7. *filter 
    8. :INPUT ACCEPT [0:0] 
    9. :FORWARD ACCEPT [0:0] 
    10. :OUTPUT ACCEPT [0:0] 
    11. -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT 
    12. -A INPUT -p icmp -j ACCEPT 
    13. -A INPUT -i lo -j ACCEPT 
    14. -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT 
    15. -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT 
    16. -A INPUT -j REJECT --reject-with icmp-host-prohibited 
    17. -A FORWARD -j REJECT --reject-with icmp-host-prohibited 
    18. COMMIT 
    19. :wq! #保存退出 

    • systemctl  start  iptables.service  #启动防火墙
    • systemctl  stop  iptables.service  #停止防火墙
    • systemctl  restart  iptables.service  #重启防火墙
    • systemctl  status  iptables.service  #查看防火墙状态
    • systemctl  enable  iptables.service  #设置开机启动
  • 相关阅读:
    TCP11种状态
    多客户连接僵尸进程的处理
    gethostname(获取主机名)、gethostbyname(由主机名获取IP地址)
    点对点通信实例
    XCTF simple js
    XCTF WEB backup
    bugku SKCTF管理系统
    php漏洞 sha1函数
    bugku--速度要快
    bugku秋名山车神
  • 原文地址:https://www.cnblogs.com/dai330713/p/4938847.html
Copyright © 2020-2023  润新知