Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
Cloud Encryption Communications Open Source The Internet Technology IT Linux

Gate One 0.9 Released, Brings SSH To the Web 151

Riskable writes "Dan McDougall (full disclosure: That's me) just publicly released the source code to Gate One, which is an HTML5-powered terminal emulator and SSH client. It is unique in that it doesn't require any browser plugins (it uses WebSockets) and supports multiple simultaneous terminals/SSH sessions in a single browser tab. It can resume users' sessions after being disconnected, and supports both client and server-side session recording/playback (view as a log or like a video). Gate One can also be embedded into other web-based applications such as administration interfaces, serial port concentrators, virtual appliances, or whatever."
This discussion has been archived. No new comments can be posted.

Gate One 0.9 Released, Brings SSH To the Web

Comments Filter:
  • !HTML5 Powered (Score:5, Informative)

    by Anonymous Coward on Thursday October 13, 2011 @03:41PM (#37705440)
    Um, it's written in Python and runs as a service with a HTML5 frontend.
  • Re:Emulator? (Score:4, Informative)

    by cornface ( 900179 ) on Thursday October 13, 2011 @03:55PM (#37705634)

    Because it is emulating a terminal, which back in the stone age was an actual piece of physical hardware.

    Sometimes they were magical interactive typewriters which is where the abbreviation 'TTY' comes from.

  • by david.given ( 6740 ) <dg@cowlark.com> on Thursday October 13, 2011 @04:06PM (#37705764) Homepage Journal

    You need a daemon to proxy between the WebSocket connection (which, remember, isn't a straight TCP stream) and the ssh server proper. Although it appears this doesn't need to be on the machine that the ssh server is running on, so it doesn't look like too much of a hardship. Also, I can't find any reference of which of the umpteen different WebSocket variants it supports.

    There's actually a number of these things out already, such as ConsoleFish [serfish.com] or ShellInABox [google.com]. There's also an HTML5 VNC client [github.com], which looks very interesting.

  • Re:!HTML5 Powered (Score:4, Informative)

    by Timmmm ( 636430 ) on Thursday October 13, 2011 @04:59PM (#37706336)

    Well obviously. The client is written in HTML5. If you knew anything at all about HTML5 you'd know it is impossible to write a "true" ssh client using HTML5. Instead this connects to a python server which then goes on to connect to the actual sshd. The point is that you don't need an ssh binary installed on the client.

    You could actually remove ssh from the equation, but it looks like the gate server allows you to connect to *any* ssh server, so I guess that's why they didn't do that.

  • Re:Key pairs? (Score:4, Informative)

    by Riskable ( 19437 ) <YouKnowWho@YouKnowWhat.com> on Thursday October 13, 2011 @05:02PM (#37706366) Homepage Journal

    Private key support is forthcoming... I had it working just fine but then I had the bright idea of writing a plugin system for Gate One and making the SSH part just another plugin :)

    Key-based SSH authentication and user management thereof should be there in 1.0. Really, it isn't rocket science... Just a matter of wrapping a GUI around the functions that are already there in the code.

"Spock, did you see the looks on their faces?" "Yes, Captain, a sort of vacant contentment."

Working...