码迷,mamicode.com
首页 > 其他好文 > 详细

nfs

时间:2017-06-09 17:33:19      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:permanent   防火墙   文件管理器   工作组   enable   

*****************************

********  nfs  **************

*****************************

*  网络文件系统(NFS)是Unix系统和网络附加存储文件管理器常用的网络文件系统,允许多个客户端通过网络共享文件访问。它可用于提供对共享二进制目录的访问,也可用于允许用户在同一工作组中从不同客户端访问其文件。

  

   1.安装服务,设置防火墙

    yum install nfs-utils -y

技术分享

    systemctl enable nfs-server.service

    systemctl start nfs-server.service

技术分享

   firewall-cmd --permanent --add-service=nfs

   firewall-cmd --permanent --add-service=rpc-bind

   firewall-cmd --permanent --add-service=mountd 

技术分享


    2.nfs配置

     vim  /etc/exports 

     exportfs  -rv    ##刷新服务,让更改生效

技术分享

      /public   *(sync)   ##public共享给所有人并且数据同步

技术分享

**测试

    /public   *.example.com(sync,rw)   ##public共享给example.com所有主机

技术分享

 

*测试

   

    /public  172.25.0.0/24(sync)   ##public共享给172.25.0.0/24网段

技术分享

*测试


254网段不能挂载

技术分享

0网段可以挂载


   

   /public  172.25.254.74(ro,sync)  172.25.254.123(rw,sync)  ##public共享给74是只读,                                              123是读写

*测试

74主机

技术分享

123主机

技术分享


    /public  *(rw,sync,no_root_squsah)    ##public共给所有人,当客户端使用root挂载不转                                 换用户身份

技术分享

*测试

技术分享



   /public  *(rw,sync,anonuid=1001,anongid=1000)  ##public共享给所有人,1001为UID,1000                                      为GID,用户必须在客户端存在

技术分享

*测试

技术分享



  3.利用kerberos保护nfs输出

* 在server上

开启kerberos认证,得到ldap用户

   yum install sssd krb5-workstation.x86_64 authconfig-gtk.x86_64 -y

技术分享


技术分享


   

 wget http:/172.25.254.254/pub/keytabs/server26.keytab -O /etc/krb5.keytab  ##获取keytab

技术分享

   ktuil    ##查看获取的keytab

技术分享

 

   vim  /etc/exports

技术分享

/public  *(rw,sec=krb5p)   ##public共享给所有人,使用kerberos票据认证


    

   systemctl start nfs-secure-server

   systemctl enable nfs-secure-server


* 在desktop上

  开启kerberos认证,得到ldap用户


  wget http:/172.25.254.254/pub/keytabs/desktop26.keytab -O /etc/krb5.keytab


 

   systemctl start nfs-secure

   systemctl enable nfs-secure



nfs

标签:permanent   防火墙   文件管理器   工作组   enable   

原文地址:http://12774035.blog.51cto.com/12764035/1933745

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!