What command do I use to see what the ECDSA key fingerprint of my server is?

linux, openssh, rsa, security, ssh

Solution

Wait, I found it. Run the command:

ssh-keygen -l -f /etc/ssh/ssh_host_ecdsa_key.pub

Problem

I see stuff all over Google on how to see the RSA key fingerprint, but not the ECDSA fingerprint.

Original source