|
8 år sedan | |
---|---|---|
Godeps | 8 år sedan | |
conf | 8 år sedan | |
doc | 8 år sedan | |
src | 8 år sedan | |
test | 8 år sedan | |
vendor | 8 år sedan | |
.gitignore | 8 år sedan | |
.travis.yml | 8 år sedan | |
LICENSE | 9 år sedan | |
Makefile | 8 år sedan | |
Makefile.cross-compiles | 8 år sedan | |
README.md | 8 år sedan | |
README_zh.md | 8 år sedan | |
cross_compiles_package.sh | 8 år sedan |
frp is a fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. Now, it supports tcp, http and https protocol when requests can be forwarded by domains to backward web services.
frp is under development and you can try it with latest release version. Master branch for releasing stable version when dev branch for developing.
We may change any protocol and can't promise backward compatible. Please check the release log when upgrading.
Firstly, download the latest programs from Release page according to your os and arch.
Put frps and frps.ini to your server with public IP.
Put frpc and frpc.ini to your server in LAN.
Modify frps.ini, configure a reverse proxy named [ssh]:
# frps.ini
[common]
bind_port = 7000
[ssh]
listen_port = 6000
auth_token = 123
Start frps:
./frps -c ./frps.ini
Modify frpc.ini, set remote frps's server IP as x.x.x.x:
# frpc.ini
[common]
server_addr = x.x.x.x
server_port = 7000
auth_token = 123
[ssh]
local_port = 22
Start frpc:
./frpc -c ./frpc.ini
ssh -oPort=6000 test@x.x.x.x
Sometimes we want to expose a local web service behind a NAT network to others for testing with your own domain name and unfortunately we can't resolve a domain name to a local ip.
Howerver, we can expose a http or https service using frp.
Modify frps.ini, configure a http reverse proxy named [web] and set http port as 8080, custom domain as www.yourdomain.com
:
# frps.ini
[common]
bind_port = 7000
vhost_http_port = 8080
[web]
type = http
custom_domains = www.yourdomain.com
auth_token = 123
Start frps:
./frps -c ./frps.ini
Modify frpc.ini and set remote frps server's IP as x.x.x.x. The local_port
is the port of your web service:
# frpc.ini
[common]
server_addr = x.x.x.x
server_port = 7000
auth_token = 123
[web]
type = http
local_port = 80
Start frpc:
./frpc -c ./frpc.ini
Resolve A record of www.yourdomain.com
to IP x.x.x.x
or CNAME record to your origin domain.
Now visit your local web service using url http://www.yourdomain.com:8080
.
Check frp's status and proxies's statistics information by Dashboard.
Configure a port for dashboard to enable this feature:
[common]
dashboard_port = 7500
# dashboard's username and password are both optional,if not set, default is admin.
dashboard_username = abc
dashboard_password = abc
Then visit http://[server_addr]:7500
to see dashboard, default username and password are both admin
.
auth_token
in frps.ini is configured for each proxy and check for authentication when frpc login in.
Client that want's to register must set a global auth_token
equals to frps.ini.
Note that time duration bewtween frpc and frps mustn't exceed 15 minutes because timestamp is used for authentication.
Defalut value is false, you could decide if the proxy will use encryption or compression whether the type is:
# frpc.ini
[ssh]
type = tcp
listen_port = 6000
auth_token = 123
use_encryption = true
use_gzip = true
If your want to add a new reverse proxy and avoid restarting frps, you can use this function:
dashboard_port
should be set in frps.ini:
# frps.ini
[common]
bind_port = 7000
dashboard_port = 7500
Start frps:
./frps -c ./frps.ini
Modify frps.ini to add a new proxy [new_ssh]:
# frps.ini
[common]
bind_port = 7000
dashboard_port = 7500
[new_ssh]
listen_port = 6001
auth_token = 123
Execute reload
command:
./frps -c ./frps.ini --reload
Privilege mode is used for who don't want to do operations in frps everytime adding a new proxy.
All proxies's configurations are set in frpc.ini when privilege mode is enabled.
Enable privilege mode and set privilege_token
.Client with the same privilege_token
can create proxy automaticly:
# frps.ini
[common]
bind_port = 7000
privilege_mode = true
privilege_token = 1234
Start frps:
./frps -c ./frps.ini
Enable privilege mode for proxy [ssh]:
# frpc.ini
[common]
server_addr = x.x.x.x
server_port = 7000
privilege_token = 1234
[ssh]
privilege_mode = true
local_port = 22
remote_port = 6000
Start frpc:
./frpc -c ./frpc.ini
ssh -oPort=6000 test@x.x.x.x
privilege_allow_ports
in frps.ini is used for preventing abuse of ports in privilege mode:
# frps.ini
[common]
privilege_mode = true
privilege_token = 1234
privilege_allow_ports = 2000-3000,3001,3003,4000-50000
privilege_allow_ports
consists of a specific port or a range of ports divided by ,
.
By default, frps send message to frpc for create a new connection to backward service when getting an user request.If a proxy's connection pool is enabled, there will be a specified number of connections pre-established.
This feature is fit for a large number of short connections.
Configure the limit of pool count each proxy can use in frps.ini:
# frps.ini
[common]
max_pool_count = 50
Enable and specify the number of connection pool:
# frpc.ini
[ssh]
type = tcp
local_port = 22
pool_count = 10
When forwarding to a local port, frp does not modify the tunneled HTTP requests at all, they are copied to your server byte-for-byte as they are received. Some application servers use the Host header for determining which development site to display. For this reason, frp can rewrite your requests with a modified Host header. Use the host_header_rewrite
switch to rewrite incoming HTTP requests.
# frpc.ini
[web]
privilege_mode = true
type = http
local_port = 80
custom_domains = test.yourdomain.com
host_header_rewrite = dev.yourdomain.com
If host_header_rewrite
is specified, the Host header will be rewritten to match the hostname portion of the forwarding address.
Interested in getting involved? We would like to help you!
Note: We prefer you to give your advise in issues, so others with a same question can search it quickly and we don't need to answer them repeatly.