- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Can I ftp with a specified interface?
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
11-02-2005 08:02 PM
11-02-2005 08:02 PM
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2005 09:15 PM
11-02-2005 09:15 PM
Re: Can I ftp with a specified interface?
If you have a floating ip its best to use that for external ftp transactions. This way ftp transactions,scripts, users don't care what the state of the cluster is.
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
11-02-2005 09:58 PM
11-02-2005 09:58 PM
Re: Can I ftp with a specified interface?
My box with IP 10.10.20.40 and 10.10.20.41 is the CLIENT. I want to access the ftp server which only allows the IP 10.10.20.41.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2005 10:03 PM
11-02-2005 10:03 PM
Re: Can I ftp with a specified interface?
# traceroute
which ip-address it's using to take to reach ftp-server?
You have to set routing to ftp server accordingly.
To know routing then,
# netstat -rvn
-Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2005 12:42 AM
11-03-2005 12:42 AM
Re: Can I ftp with a specified interface?
Would you please tell me how to 'set routing to ftp server' when I access the ftp server?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2005 04:22 PM
11-03-2005 04:22 PM
Re: Can I ftp with a specified interface?
# netstat -rn
what is the ftp server IP-Address?
Post this two information so that you can change referring routing setting to your FTP client machine.
-Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2005 05:10 PM
11-03-2005 05:10 PM
Re: Can I ftp with a specified interface?
# traceroute 10.10.33.89
traceroute: Warning: Multiple interfaces found; using 10.20.20.40 @ lan1:1
traceroute to 10.10.33.89 (10.10.33.89), 30 hops max, 40 byte packets
1 10.20.20.1 (10.20.20.1) 0.395 ms 0.237 ms 0.231 ms
2 10.20.2.14 (10.20.2.14) 0.363 ms 0.237 ms 0.233 ms
3 10.10.30.139 (10.10.30.139) 0.240 ms 0.217 ms 0.225 ms
4 10.10.33.89 (10.10.33.89) 0.347 ms 0.216 ms 0.203 ms
# netstat -rn
Routing tables
Destination Gateway Flags Refs Interface Pmtu
127.0.0.1 127.0.0.1 UH 0 lo0 4136
10.20.20.19 10.20.20.19 UH 0 lan1 4136
10.20.20.40 10.20.20.40 UH 0 lan1:1 4136
10.20.20.41 10.20.20.41 UH 0 lan1:2 4136
192.168.0.2 192.168.0.2 UH 0 lan0 4136
10.20.20.0 10.20.20.19 U 4 lan1 1500
10.20.20.0 10.20.20.41 U 4 lan1:2 1500
10.20.20.0 10.20.20.40 U 4 lan1:1 1500
192.168.0.0 192.168.0.2 U 2 lan0 1500
127.0.0.0 127.0.0.1 U 0 lo0 0
default 10.20.20.1 UG 0 lan1 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2005 05:19 PM
11-03-2005 05:19 PM
Re: Can I ftp with a specified interface?
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2005 05:26 PM
11-03-2005 05:26 PM
Solution10.20.20.40 10.20.20.40 UH 0 lan1:1 4136
10.20.20.41 10.20.20.41 UH 0 lan1:2 4136
default 10.20.20.1 UG 0 lan1 0
===
Server 10.20.20.41 routing will be done through lan1 as Default. If you are having aliasing in an interface as lan1:1 and lan1:2 then, it will take first preceding interface.
Just do as,
# route add host 10.10.33.89 10.20.20.41
You have to change in /etc/rc.config.d/netconf file for permanet availability.
#traceroute 10.20.20.41
will have to use 10.20.20.41 now.
-Muthu