HowTo configure NFS on a Debian
HowTo configure NFS on a Debian Debian Systems
Constellation
- Server: Debian stable
- Client: Debian etch(testing)
Problem
The Server says
Jun 4 10:46:50 localhost rpc.mountd: refused mount request from client1.ostertag.name for /home (/): no export entry
The Client says:
mount: server:/home failed, reason given by server: Keine Berechtigung
Solution
Add insecure to the config, since the client tries to connect to the server with a highport.
File /etc/exports:
/home 192.168.0.31(rw,insecure)
|