Create a ssh tunnel

ssh -f -L 9000:targetservername:8088 [email protected] -N
#-f: run in background; -L: Listen; -N: do nothing
#the 9000 of your computer is now connected to the 8088 port of the targetservername through 192.168.14.72
#so that you can see the content of targetservername:8088 by entering localhost:9000 from your browser.
click the source code to copy