disable-epsv.d 668 B

1234567891011121314151617181920
  1. Long: disable-epsv
  2. Help: Inhibit using EPSV
  3. Protocols: FTP
  4. Category: ftp
  5. Example: --disable-epsv ftp://example.com/
  6. Added: 7.9.2
  7. See-also: disable-eprt ftp-port
  8. ---
  9. Tell curl to disable the use of the EPSV command when doing passive FTP
  10. transfers. Curl will normally always first attempt to use EPSV before
  11. PASV, but with this option, it will not try using EPSV.
  12. --epsv can be used to explicitly enable EPSV again and --no-epsv is an alias
  13. for --disable-epsv.
  14. If the server is an IPv6 host, this option will have no effect as EPSV is
  15. necessary then.
  16. Disabling EPSV only changes the passive behavior. If you want to switch to
  17. active mode you need to use --ftp-port.