From a6837c71b815ad9f06db8823a90f785c1b9d332a Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 9 May 2019 18:07:48 +0200 Subject: [PATCH] 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. --- pages/common/ssh.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/ssh.md b/pages/common/ssh.md index a69a37cec..c968e51b8 100644 --- a/pages/common/ssh.md +++ b/pages/common/ssh.md @@ -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):