Changes between Version 11 and Version 12 of TipAndDoc/network/nfs


Ignore:
Timestamp:
Mar 21, 2016 2:48:29 AM (8 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/network/nfs

    v11 v12  
    2727 * [http://linux.die.net/man/5/exports exports(5): NFS server export table - Linux man page] 
    2828 > For NFSv4, there is a distinguished filesystem which is the root of all exported filesystem. This is specified with fsid=root or fsid=0 both of which mean exactly the same thing. 
     29 * [http://www.asahi-net.or.jp/~aa4t-nngk/nfsv4.html Stray Penguin - Linux Memo (NFSv4)] 
    2930 
    3031 = NFS with DHCP = 
     
    3334 * Linux 4.4.5-1-ARCH 
    3435 * nfs-utils 1.3.3-3 
     36 * nfs-server:~$ cat /etc/exports 
     37{{{ 
     38/srv/nfs4 192.168.1.0/24(rw,sync,fsid=0,no_subtree_check,no_root_squash) 
     39}}} 
     40 * nfs-client:~$ cat /etc/fstab 
     41{{{ 
     42nfs-server.local.mitty.jp:/ /srv/nfs4       nfs4    nosuid,noexec,_netdev,hard      0       0 
     43}}} 
    3544 
    3645 * mitty@nfs-client:~$ systemctl status srv-nfs4.mount