Glam Prestige Journal

Bright entertainment trends with youth appeal.

Currently im using following command (in cmd) to tunnel using PuTTY, and its working fine:

putty.exe mylinuxuser@10.24.0.5 -P 22 -L 10.24.0.200:2022:localhost:22
  • 10.24.0.5 = my application server (CentOS 7)

  • 10.24.0.200 = my workstation (Windows 10)

I'm running the above command on my workstation (10.24.0.200) and its working fine. I'm able to connect to 10.24.0.200 port 2022 from my PC.

The question is: what is the equivalent command for plink.exe for tunneling?

0

1 Answer

Plink has the very same command-line syntax as PuTTY:

plink.exe mylinuxuser@10.24.0.5 -P 22 -L 10.24.0.200:2022:localhost:22

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy