nfsd: RPCPROG_NFS: RPC: Port mapper failure

Herakles

Profifragensteller
Bekomme folgende Fehlermeldung, wenn ich von meinem FBSD4.9-Rechner auf einen OBSD3.5-Server zugreifen möchte:

Code:
# mount -t nfs 192.168.0.x:/mp3 /server/mp3

192.168.0.1:/mp3: nfsd: RPCPROG_NFS: RPC: Port mapper failure - RPC: Unable to send

Wo mag das Problem liegen? portmap und mountd laufen...


Herakles
 
Moin,

laufen die Dienste auch wirklich auf beiden Rechnern?
Ist die Firewall richtig konfiguriert?

Was sagt denn auf dem FreeBSD-Rechner
showmount -e 192.168.0.1
rpcinfo -p 192.168.0.1 ?

Sind die hosts.allow und hosts.deny auf beiden System richtig konfiguriert?

Der output dieser Funktionen wäre super.

Viele Grüße

Jürgen
 
gleiches Problem

Ich habe das gleiche Problem, leider steht hier keine Lösung...

Bei mir sind Server + Client FreeBSD 5.2.1

auf dem Client:

bash-2.05b# showmount -e 192.168.9.1
RPC: Port mapper failure
showmount: can't do exports rpc
bash-2.05b# rpcinfo -p 192.168.9.1
rpcinfo: can't contact portmapper: RPC: Authentication error; why = Client credential too weak


auf dem Server:

bash-2.05b# showmount -e 192.168.9.1
RPC: Port mapper failure
showmount: can't do exports rpc
bash-2.05b# rpcinfo -p 192.168.9.1
rpcinfo: can't contact portmapper: RPC: Authentication error; why = Client credential too weak
bash-2.05b# ps waux | grep rpc
root 293 0,0 0,3 1384 1108 ?? Is 1:49am 0:00,67 /usr/sbin/rpcbind
root 379 0,0 0,2 263444 948 ?? Is 1:49am 0:00,01 /usr/sbin/rpc.statd
root 381 0,0 0,3 1448 1148 ?? Ss 1:49am 0:00,03 /usr/sbin/rpc.lockd
daemon 389 0,0 0,3 1448 1148 ?? I 1:49am 0:00,00 /usr/sbin/rpc.lockd


In der "/etc/hosts.allow":

rpcbind : localhost : allow
rpcbind : 192.168.9.0/255.255.255.0 : allow
rpcbind : ALL : deny


in der "/etc/exports":

/home -alldirs -maproot=0: -network 192.168.9.0 -mask 255.255.255.0




Kann mir jemand helfen?
Danke!
 
Ich habe hier ein ähnliches Problem:
Auf Client und Server läuft FreeBSD 5.3 Stable
Client:
sammy@uranos sammy $ showmount -e 192.168.1.250
Exports list on 192.168.1.250:
/mnt/fileservice/fbsd 192.168.1.0

sammy@uranos sammy $ rpcinfo -p 192.168.1.250
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
100000 4 local 111 rpcbind
100000 3 local 111 rpcbind
100000 2 local 111 rpcbind
100005 1 udp 937 mountd
100005 3 udp 937 mountd
100005 1 tcp 799 mountd
100005 3 tcp 799 mountd
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
100003 2 tcp 2049 nfs
100003 3 tcp 2049 nfs

Server:
sammy@fuckup sammy $ cat /etc/exports | grep -v '#'
/mnt/fileservice/fbsd -network=192.168.1.0 -mask=255.255.255.0
sammy@fuckup sammy $ cat /etc/hosts.allow | grep -v '#'
ALL : ALL : allow

Versuche ich vom Client aus mount -t nfs 192.168.1.250:/mnt/fileservice/fbsd /mnt/fs
dann funktionert das auch, allerdings bei einem neustart des Clients kommt immer folgende Meldung, welche ich auf Grund des Timeouts abbreche:

Mounting NFS file systems: [UDP]
192.168.1.250:/mnt/fileservice/fbsd: RPCPROG_NFS: RPC: Portmapper failure - RPC_ Unable to send

ich habe einen dhcp Server laufen und zunächst die Startreihenfolge der Dienste verdächtigt. Allerdings sollte das von den eingetragenen Abhängigkeiten stimmen
head /etc/rc.d/nfsclient
...
# PROVIDE: nfsclient
# REQUIRE: NETWORKING mountcritremote rpcbind
# KEYWORD: nojail shutdown
hoffe ihr könnt mit weiterhelfen...

GRuß
 
Zurück
Oben