▲ | h4ch1 3 days ago | |||||||||||||||||||||||||||||||
Can't comment for others but for me I find zoc or in that regard, a SSH client useful for the following 1. Remembering multiple hostnames and keys in a centralized location I manage a fleet of VPSs, whose hostnames, credentials I don't always remember off the top of my head. Writing ssh -i <identity> <hostname> gets tedious when I'm wrangling multiple of them over a single session 2. Faithful terminal emulation Zoc does a great job at emulating a plethora of terminals; it's not a do or die feature, but nice to have. 3. Separation of concerns This is a personal reason, but I like having two different applications while I am doing something that needs me to SSH to multiple VPSs, my main terminal will have local commands, local file editing, etc while my SSH client will only be used for remote connections and management. Just helps me keep things tidy for myself. Also as I mentioned in the parent I primarily use my main terminal to SSH; but for the cases mentioned it's nice to use a separate client. | ||||||||||||||||||||||||||||||||
▲ | l1ng0 3 days ago | parent | next [-] | |||||||||||||||||||||||||||||||
I don't have your use-case, but I use the `.ssh/config` to give aliases (Host/Hostname) to my remote machines and can set the identity to use there (IdentityFile). | ||||||||||||||||||||||||||||||||
▲ | skydhash 3 days ago | parent | prev [-] | |||||||||||||||||||||||||||||||
> 1. Remembering multiple hostnames and keys in a centralized location There’s ssh_config(5) for that. | ||||||||||||||||||||||||||||||||
|