Golliher, Blake wrote:
Does showmount -e against that nfs server show nfs version 2 as an
allowable service?

Well it shows the mount, I don't see how showmount could be used to tell if it's v2 or v3. Except perhaps if you mean that if it shows it at all it's v2:

bash-3.00# showmount -e 192.168.0.3
Exports list on 192.168.0.3:
/export                            192.168.0.2

192.168.0.2 is the OBSD box.

Matt Provost wrote:
Did you try mounting using both tcp and udp?

No. But just did:

bash-3.00# mount_nfs -2 192.168.0.3:/export /mnt/export.3
mount_nfs: /mnt/export.3: Protocol not supported
bash-3.00# mount_nfs -2 -T 192.168.0.3:/export /mnt/export.3
mount_nfs: /mnt/export.3: Protocol not supported
bash-3.00# mount_nfs -2 -U 192.168.0.3:/export /mnt/export.3
mount_nfs: /mnt/export.3: Protocol not supported

Also try using rpcinfo
to see which protocols/versions are supported on the server:

rpcinfo -u hostname nfs
rpcinfo -u hostname mountd
rpcinfo -t hostname nfs
rpcinfo -t hostname mountd

It all looks OK:

bash-3.00# rpcinfo -u 192.168.0.3 nfs
program 100003 version 2 ready and waiting
bash-3.00# rpcinfo -u 192.168.0.3 mountd
program 100005 version 1 ready and waiting
program 100005 version 2 ready and waiting
program 100005 version 3 ready and waiting
bash-3.00# rpcinfo -t 192.168.0.3 nfs
program 100003 version 2 ready and waiting
bash-3.00# rpcinfo -t 192.168.0.3 mountd
program 100005 version 1 ready and waiting
program 100005 version 2 ready and waiting
program 100005 version 3 ready and waiting


Any other ideas? I'm really lost here, because I've done everything I thought should be done. And just in case this is the exports on the Linux machine:

/export 192.168.0.2(rw,no_wdelay,no_subtree_check,sync)



--
-- Grafik - Don't Assume Anything
-- Redshift Software, Inc. - http://redshift-software.com
-- rrivera/acm.org - grafik/redshift-software.com
-- 102708583/icq - grafikrobot/aim - Grafik/jabber.org

Reply via email to