I am trying to get nfs to work, but my client machine . . .
Linux - NetworkingThis forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
The client keeps saying something denied access from server.
Edit:
This is what the client says.
Code:
laurie@laurie-desktop ~ $ sudo mount 192.168.1.5:/storage /mnt/nfs
mount.nfs: access denied by server while mounting 192.168.1.5:/storage
laurie@laurie-desktop ~ $
Last edited by darkstarbyte; 12-05-2010 at 03:07 PM.
as far as I know the daemon nfsd is listening on port 2049. You may use nmap to check if the port is really open.
Code:
nmap -p 2049 192.168.1.5
You may use this command either on the client or on the server.
Markus
localhost branden # nmap -p 2049 192.168.1.5
Starting Nmap 5.21 ( http://nmap.org ) at 2010-12-05 10:14 MST
Nmap scan report for 192.168.1.5
Host is up (0.00012s latency).
PORT STATE SERVICE
2049/tcp closed nfs
Nmap done: 1 IP address (1 host up) scanned in 0.14 seconds
localhost branden #
localhost branden # ...
Host is up (0.00012s latency).
PORT STATE SERVICE
2049/tcp closed nfs...
Well, here we are, the port is closed. There must be a problem with the configuration of the server.
Did you restart the daemon after editing the /etc/exports file?
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.