I'm hoping that someone can shed light into this problem for me.
I am trying to share a filesystem across a PTP ethernet link using
NFS.
The exported file sytem has quotas enabled and is a metadevice.
Quotas
function fine locally. The filesystem can be mounted remotely.
I am sure I am missing something basic.

Server info:

bash-2.03# df -k|egrep /mnt$
/dev/md/dsk/d0 12343099 10389542 1830127 86% /mnt


bash-2.03# share
- /mnt rw=fw:ptp-2,root=fw:ptp-2 ""


Client side:

bash-2.03# mount -o vers=3,proto=udp,quota ptp-1:/mnt /mnt

bash-2.03# nfsstat -m
/mnt from ptp-1:/mnt
Flags: vers=3,proto=udp,sec=sys,hard,intr,link,symlink,ac l,rsize=32768,wsize=32768,retrans=5,timeo=11
Attr cache: acregmin=3,acregmax=60,acdirmin=30,acdirmax=60

bash-2.03# df -k | egrep /mnt$
ptp-1:/mnt 12343099 10398149 1821520 86% /mnt

bash-2.03# repquota -va
quotactl: no quotas file on any mounted file system

bash-2.03# rpcinfo -p ptp-1
program vers proto port service
100000 4 tcp 111 rpcbind
100000 3 tcp 111 rpcbind
100000 2 tcp 111 rpcbind
100000 4 udp 111 rpcbind
100000 3 udp 111 rpcbind
100000 2 udp 111 rpcbind
100005 1 udp 50763 mountd
100005 2 udp 50763 mountd
100005 3 udp 50763 mountd
100005 1 tcp 36109 mountd
100005 2 tcp 36109 mountd
100005 3 tcp 36109 mountd
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
100227 2 udp 2049 nfs_acl
100227 3 udp 2049 nfs_acl
100003 2 tcp 2049 nfs
100003 3 tcp 2049 nfs
100227 2 tcp 2049 nfs_acl
100227 3 tcp 2049 nfs_acl


I've tried running rquotad manually on the server as well. When I do
so, it shows up via RPC.

Any ideas? The mount works and quotas work locally. Is rquota not
supported
when the shared filesystem is a metadevice? I don't see why that
would be the
case...

What am I missing here? Last time I did this, IIRC, everything just
functioned.