- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Forward traffic from one host:port to another one
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
03-12-2007 12:16 AM
03-12-2007 12:16 AM
I have a Service Guard cluster running on hp-ux 11.0 and one of the Service Guard package is a LDAP server. This LDAP will be moved to a Linux box and for some time we would like to forward all the traffic that is accessing this ldap server to the new one. So basically I'd like to forward traffic from
Do you know if I need only ndd to achieve this? Or do I need an extra software like IP filter? Did someone already did this?
Thanks a lot...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2007 03:11 AM
03-12-2007 03:11 AM
Re: Forward traffic from one host:port to another one
ideas:
ipfilter for HP-UX might be able to do it.
See http://software.hp.com to see if its still out there for 11.00.
Or:
Put a Linux box with firestarter on it in front of the HP-UX box and configure it to forward all traffic on certain ports to the new box and pass through everything else to the HP-UX box.
This second solution will work, I've done it.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2007 04:02 AM
03-12-2007 04:02 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2007 01:46 PM
03-12-2007 01:46 PM
Re: Forward traffic from one host:port to another one
I can see where you might not be able to simply move the unique IP address to the new Linux (Integrity or ProLiant I trust :) server, but you should be able to just reassign the name->IP mapping in your DNS.
As for "fowarding" from within the stack, that means rewriting the headers (ie the IP header and the dst/src IP depending on the direction, then I _think_ you can get ipfilter to do what you want, but you'd have to check the docs - http://docs.hp.com/ - it would involve the NAT functionality I suspect.
Another option is to write an application-level gateway. A rather simple/simplistic program which simply bound to the LDAP port on host1, and whenever it received a connection, it established a second connection to LDAP at host2:port2. When any data arrived on either of those sockets, it would be echoed to the other socket, whenever either socket closed, it would close the other socket. A select() or poll() call in there to allow the single-threaded program to handle many connections. Probably a couple hundred lines of code at most. If you weren't able or willing to write it yourself, I suspect that HP Services would be more than happy to for a nominal fee :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2007 03:42 AM
03-14-2007 03:42 AM
Re: Forward traffic from one host:port to another one
I will go for the stunnel solution as it seems more simple. IPfilter would need to check all traffic on all network interface and because I'm in a Service Guard environment with something like 15 IP adresses, it might have a more severe performance impact.