ssh tunnel - How to connect to production machine using SSH -
how connect production machine using ssh tunnel? has few blocked ports connect development box , debug it.
use following command
ssh -n -v -l<local_port>:<production_machine>:<production_port> <production_machine>
e.g) ssh -n -v -l2047:my-production-server.com:8000 my-production-server.com
Comments
Post a Comment