SSH Fingerprint Saved Locally | Generated by AI

Home 2026.07

Question: If you type “yes” on the RunPod proxy SSH connection, does it save the fingerprint locally?

Answer: Yes. Any time SSH prompts Are you sure you want to continue connecting (yes/no/[fingerprint])? and you answer yes, it appends an entry to your local ~/.ssh/known_hosts file — regardless of whether you’re connecting via the proxy (ssh.runpod.io) or direct TCP.

The entry looks like:

ssh.runpod.io ssh-ed25519 AAAA...<key-data>

For the proxy case specifically:

For the direct TCP case:

You can verify what’s saved:

grep runpod ~/.ssh/known_hosts
ssh-keygen -F ssh.runpod.io   # check if a specific host is already trusted

And if RunPod ever rotates their proxy’s host key (rare, but possible during infra changes), you’d get a REMOTE HOST IDENTIFICATION HAS CHANGED warning and need to remove the stale entry:

ssh-keygen -R ssh.runpod.io

References:


Generated by AI. Curating and sharing still takes effort. If you find it useful, feel free to donate. WeChat: @lzwjavaWeChat QR · X: @lzwjava · Say hi 👋

Back Donate