FTP Connection Manager

An FTP connection manager enables a package to connect to a File Transfer Protocol (FTP) server. The FTP task that SQL Server Integration Services includes uses this connection manager.

When you add an FTP connection manager to a package, Integration Services creates a connection manager that can be resolved as an FTP connection at run time, sets the connection manager properties, and adds the connection manager to the Connections collection on the package.

The ConnectionManagerType property of the connection manager is set to FTP.

You can configure the FTP connection manager in the following ways:

  • Specify a server name and server port.

  • Specify anonymous access, or provide a user name and a password for basic authentication.

    Important

    The FTP connection manager supports only anonymous authentication and basic authentication. It does not support Windows Authentication.

  • Set the time-out, number of retries, and the amount of data to copy at a time.

  • Indicate whether the FTP connection manager uses passive or active mode.

Depending on the configuration of the FTP site to which the FTP connection manager connects, you may need to change the following default values of the connection manager:

  • The server port is set to 21. You should specify the port that the FTP site listens to.

  • The user name is set to "anonymous". You should provide the credentials that the FTP site requires.

Active/Passive Modes

An FTP connection manager can send and receive files using either active mode or passive mode. In active mode, the server initiates the data connection, and in passive mode, the client initiates the data connection.

Configuration of the FTP Connection Manager

You can set properties through SSIS Designer or programmatically.

For information about the properties that you can set in SSIS Designer, see FTP Connection Manager Editor.

For information about configuring a connection manager programmatically, see ConnectionManager and Adding Connections Programmatically.

Integration Services icon (small) Stay Up to Date with Integration Services

For the latest downloads, articles, samples, and videos from Microsoft, as well as selected solutions from the community, visit the Integration Services page on MSDN:


For automatic notification of these updates, subscribe to the RSS feeds available on the page.

See Also

Concepts

FTP Task

Integration Services (SSIS) Connections