No description
| .gitignore | ||
| go.mod | ||
| go.sum | ||
| main.go | ||
| README.md | ||
SSH Manager
Requirements
- Go 1.22.3
Usage
Connect to a Host
To connect to a specific host, use:
ssh-manager [host]
List Hosts
To list all available hosts, use:
ssh-manager list
Modify Hosts
Modification is done within the .ssh/config file. Below is an example configuration:
Host site-1
HostName site-1
User username
IdentityFile key-1
Host site-2
HostName site-2
User username
Port 22
IdentityFile key-2