- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- FTP command line/proxy
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-05-2007 04:02 AM
тАО09-05-2007 04:02 AM
I have a hp-ux server and using Mozzila I can ftp to servers outside the intranet.
My problem is that from the hp-ux command line I can't ftp to the same servers, I think the problem should be related with using the proxy.
How can I ftp to servers from the command line through the proxy?
Thks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2007 04:11 AM
тАО09-05-2007 04:11 AM
Re: FTP command line/proxy
proxy open hostname
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2007 04:20 AM
тАО09-05-2007 04:20 AM
Re: FTP command line/proxy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2007 04:24 AM
тАО09-05-2007 04:24 AM
Re: FTP command line/proxy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2007 04:34 AM
тАО09-05-2007 04:34 AM
Re: FTP command line/proxy
I think you cannot do this with the standard ftp. You'll have to use wget or something like that.
My point of knowledge is, that the term 'proxy' in regard to browsers means something different to the one of the ftp protocoll:
The use of the ftp proxy command would require first a ftp connection to the proxy-server (configured in the browser).
Then you could 'proxy open' the host, which you really want to connect with.
Nearly 100% of network/firewall configurations won't meet those requirements.
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2007 05:07 AM
тАО09-05-2007 05:07 AM
SolutionMost of the tools like wget and such let you set a variable. In that variable you set the proxy server address and then commands work normally.
It also seems A. Clay gave you the answer twice.
I think wget is a better tool for this anyway, if you are looking for an opinion.
:-)
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
тАО09-05-2007 12:44 PM
тАО09-05-2007 12:44 PM
Re: FTP command line/proxy
Lot of my customers use one of the two
tools:
curl
wget
Both work very well in HP-UX.
Simple example for wget. Set up
environment variables:
http_proxy=http://myproxysrv.domain.dom:3128/
ftp_proxy=http://myproxysrv.domain.dom:3128/
https_proxy=http://myproxysrv.domain.dom:3128/
For curl, one way is to use command line:
curl --proxy myproxysrv.domain.dom:3128
It is obvious that my examples showed
Squid proxy server :)
VK2COT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2007 07:23 PM
тАО09-05-2007 07:23 PM