zoukankan      html  css  js  c++  java
  • 不同版本的Linux防火墙关闭和开启

    1. Ubuntu 的防火墙关闭与启动。
      * 关闭ubuntu的防火墙开机自启*
    ufw disable 

    * 打开ubuntu的防火墙开机自启*

    ufw enable 
    1. redhat系列包括redhat ,centos 和 fedora不同版本关闭防火墙的方式并不一样
      redhat,centos6及fedora旧的版本关闭防火墙方式
    命令 作用
    service iptables start 开启防火墙
    service iptables stop 关闭防火墙
    service iptables status 查看防火墙状态
    chkconfig iptables on 防火墙开机自启
    chkconfig iptables off 禁止开机自启
    chkconfig iptables status 查看是否为开机自启

    redhat,centos7及fedora新的版本关闭防火墙方式

    命令 作用
    systemctl start firewalld 开启防火墙
    systemctl stop firewalld 关闭防火墙
    systemctl status firewalld 查看防火墙状态
    systemctl enable firewalld 防火墙开机自启
    systemctl disable firewalld 禁止开机自启
    systemctl is-enabled firewalld 查看是否为开机自启
  • 相关阅读:
    学生管理系统
    Selenium元素定位的30种方式
    python-- 多进程
    python 多线程的实现
    python 节省内存的for循环技巧
    python 生成器
    python 字符串编码检测
    opencv-python 图片的几何变换
    opencv-python --图像处理
    目标检测
  • 原文地址:https://www.cnblogs.com/fjw3214/p/10705153.html
Copyright © 2011-2022 走看看