blob: 40be7e5d20c91f6fbbd671924bcddf0b1a8b5a28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "nfs-utils-rdma-server
NOTE: In your /etc/exports or /etc/exports.d/*.exports files, you MUST use
the insecure option, because the NFS/RDMA client does not use a
reserved port. This option ONLY means that the client can be using a
port less than IPPORT_RESERVED (1024).
NOTE: If you want to run nfs v4.0+ only, you do not need rpcbind. In this
case, change /etc/conf.d/nfs-server.conf to contain:
NFSD_OPTS=\"-N 2 -N 3\"
And, on clients, you muse use \"mount -t nfs4 ...\"
"
}
|