美文网首页
Ubuntu 使用 FRP 实现内网穿透

Ubuntu 使用 FRP 实现内网穿透

作者: 中華田園雞 | 来源:发表于2018-10-24 19:11 被阅读0次
image.png

DownLoad

wget https://github.com/fatedier/frp/releases/download/v0.13.0/frp_0.13.0_linux_amd64.tar.gz

frps.ini

 [common] 
   bind_addr = 0.0.0.0 
  bind_port = 7000 
  dashboard_port = 7500 
  #dashb  user name and password  can is null  default all is admin 
  dashboard_user = admin 
  dashboard_pwd = admin

frpc.ini

 [common]
 server_addr = 103.26.77.145
 server_port = 7000
 [ssh]
type = tcp
 local_ip = 127.0.0.1
 local_port = 22
 remote_port = 6000

start Server

frps -c ./frps.ini
frpc -c ./frpc.ini

参考:https://blog.csdn.net/lvshaorong/article/details/78248649?utm_source=blogxgwz1

相关文章

网友评论

      本文标题:Ubuntu 使用 FRP 实现内网穿透

      本文链接:https://www.haomeiwen.com/subject/tiwxtqtx.html