2735
Comment:
|
4041
|
Deletions are marked like this. | Additions are marked like this. |
Line 24: | Line 24: |
Edit the {{{/etc/export}}} file. | Edit the {{{/etc/exports}}} file. |
Line 29: | Line 29: |
/home 192.168.1.1/24(rw,no_root_squash,no_subtree_check,async) | /home 192.168.1.0/24(rw,no_root_squash,no_subtree_check,async,insecure) |
Line 35: | Line 35: |
/home 192.168.0.0/16(rw,no_root_squash,no_subtree_check,async) | /home 192.168.0.0/16(rw,no_root_squash,no_subtree_check,async,insecure) |
Line 38: | Line 38: |
You must execute the following commands after any edit to the {{{/etc/export}}} file. | You must execute the following commands after any edit to the {{{/etc/exports}}} file. Reread the {{{/etc/export}}} file. {{{ sudo exportfs -ra }}} Restart the nfs server. |
Line 42: | Line 50: |
sudo exportfs -a | |
Line 46: | Line 53: |
== TCP Wrappers == In the {{{/etc/hosts.deny}}} file deny everything. {{{ ALL: ALL: \ spawn ( DATE=`date`; /bin/echo $DATE %d %u %c >> /var/log/wrapper-deny.log ) }}} In the {{{/etc/hosts.allow}}} file add {{{portmap, mountd, nfsd, lockd, rquotad, statd}}}. {{{ ALL: 127.0.0.1 portmap, mountd, nfsd, lockd, rquotad, statd, sshd, cvs : \ 127.0.0.1, \ some.domain.org, \ some.domain.net : \ spawn ( DATE=`date`; /bin/echo $DATE %d %u %c >> /var/log/wrapper-allow.log ) }}} |
|
Line 55: | Line 83: |
First make a mount point on your remote machine where you want this mount to be located. | First make a mount point on your remote machine where you want the server mount to be located. |
Line 59: | Line 87: |
sudo mkdir -p shares/home | sudo mkdir -p /exports/host/home |
Line 62: | Line 90: |
This will mount your remote {{{/home}}} directory to {{{/share/home}}} on the client machine. | The following will mount your remote {{{/home}}} directory to {{{/export/host/home}}} on the client machine. |
Line 65: | Line 93: |
sudo mount -t nfs myserver.mydomain.org:/home /shares/home | sudo mount -t nfs host.mydomain.org:/home /export/host/home |
Line 79: | Line 107: |
Edit {{{/etc/fstab}}}. | Install the autofs package: |
Line 82: | Line 110: |
myserver.mydomain.org:/home /shares/home nfs rsize=8192,wsize=8192,timeo=14,intr | sudo apt-get install autofs |
Line 85: | Line 113: |
Look at the mount manual page for other mounting options. | Edit the {{{/etc/auto.master}}} file adding the following line. {{{ /.autofs/host /etc/auto.host --timeout=60 }}} Create the {{{/etc/auto.host}}} file and add the lines for your mounts. {{{ someuser -rw,soft,bg,intr host.mydomain.org:/home/someuser iso -rw,soft,bg,intr host.mydomain.org:/extra0/iso Video -rw,soft,bg,intr host.mydomain.org:/extra1/Video }}} I make a hidden directory path at the root system named {{{/.autofs/host}}} where host is the host name of the machine I am mounting shares from. {{{ sudo mkdir -p /.autofs/host }}} == Boot Mounting == Edit {{{/etc/fstab}}} adding the following line: {{{ host.mydomain.org:/home /export/host/home nfs rw,bg,intr 0 0 }}} Look at the [[http://linux.die.net/man/5/nfs|nfs manual page]] for other mounting options. |
Line 90: | Line 146: |
mount /shares/home | mount /export/host/home |
Line 92: | Line 148: |
'''I would not recommend auto mounting on a wireless network since the system will try to mount your shares, in most cases, before the network is up.''' |
|
Line 100: | Line 154: |
https://help.ubuntu.com/community/SettingUpNFSHowTo http://www.linux-consulting.com/Amd_AutoFS/autofs-5.html |
NFS HOWTO
I have put this HOWTO together from various sources which I will list at the end. Discuss here is the process of setting up a server and using a client. I'm not going to get very wordy here as this is really a reference for myself. However, if you want to contact me concerning this document, follow the link at the bottom of this page for my contact info.
Getting the Packages
On Debian derived systems you can install the server packages as shown below:
sudo apt-get install nfs-kernel-server nfs-common portmap
Configuring portmap
Do not bind portmap to the loopback. If you need to reconfigure the portmap run the first of the next two commands or edit /etc/default/portmap by hand then restart the servers.
sudo dpkg-reconfigure portmap sudo /etc/init.d/portmap restart
Configuring NFS
Edit the /etc/exports file.
The following line will permit all 254 C class addresses on the private net specified to access this mount.
/home 192.168.1.0/24(rw,no_root_squash,no_subtree_check,async,insecure)
This line will permit all 65534 C class addresses on the private net specified to access this mount.
/home 192.168.0.0/16(rw,no_root_squash,no_subtree_check,async,insecure)
You must execute the following commands after any edit to the /etc/exports file.
Reread the /etc/export file.
sudo exportfs -ra
Restart the nfs server.
sudo /etc/init.d/nfs-kernel-server restart
Note: See ipcalc for details of determining the network parameters.
TCP Wrappers
In the /etc/hosts.deny file deny everything.
ALL: ALL: \ spawn ( DATE=`date`; /bin/echo $DATE %d %u %c >> /var/log/wrapper-deny.log )
In the /etc/hosts.allow file add portmap, mountd, nfsd, lockd, rquotad, statd.
ALL: 127.0.0.1 portmap, mountd, nfsd, lockd, rquotad, statd, sshd, cvs : \ 127.0.0.1, \ some.domain.org, \ some.domain.net : \ spawn ( DATE=`date`; /bin/echo $DATE %d %u %c >> /var/log/wrapper-allow.log )
Installing Just the Client Software
sudo apt-get install portmap nfs-common
Manual Mounting
First make a mount point on your remote machine where you want the server mount to be located.
cd / sudo mkdir -p /exports/host/home
The following will mount your remote /home directory to /export/host/home on the client machine.
sudo mount -t nfs host.mydomain.org:/home /export/host/home
You may not need the -t nfs in the above command.
You will need to restart the servers using the commands below:
sudo /etc/init.d/portmap restart sudo /etc/init.d/nfs-common restart
Auto Mounting
Install the autofs package:
sudo apt-get install autofs
Edit the /etc/auto.master file adding the following line.
/.autofs/host /etc/auto.host --timeout=60
Create the /etc/auto.host file and add the lines for your mounts.
someuser -rw,soft,bg,intr host.mydomain.org:/home/someuser iso -rw,soft,bg,intr host.mydomain.org:/extra0/iso Video -rw,soft,bg,intr host.mydomain.org:/extra1/Video
I make a hidden directory path at the root system named /.autofs/host where host is the host name of the machine I am mounting shares from.
sudo mkdir -p /.autofs/host
Boot Mounting
Edit /etc/fstab adding the following line:
host.mydomain.org:/home /export/host/home nfs rw,bg,intr 0 0
Look at the nfs manual page for other mounting options.
To test your edit type in a terminal the following command:
mount /export/host/home
Useful Links
http://ubuntuforums.org/showthread.php?t=249889
http://tldp.org/HOWTO/NFS-HOWTO/