Unfortunately B5 was shipped with portmap in verbose mode.
Those messages are harmless (as the others also was) -- that is only portmap
reporting that someone established communication with him to contact the
several nfs server components.
You see, the local portmap accepts registration from the local nfs server
componens, and then advertises it in the network (that is what you saw in the
host client with the rpcinfo command). When the client wants to establish
contact with a specific server component, it contacts again portmap asking for
a dinamically assigned port number -- that is what you are seeing now
Automount on your laptop has to contact the portmap (and nfs server
components, but those are not in verbose mode) to mount the "share". But
automount unmount the share after a certain period of inactivity, and than
mounts it again, that is why you see so many messages in the log.
Whatch the log times carefully
As the logs are in memory and rotate (max of 32KB), I expect performance to
not be degraded.
If your box is connected 24/7, you can to turnoff portmap verbosity. Just edit
/etc/init.d/S60nfs
and comment the line who says
PORTMAP_FLAG=-v
This will not survive a reboot, of course, unless you are willing to read and
understand the
HowToFixOrCustomizeFirmware wiki entry.
> So i switched to using smb and mount the nas via the autofs package on
> my laptop, This does not create entries in the log.
>
> > > I suspect these warnings to prevent my
> > > disk to go to sleep.
...
> By using smb in stead of nfs my disk spins up less often. But it still
> spins up with no apparent reason (no computer in the network is on)
that's tipical of linux. Some measures can be taken to alliviate the problem,
but they are not 100% effective.
nfs has another characteristic that might contribute to the problem: the
server stores some status on disk, so that after a crash/porweroff/poweron it
can resume operations and continue serving the same clients, without they even
noticed what happened (but the clients blocks if they try to contact the
server -- when it comes back the client de-blocks and continues).
With this nfs philosofy in mind, Alt-F sets the save-status directory on disk.
This was a design decision, as I could setup those directories in memory,
trying to avoid the disk spinup. The problem is that on a server crash you
would have to poweroff the clients also, as the server could not resume
operations.
Unless... (this is becaming a class!) that in the client you mounted the nfs
share in "soft" mode (not "hard" -- but then you could have data loss...
Joao