- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Enabling IP Forwarding HP-UX 11i V2
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
12-04-2005 07:13 PM
12-04-2005 07:13 PM
Enabling IP Forwarding HP-UX 11i V2
I want to forward the traffic coming on private network interface to public interface.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2005 07:38 PM
12-04-2005 07:38 PM
Re: Enabling IP Forwarding HP-UX 11i V2
Can you post your netstat -rnv output and requirement on which source network to which destination network with ip-address.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2005 10:15 PM
12-04-2005 10:15 PM
Re: Enabling IP Forwarding HP-UX 11i V2
Please check it by executing:
# ndd -get /dev/ip ip_forwarding
If forwarding is enabled, then output wiil be "2".
If not, execute:
ndd -set /dev/ip ip_forwarding 2
For static change add to /etc/rc.config.d/nddconf file the following lines:
TRANSPORT_NAME[X]=ip
NDD_NAME[X]=ip_forwarding
NDD_VALUE[X]=2
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2005 10:25 PM
12-04-2005 10:25 PM
Re: Enabling IP Forwarding HP-UX 11i V2
Set appropriate option.
ndd set /dev/ip "xyz" value_to_set
Put it in nddconf file to sustain it after reboot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2005 01:01 PM
12-05-2005 01:01 PM
Re: Enabling IP Forwarding HP-UX 11i V2
If you want the system to be say an HTTP proxy, then you need to run HTTP proxy software - say squid or somesuch.
If you want the system to act as as NAT (Network Address Translator) then I believe that functionality is part of the ipfilter functionality - should be docs on docs.hp.com.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2005 04:05 PM
12-05-2005 04:05 PM
Re: Enabling IP Forwarding HP-UX 11i V2
Its through now. Squid itself forwards the requests to the interface, connected to public network.
I got the doubt becuase I don't have a local DNS server and proxy clients were not able to resolve the destination web addresses. I was able to connect to internet on server so thought, I'll have to divert traffic to public network. Once I defined DNS server properly, it started working.
Thanks to all who replied.