Changes between Version 11 and Version 12 of TipAndDoc/network/nfs
- Timestamp:
- Mar 21, 2016 2:48:29 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TipAndDoc/network/nfs
v11 v12 27 27 * [http://linux.die.net/man/5/exports exports(5): NFS server export table - Linux man page] 28 28 > 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)] 29 30 30 31 = NFS with DHCP = … … 33 34 * Linux 4.4.5-1-ARCH 34 35 * 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 {{{ 42 nfs-server.local.mitty.jp:/ /srv/nfs4 nfs4 nosuid,noexec,_netdev,hard 0 0 43 }}} 35 44 36 45 * mitty@nfs-client:~$ systemctl status srv-nfs4.mount