title | date | draft | tags | |
---|---|---|---|---|
SSH Host Unknown |
2021-11-02 22:46:50 +0100 |
false |
|
Your ssh config Include
s another config file with hosts. When trying to connect to a host in that referenced config the host is unknown.
Host example.tld
Hostname example.tld
User myuser
Include ~/some-other-ssh-config
Put include statements first as those will be interpreted as sub-configs to the Host
entry.
Include ~/some-other-ssh-config
Host example.tld
Hostname example.tld
User myuser