Displaying 1 result from an estimated 1 matches for "sss_ssh_knownhosts".
2024 Oct 22
2
Fwd: KnownHostsCommand /usr/bin/sss_ssh_knownhosts %H breaks if host entry in ~/ssh/config exists specifying the IP
This command fails
% ssh tarzan
KnownHostsCommand-ORDER /usr/bin/sss_ssh_knownhosts 10.10.11.14 failed,
status 1
KnownHostsCommand failed
If there is an IP entry in ~/.ssh/config
Host tarzan
hostname 10.10.11.14
So I created a wrapper:
% cat /usr/bin/sss_ssh_knownhosts.wrapper
#!/bin/sh
/usr/bin/sss_ssh_knownhosts "$@" || true
Which works around the problem and...