You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
957 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

nfsstat
===
列出NFS客户端和服务器的工作状态
## 说明
**nfsstat命令** 用于列出NFS客户端和服务器的工作状态
## 选项
```
nfsstat(选项)
```
```
-s仅列出NFS服务器端状态
-c仅列出NFS客户端状态
-n仅列出NFS状态默认显示nfs客户端和服务器的状态
-2仅列出NFS版本2的状态
-3仅列出NFS版本3的状态
-4仅列出NFS版本4的状态
-m打印以加载的nfs文件系统状态
-r仅打印rpc状态
```
## 实例
要显示关于客户机发送和拒绝的RPC和NFS调用数目的信息输入
```
nfsstat -c
```
要显示和打印与客户机NFS调用相关的信息输入如下命令
```
nfsstat -cn
```
要显示和打印客户机和服务器的与RPC调用相关的信息输入如下命令
```
nfsstat -r
```
要显示关于服务器接收和拒绝的RPC和NFS调用数目的信息输入如下命令
```
nfsstat s
```