- 论坛徽章:
- 13
|
回复 2# zrq1238
- 以前的笔记,阁下可以对照看看!
- > cat nfs.txt
- # NFS (Network FileSystem)
- # NFS ==> nfs-utils
- RPC(Remote Procedure Call) rpc.nfsd rpc.mountd rpc.lockd rpc.statd
- # ===> ATTENTION: <===
- # Replace x with an unused port number
- vim /etc/sysconfig/nfs
- MOUNTD_PORT="x" STATD_PORT="x" LOCKD_TCPPORT="x" LOCKD_UDPPORT="x"
- # To configure a firewall to allow NFS:
- 1.Allow TCP and UDP port 2049 for NFS.
- 2.Allow TCP and UDP port 111 (portmap/sunrpc).
- 3.Allow the TCP and UDP port specified with MOUNTD_PORT="x"
- 4.Allow the TCP and UDP port specified with STATD_PORT="x"
- 5.Allow the TCP port specified with LOCKD_TCPPORT="x"
- 6.Allow the UDP port specified with LOCKD_UDPPORT="x"
- RQUOTAD_PORT="4005"
- STATD_OUTGOING_PORT="4006"
- /etc/exports (NFS file systems being exported (for Kernel based NFS)
- /usr/sbin/exportfs (Maintain list of NFS exported file systems)
- /usr/sbin/showmount (show mount information for an NFS server)
- /var/lib/nfs/etab (Records the NFS shared Dir and Permission)
- /var/lib/nfs/xtab (Client's connection records)
- /var/lib/nfs/*.tab
- # man exports (Read the Specification)
- vim /etc/exports
- /tmp 192.168.0.0/24(ro) localhost(rw,async) *.example.com(ro,sync)
- /tmp *(rw,root_squash)
- /home/public 192.168.0.0/24(rw) *(ro)
- # all_squash ==> (Map all uids and gids to the anonymous user)
- cat /etc/passwd |egrep 'nobody|nfsnobody'
- nobody ==> 99
- nfsnobody ==> 65534
- /home/linux *.example.com(rw,all_squash,anonuid=99,anongid=99,sync)
- # sample /etc/exports file
- / master(rw) trusty(rw,no_root_squash)
- /projects proj*.local.domain(rw)
- /usr *.local.domain(ro) @trusted(rw)
- /home/joe pc001(rw,all_squash,anonuid=150,anongid=100)
- /pub (ro,insecure,all_squash)
- /etc/init.d/portmap restart
- /etc/init.d/nfs restart
- /etc/init.d/nfslock restart
- rpcinfo -p localhost
- cat /var/lib/nfs/etab
- showmount -e localhost
- exportfs -arv
- exportfs -auv
- exportfs -o async django:/usr/tmp
- mount -t nfs -o nosuid,noexec,nodev,bg,rw,soft 192.168.0.2:/home/public /home/nfs
- mount -t nfs 192.168.0.2:/home/public /home/nfs
- #chkconfig netfs on
- #service netfs restart
- vim /etc/fstab
- 192.168.0.2:/home/public /home/nfs nfs nosuid,noexec,nodev,bg,rw,soft,rsize=32768,wsize=32768 0 0
- # TCP Wrappers Control
- vim /etc/hosts.allow
- mountd,portmap: 192.168.0.0/255.255.255.0
- mountd: 192.168.0.
- # AutoMounter for NFS
- chkconfig autofs on
- service autofs restart
- vim /etc/auto.master
- /home/guests /etc/auto.guests --timeout=60
- cp /etc/auto.misc /etc/auto.guests
- vim /etc/auto.guests
- * -rw,soft,intr 192.168.1.1:/home/guests/&
- >
复制代码 |
|