At 09:46 PM 7/11/2005, squid@scrunch.net wrote:
> 
> Quick question... when doing ftp via wget through a squid proxy server, how can one do a recursive directory mirror?
> 
> 	export ftp_proxy=http://proxy.my.com:3128
> 	wget -m ftp://apt.sw.be/pub/dag/redhat/el4/en/i386/dag/
> 
> And one gets a nice html file instead of the directory structure.
> 
> Is there an easy way to work around this, either by tweaking wget or squid?  Or is there a better, simple, command line tool for doing an ftp mirror via squid?
I was able to use lftp for this.
lftp -c '
        set ftp:sync-mode 0
        set ftp:proxy http://proxy.my.com:3128
        mirror ftp://apt.sw.be/pub/dag/redhat/el4/en/i386/dag/
        '
The setting that disables synchronous issuing of ftp commands allowed lftp to run several concurrent ftp connections through squid.  Nice!
Received on Tue Jul 12 2005 - 18:55:14 MDT
This archive was generated by hypermail pre-2.1.9 : Mon Aug 01 2005 - 12:00:02 MDT