Como iniciar o plugin ssh Secure Shell do Chrome via link da Web

0

Estou procurando descobrir como criar um URL ou link que execute uma sessão SSH do lado do cliente. Eu encontrei a extensão do Chrome chamada 'Secure Shell', mas a documentação é mínima.

Basicamente, o comportamento que estou procurando é:

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

Existe uma maneira de fazer isso com o Secure Shell ou algum outro plugin / aplicativo?

    
por jpreed00 09.12.2014 / 06:48

1 resposta

0

Os mesmos conceitos se aplicam aos links regulares de páginas da web. Basta ligar para o protocolo diretamente e ele só funcionará no chrome. abaixo está uma amostra de como fazer isso.

<HTML>
<body>
<a href="chrome-extension://pnhechapfaindjhompbnflcldabbghjo/html/nassh.html">Secure Shell</a>
</body>
</HTML>
    
por 08.09.2015 / 22:38