我是靠谱客的博主 柔弱书本,最近开发中收集的这篇文章主要介绍CentOS 6 & CentOS 7 : 防火墙和SELinux的开启与关闭,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

防火墙服务程序

CentOS 6

  • 临时开启防火墙服务:/etc/init.d/iptables start
  • 临时关闭防火墙服务:/etc/init.d/iptables stop
  • 永久开启防火墙服务:chkconfig iptables on
  • 永久关闭防火墙服务:chkconfig iptables off
  • 查看防火墙服务状态:/etc/init.d/iptables status

CentOS 7

  • 临时开启防火墙服务:systemctl start firewalld
  • 临时关闭防火墙服务:systemctl stop firewalld.service
  • 永久开启防火墙服务:systemctl enable firewalld
  • 永久关闭防火墙服务:systemctl disable firewalld.service
  • 查看防火墙服务状态:systemctl status firewalld.service
  • 查看防火墙服务是否正在运行:systemctl is-active firewalld.service
  • 查看防火墙服务是否开机运行:systemctl is-enabled firewalld.service

SELinux

SELinux服务对root用户权限进行控制,很多企业默认关闭selinux服务程序。
关闭SElinux方法 :CentOS 6 = CentOS 7

  • getenforce:确认selinux服务是否开启或关闭

    [root@192 Desktop]# getenforce 
    Enforcing
    
  • setenforce:临时开启或关闭selinux服务

    [root@192 Desktop]# setenforce
    usage:  setenforce [ Enforcing | Permissive | 1 | 0 ]
    
    Enforcing   1   --临时开启SElinux
    Permissive   0   --临时关闭SElinux
    
  • /etc/selinux/config文件:永久开启或关闭selinux服务(想要修改该配置文件后生效,需要重启系统)

    [root@192 Desktop]# vim /etc/selinux/config
    # This file controls the state of SELinux on the system.
    # SELINUX= can take one of these three values:
    #     enforcing - SELinux security policy is enforced.   --selinux处于正常开启状态
    #     permissive - SELinux prints warnings instead of enforcing.    --selinux处于临时关闭状态
    #     disabled - No SELinux policy is loaded.    --selinux服务处于彻底关闭状态
    SELINUX=disabled
    # SELINUXTYPE= can take one of three two values:
    #     targeted - Targeted processes are protected,
    #     minimum - Modification of targeted policy. Only selected processes are protected. 
    #     mls - Multi Level Security protection.
    SELINUXTYPE=targeted
    

最后

以上就是柔弱书本为你收集整理的CentOS 6 & CentOS 7 : 防火墙和SELinux的开启与关闭的全部内容,希望文章能够帮你解决CentOS 6 & CentOS 7 : 防火墙和SELinux的开启与关闭所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部