|
|
|
|
|
by spindritf
4776 days ago
|
|
Is it really easier than just editing ~/.ssh/config? In the config, you can use wildcards for groups of servers Host *.whatever.net
IdentityFile ~/.ssh/whatever-key
ServerAliveInterval 10
port 1022
and then add specific information and aliases per host Host someserver.whatever.net someserver ss
Hostname someserver.whatever.net
User spin
Host otherserver.whatever.net otherserver os
Hostname otherserver.whatever.net
User dritf
Plus, since you probably edit it only once in a while, you don't need to remember the syntax and can simply base new additions on existing entries. |
|