Frp remote access server in the network

External network access server has been very stable, so I want to buy a cheap external network remote access server + frp tool to achieve Ali server on the cloud.

 

Step 1: Basic steps, namely to achieve within frp remote access to network Windows computer, see:

https://blog.csdn.net/qazwsxrx/article/details/103992499

 

Step 2: 1, only needs to be installed on the server side frpc step, and written to the configuration file:

[common]
server_addr = 47.XXX.XX.XX
server_port = 7001
token=XXXXXX

[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 6060

And ./frpc -c ./frpc.ini start running

 

Step 3: Remote Access:

ssh -p 6060 [email protected]

 

Also winshffs complete file to mount, only need to change the port from 22 6060.

Published 47 original articles · won praise 11 · views 20000 +

Guess you like

Origin blog.csdn.net/qazwsxrx/article/details/103996655