Hello,
I have 3 linux computers. A redhat 72 server, redhat 72 workstation
and a redhat 73 notebook. I setup NFS on the server using the HOWTO from
ldp.org. Everthing went fairly smooth. Then I setup the client on the
redhat 72 workstation and have it working fine. Now the notebook is the
problem. Only on bootload I get the error message in the subject line of
my post. Here is the syslog edited:
[snip]
[snip]Quote:> Dec 1 23:50:35 dfi cardmgr[819]: watching 2 sockets
> Dec 1 23:50:35 dfi kernel: cs: IO port probe 0x0c00-0x0cff: clean.
> Dec 1 23:50:35 dfi cardmgr[819]: initializing socket 1
> Dec 1 23:50:35 dfi kernel: cs: IO port probe 0x0100-0x04ff: excluding 0x4d0-0x4d7
> Dec 1 23:50:35 dfi cardmgr[819]: socket 1: Xircom IIps Ethernet
> Dec 1 23:50:35 dfi kernel: cs: IO port probe 0x0a00-0x0aff: clean.
> Dec 1 23:50:35 dfi kernel: cs: memory probe 0xa0000000-0xa0ffffff: clean.
> Dec 1 23:50:35 dfi mount: mount: RPC: Port mapper failure - RPC: Unable to send
> Dec 1 23:50:35 dfi netfs: Mounting NFS filesystems: failed
> Dec 1 23:50:35 dfi cardmgr[819]: executing: 'modprobe xirc2ps_cs'
> Dec 1 23:50:36 dfi kernel: xirc2ps_cs.c 1.31 1998/12/09 19:32:55 (dd9jn+kvh)
> Dec 1 23:50:36 dfi kernel: eth0: Xircom: port 0x300, irq 9, hwaddr 00:80:C7:26:CD:81
> Dec 1 23:50:36 dfi cardmgr[819]: executing: './network start eth0'
> Dec 1 23:50:36 dfi /etc/hotplug/net.agent: invoke ifup eth0
> Dec 1 23:50:36 dfi netfs: Mounting other filesystems: succeeded
note the ./network start after failure. If I look at the portmap script
I think it exits if networking is not up..
[snip]
# Check that networking is up.
if [ "$NETWORKING" = "no" ]
then
exit 0
fi
[ -f /sbin/portmap ] || exit 0
[snip]
I can mount the share from the command line after bootload no problem.
I think this indicates the exports file on the server is good and
firewall rules (local and server) plus the hosts.allow file are okay
The fstab is exactly the same as on the good workstation
the rpcinfo -p <servername> shows all the services okay
Here is the fstab entry from the notebook:
> gateway:/home/share /mnt/share nfs rw,hard,intr 0 0
When I traced the traffic with ethereal it looked like dhcp was
assigning the ip address of the notebook after the port mapper failure
so I set a static address - no help -
I also tried a faster pcmcia 10/100 card again - no change -
I googled for solutions and did not find any.
I can get it to work on bootload with a mount command in the rc.local file
Below is the /etc/mtab with the share mounted:
This the /var/lib/nfs/rmtab from the server: (x.x.x.04 is the notebook)Quote:> gateway:/home/share /mnt/share nfs rw,addr=192.168.100.1 0 0
Here is the /var/lib/nfs/etab from the server:Quote:> 192.168.100.9:/home/share:0x00000046
> 192.168.100.4:/home/share:0x00000001
> > root_squash,no_all_squash,subtree_check,secure_locks,mapping=identity,anonuQuote:> /home/share 192.168.100.0/255.255.255.0(rw,async,wdelay,hide,secure,
And the /var/lib/nfs/xtab from the server:
Any help to get this working with the fstab mount is most welcomed.Quote:> /home/share 192.168.100.4(rw,async,wdelay,hide,secure,root_squash,no_all_squash,
> subtree_check,secure_locks,mapping=identity,anonuid=-2,anongid=-2)
> /home/share 192.168.100.9(rw,async,wdelay,hide,secure,root_squash,no_all_squash,
> subtree_check,secure_locks,mapping=identity,anonuid=-2,anongid=-2)
The notebook OS version is:
version 2.96 20000731 (Red Hat Linux 7.3 2.96-112)) #1 Wed Nov 13
20:29:30 EST 2002
Best regards,