| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente |
| tech:draft-nfsv4-sous-debian [2025/12/11 17:32] – Jean-Baptiste | tech:draft-nfsv4-sous-debian [2026/02/04 10:17] (Version actuelle) – Jean-Baptiste |
|---|
| * http://wiki.linux-nfs.org/wiki/index.php/Nfsv4_configuration | * http://wiki.linux-nfs.org/wiki/index.php/Nfsv4_configuration |
| * https://www.suse.com/communities/blog/configuring-nfsv4-server-and-client-suse-linux-enterprise-server-10/ | * https://www.suse.com/communities/blog/configuring-nfsv4-server-and-client-suse-linux-enterprise-server-10/ |
| | * https://blog.stephane-robert.info/docs/services/stockage/nfs/ |
| | * https://inetdoc.net/pdf/sysadm-net.nfs.pdf |
| |
| |
| # /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check) | # /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check) |
| # | # |
| /export 192.168.1.0/24(rw,sync,fsid=0,no_subtree_check) 127.0.0.1(rw,sync,fsid=0,no_subtree_check) | /export 192.168.1.0/24(rw,sync,fsid=0,crossmnt,no_subtree_check) 127.0.0.1(rw,sync,fsid=0,crossmnt,no_subtree_check) |
| /export/partage 192.168.1.0/24(rw,sync,nohide,insecure,no_subtree_check) 127.0.0.1(rw,sync,nohide,insecure,no_subtree_check) | /export/partage 192.168.1.0/24(rw,sync,nohide,insecure,no_subtree_check) 127.0.0.1(rw,sync,nohide,insecure,no_subtree_check) |
| </code> | </code> |
| |
| == Diag | == Diag |
| | |
| | <code bash> |
| | mount.nfs4 -v -o noauto,sec=sys,proto=tcp,port=2049,vers=4.2 127.0.0.1:/export/files /mnt/nfs/ |
| | mount -t nfs4 127.0.0.1:files /mnt/nfs/ -v |
| | |
| | journalctl -u nfs-server -f |
| | dmesg |
| | </code> |
| | |
| | |
| |
| Source https://access.redhat.com/solutions/3915571 | Source https://access.redhat.com/solutions/3915571 |