From owner-freebsd-questions@FreeBSD.ORG Mon Apr 11 20:36:42 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8FAB16A4CE for ; Mon, 11 Apr 2005 20:36:42 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66B4143D58 for ; Mon, 11 Apr 2005 20:36:42 +0000 (GMT) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([69.160.65.223]) by mta10.adelphia.netESMTP <20050411203641.HVAZ7277.mta10.adelphia.net@default.chvlva.adelphia.net>; Mon, 11 Apr 2005 16:36:41 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 3A3D1B4FC; Mon, 11 Apr 2005 16:36:45 -0400 (EDT) Date: Mon, 11 Apr 2005 16:36:45 -0400 From: Parv To: x_patriot paracetamol Message-ID: <20050411203645.GA2905@holestein.holy.cow> Mail-Followup-To: x_patriot paracetamol , freebsd-questions@freebsd.org References: <5148d13405041021293a1a97fe@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5148d13405041021293a1a97fe@mail.gmail.com> cc: freebsd-questions@freebsd.org Subject: Re: rpc error on nfs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: f-q List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Apr 2005 20:36:43 -0000 in message <5148d13405041021293a1a97fe@mail.gmail.com>, wrote x_patriot paracetamol thusly... > > when i try to mount NFS on my machine,.. error messages appear > like : > > "NFS Portmap: RPC: Port mapper failure - RPC: Unable to send" > > what was wrong on my system..? For starters, search Google. I did, and solved my own similar problems. Check list comes down to ... - Server & client both have IP addresses such that they can find each other. (In my case, dhclient(8) cannot get an IP address after boot up; i had to start it manually on 4.x.) - Portmapper/Rpcbind(8) is running on client & server. - Nfsd(8) is registered with portmapper/rpcbind. - Mountd(8) is listening on a port not blocked by a firewall. (In my case, mountd was opening a random port for which there was no allowance in the firewall. Now i start mountd with a port that is open in firewall.) - At the end, make sure above is as intended by use of rpcinfo(8) (on 5.x; don't know similar command on 4.x). I could have replied just "more information" or not at all to your post (since you have not provided much information), but i send it to be committed to archive for my own future benefit. - Parv --