One common scenario where port forwarding is useful is where a process, like web server, is on a machine with no x-window/browser and it is not directly accessible from the machine running the browser, but an accessible "gateway" machine is available in between.
The following can be run on the "gateway" machine:
ssh <user>@<gateway-host> -L <port>:<destination-host>:<destination-port> -g -N
As long as this process is running, gateway-host:port will show the content from <destination-host>:<destination-port>.
No comments:
Post a Comment