Transfer Large Files via Private Network | Generated by AI

Home 2026.04

Transferring a 60GB file between DigitalOcean Droplets using the internal 10.xx network is an excellent way to move data quickly and for free, as private network traffic does not count against your bandwidth allowance.

Here is a step-by-step guide to get this done.

✅ Step 1: Ensure Your Droplets Are in the Same Region

The private 10.xx network is only accessible between Droplets located in the same datacenter region. Verify your Droplets’ locations in the DigitalOcean Control Panel before proceeding.

✅ Step 2: Verify Private Network Interfaces

Run the following command on each Droplet to confirm the private IP address (look for the 10.xx.xx.xx range):

ip -br addr

✅ Step 3: Transfer the File

The fastest method for a one-time transfer is using scp (Secure Copy Protocol) over the private interface.

  1. Find the Private IP of the Destination Droplet
    • You can find it in the DigitalOcean Control Panel under the Droplet’s “Settings” or by running ip -br addr on the Droplet itself.
  2. Run the SCP Command On the source Droplet, use the following command to transfer your file. Replace the placeholders with your actual details.
    scp -r /path/to/your/source/file root@<destination_private_ip>:/path/to/destination/
    

    Example:

    scp -r /root/my-large-file.img root@10.100.0.5:/root/
    

💡 Important Considerations for 60GB Files

🖥️ Multi-Node GPU Droplet-Specific Notes

If you are transferring data to or between multi-node GPU Droplets (like H100 or MI300X), remember:


Back Donate