The VirtFusion console gives you browser-based terminal access to your VPS, even if SSH is broken or you have locked yourself out. It connects directly to the server's virtual display rather than over the network, so firewall rules and SSH configuration do not affect it.
Log in with your root credentials (or another user account if root login is disabled).
The console is for emergency access and troubleshooting. For normal day-to-day work, SSH is faster, supports file transfers, and allows copy-pasting more reliably. Use SSH when the server is accessible - use the console when it is not.
If you edited /etc/ssh/sshd_config and can no longer connect via SSH, use the console to:
nano /etc/ssh/sshd_configPasswordAuthentication yes or correct a syntax error).systemctl restart sshdIf a firewall rule has blocked SSH access:
# UFW (Ubuntu/Debian)
ufw allow OpenSSH
ufw reload
# firewalld (RHEL-based)
firewall-cmd --permanent --add-service=ssh
firewall-cmd --reload
Tip: Before making any firewall or SSH changes on a live server, always keep an existing SSH session open in a separate terminal. That session will stay connected even if the new rules would block fresh logins, giving you a safety net to roll back.
Getting Started with Your VPS
How to connect via SSH, update your OS, and lock down your new KVM VPS in the first 30 minutes.
Getting to Know VirtFusion
A tour of the VirtFusion panel - where to find your IP, manage power, access the console, and reinstall your OS.
Reinstalling Your VPS Operating System
How to wipe your VPS and install a fresh OS from VirtFusion, and what to do immediately after.
VPS Backups in VirtFusion
How to take, restore, and manage server backups so you can roll back after a failed update or change.
VPS Networking and IP Management
Finding your IP addresses, setting reverse DNS for email, and configuring additional IPs in VirtFusion.
Managing SSH Keys in VirtFusion
How to store SSH keys on your VirtFusion account, generate key pairs in the browser, and have them automatically deployed when you build or rebuild a server.
Securing Your VirtFusion Account
How to change your account password, enable TOTP two-factor authentication, save backup codes, and manage trusted devices.