PuTTY No Supported Authentication Methods Available: How to Fix It

Last updated August 22, 2026

TL;DR

No supported authentication methods available (server sent: publickey) means the server only accepts authentication methods PuTTY has nothing for. The part after "server sent" is the server's list; PuTTY couldn't attempt any of them.

Almost always one of these:

  • The server is key-only (PasswordAuthentication no) and no .ppk is loaded in the session or Pageant
  • "Attempt keyboard-interactive auth" is turned off when the server needs it
  • Wrong username, hitting a stricter auth policy

Load your key first. Connection > SSH > Auth > Credentials, pick the .ppk, save the session, reconnect.

What you're seeing

A "PuTTY Fatal Error" dialog before any password prompt:

Disconnected: No supported authentication methods available
(server sent: publickey)

The list in parentheses is what the server is willing to accept. Common variants:

  • (server sent: publickey) means the server is key-only. Password auth is disabled, and PuTTY has no key to offer.
  • (server sent: publickey,gssapi-keyex,gssapi-with-mic) is the same situation on RHEL-family servers. The gssapi entries are Kerberos single sign-on and only apply inside a domain; for everyone else this still means "key required".
  • (server sent: keyboard-interactive) means the server wants keyboard-interactive (how most Linux servers actually do password prompts) but it's disabled in your PuTTY settings.

This error means PuTTY never got to try a key. If PuTTY offers a key and the server rejects it, you get a different message; see PuTTY Server Refused Our Key.

What's causing this error

During SSH auth negotiation the server advertises the methods it accepts. PuTTY compares that list against what it has (a key file, Pageant, password, keyboard-interactive) and finds zero overlap, so it gives up before trying anything. The real causes, in rough order of frequency:

  1. The server is key-only and PuTTY has no key configured. PasswordAuthentication no in sshd_config is the default on AWS EC2, Oracle Cloud, and most hardened servers.
  2. The key exists but isn't loaded: the saved session doesn't point at the .ppk, and Pageant isn't running or has no keys.
  3. "Attempt keyboard-interactive auth" is unchecked in Connection > SSH > Auth, on a server that only offers keyboard-interactive.
  4. Wrong username. Match User blocks or PermitRootLogin prohibit-password can make the server offer fewer methods for that specific user. Logging in as root on a cloud image commonly produces exactly this.
  5. The key is in the wrong format. PuTTY silently can't use a .pem or OpenSSH private key; only .ppk counts.

How to fix it

Step 1: Load your private key in PuTTY

  • Open the saved session in PuTTY.
  • Go to Connection > SSH > Auth > Credentials (just "Auth" in PuTTY before 0.78).
  • Under "Private key file for authentication", browse to your .ppk file.
  • Go back to Session, click Save, then Open.

If you skip Save, the key setting is gone next time and the error comes back.

PuTTY only reads .ppk files. If what you have is a .pem from AWS or an OpenSSH key (id_ed25519, id_rsa), convert it first with PuTTYgen or our PEM to PPK converter. No key at all yet? Create a pair in the browser with the PuTTY key generator.

Step 2: Or load the key into Pageant

Pageant (installed alongside PuTTY) holds keys in memory and every PuTTY session tries them automatically:

  • Start Pageant, right-click its tray icon, choose Add Key, pick the .ppk.
  • In the session, confirm Connection > SSH > Auth > "Attempt authentication using Pageant" is checked (it is by default).

Step 3: If your key isn't on the server yet

Loading a key only helps if its public half is in the server's ~/.ssh/authorized_keys. If it isn't, you need another way in:

  • Another machine that can already connect. Add your new public key to authorized_keys from there.
  • Your provider's web console. AWS EC2 Instance Connect or Serial Console, DigitalOcean Recovery Console, Hetzner Rescue, or the VNC console on most VPS panels. These bypass SSH entirely.
  • Temporarily enable password auth. From the console:
sudo nano /etc/ssh/sshd_config
# Set: PasswordAuthentication yes
sudo systemctl restart ssh     # Debian/Ubuntu
sudo systemctl restart sshd    # RHEL/CentOS/Fedora

Connect with your password, install the key properly, then set PasswordAuthentication no again. If the key then gets rejected instead of accepted, that's the Server Refused Our Key page.

Step 4: Re-enable keyboard-interactive auth

If the dialog says (server sent: keyboard-interactive) or the server uses password prompts through PAM:

  • Go to Connection > SSH > Auth.
  • Check "Attempt keyboard-interactive auth (SSH-2)".
  • Save the session and reconnect.

This box gets unchecked by people trying to silence login prompts, and the setting rides along in exported/shared sessions.

Step 5: Check the username

Confirm the "login as" name or Connection > Data > "Auto-login username" is the account that actually has access. On cloud images, root is often restricted to keys or blocked outright while the image's default user (ubuntu, ec2-user, opc) works fine.

Common edge cases

SituationWhat's actually wrong
AWS EC2 or Lightsail, worked neverPassword auth is disabled on these images permanently. You must use the key pair from launch: convert the .pem to .ppk and load it (step 1). Username is ubuntu, ec2-user, or admin depending on AMI
Oracle Cloud instanceSame key-only policy; the username is opc on Oracle Linux, ubuntu on Ubuntu images
(server sent: publickey,gssapi-with-mic)Not a Kerberos problem. Ignore the gssapi entries; you still just need a key (or your domain admin's SSO setup)
Raspberry Pi, headless installRaspberry Pi Imager's SSH option has "allow public-key authentication only" mode; if that was selected, password login is off. Use the key you supplied, or re-image with password auth
VMware ESXi hostIf SSH was just enabled but the host is in lockdown mode, only vCenter or the DCUI can log in. Disable lockdown mode from the DCUI first
Worked until a system upgradeThe upgrade replaced sshd_config and reset PasswordAuthentication/ChallengeResponseAuthentication. Restore your settings from the console
Error appears instantly with a saved session that used to workThe session lost its key path (moved/renamed .ppk), or Pageant isn't running after a reboot. Reload the key and re-save
Fine as ubuntu, fails as rootPermitRootLogin prohibit-password (the default): root is key-only even when other users can use passwords. Log in as the default user and use sudo -i

Related errors