zoukankan      html  css  js  c++  java
  • 在iptables和selinux中放行smb服务

    配置selinux

    [root@localhost samba]# getsebool -a | grep samba 查找selinux中对samba的限制项
    samba_domain_controller --> off
    samba_enable_home_dirs --> off
    samba_export_all_ro --> off
    samba_export_all_rw --> off
    samba_share_nfs --> off
    use_samba_home_dirs --> off
    virt_use_samba --> off


    [root@localhost samba]# setsebool -P samba_export_all_rw=1(=0是关闭)
    [root@localhost samba]# setsebool -P samba_export_all_ro=1
    [root@localhost samba]# getsebool -a | grep samba
    samba_domain_controller --> off
    samba_enable_home_dirs --> off
    samba_export_all_ro --> on(如果只读共享的文件只开此项就行)
    samba_export_all_rw --> on(如果读写,只开此项就行,修改文件时要看文件的chmod属性。)
    samba_share_nfs --> off
    use_samba_home_dirs --> off
    virt_use_samba --> off

     

    如不想共享文件可运行如下语句

    [root@localhost samba]# setsebool -P samba_export_all_rw=0
    [root@localhost samba]# setsebool -P samba_export_all_ro=0

  • 相关阅读:
    P2437 蜜蜂路线题解
    P1044 栈题解
    P1002 过河卒题解
    P1433 吃奶酪题解
    组合数公式
    P1036 选数题解
    十进制转二进制方法整理
    golang学习笔记 ---工作区与GOPATH
    golang学习笔记---闭包
    golang学习笔记---类型
  • 原文地址:https://www.cnblogs.com/fjping0606/p/4573131.html
Copyright © 2011-2022 走看看