ssh: Remove real domains to remain neutral (#2999)

Real domains should not be used as to alleviate bias and prevent people accidentally running commands against real sites.
italian
Paul 2019-05-09 18:07:48 +02:00 committed by Lucas Gabriel Schneider
parent 0de48e85d4
commit a6837c71b8
1 changed files with 2 additions and 2 deletions

View File

@ -23,9 +23,9 @@
`ssh -D {{9999}} -C {{username}}@{{remote_host}}`
- SSH tunneling: Forward a specific port (localhost:9999 to slashdot.org:80) along with disabling pseudo-[t]ty allocation and executio[n] of remote commands:
- 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:
`ssh -L {{9999}}:{{slashdot.org}}:{{80}} -N -T {{username}}@{{remote_host}}`
`ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{username}}@{{remote_host}}`
- SSH jumping: Connect through a jumphost to a remote server (Multiple jump hops may be specified separated by comma characters):