2
jun
0
Instalar OpenSSH Server en Ubuntu
En el trabajo tengo un Ubuntu Server 10.04 y quise conectarme a el por medio de SSH(para sentirme mas hombre
), para esto instale OpenSSH y lo hice de la siguiente manera.
Abrimos la terminal y ponemos los siguiente, que nos instalara el cliente y servidor de openssh:
| Bash | | Copiar | | ? |
| 1 | sudo apt-get install openssh-server openssh-client |
Una vez terminado el proceso ya tenemos instalado OpenSSH Server y para probarlo, en terminal ponemos:
| Bash | | Copiar | | ? |
| 1 | ssh localhost |
o tambien y asi se usa para conectarse de manera remota:
| Bash | | Copiar | | ? |
| 1 | ssh usuario@ip-de-tu-servidor |
Ahora si queremos detener el servicio de ssh, en la terminal ponemos:
| Bash | | Copiar | | ? |
| 1 | sudo /etc/init.d/ssh stop |
Para iniciarlo:
| Bash | | Copiar | | ? |
| 1 | sudo /etc/init.d/ssh start |
Para reiniciarlo:
| Bash | | Copiar | | ? |
| 1 | sudo /etc/init.d/ssh restart |
Enjoyed reading this post?
Subscribe to the RSS feed and have all new posts delivered straight to you.
Subscribe to the RSS feed and have all new posts delivered straight to you.
Post your comment




