When specifying an NFS mountpoint in /etc/fstab, what's the purpose of the addr option? For example:
192.168.1.5:/home /home nfs rw,addr=192.168.1.5 0 0
|
When specifying an NFS mountpoint in /etc/fstab, what's the purpose of the addr option? For example:
| |||
|
feedback
|
|
It can specify the client address to use when the client has multiple subnet IPs on an interface and traversing the same routes (think aliased eth0:1, bond0:2, etc.). Typically in this situation you'd put the NFS server on another interface/subnet to avoid the whole problem but in large network installations things can get messy. | |||
|
feedback
|
|
Looking at the man page for mount (http://linux.die.net/man/8/mount). It appears as though that option is accepted but ignored. I could not find any other information on it. | |||
feedback
|
|
I believe NFS uses it internally, you see it in | |||
|
feedback
|