- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Secure NFS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2002 05:33 AM
04-10-2002 05:33 AM
Secure NFS
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2002 05:52 AM
04-10-2002 05:52 AM
Re: Secure NFS
Do you mean 'Secure RPC' ? If so, check out the following HP Manual: http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/25-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/25-toc.html&searchterms=NFS%7csecure&queryid=20020410-065840
Good Luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2002 05:54 AM
04-10-2002 05:54 AM
Re: Secure NFS
Check these threads:
http://forums.itrc.hp.com/cm/QuestionAnswer/0,,0xe5faa14d9abcd4118fef0090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xb48f663ce855d511abcd0090277a778c,00.html
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2002 05:56 AM
04-10-2002 05:56 AM
Re: Secure NFS
Secure NFS is not supported by HP-UX - see the following:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&con=/hpux/onlinedocs/B1031-90048/00/00/25-con.html&toc=/hpux/onlinedocs/B1031-90048/00/00/25-toc.html&searchterms=NFS%7csecure&queryid=20020410-070235
Although secure RPC is.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2002 01:06 PM
04-10-2002 01:06 PM
Re: Secure NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2002 02:41 PM
04-10-2002 02:41 PM
Re: Secure NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 02:47 AM
04-11-2002 02:47 AM
Re: Secure NFS
1) NFS is not *secure*. I really, really mean this.
2) If you *need* to run it (to be honest you shouldn't have any reason to) then make sure you do the following:
* restrict the export as much as possible in /etc/exports (using ro, nosuid, nodev ad nauseum)
* make the inode of the mounted directory as high as possible.
* use /etc/inetd.sec to restrict requests to rpc.mountd
You might have questions about the second recommendation, but if you understand how NFS works it makes sense; in a nutshell:
1. Client request permission to mount directory from rpc.mountd
2. Mountd checks /etc/exports to see whether it has permissions. If so it returns a file handle.
3. NFS client talks to NFS server to request files/meta data, *using the file handle*
Hence, if an attacker can snarf the file handle they can access all exported information.
Because of weaknesses in HP's NFS file handles it is relatively easy to grab a file handle - but this depends on the size of the inode of the exported directory - hence the higher up it is, the less the risk. (ie 2 is bad 56784943 is better)
dave (NFS is evil)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2002 05:19 AM
04-11-2002 05:19 AM
Re: Secure NFS
You didnot answer my question, but you gave me clearer picture about NFS security, thanks for your professional explanation, so I assigned 7 points to you, really appreciate!