Router¶
Dynamic configuration
Router supports dynamic configuration via Web API.
Limitation
Router currently can only be used in TUN device.
A router is composed of a routing table. Each routing item is a mapping from the target network to the gateway. Traffic is routed through the router in the TUN device.
Data Source¶
Router can configure multiple data sources, currently supported data sources are: inline, file, redis.
Inline¶
An inline data source means setting the data directly in the configuration file via the routes
options.
routers:
- name: router-0
routes:
- net: 192.168.1.0/24
gateway: 192.168.123.2
- net: 172.10.0.0/16
gateway: 192.168.123.3
File¶
Specify an external file as the data source. Specify the file path via the file.path
property.
The file format is mapping items separated by lines, each line is an net-gateway pair separated by spaces, and the part starting with #
is the comment information.
Redis¶
Specify the redis service as the data source, and the redis data type can be Hash or Set.
routers:
- name: router-0
redis:
addr: 127.0.0.1:6379
db: 1
username: user
password: 123456
key: gost:routers:router-0
type: hash
addr
(string, required)- redis addr.
db
(int, default=0)- database name.
username
(string)- username.
password
(string)- password.
key
(string, default=gost)- redis key.
type
(string, default=hash)- data type:
hash
orset
.
> HGETALL gost:routers:router-0
1) "192.168.1.0/24"
2) "192.168.123.2"
3) "172.10.0.0/16"
4) "192.168.123.3"
HTTP¶
Specify an HTTP service as the data source. For the requested URL, if the HTTP status code is 200, it is considered valid, and the returned data format is the same as that of the file data source.
url
(string, required)- request URL.
timeout
(duration, default=0)- request timeout.
Priority¶
When configuring multiple data sources at the same time, the priority from high to low is: HTTP, redis, file, inline.
Hot Reload¶
File, redis, HTTP data sources support hot reloading. Enable hot loading by setting the reload
option, which specifies the period for synchronizing the data source data.
routers:
- name: router-0
reload: 10s
file:
path: /path/to/file
redis:
addr: 127.0.0.1:6379
db: 1
password: 123456
key: gost:routers:router-0
http:
url: http://127.0.0.1:8000
timeout: 10s
Plugin¶
Router can be configured to use an external plugin service, and it will forward the request to the plugin server for processing. Other parameters are invalid when using plugin.
routers:
- name: router-0
plugin:
type: grpc
addr: 127.0.0.1:8000
tls:
secure: false
serverName: example.com
type
(string, default=grpc)- plugin type:
grpc
,http
. addr
(string, required)- plugin server address.
tls
(object, default=null)- TLS encryption will be used for transmission, TLS encryption is not used by default.