內網穿透工具frp

2021-08-30 15:34:27 字數 1327 閱讀 2244

frp中文文件

對於沒有公網 ip 的內網使用者來說,遠端管理或在外網訪問內網機器上的服務是乙個問題。通常解決方案就是用內網穿透工具將內網的服務穿透到公網中,便於遠端管理和在外部訪問。

主要參考

檔案:frps.ini

[common]

bind_port = 7000

max_pool_count = 5

authentication_timeout = 9000

[web]

listen_port = 8081

auth_token = admin123

啟動命令

frps.exe -c frps.ini

檔案:frpc.ini

[common]

server_addr = xx.xx.xx.xx

server_port = 7000

auth_token = admin123

[web]

type = tcp

local_ip = localhost

local_port = 8080

remote_port = 8081

啟動命令

frpc.exe -c frpc.ini

檔案:frps.ini

[common]

bind_port = 7000

max_pool_count = 5

authentication_timeout = 9000

[web]

listen_port = 8081

auth_token = admin123

[webnexus]

listen_port = 8088

auth_token = admin123

檔案:frpc.ini

[common]

server_addr = xx.xx.xx.xx

server_port = 7000

auth_token = admin123

[ssh]

type = tcp

local_ip = 127.0.0.1

local_port = 22

remote_port = 8022

[webnexus]    # 這個是要跟frps的配置對應上的

type = tcp

local_ip = 127.0.0.1

local_port = 8888

remote_port = 8888  # 實際訪問時,是通過外網ip + remote_port 來訪問的

啟動命令

./frpc -c ./frpc.ini

frp 內網穿透工具

frp 內網穿透工具 frp 是乙個高效能的反向 應用,可以幫助您輕鬆地進行內網穿透,對外網提供服務,支援 tcp,http,https 等協議型別,並且 web 服務支援根據網域名稱進行路由 frp 的作用 利用處於內網或防火牆後的機器,對外網環境提供 http 或 https 服務。對於 htt...

內網穿透工具 frp

frp是乙個高效能的反向 應用,可以輕鬆地進行內網穿透,對外網提供服務,支援tcp,http,https等協議型別。本文僅介紹最基本的穿透功能,更多玩法還需自己去摸索。bind port 1000 儲存,開啟監聽 frps.exe c frps.ini common server addr 123....

內網穿透 frp工具使用

2.伺服器上啟動 frps 3.修改本地frpc.ini 檔案 4.本地啟動frpc 5.通過網域名稱訪問 總結 有時想要讓其他人通過網域名稱訪問或者測試我們在本地搭建的 web 服務,但是由於本地機器沒有公網 ip,無法將網域名稱解析到本地的機器,通過 frp 就可以實現這一功能。frp 是乙個可...