SSH Proxy Command
1
Step 1
Start your service on the instance (for example, if your service is listening on port 6006, use 6006 as an example below).
2
Step 2
Execute the proxy command in the terminal on your local computer (cmd/powershell/terminal, etc.):Replace 
bash
root@123.125.240.150 and 42151 with the access address and port of the SSH command for your instance, respectively. 6006:127.0.0.1:6006 means proxying port 6006 inside the instance to port 6006 on your local machine.It is normal to see no logs after executing this SSH command, as long as it does not prompt you to re-enter your password or exit with an error.If you are using cmd/powershell on Windows and are repeatedly prompted for a password error, it may be due to an issue with pasting the password. Try entering the password manually (the password will not be displayed as you type it, which is normal).

3
Step 3
Access the service by visiting http://127.0.0.1:6006 in your local web browser. Make sure that the port number 
6006 matches the port used in the command 6006:127.0.0.1:6006.
Common Issues
Where to Obtain SSH Command?
Errors when running SSH proxy on Windows?
There are generally two types of errors:First type:
- Solution: Change the permissions of the
C:\\Users\\Administrator/.ssh/id_rsafile mentioned in the error message to read-only for the owner.
Second type:
- Solution: Remove the
C:\\Users\\Administrator\\.ssh\\configfile or change its permissions to be read-only for the owner.
What do the parameters means?
Copy the SSH command in the following format:ssh -p 48332 root@region-3.gpuhub.com. In the command, the meanings of the parameters are as follows:
- Username:
root - Host:
region-3.gpuhub.com - Port Number:
48332
ssh -CNg -L 6006:127.0.0.1:6006 root@region-3.gpuhub.com -p 48332