https://blog.csdn.net/lsjsoft/article/details/93397287
环境:
家里电脑(受控方),Windows系统,已安装VNC Server,并设置好密码,端口号默认为5900
一台云主机(服务器),Linux系统
配置步骤:
1、在服务器上安装FRP
地址:https://github.com/fatedier/frp/releases
下载&解压,在目录中找到frps.ini文件,配置如下:
[common]
bind_port = 7000
bind_addr = 0.0.0.0
然后建立一个start.sh文件,内容如下:
nohup ./frps >> log.log 2>&1 &
然后配置可执行:
chmod +x start.sh
./start.sh
2.在受控方安装FRP
地址:https://github.com/fatedier/frp/releases
下载&解压,在目录中找到frpc.ini文件,配置如下:
[common]
server_addr = 填服务器的IP
server_port = 7000
login_fail_exit = false
[range:VNC]
type = tcp
local_ip = 127.0.0.1
local_port = 5900
remote_port = 5900
然后同目录下新建一个bat文件,如下:
@echo off
pushd “%~dp0”
if “%1″==”h” goto begin
start mshta vbscript:createobject(“wscript.shell”).run(“””%~nx0″” h”,0)(window.close)&&exit
:begin
frpc.exe
popd
双击运行
给这个bat新建一个快捷方式,拷到开始菜单附件中的启动目录,这样开机后会自动启动,并且在后台隐藏运行,不干扰正常工作。