https://bugzilla.mindrot.org/show_bug.cgi?id=1654

--- Comment #4 from Vincent Fortier <[email protected]> ---
If I can add, I just came accross a clear case where this feature is
lacking for me which forces me to redirect to /dev/null:  I need to
access multiple hosts from various management networks accross multiple
locations.  Management IP are often the same at every location making
SSH to complain that another host exist.

Currently my ssh config is similar to:
Host *<domain>*
  ProxyCommand ssh username@jumpserver nc -q0 %h %p
  StrictHostKeyChecking no
  UserKnownHostsFile=/dev/null

But having the ability to use something similar to the following wheras
instead I am able to redirect to a per domain|host|whatever I whish
such as:
Host *<domain>* 
  ProxyCommand ssh username@jumpserver nc -q0 %h %p
  StrictHostKeyChecking yes
  UserKnownHostsFile ~/ssh/known_hosts.d/<domain>|<hostname>|whatever

Thnx in advance, from another happy OpenSSH user.

-- 
You are receiving this mail because:
You are watching someone on the CC list of the bug.
You are watching the assignee of the bug.
_______________________________________________
openssh-bugs mailing list
[email protected]
https://lists.mindrot.org/mailman/listinfo/openssh-bugs

Reply via email to