6
1
I am looking for a connection manager for Linux that runs in the CLI. To be clear, by connection manager I mean a program that allows you to create, save, and quickly launch remote connections. Similar to mRemote, mRemoteNG, Vrd, Terminals, Devolutions RDM, etc. You should be able to define a connection type (ssh), destination (IP or DNS), and paramerts such as SSH version, username/password, etc
We are in the process of tightening up security in a large manager service provider environment and will be creating a couple of "hop-off" linux boxes. The idea is that our team and level 1 support will SSH to those linux servers, and then from there connect to various pieces of network equipment throughout the environment. It is both more secure and required because of some of the routing (VRF's) in place.
Ideally I am hoping that solution stores connection in mySQL or similar so that we can easily access one library of connections from multiple machines (hop-off boxes).
Has anyone encountered a program or project like this? I have found a few apps for Linux, such as Remmmina, Monocaffe, and PAC Manager, but they are all GUI. I don't want to have to VNC into the hop off boxes since we only need CLI for SSH anyway.
Thanks!
What about aliases? I have a couple on my home machine like this:
alias sshandy='ssh user@connection.com -P 443 -i ~/sshandy' and
alias sshacer='ssh 192.168.1.10'` It might not be perfect, but it's definitely doable. – Rob – 2012-02-09T16:36:13.377Rob. That would be a potential solution, but I am looking for something more scalable. Creating new aliases wouldn't be too bad, but updating existing ones and removing them would be pretty cumbersome and error prone (remember L1 support will also use them). We would also have to sync that alias file to the several different servers (which is possible, just not as elegant as I had hoped). I would also like to easily list and search through connectios, Although i guess we could create an alias that to cat & grep that file . Thanks for the suggestion, any others? – Mike M – 2012-02-10T14:18:08.153
1
Seems like a duplicate to this question to me: http://superuser.com/a/214336/51741
– Shadok – 2012-02-13T14:38:25.283