mirror of
https://github.com/yhl452493373/frps-panel.git
synced 2026-04-04 06:16:59 +08:00
e4d1caa4b9be3c509e5244cf1a26e81a3f240d90
frps-multiuser
frp server plugin to support multiple users for frp.
frps-multiuser will run as one single process and accept HTTP requests from frps.
update notes
- the default tokens file is frps-multiuser.ini now,ini file support comment
- remove
-l,it configure infrps-multiuser.ininow - change
-fto-c,the same asfrps - if [users] section is empty,the authentication will only be handle by frps
- if user under [disabled] section ,and the value is
disable, it means that user is be disabled, and can not connect to server - add a manage ui, and change color mode base on browser
- you can dynamic
add,remove,disableorenableuser now - you can limit
ports,domainsandsubdomainsfor each user now
when a user is dynamic been remove or disable,it will take some time to be effective
the limit of ports、domains、subdomains only effective at NewProxy
Features
- Support multiple user authentication by tokens saved in file.
- Support dynamic
add,remove,disableorenableuser - Limit
ports,domainsandsubdomainsfor each user
Download
Download frps-multiuser binary file from Release.
Requirements
frp version >= v0.31.0
Usage
- Create file
frps-multiuser.iniincluding all support usernames and tokens.
[common]
;plugin listen ip
plugin_addr = 127.0.0.1
;plugin listen port
plugin_port = 7200
;the username of manage ui,optional
admin_user = admin
;the password of manage ui,optional
admin_pwd = admin
[users]
;user user1 with meta_token 123
user1 = 123
;user user2 with meta_token abc
user2 = abc
[ports]
;user1 can only use ports 8080,9090 to 9010 ,other ports will fail to create proxy (frpc can normally startup)
user1=8080,9090-9010
[domains]
;user1 can only use domain web01.user1.com ,other domain will fail to create proxy (frpc can normally startup)
user1=web01.user1.com
[subdomains]
;user1 can only use subdomain web01 ,other subdomain will fail to create proxy (frpc can normally startup)
user1=web01
[disabled]
;user2 is disabled,when frpc use this user to connect with frps,if frpc is not startup,it cannot startup,if it's already startup,it will always show error logs on console
user2 = disable
One user each line. Username and token are split by =.
-
Run frps-multiuser:
./frps-multiuser -c ./frps-multiuser.ini -
Register plugin in frps.
# frps.ini
[common]
bind_port = 7000
[plugin.multiuser]
addr = 127.0.0.1:7200
path = /handler
ops = Login,NewWorkConn,NewUserConn,NewProxy,Ping
-
Specify username and meta_token in frpc configure file.
For user1:
# frpc.ini
[common]
server_addr = x.x.x.x
server_port = 7000
user = user1
meta_token = 123
[ssh]
type = tcp
local_port = 22
remote_port = 8080
For user2:(user2 cannot connect to server,because it is disabled)
# frpc.ini
[common]
server_addr = x.x.x.x
server_port = 7000
user = user2
meta_token = abc
[ssh]
type = tcp
local_port = 22
remote_port = 6000
Issues & Ideas
If you have any issues or ideas, put it on issues. I will try my best to achieve it.
Credits
Description
frps-panel 是 https://github.com/fatedier/frp 的一个服务端插件,用于支持多用户鉴权,同时用于展示服务器信息。
Languages
CSS
34.9%
Go
27.4%
JavaScript
24.9%
HTML
12.2%
Shell
0.4%
Other
0.2%



