How to Use SSH, RDP and FileZilla with Vultr Servers

This guide explains how to log in and transfer files to your new Linux or Windows server at Vultr using SSH, RDP, or SFTP.
Prerequisites
Before you begin, ensure you:
- Have a deployed Vultr Cloud Server accessible from the customer portal.
- Have a terminal application installed.
- macOS and Linux have SSH pre-installed.
- Windows users may need to install OpenSSH.
Key Components
This guide covers three methods for accessing your server.
SSH (Secure Shell) is the standard protocol for remote command-line access to Linux and *BSD servers. All Vultr Linux servers have SSH enabled by default.
RDP (Remote Desktop Protocol) provides a graphical desktop interface for Windows servers. RDP is pre-installed on Windows and clients are available for macOS, Android, iOS, and Linux.
SFTP (Secure FTP) enables encrypted file transfers to and from your Linux server. All Vultr Linux servers have SFTP enabled by default.
Find Your Access Credentials
The server information page in the customer portal contains the credentials needed to connect.
Navigate to the Products page in the Vultr Customer Portal.
Click the server name in the product listing to open the server information page.
Locate the IP address, username, and password on this page.
Click the eye icon in the password field to reveal the password, or use the copy icon to copy it to your clipboard.
The server information page displays the initial password only. If you change the password later, this page will not reflect the update. Keep a secure record of your server password. Snapshots are complete backups of a server, including passwords. A restored snapshot has the same password as the original server at the time the snapshot was taken.Note
Log in to the Console
You can use the Vultr web console to access your server directly from the browser. The console simulates a physical mouse, keyboard, and screen, and is accessible even when SSH is unavailable or the network is misconfigured. It is the best starting point when troubleshooting a VPS.
Navigate to your server's information page in the Vultr Customer Portal.
Click View Console to open the browser-based terminal session.
Connect with SSH
All Linux and *BSD servers at Vultr have SSH enabled by default. Use SSH for remote command-line access to your server.
Open a terminal on your local machine.
Connect to the server using your username and IP address.
console$ ssh username@your-server-ip
For example, to connect as
rootto a server at192.0.2.123:console$ ssh root@192.0.2.123
Enter your password when prompted.
For a more secure authentication method, see Connect to a Server Using an SSH Key.Note
Connect with RDP
Windows servers at Vultr have RDP enabled by default. Use RDP for graphical desktop access to your Windows server.
RDP clients are available for all major platforms:
| Platform | Client |
|---|---|
| Windows | Built-in Remote Desktop Connection |
| macOS | Microsoft Remote Desktop (App Store) |
| iOS / Android | Microsoft Remote Desktop (App Store / Google Play) |
| Linux | Remmina or FreeRDP |
Navigate to your server's information page in the Vultr Customer Portal.
Download the RDP client configuration file from the server information screen.
Open the downloaded file with your RDP client to connect with pre-filled settings.
Alternatively, open your RDP client manually and enter the following:
- Host: Your server's IP address
- Username:
Administrator - Password: Your server password from the portal
Transfer Files with SFTP
All Vultr Linux servers have SFTP enabled by default. Use SFTP to upload or download files between your local machine and your server.
Connect via Command Line
Open a terminal on your local machine.
Connect to the server using SFTP.
console$ sftp username@your-server-ip
For example:
console$ sftp root@192.0.2.123
Connect with FileZilla
FileZilla is a popular cross-platform SFTP client available for Windows, macOS, and Linux.
Open FileZilla and click File > Site Manager.
Click New Site and give the connection a name.
Click Connect.
FileZilla also supports SFTP authentication using SSH keys in PuTTY's PPK format. See the FileZilla documentation for details.Note
Connect with Cyberduck
Cyberduck is an alternative SFTP client available for Windows and macOS.
Open Cyberduck and click Open Connection.
Select SFTP (SSH File Transfer Protocol) from the dropdown menu.
Enter your server's IP address, username, and password.
Click Connect.
Conclusion
You have successfully connected to your Vultr cloud server using SSH, RDP, or SFTP. SSH provides secure command-line access for Linux and BSD servers, RDP delivers a full graphical desktop experience for Windows servers, and SFTP enables encrypted file transfers for managing content on your server. For production environments, consider switching from password-based authentication to SSH key pairs to improve security and streamline access.