rpcinfo - report RPC information
rpcinfo -p [host]
rpcinfo [-n portnum] -u host program [version]
rpcinfo [-n portnum] -t host program [version]
rpcinfo -b program version
rpcinfo -d program version
The rpcinfo(1) utility makes a remote procedure call (RPC) to an RPC server and reports what it finds.
The program argument can be either a name or a number.
If a version is specified, rpcinfo(1) attempts to call that version of the specified program. Otherwise, rpcinfo(1) attempts to find all the registered version numbers for the specified program by calling version 0 (which is presumed not to exist; if it does exist, rpcinfo(1) attempts to obtain this information by calling an extremely high version number instead) and attempts to call each registered version. The version number is required for -b and -d options.
To show all of the RPC services registered on the local machine use:
$ rpcinfo -p
To show all of the RPC services registered on the computer named klaxon use:
$ rpcinfo -p klaxon
To show all computers on the local net that are running the Yellow Pages service use:
$ rpcinfo -b ypserv 'version' | uniq
where 'version' is the current Yellow Pages version obtained from the results of the -p switch above.
To delete the registration for version 1 of the walld service use:
$ rpcinfo -d walld 1
rpc(5)
RPC Programming Guide