linux关防火墙和SElinux

Posted 星星之火pxl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux关防火墙和SElinux相关的知识,希望对你有一定的参考价值。

 

Linux关闭防火墙

  •  重启后永久性生效:

  开启: chkconfig iptables on

  关闭: chkconfig iptables off

  • 即时生效,重启后失效:

  开启: service iptables start

  关闭: service iptables stop

  • 临时关闭防火墙 
    systemctl stop firewalld
  • 永久防火墙开机自关闭 
    systemctl disable firewalld
  • 临时打开防火墙 
    systemctl start firewalld
  • 防火墙开机启动 
    systemctl enable firewalld
  • 查看防火墙状态 
    systemctl status firewalld

Linux关闭SELinux

  • 临时关闭SELinux 
    setenforce 0
  • 临时打开SELinux 
    setenforce 1
  • 查看SELinux状态 
    getenforce
  • 开机关闭SELinux 

修改 /etc/selinux/config 文件中的 SELINUX="" 为 disabled ,然后重启。

 









以上是关于linux关防火墙和SElinux的主要内容,如果未能解决你的问题,请参考以下文章

开启SELINUX真的就那么难吗?

ubuntu怎么关防火墙

ubuntu怎么关防火墙

linux关于关闭防火墙和selinux的操作

Linux关闭防火墙和关闭SELinux命令

Linux下防火墙和selinux的启动关闭和查看