Cara meluncurkan plugin Secure Shell ssh Chrome melalui tautan web

0

Saya mencari cara untuk membuat URL atau tautan yang mengeksekusi sesi SSH sisi klien. Saya menemukan ekstensi Chrome yang disebut 'Secure Shell', tetapi dokumentasinya agak minim.

Pada dasarnya, perilaku yang saya cari adalah:

1) user is presented with a list of VM links
2) user clicks a link
3) user's client system starts an SSH session
4) if this is the first time the session has been started, the user is 
   prompted to select the appropriate authentication method (i.e. enter 
   username/password or select ssh key, etc.)
5) if this is not the first time the session has been started, the 
   client remembers the user's previous selections and opens the client 
   using those selections

Apakah ada cara untuk melakukan ini dengan Secure Shell atau plugin / aplikasi lain?

jpreed00
sumber

Jawaban:

0

Konsep yang sama berlaku sebagai tautan laman web biasa. Cukup panggil protokol secara langsung dan itu hanya akan bekerja di chrome. di bawah ini adalah contoh cara melakukan ini.

<HTML>
<body>
<a href="chrome-extension://pnhechapfaindjhompbnflcldabbghjo/html/nassh.html">Secure Shell</a>
</body>
</HTML>
Joel T
sumber