Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nfssuper: Superfluous NFS daemon

Status
Not open for further replies.

hornet77

MIS
Oct 14, 2003
27
US
I'm running RedHat 8.0 and got the "nfssuper: Superfluous NFS daemon" high vulnerability back after a scan. The only "fixes" I can seem to find for this is to disable NFS...not an option for me. Does anyone know of any patches/workarounds that could help me get rid of this vulnerability??
 
NFS is one of thelargest security holes in *nix systems... I think you would be better off asking this in a linux forum where some pros could help you lock down NFS since you claim that you require it.

Do you need only locall access.. then you can try the following:

hosts.allow
#
portmap : localhost 192.168.1.0/255.255.255.0
rpc.mountd : localhost 192.168.1.0/255.255.255.0
#
#end

to allow selected machines to access:

exports
# Allow only those ( 3 ) machines ( *.1, *.2, *.3 ) can rw, others are readonly
#
/opt/home 192.168.1.0/30 (rw,no_root_squash)
/opt/home 192.168.1.0 (ro)
#
# end

Sorry... can't help you more than this, I am not really a *nix guru, only play around for fun once in a while.



When in doubt, deny all terms and defnitions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top