内网穿透 frp入门
程序员文章站
2024-02-23 17:22:04
...
简单说明
frp网址
frp可以进行内网穿透,基于Go语言。前提是需要一个有公网ip的服务器端。内网中的机器为客户端。
如果需要进行http应用部署,那么必须要有已经备案的域名。
frp的配置
frpc.ini
[common]
server_addr = xx.xx.xx.xx
server_port = 7000
[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 6000 # 用于ssh的端口
[web]
type = http
local_ip = 127.0.0.1
local_port = 8080
remote_port = 8081 # 用于http的端口
custom_domains = www.xx.xx
frps.ini
[common]
bind_port = 7000 # 建立frp连接
vhost_http_port = 8081
frp的运行
# server端
./frps -c ./frps.ini
# client端
./frpc -c ./frpc.ini
# 如果要后台运行
nohup ./frps -c ./frps.ini &
nohup ./frpc -c ./frpc.ini &
frp的使用
ssh
ssh -oPort=6000 [email protected]
或者
在~/.ssh/config中增加
Host apac
HostName xx.xx.xx.xx
User root
Port 6000
那么, ssh apac就好。 前提是ssh-copy-id
。
web
根据域名和端口对网页进行访问
上一篇: Linux命令:grep详解
下一篇: Linux命令之grep