> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rwsintegration.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SFTP/FTP

> Configure file transfer connections using SFTP (secure) or FTP (standard) protocols

SFTP and FTP connections enable file-based integrations with external servers. Use these connection types to upload, download, or exchange files with partners, vendors, or legacy systems.

## Protocol comparison

| Protocol | Encryption | Default Port | Use Case                                               |
| -------- | ---------- | ------------ | ------------------------------------------------------ |
| SFTP     | Yes (SSH)  | 22           | Production environments, sensitive data                |
| FTP      | No         | 21           | Legacy systems, non-sensitive data in trusted networks |

<Info>
  SFTP/FTP connections in RWS Integration are used exclusively for **Load** operations (sending data to destinations). They are not used for data extraction.
</Info>

## Configuration

**Required fields:**

| Field     | Description                                                                                              |
| --------- | -------------------------------------------------------------------------------------------------------- |
| URL       | The hostname or IP address of the server (e.g., `sftp.example.com`). Do not include the protocol prefix. |
| Base Path | The root directory path on the server where files will be written to (e.g., `/uploads`)                  |
| Port      | The port number for the connection. Default: 22 (SFTP) or 21 (FTP)                                       |
| Username  | The username for authentication                                                                          |
| Password  | The password for the specified username                                                                  |

<Note>
  If using a non-standard port, check with your server administrator for the correct port number.
</Note>

## Next steps

<CardGroup cols={2}>
  <Card title="API Connections" icon="plug" href="/en/features/connections/api">
    Connect to REST APIs
  </Card>

  <Card title="Scheduling" icon="clock" href="/en/features/extract/scheduling">
    Schedule your integrations
  </Card>
</CardGroup>
