Install and configure frp client or server on Windows, Linux or OpenWrt.
ansible-galaxy install bit_kitchen.frpc
ansible-galaxy install bit_kitchen.frps
None.
Variable | Required/Optional | Default | Comment |
---|---|---|---|
frpc_version | Optional | (undefined) | frp release version. Defaults to the latest version. |
frpc_config_name | Optional | (undefined) | Used for frpc config file name and frpc service name. |
frpc_config_file | Optional | (undefined) | Local config file to be copied to remote. If this is specified, the following options are not considered for frpc config. |
frpc_server_addr | Optional | 127.0.0.1 |
Server address for frpc. |
frpc_server_port | Optional | 7000 |
Server port for frpc. |
frpc_token | Optional | (undefined) | frp token used for authentication if specified on server. |
frpc_http_proxy | Optional | (undeinfed) | The proxy to use for connections to frp server. This option is also used as proxy for other network related operations. |
Variable | Required/Optional | Default | Comment |
---|---|---|---|
frps_version | Optional | (undefined) | frp release version. Defaults to the latest version. |
frps_config_name | Optional | (undefined) | Used for frps config file name and frps service name. |
frps_config_file | Optional | (undefined) | Local config file to be copied to remote. If this is specified, the following options are not considered for frps config. |
frps_bind_addr | Optional | 0.0.0.0 |
Bind address for frps. Defaults to listen on all interfaces. |
frps_bind_port | Optional | 7000 |
Bind port for frps. |
frps_token | Optional | (undefined) | frp token used for authentication. |
bit_kitchen.nssm
: (Required for Windows only) used for service creation on Windows.gekmihesg.openwrt
: (Required for OpenWrt only) used to support OpenWrt without Python.kewlfft.aur
: (Required for Arch Linux only) used for AUR support.
- hosts: servers
roles:
- bit_kitchen.frps
- hosts: clients
roles:
- bit_kitchen.frpc
- hosts: servers
roles:
- role: bit_kitchen.frps
frps_config_file: /path/to/my/frps.ini
- hosts: clients
roles:
- role: bit_kitchen.frpc
frpc_config_file: /path/to/my/frpc.ini
- hosts: servers
roles:
- role: bit_kitchen.frps
frps_bind_port: 7000
frps_token: MySecretToken
- hosts: clients
roles:
- role: bit_kitchen.frpc
frpc_server_addr: frp.example.com
frpc_token: MySecretToken
- hosts: servers
roles:
- role: bit_kitchen.frps
frps_config_name: server1
frps_config_file: /path/to/my/frps-1.ini
- role: bit_kitchen.frps
frps_config_name: server2
frps_config_file: /path/to/my/frps-2.ini
- hosts: clients
roles:
- role: bit_kitchen.frpc
frpc_config_name: client1
frpc_config_file: /path/to/my/frpc-1.ini
- role: bit_kitchen.frpc
frpc_config_name: client2
frpc_config_file: /path/to/my/frpc-2.ini