Re: Feature request: simple command to display active SSH host key fingerprints
Robert Reder via openssh-unix-dev <[email protected]> Mon, 6 Jul 2026 13:01:34 +0200
| Newsgroups | gmane.network.openssh.devel |
|---|---|
| Message-ID | <[email protected]> |
I am not sure if all of this looks really simple.
But maybe it is, as hundred of years one is already using ssh.
Am 06.07.26 um 11:08 schrieb Brian Candler:
> On 06/07/2026 07:51, Brian Candler wrote:
>>
>> Something like this?
>
> I always forget about xargs.
>
> sshd -T | awk '/^hostkey / {print $2}' | xargs -n1 -d'\n' ssh-keygen -l -f
>
>