Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cheatsheet request: SSH #573

Open
brunoac68 opened this issue Jul 23, 2024 · 1 comment
Open

Cheatsheet request: SSH #573

brunoac68 opened this issue Jul 23, 2024 · 1 comment
Assignees
Labels
request Cheatsheet request

Comments

@brunoac68
Copy link

Primeiramente, gostaria de parabenizá-los pelo excelente trabalho que têm feito com o site Cheat Sheets. As folhas de dicas são extremamente úteis e apreciadas pela comunidade.

Gostaria de sugerir a inclusão de um tópico sobre tunelamento SSH nas folhas de dicas disponíveis. O tunelamento SSH é uma técnica importante e amplamente utilizada para criar túneis criptografados para acessar serviços e recursos de forma segura.

Aqui está um exemplo básico de um comando para criar um túnel SSH:
ssh -fNgL 5439:0.0.0.0:5432 [email protected] -p2222

Descrição do Comando:

-f: Faz com que o SSH se coloque em segundo plano após a autenticação.
-N: Não executa comandos remotos, apenas faz o tunelamento.
-g: Permite que outros computadores se conectem ao túnel.
-L [port_local]:[host_remoto]:[port_remoto]: Mapeia a porta local para uma porta no host remoto.

Exemplo Prático:
Este comando mapeia a porta local 5439 para a porta 5432 no host remoto 182.134.94.133, permitindo acesso ao serviço na porta 5432 como se estivesse na máquina local.

A inclusão deste tópico ajudaria muitos usuários a entender e aplicar o tunelamento SSH em suas práticas de segurança e desenvolvimento.

@brunoac68 brunoac68 added the request Cheatsheet request label Jul 23, 2024
@Fechin
Copy link
Owner

Fechin commented Jul 24, 2024

Hey @brunoac68,

Thanks a ton for your kind words! We're super glad to hear that you find the Cheat Sheets useful.

Just a heads-up, we've already got an SSH cheatsheet available at https://cheatsheets.zip/ssh. Feel free to check it out!

If you think there’s any specific info on SSH tunneling that’s missing or could be better, we’d love to see your input. You're more than welcome to submit a PR with your suggestions.

Thanks again for your support and for helping us make these resources even better!

Cheers! 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
request Cheatsheet request
Projects
None yet
Development

No branches or pull requests

2 participants