Set Up SSH Tunneling on a Linux / Unix / BSD Server To Bypass NAT
Here’s how you can set up SSH tunneling on a Linux/Unix/BSD server to bypass NAT (Network Address Translation): Connect to the remote server with ssh: ssh [user]@[remote_server_IP] -L [local_port]:[remote_server_IP]:[remote_port] For example, if you want to connect to a remote MySQL server running on remote_server_IP on port 3306, you would use the following command: ssh [user]@[remote_server_IP] … Read more