- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to bind NFS network traffic on a particular se...
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
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
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
тАО08-15-2012 10:13 AM
тАО08-15-2012 10:13 AM
on a hpux 11iv2 environment, how do I bind NFS traffic in a network segment on a HPUX client?
Because we don't want to the traffic to interfere the primary segment. Thanks a lot for your ideas.
Solved! Go to Solution.
- Tags:
- NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-15-2012 10:30 AM
тАО08-15-2012 10:30 AM
Re: How to bind NFS network traffic on a particular segment.
Presumably you have multiple network interfaces on both your NFS client and server. If that's the case, then mount the NFS filesystem using the IP address on the NFS server that corresponds to the desired network interface on the client.
For example, my NFS client has two network interfaces:
15.1.1.1
192.1.1.1
My NFS server has two network interfaces:
15.1.1.2
192.1.1.2
I want my NFS traffic to use the 192 network so the 15 network is not disturbed. I would mount the filesystem as:
# mount 192.1.1.2:/vol /nfs_mount
That way the NFS traffic would be forced to use the 192 subnet to get to the server.
Regards,
Dave
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
тАО08-15-2012 10:40 AM
тАО08-15-2012 10:40 AM
Re: How to bind NFS network traffic on a particular segment.
Thank you for your input!
I did not make myself clear.
Actually, we only have one NIC card on NFS server, and two cards on NFS client. they are all in different segments.
for instance, on the server 15.1.1.1, on the client, I have 192.1.1.1 and 20.1.1.1 (primary), I wanted to have NFS traffic bond on 192 segment. Could I achieve that?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-15-2012 10:41 AM
тАО08-15-2012 10:41 AM
Re: How to bind NFS network traffic on a particular segment.
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
тАО08-15-2012 10:52 AM
тАО08-15-2012 10:52 AM
Re: How to bind NFS network traffic on a particular segment.
yes, 15 segment can be routed to 192 segment on NFS client, but I don't know how to restric NFS traffic on 192 segment. Currently, by default, NFS traffic is to 20 segment (primary) which is not what I would like to.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-15-2012 10:59 AM
тАО08-15-2012 10:59 AM
Re: How to bind NFS network traffic on a particular segment.
# ifconfig lan0:1 15.1.1.2
That would create a 15 subnet virtual IP address on your lan0 interface. Then when you send packets to the server's IP address the routing protocol should see that you have a 15 address on a local interface and use it to send/receive packets. If that doesn't work you're likely looking at adding new routing table entries to explicitly determine the routes on the client and server.
Dave
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
тАО08-15-2012 11:10 AM
тАО08-15-2012 11:10 AM
Re: How to bind NFS network traffic on a particular segment.
That sounds a good idea, I will certainly try that out late.
What tool, or how would you know if NFS traffic is really happening on 192 segment?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-15-2012 11:23 AM
тАО08-15-2012 11:23 AM
SolutionDave
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]

- Tags:
- netstat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-15-2012 12:12 PM
тАО08-15-2012 12:12 PM
Re: How to bind NFS network traffic on a particular segment.
Thank you very much, Dave, you completed my questions.