I have a problem with nfs mount's:

in fstab is an entry:
Code:
server:/daten     /daten      nfs    noauto,intr      0  0
After a bootup and a "mount" command I get this output:

Code:
server:/daten on /daten type nfs (rw,addr=192.168.1.1)
server:/daten on /daten type nfs (rw,addr=192.168.1.1,addr=192.168.1.1)
That means, the directory /daten is mounted twice although I set the "noauto" flag.
Now if I copy files from the client to server it's very slow and sometimes I get a server crash. The client is suse 9.1 but with a newer kernel 2.6.14, the server is suse 10.1.

Also I have tryout an entry in fstab:
Code:
server:/daten     /daten      nfs    auto,intr      0  0
=> with the same result.

On my notebook (suse 9.1 / kernel 2.6.5) the fstab entry works correctly as expected.

Normally I want to use "auto" in fstab and, of course, the directory shall only mounted once and not twice! The "noauto" flag was only set for testing.

Any ideas ?