1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

ssh: remove -C and use SOCKS port (#5771)

This commit is contained in:
Phil Enzler 2021-04-15 18:47:49 -07:00 committed by GitHub
parent 5bc4c97786
commit 38c3b011dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -19,9 +19,9 @@
`ssh {{externer_server}} {{befehl}}`
- SSH Tunneln: Leite Ports dynamische Port weiter (SOCKS proxy auf localhost:9999):
- SSH Tunneln: Leite Ports dynamische Port weiter (SOCKS proxy auf localhost:1080):
`ssh -D {{9999}} -C {{benutzer}}@{{externer_server}}`
`ssh -D {{1080}} {{benutzer}}@{{externer_server}}`
- SSH Tunneln: Leite einen spezifischen Ports (localhost:9999 zu example.org:80) weiter zusammen mit deaktivierter pseudy-tty Provisionierung für die Ausführung eines Befehls:

View file

@ -19,9 +19,9 @@
`ssh {{hote_distant}} {{commande -avec -options}}`
- Tunnel SSH : Transfert par port dynamique (le SOCKS proxy se trouve sur localhost:9999) :
- Tunnel SSH : Transfert par port dynamique (le SOCKS proxy se trouve sur localhost:1080) :
`ssh -D {{9999}} -C {{utilisateur}}@{{hote_distant}}`
`ssh -D {{1080}} {{utilisateur}}@{{hote_distant}}`
- Tunnel SSH : Transfère un port spécifique (localhost:9999 vers example.org:80) en désactivant l'allocation de pseudo-[t]ty et l'exécution de commandes distantes :

View file

@ -19,9 +19,9 @@
`ssh {{remote_host}} {{command -with -flags}}`
- SSH tunneling: Dynamic port forwarding (SOCKS proxy on localhost:9999):
- SSH tunneling: Dynamic port forwarding (SOCKS proxy on localhost:1080):
`ssh -D {{9999}} -C {{username}}@{{remote_host}}`
`ssh -D {{1080}} {{username}}@{{remote_host}}`
- SSH tunneling: Forward a specific port (localhost:9999 to example.org:80) along with disabling pseudo-[t]ty allocation and executio[n] of remote commands: