标签:访问 启动 frp href 安装 装包 linu rem 运行
https://github.com/fatedier/frp/ github地址(具有中文文档)# frps.ini
[common]
bind_addr=0.0.0.0 //本地IP
bind_port = 7000 //绑定本地服务端口
# start frps
./frps -c ./frps.ini & 指定配置文件后台运行启动
检查
ps -elf |grep frps
netstat -antulp | grep 7000
2,将frp_0.20.0_linux_amd64.tar.gz解开后的 frpc 及 frpc.ini 放到处于内网环境的机器上。
修改 frpc.ini 文件,假设 frps 所在服务器的公网 IP 为 x.x.x.x;
# frpc.ini
[common]
server_addr = x.x.x.x \\要跟server端地址保持一致
server_port = 7000 \\跟server端口保持一致
[ssh]
type = tcp \\使用的协议
local_ip = 127.0.0.1
local_port = 22 \\本地ssh的服务端口
remote_port = 6000 \\对外端口访问公网的此端口就相当于访问client的22端口
启动
./frpc -c ./frpc.ini & \\指定客户端配置文件后台运行
3,通过ssh访问内网服务器,假设用户名为 test
ssh -oPort=6000 test@x.x.x.x
标签:访问 启动 frp href 安装 装包 linu rem 运行
原文地址:http://blog.51cto.com/1014810/2132876