Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
en:centro:servizos:pasarela_ssh [2016/04/18 13:23] – [Connection example from Windows] fernando.guillenen:centro:servizos:pasarela_ssh [2020/03/11 16:37] – [Activation] jorge.suarez
Line 1: Line 1:
-FIXME **This page is not fully translated, yet. Please help completing the translation.**\\ //(remove this paragraph once the translation is finished)// 
- 
 ====== SSH Gateway ====== ====== SSH Gateway ======
  
 ===== Description ===== ===== Description =====
-The SSH Gateway allows access to a host inside the CITIUS internal network from the external network. This service is the backup plan when using the [[en:centro:servizos:vpn|VPN]] is not possible.+The SSH Gateway allows access to a host inside the CITIUS internal network from the external network. This service is the backup plan when using the [[en:centro:servizos:vpn:start|VPN]] is not possible.
  
 ===== Activation ===== ===== Activation =====
-You have to register filling the [[https://old.citius.usc.es/uxitic/incidencias/add| requests and problem reporting form]]. This form is only available to CITIUS users.+Check in [[https://apps.citius.usc.es/xici/personainternas/edit|Xici permissions]] whether the service //Acceso ext. pasarela SSH// is listed. If the service is listed, you don't need to register. 
 + 
 +You have to register filling the [[https://citius.usc.es/dashboard/enviar-incidencia| requests and problem reporting form]]. This form is only available to CITIUS users
 + 
 +You must also add a public SSH key in your account, in the [[https://citius.usc.es/me|Account and Permissions section in Xici]]. **Only SSH keys authentication method is enabled**.
  
-To use the gateway you must generate a public and private key pair and include the public key file in the request.  +To generate an SSH key, execute in a terminal:
-To do so, execute in a terminal:+
 <code bash>ssh-keygen -t rsa</code> <code bash>ssh-keygen -t rsa</code>
-Introduce a password to protect your keys. This process will generate the files ''~/.ssh/id_rsa'' (the private key) e ''~/.ssh/id_rsa.pub'' (the public key). And then send us this last file attached on the request form.+Introduce a password to protect your keys. This process will generate the files ''~/.ssh/id_rsa'' (the private key) e ''~/.ssh/id_rsa.pub'' (the public key). And then use that last file contents to add the SSH key.
  
 ===== User manual ===== ===== User manual =====
Line 18: Line 19:
 ==== Config info ==== ==== Config info ====
  
-  * Server: ''vpn.citius.usc.es''+  * Server: ''vpn.citius.usc.es'' (''193.144.78.45'')
   * Port: ''22''   * Port: ''22''
   * User: //Your CITIUS username//   * User: //Your CITIUS username//
-  * Password: //The private key password. If you don't remember it the only solution is to create a new pair of keys and send us the public one again.// 
  
 ==== Connection example in GNU/Linux ==== ==== Connection example in GNU/Linux ====