NFS  
(端口: 111)
服务器
1. [root@all ~]# rpcinfo -p
   程序 版本 协议   端口
    100000    2   tcp    111  portmapper
    100000    2   udp    111  portmapper
    100024    1   udp    774  status
    100024    1   tcp    777  status
2.  [root@all named]# vim /etc/exports    主配置文件
   /nfs/test      192.168.0.0/255.255.255.0(ro)   允许一个网段只读
   /wr            192.168.0.231(rw,sync)          允许一个IP同步读写
   /pub           *(rw,async)                     允许所有人异步读写
3. [root@all named]# mkdir -p /nfs/test /wr /pub   生成目录
   [root@all named]# ll -d /nfs/test /wr /pub     查看目录权限
    drwxr-xr-x 2 root root 4096 11-29 23:56 /nfs/test
    drwxr-xr-x 2 root root 4096 11-29 23:56 /pub
    drwxr-xr-x 2 root root 4096 11-29 23:56 /wr
   [root@all named]# chmod 777 /pub /wr   更改权限以符合实验要求
   [root@all named]# ll -d /pub /wr    查看确认
    drwxrwxrwx 2 root root 4096 11-29 23:56 /pub
    drwxrwxrwx 2 root root 4096 11-29 23:56 /wr
4.  [root@all named]# service portmap  restart   重启服务
    [root@all named]# service nfs  restart
5. [root@all Server]# rpcinfo -p
   程序 版本 协议   端口
    100000    2   tcp    111  portmapper
    100000    2   udp    111  portmapper
    100024    1   udp    774  status
    100024    1   tcp    777  status
    100011    1   udp    732  rquotad
    100011    2   udp    732  rquo
   
   
   
   
    ltad
    100011    1   tcp    735  rquotad
    100011    2   tcp    735  rquotad
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100003    4   udp   2049  nfs
    100021    1   udp  32770  nlockmgr
    100021    3   udp  32770  nlockmgr
    100021    4   udp  32770  nlockmgr
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100021    1   tcp  55613  nlockmgr
    100021    3   tcp  55613  nlockmgr
    100021    4   tcp  55613  nlockmgr
    100005    1   udp    760  mountd
    100005    1   tcp    763  mountd
    100005    2   udp    760  mountd
    100005    2   tcp    763  mountd
    100005    3   udp    760  mountd
    100005    3   tcp    763  mountd
   
6. [root@all Server]# exportfs -r   使用命令更新分享目录清单,类似于重启服务.
客户端
1. [root@xx ~]# showmount -e 192.168.0.239  查看服务器共享的资源
    Export list for 192.168.0.239:
     /pub      *
     /wr       192.168.0.231
     /nfs/test 192.168.0.0/255.255.255.0
    
2.  [root@xx ~]# mount 192.168.0.239:/pub /mnt   挂载对象
3.   设置开机自动挂载
   [root@xx ~]# showmount -e 192.168.0.239
     Export list for 192.168.0.239:
     /tmp *
   [root@xx ~]# vim /etc/fstab
    内容:
    192.168.0.239:/tmp     /mnt     nfs  ro,soft,intr,timeo=1 0 0
    soft: 服务器不响应时报告错误
    hard: 服务器不响应时继续重试
    intr: 允许中断
    nointr: 不允许中继
    timeo:  超时(秒)