- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disabling routing on a RP5470 HPUX 11.0
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
01-19-2006 09:02 PM
01-19-2006 09:02 PM
I've got 2 servers RP5470 connected on a lan (via a network card lan1)(IP 100.83..., mask 255.255.254.0).
I need to connect them to each other with a cross cable, using another physical network interface (lan4).
I plan to use IP adress like 192.168.0.1 and 192.168.0.2 for this new link (mask 255.255.255.0).
How can I be sure that my servers will not route packets from the 100.83 network to (or from) the 192.168 ?
Thanks for your help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 09:17 PM
01-19-2006 09:17 PM
Re: Disabling routing on a RP5470 HPUX 11.0
On 192.168.0.2
route add host 192.168.0.1 192.168.0.2 0
On 192.168.0.1
route add host 192.168.0.2 192.168.0.1 0
This should do it. Also, you can use ipfilter product to do some NAT/forwarding. This is a free product.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 09:29 PM
01-19-2006 09:29 PM
Re: Disabling routing on a RP5470 HPUX 11.0
Also remove the default route which is allready set to existing IP.
Add another default route along with the new IP.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 09:35 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 09:38 PM
01-19-2006 09:38 PM
Re: Disabling routing on a RP5470 HPUX 11.0
You can prove it is going out the right interface card by sending a file and checking netstat -i before and after.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 10:03 PM
01-19-2006 10:03 PM
Re: Disabling routing on a RP5470 HPUX 11.0
It seems to me, you have to do nothing for this purpose. If your default router belongs to 10.83.whatever.subnet , all packets, which are not targeted to 192.168.0.0, will be routed by your default router.
Don't worry, be happy 8)))
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 11:57 PM
01-19-2006 11:57 PM
Re: Disabling routing on a RP5470 HPUX 11.0
I've just disabled ip_forwarding with ndd command.
It seems to work fine.
Regards.