1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Rewrite the "passive FTP" paragraph.

This commit is contained in:
hniksic 2005-09-02 09:29:11 -07:00
parent 53ca4879b9
commit d668586e8c
2 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-09-02 Hrvoje Niksic <hniksic@xemacs.org>
* sample.wgetrc: Rewrite the "passive FTP" paragraph to better
reflect reality.
2005-08-09 Hrvoje Niksic <hniksic@xemacs.org> 2005-08-09 Hrvoje Niksic <hniksic@xemacs.org>
* wget.texi (Wgetrc Commands): Removed documentation for the now * wget.texi (Wgetrc Commands): Removed documentation for the now

View File

@ -35,10 +35,13 @@
# the recursive retrieval. The default is 5. # the recursive retrieval. The default is 5.
#reclevel = 5 #reclevel = 5
# Many sites are behind firewalls that do not allow initiation of # By default Wget uses "passive FTP" transfer where the client
# connections from the outside. On these sites you have to use the # initiates the data connection to the server rather than the other
# `passive' feature of FTP. If you are behind such a firewall, you # way around. That is required on systems behind NAT where the client
# can turn this on to make Wget use passive FTP by default. # computer cannot be easily reached from the Internet. However, some
# firewalls software explicitly supports active FTP and in fact has
# problems supporting passive transfer. If you are in such
# environment, use "passive_ftp = off" to revert to active FTP.
#passive_ftp = off #passive_ftp = off
# The "wait" command below makes Wget wait between every connection. # The "wait" command below makes Wget wait between every connection.