I have a few endpoints that I would like to connect to over SSH for things like Powershell Remoting so that I can run scripts for automation.
How could I centralize access?
- Endpoints would connect over
SSHto a central server - Endpoints would keep this
SSHconnection open - I would need to create universal access over SSH to the endpoints that are terminating at the server. By universal access, I mean devices on the same network would ideally be able to utilize these open
SSHconnections for whateverSSHpurpose.
I am a bit confused about step 3.
- Would I only be able to perform remote actions and connect over
SSHby runningPowershell,PuTTY,Remote Desktopetc. on the central server? - Would I be able to 'bring in' the SSH connections via this
SSHserver onto the general network, such that devices on the same network can connect to the systems over SSH through the central server? - Is there a better way to have multiple endpoints connect over SSH to a central server for running
Powershell, runningRemote Desktopor otherSSHitems from devices on the same network?
Devices could be Windows or Linux
I'm guessing:
- Each of the endpoints from multiple remote networks connect over SSH to the SSH server on Lan X
- Devices on Lan X would need to SSH into the SSH Server on Lan X
- Once SSHed into the SSH Server, the devices on Lan X could now run
Powershellscripts and other SSH items on the endpoints