> For the complete documentation index, see [llms.txt](https://doane-ccla.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doane-ccla.gitbook.io/docs/data-transfer-and-storage/moving-data.md).

# Moving Data

CCLA Data Transfer Nodes (DTNs) allow for speedy movement of large data sets into and out of the network. There are several transfer tool/protocol options to choose from to fit your needs.

1. [Globus](/docs/data-transfer-and-storage/globus-overview.md) has a web interface or command line tools that you can use to transfer data between your personal endpoints or securely share access to your data. *This is the preferred method of transfer for the CCLA.*
2. Secure copy (scp) via the command line to and from storage locations, including local computers.

   ```
    scp username@remote-host1.edu:/path/to/directory/example.txt username@remote-host2.edu:/path/to/directory/
   ```
3. Secure (or SSH) file transfer protocol (SFTP) can be used to transfer files between two remote storage locations (similar to scp) but also allows the user to list directories and see content. You can use SFTP as long as you have SSH access to that host.

   ```
    sftp username@remote_hostname_or_IP
   ```
4. [Graphical clients (SFTP)](/docs/data-transfer-and-storage/moving-data/graphical-sftp.md) will allow you to use a graphical user interface with drag-and-drop capabilities. CCLA maintains documentation for CyberDuck and WinSCP.

   > For Linux users, there is no clear recommendation for SFTP clients. No one free client supports all of CCLA storage services and behaves consistently. However, [Cloud Explorer](http://cloud-explorer.org/) supports all of CCLA services and *typically* behaves predictably on Linux systems. See [here](https://www.linux-toys.com/archives/945) for a how-to guide using CloudExplorer and Scality.
5. [rsync](https://rsync.samba.org/) or [rclone](https://rclone.org/) (supports s3) are other command line utilities that may suit your data transfer needs. At this time, CCLA does not offer support for these tools.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://doane-ccla.gitbook.io/docs/data-transfer-and-storage/moving-data.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
