Hi,

I'm trying to get openbsd (7.5) nfs client to see a (freebsd14) server nfs
share. The freebsd and debian clients work well, it's only OpenBSD
where I can't mount the share.

After looking at man fstab and man mount_nfs, in fstab I have this line

192.168.1.102:/home/void/docs /home/void/docs nfs rw,nodev,nosuid,soft,intr 0 0

this results in the following at reboot

NFS Portmap: RPC: Port mapper failure - RPC: Timed out
NFS Portmap: RPC: Port mapper failure - RPC: Timed out

(etc)

similarly if I try manually like this
# mount_nfs 192.168.1.102:/home/void/docs /home/void/docs
# mount_nfs -T 192.168.1.102:/home/void/docs /home/void/docs
# mount_nfs -T -3 192.168.1.102:/home/void/docs /home/void/docs
# mount_nfs -U 192.168.1.102:/home/void/docs /home/void/docs
# mount_nfs -U -3 192.168.1.102:/home/void/docs /home/void/docs

But portmapper on the server can be seen from openbsd client:

$ rpcinfo -p 192.168.1.102
  program vers proto   port
  100000    4   tcp    111  portmapper
  100000    3   tcp    111  portmapper
  100000    2   tcp    111  portmapper
  100000    4   udp    111  portmapper
  100000    3   udp    111  portmapper
  100000    2   udp    111  portmapper
  100000    4     7    111  portmapper
  100000    3     7    111  portmapper
  100000    2     7    111  portmapper
  100005    1   udp    927  mountd
  100005    3   udp    927  mountd
  100005    1   tcp    927  mountd
  100005    3   tcp    927  mountd
  100003    2   udp   2049  nfs
  100003    3   udp   2049  nfs
  100003    2   tcp   2049  nfs
  100003    3   tcp   2049  nfs

$

and the nfs server is allowed from the whole (internal) network of which
the openbsd machine is part. The openbsd machine is on 192.168.1.100.

What am I doing wrong?

--

Reply via email to