1
0
mirror of synced 2026-01-11 03:01:04 -05:00
Files
docs/translations/es-ES/content/github/authenticating-to-github/using-ssh-over-the-https-port.md
Vanessa Yuen 01b5d89239 Crowdin translations (translation-batch-1610993249) (#17348)
* New Crowdin translations by Github Action

* Revert broken translated files to English

* fix mistranslated type

* fix mistranslated dates

* fix liquid operator

* revert broken to english

* revert broken translations to english

* revert broken translations to english

* fix broken liquid tag 😭

* fix tags

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2021-01-19 20:12:46 +01:00

1.9 KiB

title, intro, redirect_from, versions
title intro redirect_from versions
Uso de SSH a través del puerto HTTPS Algunas veces, los firewalls se niegan a permitir conexiones SSH por completo. Si el utilizar el [clonado de HTTPS con almacenamiento de credenciales en el caché](/github/using-git/caching-your-github-credentials-in-git) no es una opción, puedes intentar clonar utilizando una conexión SSH que hayas hecho a través del puerto HTTPS. La mayoría de las reglas del firewall deberían permitir esto, pero los servidores proxy pueden interferir.
/articles/using-ssh-over-the-https-port
free-pro-team
*

{% tip %}

Usuarios de GitHub Enterprise: Actualmente, no se puede acceder a GitHub Enterprise por SSH a través del puerto HTTPS.

{% endtip %}

Para probar si es posible el SSH a través del puerto HTTPS, ejecuta este comando SSH:

$ ssh -T -p 443 git@ssh.github.com
> Hi <em>username</em>! You've successfully authenticated, but GitHub does not
> provide shell access.

Si eso funcionó, ¡fantástico! De lo contrario, puede que debas seguir nuestra guía de solución de problemas.

Habilitar conexiones SSH a través de HTTPS

Si es posible el SSH en git@ssh.{% data variables.command_line.backticks %} a través del puerto 443, puedes reemplazar los parámetros SSH para forzar que cualquier conexión a {% data variables.product.product_location %} se ejecute a través de ese servidor y puerto.

Para establecer esto en tus parámetros ssh, edita el archivo en ~/.ssh/config y agrega esta sección:

Host {% data variables.command_line.codeblock %}
  Hostname ssh.{% data variables.command_line.codeblock %}
  Port 443

Puedes probar que esto funcione volviéndote a conectar a {% data variables.product.product_location %}:

$ ssh -T git@{% data variables.command_line.codeblock %}
> Hi <em>username</em>! You've successfully authenticated, but GitHub does not
> provide shell access.