-1

Normally I use SSH via PuTTY to access my cloud servers. My cloud provider offers a serial console as a backup, for when SSH is not working. They only provide instructions for how to use it from Linux. I use Windows on my laptop. Can I use PuTTY to access my server via a URL like wss://dal-cell2.hostwinds.net:6083?token=e6ac3f47-05fff9212-cfc3-e99252567d1f (token randomized)?

7
  • 1
    Maybe if you shared those Linux instructions, we could offer an equivalent solution for Windows.
    – Daniel B
    Commented Jun 24 at 17:32
  • It's basically run repo.hostwinds.net/repos/tools/serial_console.py. I can, but I'd rather not.
    – Pascal
    Commented Jun 24 at 18:01
  • You can get Python from Microsoft Store and have this running unmodified in a minute. Why, more specifically, not?
    – Daniel B
    Commented Jun 24 at 18:03
  • Because I normally use PuTTY for accessing servers. I was hoping this Web Sockets thing was just some terminology I'd not heard before and was supported by PuTTY but labeled in some esoteric way. It does all my logging, has all my keys, etc. I really like to keep a log of everything I do to a server, that I can easily search & find later. This type of CYA has saved me many times in the past. I'm also not a big fan of running oddball Python scripts. That script could be compromised in so many different ways.
    – Pascal
    Commented Jun 24 at 18:17
  • At just under 150 lines, this script is very easy to audit. It also has all the required information to write your own client, if you want.
    – Daniel B
    Commented Jun 24 at 19:37

1 Answer 1

1

WebSockets are somewhat like TCP. They transport data. An application needs to define a protocol on top, to make sense of the data.

That protocol would not be SSH and also not be Telnet.

So, no, PuTTY does not support that.


There is a noVNC web app running at https://dal-cell2.hostwinds.net:6080/. Pretty sure you could make use of that fact somehow, using any modern browser from any device.

1
  • Thank you. Unfortunately, I can't seem to get paste to work in noVNC.
    – Pascal
    Commented Jun 24 at 17:57

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .