本文转载自:http://szypanther.blog.hexun.com/62041490_d.html

rpcinfo -p | grep -iE "service|NFS"


欲判斷您 NFS 用戶端和伺服器上執行的通訊協定版本:

在用戶端上執行 nfsstat -m 命令,以顯示用戶端上各裝載點的 NFS 版本。例如,輸出

/winona
Flags:vers=2

表示 NFS PV2。在伺服器上使用 rpcinfo -p | grep -iE "service|NFS" 命令,顯示伺服器上可使用的 NFS 版本。例如,輸出

program vers proto port service
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
150001 1 udp 719 pcnfsd
150001 2 udp 719 pcnfsd
150001 1 tcp 720 pcnfsd
150001 2 tcp 720 pcnfsd

表示伺服器可提供 NFS PV2 和 NFS PV3。