Fellow FreeBSD Fans,
I'm using 10.3-RELEASE-p6 amd64.
I'd like to NFS export a jailed directory. This jail's not using VNET, so I've configured the export on the base operating system; I'm not attempting a jailed NFS server.
The base operating system's name's joymax and the jail's name's smurf.
My /etc/exports (on joymax) looks like:
NFS clients see this export like this:
Yet what I'd really like, would be for NFS clients to see the export like this:
I guess I could just
'seems like it'd be groovy if the NFS server allowed me to make an export like this, without having to break out the "bailing wire."
Thanks very much!
I'm using 10.3-RELEASE-p6 amd64.
I'd like to NFS export a jailed directory. This jail's not using VNET, so I've configured the export on the base operating system; I'm not attempting a jailed NFS server.
The base operating system's name's joymax and the jail's name's smurf.
My /etc/exports (on joymax) looks like:
Code:
/x/jail/smurf/goodies -ro -network 192.168.32.0/24
NFS clients see this export like this:
Code:
client$ showmount -e joymax
Exports list on joymax:
/x/jail/smurf/goodies 192.168.32.0
Yet what I'd really like, would be for NFS clients to see the export like this:
Code:
client$ showmount -e joymax
Exports list on joymax:
/goodies 192.168.32.0
I guess I could just
ln -s /x/jail/smurf/goodies /goodies
(though I haven't tried that), or use nullfs(5), yet I thought somebody might know of a more elegant way.'seems like it'd be groovy if the NFS server allowed me to make an export like this, without having to break out the "bailing wire."
Thanks very much!