1--- 2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3SPDX-License-Identifier: curl 4Long: ftp-skip-pasv-ip 5Help: Skip the IP address for PASV 6Protocols: FTP 7Added: 7.14.2 8Category: ftp 9Multi: boolean 10See-also: 11 - ftp-pasv 12Example: 13 - --ftp-skip-pasv-ip ftp://example.com/ 14--- 15 16# `--ftp-skip-pasv-ip` 17 18Tell curl to not use the IP address the server suggests in its response to 19curl's PASV command when curl connects the data connection. Instead curl 20reuses the same IP address it already uses for the control connection. 21 22This option is enabled by default (added in 7.74.0). 23 24This option has no effect if PORT, EPRT or EPSV is used instead of PASV. 25