what does /etc/hosts and etc/hosts.allow say?
Check these out:
On 192.168.10.99:
/etc/exports should include:
/var/cdimage 192.168.10.0/255.255.255.0 (rw,sync)
(and quite possibly "no_root_squash" option as well)
/etc/hosts
192.168.10.101 test
/etc/hosts.allow
nfsd,portmap: test
(I think that portmap needs to be specified explicitly and isn't included in 'all")
then restart inetd and portmap
/etc/init.d/inetd restart
/etc/init.d/portmap restart
(or whatever your distro uses to restart these)
if you put * instead of 192.168.10.0/255.255.255.0
you should be able to test nfs server with:
showmount -a localhost
and
mount localhost:/var/cdimage /mnt/test_mount
hope there's something in there that makes a difference
