您的位置:首页 > 其它

NFS, Network File System

2013-10-03 16:34 369 查看

Typical implementation




This section
does not
cite any
references or sources
. Please help improve this section by

adding citations to reliable sources. Unsourced material may be challenged and

removed. (February 2010)
Assuming a Unix-style scenario in which one machine (the
client) requires access to data stored on another machine (the NFS
server):

The server implements NFS
daemon processes (running by default as
nfsd
) in order to make its data generically available to clients.
The server administrator determines what to make available, exporting the names and parameters of

directories (typically using the
/etc/exports
configuration file and the
exportfs
command).
The server
security-administration ensures that it can recognize and approve validated clients.
The server network configuration ensures that appropriate clients can negotiate with it through any

firewall system.
The client machine requests access to exported data, typically by issuing a
mount
command. (The client asks the server (rpcbind) which port the NFS server is using, the client connects to the NFS server (nfsd), nfsd passes the request to mountd)
If all goes well, users on the client machine can then view and interact with mounted

filesystems on the server within the parameters permitted.

Note that automation of the NFS mounting process may take place — perhaps using
/etc/fstab
and/or
automounting facilities.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: