I will apologize in advance if there is another thread that talks about this. I did look.
This is on a play network using VirtualBox to run two instances of FreeBSD 9.
clientfs (.42) can mount /work fine. /work2 it can't mount.
If I remove the /work entry it can then mount /work fine. If I switch the order it can mount /work2 but not /work.
I found this which describes actually what is going on;
:\ I just reread the bug message, and I figured out my problem. My /etc/exports should read like so:
Everything now seems to work fine.
I'm going to post this just in case someone else has similar problem. :r
Bill
This is on a play network using VirtualBox to run two instances of FreeBSD 9.
Code:
masterfs:/root#cat /etc/exports
/work 192.168.1.40 192.168.1.41 192.168.1.42
/work2 192.168.1.40 192.168.1.41 192.168.1.42
clientfs (.42) can mount /work fine. /work2 it can't mount.
If I remove the /work entry it can then mount /work fine. If I switch the order it can mount /work2 but not /work.
mountd on the server gives this error:
Code:
can't change attributes for /work2
I found this which describes actually what is going on;
Code:
bin/109911: mountd(8) does not accept identical host sets on different mount entries on the same file system
:\ I just reread the bug message, and I figured out my problem. My /etc/exports should read like so:
Code:
/work /work2 192.168.1.40 192.168.1.41 192.168.1.42
Everything now seems to work fine.
I'm going to post this just in case someone else has similar problem. :r
Bill