- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS MOUNT
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
11-03-2007 06:25 PM
11-03-2007 06:25 PM
Manoj K
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2007 06:55 PM
11-03-2007 06:55 PM
Re: NFS MOUNT
Also, I would assume your NFS toolkit is part of a package with a relocatable IP, therefore you should be using the relocatable IP to connect from all clients.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2007 03:07 PM
11-06-2007 03:07 PM
Re: NFS MOUNT
Manoj K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2007 05:10 AM
11-07-2007 05:10 AM
SolutionI would be curious what a network trace of the failing mount looks like when collected on the NFS server. My guess is what you'd see is the mount request comes into the server using the *package* IP address but then is replied to with the *physical* IP address. Some firewalls don't like that or allow it. Perhaps there is a setting on your firewall to permit such traffic...
Some of this behavior (i.e. deciding which IP address to use in outbound packets) is controllable with the ip_strong_es_model tunable:
# ndd -h ip_strong_es_model
ip_strong_es_model:
Controls the requirement issues related to multihoming as
described in RFC1122, Section 3.3.4.2:
(A) A host MAY silently discard an incoming datagram whose
destination address does not correspond to the physical
interface through which it is received.
(B) A host MAY restrict itself to sending (non-source-
routed) IP datagrams only through the physical
interface that corresponds to the IP source address of
the datagrams.
When set to 0, it corresonds to the "Weak ES Model" and would
therefore substitute MUST NOT for MAY in issues (A) and (B).
When set to 1, it corresonds to the "Strong ES Model" and would
therefore substitute MUST for MAY in issues (A) and (B).
When set to 2, substitute MUST NOT for MAY in issue (A) and SHOULD
for MAY in issue (B).
[0,2] Default: 0
If you use ndd to set this value to 2 you *might* get the behavior you're looking for (or rather, your firewall is looking for). This doesn't work in all cases because currently ip_strong_es_model only works for TCP traffic and some of the traffic used for the initial mounting of an NFS filesystem on 11i v2 still uses UDP.
My bet is you would not have this problem if you were using 11i v3. I've seen problems like this in the past and in every case I've tried 11i v3 doesn't experience the problem.
In any case, I'd be curious what a network trace on the server looks like and whether using ip_strong_es_model=2 has any effect.
Regards,
Dave
P.S. I'd definitely recommend fixing the port numbers of lockd/statd/mountd and configuring only those ports in the firewall. Sure beats opening up thousands of ports.
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 12:49 AM
11-19-2007 12:49 AM
Re: NFS MOUNT
Manoj K