Displaying 1 result from an estimated 1 matches for "specificusernam".
Did you mean:
specificusername
2024 Oct 10
4
[Bug 3742] New: ssh_config default values with Host-specific values does not apply
...t, there is an option to set `User
realusername` in ~/.ssh/config on a per-user basis. However, if there
is a length of hosts, there is no easy way to set a default username
while still allowing a per-Host override.
example 1:
User defaultusername
...
Host a
...
Host b
...
Host z
...
Host A
User specificusername
...
example 2:
Host *
User defaultusername
...
Host a
...
Host b
...
Host z
...
Host A
User specificusername
...
example 3:
Host a
...
Host b
...
Host z
...
Host A
User specificusername
...
Host *
User defaultusername
...
In any of these examples, `specificusername` is never used for `H...