mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
update doc
This commit is contained in:
parent
fca7f42b37
commit
66120fe49d
99
README.md
99
README.md
@ -18,6 +18,8 @@ frp is a fast reverse proxy to help you expose a local server behind a NAT or fi
|
|||||||
* [Access your computer in LAN by SSH](#access-your-computer-in-lan-by-ssh)
|
* [Access your computer in LAN by SSH](#access-your-computer-in-lan-by-ssh)
|
||||||
* [Visit your web service in LAN by custom domains](#visit-your-web-service-in-lan-by-custom-domains)
|
* [Visit your web service in LAN by custom domains](#visit-your-web-service-in-lan-by-custom-domains)
|
||||||
* [Forward DNS query request](#forward-dns-query-request)
|
* [Forward DNS query request](#forward-dns-query-request)
|
||||||
|
* [Forward unix domain socket](#forward-unix-domain-socket)
|
||||||
|
* [Connect website through frpc's network](#connect-website-through-frpcs-network)
|
||||||
* [Features](#features)
|
* [Features](#features)
|
||||||
* [Dashboard](#dashboard)
|
* [Dashboard](#dashboard)
|
||||||
* [Authentication](#authentication)
|
* [Authentication](#authentication)
|
||||||
@ -32,10 +34,12 @@ frp is a fast reverse proxy to help you expose a local server behind a NAT or fi
|
|||||||
* [Custom subdomain names](#custom-subdomain-names)
|
* [Custom subdomain names](#custom-subdomain-names)
|
||||||
* [URL routing](#url-routing)
|
* [URL routing](#url-routing)
|
||||||
* [Connect frps by HTTP PROXY](#connect-frps-by-http-proxy)
|
* [Connect frps by HTTP PROXY](#connect-frps-by-http-proxy)
|
||||||
|
* [Plugin](#plugin)
|
||||||
* [Development Plan](#development-plan)
|
* [Development Plan](#development-plan)
|
||||||
* [Contributing](#contributing)
|
* [Contributing](#contributing)
|
||||||
* [Donation](#donation)
|
* [Donation](#donation)
|
||||||
* [AliPay](#alipay)
|
* [AliPay](#alipay)
|
||||||
|
* [Wechat Pay](#wechat-pay)
|
||||||
* [Paypal](#paypal)
|
* [Paypal](#paypal)
|
||||||
|
|
||||||
<!-- vim-markdown-toc -->
|
<!-- vim-markdown-toc -->
|
||||||
@ -143,7 +147,7 @@ However, we can expose a http or https service using frp.
|
|||||||
|
|
||||||
### Forward DNS query request
|
### Forward DNS query request
|
||||||
|
|
||||||
1. Modify frps.ini, configure a reverse proxy named [dns]:
|
1. Modify frps.ini:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
# frps.ini
|
# frps.ini
|
||||||
@ -178,6 +182,69 @@ However, we can expose a http or https service using frp.
|
|||||||
|
|
||||||
`dig @x.x.x.x -p 6000 www.goolge.com`
|
`dig @x.x.x.x -p 6000 www.goolge.com`
|
||||||
|
|
||||||
|
### Forward unix domain socket
|
||||||
|
|
||||||
|
Using tcp port to connect unix domain socket like docker daemon.
|
||||||
|
|
||||||
|
1. Modify frps.ini:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frps.ini
|
||||||
|
[common]
|
||||||
|
bind_port = 7000
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Start frps:
|
||||||
|
|
||||||
|
`./frps -c ./frps.ini`
|
||||||
|
|
||||||
|
3. Modify frpc.ini:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[common]
|
||||||
|
server_addr = x.x.x.x
|
||||||
|
server_port = 7000
|
||||||
|
|
||||||
|
[unix_domain_socket]
|
||||||
|
type = tcp
|
||||||
|
remote_port = 6000
|
||||||
|
plugin = unix_domain_socket
|
||||||
|
plugin_unix_path = /var/run/docker.sock
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Start frpc:
|
||||||
|
|
||||||
|
`./frpc -c ./frpc.ini`
|
||||||
|
|
||||||
|
5. Get docker version by curl command:
|
||||||
|
|
||||||
|
`curl http://x.x.x.x:6000/version`
|
||||||
|
|
||||||
|
### Connect website through frpc's network
|
||||||
|
|
||||||
|
Configure frps same as above.
|
||||||
|
|
||||||
|
1. Modify frpc.ini:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[common]
|
||||||
|
server_addr = x.x.x.x
|
||||||
|
server_port = 7000
|
||||||
|
|
||||||
|
[http_proxy]
|
||||||
|
type = tcp
|
||||||
|
remote_port = 6000
|
||||||
|
plugin = http_proxy
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Start frpc:
|
||||||
|
|
||||||
|
`./frpc -c ./frpc.ini`
|
||||||
|
|
||||||
|
5. Set http proxy `x.x.x.x:6000` in your browser and visit website through frpc's network.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
### Dashboard
|
### Dashboard
|
||||||
@ -360,20 +427,42 @@ frpc can connect frps using HTTP PROXY if you set os environment `HTTP_PROXY` or
|
|||||||
|
|
||||||
```ini
|
```ini
|
||||||
# frpc.ini
|
# frpc.ini
|
||||||
|
[common]
|
||||||
server_addr = x.x.x.x
|
server_addr = x.x.x.x
|
||||||
server_port = 7000
|
server_port = 7000
|
||||||
http_proxy = http://user:pwd@192.168.1.128:8080
|
http_proxy = http://user:pwd@192.168.1.128:8080
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Plugin
|
||||||
|
|
||||||
|
frpc only forward request to local tcp or udp port by default.
|
||||||
|
|
||||||
|
Plugin is used for providing rich features. There are built-in plugins such as **unix_domain_socket**, **http_proxy** and you can see [example usage](#example-usage).
|
||||||
|
|
||||||
|
Specify which plugin to use by `plugin` parameter. Configuration parameters of plugin should be started with `plugin_`. `local_ip` and `local_port` is useless for plugin.
|
||||||
|
|
||||||
|
Using plugin **http_proxy**:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[http_proxy]
|
||||||
|
type = tcp
|
||||||
|
remote_port = 6000
|
||||||
|
plugin = http_proxy
|
||||||
|
plugin_http_user = abc
|
||||||
|
plugin_http_passwd = abc
|
||||||
|
```
|
||||||
|
|
||||||
|
`plugin_http_user` and `plugin_http_passwd` are configuration parameters used in `http_proxy` plugin.
|
||||||
|
|
||||||
|
|
||||||
## Development Plan
|
## Development Plan
|
||||||
|
|
||||||
* Log http request information in frps.
|
* Log http request information in frps.
|
||||||
* Direct reverse proxy, like haproxy.
|
* Direct reverse proxy, like haproxy.
|
||||||
* Load balance to different service in frpc.
|
* Load balance to different service in frpc.
|
||||||
* Frpc can directly be a webserver for static files.
|
* Frpc can directly be a webserver for static files.
|
||||||
* Full control mode, dynamically modify frpc's configure with dashboard in frps.
|
|
||||||
* P2p communicate by make udp hole to penetrate NAT.
|
* P2p communicate by make udp hole to penetrate NAT.
|
||||||
* Client Plugin (http proxy).
|
|
||||||
* kubernetes ingress support.
|
* kubernetes ingress support.
|
||||||
|
|
||||||
|
|
||||||
@ -398,6 +487,10 @@ frp QQ group: 606194980
|
|||||||
|
|
||||||
![donation-alipay](/doc/pic/donate-alipay.png)
|
![donation-alipay](/doc/pic/donate-alipay.png)
|
||||||
|
|
||||||
|
### Wechat Pay
|
||||||
|
|
||||||
|
![donation-wechatpay](/doc/pic/donate-wechatpay.png)
|
||||||
|
|
||||||
### Paypal
|
### Paypal
|
||||||
|
|
||||||
Donate money by [paypal](https://www.paypal.me/fatedier) to my account **fatedier@gmail.com**.
|
Donate money by [paypal](https://www.paypal.me/fatedier) to my account **fatedier@gmail.com**.
|
||||||
|
98
README_zh.md
98
README_zh.md
@ -16,6 +16,8 @@ frp 是一个可用于内网穿透的高性能的反向代理应用,支持 tcp
|
|||||||
* [通过 ssh 访问公司内网机器](#通过-ssh-访问公司内网机器)
|
* [通过 ssh 访问公司内网机器](#通过-ssh-访问公司内网机器)
|
||||||
* [通过自定义域名访问部署于内网的 web 服务](#通过自定义域名访问部署于内网的-web-服务)
|
* [通过自定义域名访问部署于内网的 web 服务](#通过自定义域名访问部署于内网的-web-服务)
|
||||||
* [转发 DNS 查询请求](#转发-dns-查询请求)
|
* [转发 DNS 查询请求](#转发-dns-查询请求)
|
||||||
|
* [转发 Unix域套接字](#转发-unix域套接字)
|
||||||
|
* [通过 frpc 所在机器访问外网](#通过-frpc-所在机器访问外网)
|
||||||
* [功能说明](#功能说明)
|
* [功能说明](#功能说明)
|
||||||
* [Dashboard](#dashboard)
|
* [Dashboard](#dashboard)
|
||||||
* [身份验证](#身份验证)
|
* [身份验证](#身份验证)
|
||||||
@ -30,10 +32,12 @@ frp 是一个可用于内网穿透的高性能的反向代理应用,支持 tcp
|
|||||||
* [自定义二级域名](#自定义二级域名)
|
* [自定义二级域名](#自定义二级域名)
|
||||||
* [URL 路由](#url-路由)
|
* [URL 路由](#url-路由)
|
||||||
* [通过代理连接 frps](#通过代理连接-frps)
|
* [通过代理连接 frps](#通过代理连接-frps)
|
||||||
|
* [插件](#插件)
|
||||||
* [开发计划](#开发计划)
|
* [开发计划](#开发计划)
|
||||||
* [为 frp 做贡献](#为-frp-做贡献)
|
* [为 frp 做贡献](#为-frp-做贡献)
|
||||||
* [捐助](#捐助)
|
* [捐助](#捐助)
|
||||||
* [支付宝扫码捐赠](#支付宝扫码捐赠)
|
* [支付宝扫码捐赠](#支付宝扫码捐赠)
|
||||||
|
* [微信支付捐赠](#微信支付捐赠)
|
||||||
* [Paypal 捐赠](#paypal-捐赠)
|
* [Paypal 捐赠](#paypal-捐赠)
|
||||||
|
|
||||||
<!-- vim-markdown-toc -->
|
<!-- vim-markdown-toc -->
|
||||||
@ -179,6 +183,71 @@ DNS 查询请求通常使用 UDP 协议,frp 支持对内网 UDP 服务的穿
|
|||||||
|
|
||||||
`dig @x.x.x.x -p 6000 www.goolge.com`
|
`dig @x.x.x.x -p 6000 www.goolge.com`
|
||||||
|
|
||||||
|
### 转发 Unix域套接字
|
||||||
|
|
||||||
|
通过 tcp 端口访问内网的 unix域套接字(和 docker daemon 通信)。
|
||||||
|
|
||||||
|
1. 修改 frps.ini 文件:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frps.ini
|
||||||
|
[common]
|
||||||
|
bind_port = 7000
|
||||||
|
```
|
||||||
|
|
||||||
|
2. 启动 frps:
|
||||||
|
|
||||||
|
`./frps -c ./frps.ini`
|
||||||
|
|
||||||
|
3. 修改 frpc.ini 文件,启用 unix_domain_socket 插件:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[common]
|
||||||
|
server_addr = x.x.x.x
|
||||||
|
server_port = 7000
|
||||||
|
|
||||||
|
[unix_domain_socket]
|
||||||
|
type = tcp
|
||||||
|
remote_port = 6000
|
||||||
|
plugin = unix_domain_socket
|
||||||
|
plugin_unix_path = /var/run/docker.sock
|
||||||
|
```
|
||||||
|
|
||||||
|
4. 启动 frpc:
|
||||||
|
|
||||||
|
`./frpc -c ./frpc.ini`
|
||||||
|
|
||||||
|
5. 通过 curl 命令查看 docker 版本信息
|
||||||
|
|
||||||
|
`curl http://x.x.x.x:6000/version`
|
||||||
|
|
||||||
|
### 通过 frpc 所在机器访问外网
|
||||||
|
|
||||||
|
frpc 内置了 http proxy 插件,可以使其他机器通过 frpc 的网络访问互联网。
|
||||||
|
|
||||||
|
frps 的部署步骤同上。
|
||||||
|
|
||||||
|
1. 修改 frpc.ini 文件,启用 http_proxy 插件:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[common]
|
||||||
|
server_addr = x.x.x.x
|
||||||
|
server_port = 7000
|
||||||
|
|
||||||
|
[http_proxy]
|
||||||
|
type = tcp
|
||||||
|
remote_port = 6000
|
||||||
|
plugin = http_proxy
|
||||||
|
```
|
||||||
|
|
||||||
|
4. 启动 frpc:
|
||||||
|
|
||||||
|
`./frpc -c ./frpc.ini`
|
||||||
|
|
||||||
|
5. 浏览器设置 http 代理地址为 `x.x.x.x:6000`,通过 frpc 机器的网络访问互联网。
|
||||||
|
|
||||||
## 功能说明
|
## 功能说明
|
||||||
|
|
||||||
### Dashboard
|
### Dashboard
|
||||||
@ -375,11 +444,34 @@ locations = /news,/about
|
|||||||
|
|
||||||
```ini
|
```ini
|
||||||
# frpc.ini
|
# frpc.ini
|
||||||
|
[common]
|
||||||
server_addr = x.x.x.x
|
server_addr = x.x.x.x
|
||||||
server_port = 7000
|
server_port = 7000
|
||||||
http_proxy = http://user:pwd@192.168.1.128:8080
|
http_proxy = http://user:pwd@192.168.1.128:8080
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### 插件
|
||||||
|
|
||||||
|
默认情况下,frpc 只会转发请求到本地 tcp 或 udp 端口。
|
||||||
|
|
||||||
|
插件模式是为了在客户端提供更加丰富的功能,目前内置的插件有 **unix_domain_socket**、**http_proxy**。具体使用方式请查看[使用示例](#使用示例)。
|
||||||
|
|
||||||
|
通过 `plugin` 指定需要使用的插件,插件的配置参数都以 `plugin_` 开头。使用插件后 `local_ip` 和 `local_port 不再需要配置。
|
||||||
|
|
||||||
|
使用 **http_proxy** 插件的示例:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[http_proxy]
|
||||||
|
type = tcp
|
||||||
|
remote_port = 6000
|
||||||
|
plugin = http_proxy
|
||||||
|
plugin_http_user = abc
|
||||||
|
plugin_http_passwd = abc
|
||||||
|
```
|
||||||
|
|
||||||
|
`plugin_http_user` 和 `plugin_http_passwd` 即为 `http_proxy` 插件可选的配置参数。
|
||||||
|
|
||||||
## 开发计划
|
## 开发计划
|
||||||
|
|
||||||
计划在后续版本中加入的功能与优化,排名不分先后,如果有其他功能建议欢迎在 [issues](https://github.com/fatedier/frp/issues) 中反馈。
|
计划在后续版本中加入的功能与优化,排名不分先后,如果有其他功能建议欢迎在 [issues](https://github.com/fatedier/frp/issues) 中反馈。
|
||||||
@ -388,9 +480,7 @@ http_proxy = http://user:pwd@192.168.1.128:8080
|
|||||||
* frps 支持直接反向代理,类似 haproxy。
|
* frps 支持直接反向代理,类似 haproxy。
|
||||||
* frpc 支持负载均衡到后端不同服务。
|
* frpc 支持负载均衡到后端不同服务。
|
||||||
* frpc 支持直接作为 webserver 访问指定静态页面。
|
* frpc 支持直接作为 webserver 访问指定静态页面。
|
||||||
* frpc 完全控制模式,通过 dashboard 对 frpc 进行在线操作。
|
|
||||||
* 支持 udp 打洞的方式,提供两边内网机器直接通信,流量不经过服务器转发。
|
* 支持 udp 打洞的方式,提供两边内网机器直接通信,流量不经过服务器转发。
|
||||||
* 支持 plugin,frpc 获取到的连接可以交给指定 plugin 处理,例如 http 代理,简单的 web server。
|
|
||||||
* 集成对 k8s 等平台的支持。
|
* 集成对 k8s 等平台的支持。
|
||||||
|
|
||||||
## 为 frp 做贡献
|
## 为 frp 做贡献
|
||||||
@ -416,6 +506,10 @@ frp 交流群:606194980 (QQ 群号)
|
|||||||
|
|
||||||
![donate-alipay](/doc/pic/donate-alipay.png)
|
![donate-alipay](/doc/pic/donate-alipay.png)
|
||||||
|
|
||||||
|
### 微信支付捐赠
|
||||||
|
|
||||||
|
![donate-wechatpay](/doc/pic/donate-wechatpay.png)
|
||||||
|
|
||||||
### Paypal 捐赠
|
### Paypal 捐赠
|
||||||
|
|
||||||
海外用户推荐通过 [Paypal](https://www.paypal.me/fatedier) 向我的账户 **fatedier@gmail.com** 进行捐赠。
|
海外用户推荐通过 [Paypal](https://www.paypal.me/fatedier) 向我的账户 **fatedier@gmail.com** 进行捐赠。
|
||||||
|
BIN
doc/pic/donate-wechatpay.png
Normal file
BIN
doc/pic/donate-wechatpay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
Loading…
Reference in New Issue
Block a user