disable-epsv.d 623 B

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