- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: using pkg-ip instead of machine-ip for ftp
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
02-28-2005 10:21 PM
02-28-2005 10:21 PM
using pkg-ip instead of machine-ip for ftp
I have a machine with ip xxxx running a cluster-package with ip yyyy. How can I do a ftp from this machine to another machine so that the other machine sees the yyyy(pkg-ip) and not the proper xxxx-ip? thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2005 11:50 PM
02-28-2005 11:50 PM
Re: using pkg-ip instead of machine-ip for ftp
I am sorrie but this is not possible.
You can login to the server using the package ip-address ( alias ipaddress ontop of the servers ipaddress.) But once logged into that server that machines ipaddress is your sourceip.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 01:46 AM
03-01-2005 01:46 AM
Re: using pkg-ip instead of machine-ip for ftp
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 02:33 AM
03-01-2005 02:33 AM
Re: using pkg-ip instead of machine-ip for ftp
Can you tell me how I can define a floating ip-address, pls?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 02:44 AM
03-01-2005 02:44 AM
Re: using pkg-ip instead of machine-ip for ftp
route add host "dest_ip_address" netmask "netmask" "floating_ip" 0
To sustain the reboots, you can set it in /etc/rc.config.d/netconf file.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 05:39 AM
03-01-2005 05:39 AM
Re: using pkg-ip instead of machine-ip for ftp
Here's your netconf
# Route to ftp, important static route - do not remove
ROUTE_DESTINATION[1]="net X.X.X.X"
ROUTE_MASK[1]="S.S.S.S"
ROUTE_GATEWAY[1]="G.G.G.G"
ROUTE_COUNT[1]="1"
ROUTE_ARGS[1]=""
where the X's are the destination IP, S, is the mask, and G is the Gateway.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 05:40 AM
03-01-2005 05:40 AM
Re: using pkg-ip instead of machine-ip for ftp
BTW - Gateway is the floating ip.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 05:41 AM
03-01-2005 05:41 AM
Re: using pkg-ip instead of machine-ip for ftp
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-02-2005 04:40 AM
03-02-2005 04:40 AM
Re: using pkg-ip instead of machine-ip for ftp
might be worthwhile to excercise the support contract and submit an ER against the FTP client to allow it to take-in a desired local IP address - it could then make a call to bind() to bind to that IP before calling connect().
the truly adventuresome could write a shim library and LD_PRELOAD it into the ftp client. said library would intercept a few of the socket calls - enough to figure-out when the connect() call being made was for the ftp stuff and issue a bind() call on the ftp client's behalf :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 07:30 PM
03-03-2005 07:30 PM
Re: using pkg-ip instead of machine-ip for ftp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2005 06:00 AM
03-04-2005 06:00 AM
Re: using pkg-ip instead of machine-ip for ftp
If you want to be 100% certain that the source IP address is the package IP address, you need the application(s) in question to make a bind() call to bind to the package IP address.
If the application(s) in question do not have a configuration option to do that, you need to file an enhancement request against the application(s) in question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2005 07:22 PM
03-06-2005 07:22 PM
Re: using pkg-ip instead of machine-ip for ftp
Rich thanks, the application owners will provide some kind of solution, they will use different ports in their application.
For the other guys: the sending hosts sends it's own ip-address no matter if there's a different gateway in between. Thanks to you all.