Answers requests from clients for file system mounts.
The mountd daemon is a Remote Procedure Call (RPC) that answers a client request to mount a file system. The mountd daemon finds out which file systems are available by reading the /etc/xtab file.
In addition, the mountd daemon provides a list of currently mounted file systems and the clients on which they are mounted. You can display this list by using the showmount command.
mountd   6666/tcp 
mountd   6666/udpThe mountd daemon is started from the /etc/rc.nfs file. The mountd daemon can be started and stopped by the following System Resource Controller (SRC) commands:
startsrc -s rpc.mountd
stopsrc -s rpc.mountdTo change the parameters passed to the mountd daemon, use the chssys command. For example:
chssys -s rpc.mountd -a ArgumentThe change will not take effect until the daemon is restarted.
| Item | Description | 
|---|---|
| -n | Allows clients that use older versions of NFS to mount file systems. This option makes the system less secure. It is the default. | 
| -N | Deny mount requests originating from non-privileged ports. This is the opposite of using the -n flag, and is not enabled by default. | 
| Item | Description | 
|---|---|
| /etc/exports | Lists the directories that the server can export. | 
| /etc/inetd.conf | Defines how the inetd daemon handles Internet service requests. | 
| /etc/xtab | Lists currently exported directories. | 
| /etc/services | Defines the sockets and protocols used for Internet services. Contains information about the known services used in the DARPA Internet network. |