Imagine the following scenario: "Client" and "Connected" both exist on a network. A third computer, "Isolated," is not on any network but exposes a console over a serial port that can be read by Connected. I sit at "Client" and I can access "Connected" from "Client" over ssh.
My goal is to get to "Isolated" as seamlessly as possible. I guess I could get a terminal on "Connected" and then use exec
to talk to the console on "Isolated", but this seems rather clumsy. I'm sure many people have faced a similar scenario before, so what is the correct way to do this?
screen
to access the consolescreen /dev/ttyUSB0
for isntance is how I use my Serial Cable to open the console connection for my switch when i'm connected with the USB Console Cable for it. There may be another serial port dev you can use for this too. – Thomas Ward Aug 04 '20 at 15:28screen /dev/ttyUSB0
on the "Connected" host. – Peter Du Aug 04 '20 at 15:33