forked from eclipse-zenoh/zenoh-plugin-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEFAULT_CONFIG.json5
96 lines (84 loc) · 3.33 KB
/
DEFAULT_CONFIG.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
////
//// This file presents the default configuration used by both the `zenoh-plugin-mqtt` plugin and the `zenoh-bridge-mqtt` standalone executable.
//// The "mqtt" JSON5 object below can be used as such in the "plugins" part of a config file for the zenoh router (zenohd).
////
{
plugins: {
////
//// MQTT related configuration
//// All settings are optional and are unset by default - uncomment the ones you want to set
////
mqtt: {
////
//// port: The address to bind the MQTT server. Default: "0.0.0.0:1883". Accepted values:'
//// - a port number ("0.0.0.0" will be used as IP to bind, meaning any interface of the host)
//// - a string with format `<local_ip>:<port_number>` (to bind the MQTT server to a specific interface).
////
// port: "0.0.0.0:1883",
////
//// scope: A string added as prefix to all routed MQTT topics when mapped to a zenoh resource.
//// This should be used to avoid conflicts when several distinct MQTT systems using
//// the same topics names are routed via zenoh.
////
// scope: "home-1",
////
//// allow: A regular expression matching the MQTT topic name that must be routed via zenoh. By default topics are allowed.
//// If both '--allow' and '--deny' are set a topic will be allowed if it matches only the 'allow' expression.
////
// allow: "zigbee2mqtt|home-1/room-2",
////
//// deny: A regular expression matching the MQTT topic name that must not be routed via zenoh. By default no topics are denied.
//// If both '--allow' and '--deny' are set a topic will be allowed if it matches only the 'allow' expression.
////
// deny: "zigbee2mqtt|home-1/room-2",
////
//// generalise_subs: A list of key expression to use for generalising subscriptions.
////
// generalise_subs: ["SUB1", "SUB2"],
////
//// generalise_subs: A list of key expression to use for generalising publications.
////
// generalise_subs: ["PUB1", "PUB2"],
},
////
//// REST API configuration (active only if this part is defined)
////
// rest: {
// ////
// //// The HTTP port number (for all network interfaces).
// //// You can bind on a specific interface setting a "<local_ip>:<port>" string.
// ////
// http_port: 8000,
// },
},
////
//// zenoh related configuration (see zenoh documentation for more details)
////
////
//// id: The identifier (as hex-string) that zenoh-bridge-mqtt must use. If not set, a random UUIDv4 will be used.
//// WARNING: this id must be unique in your zenoh network.
// id: "A00001",
////
//// mode: The bridge's mode (peer or client)
////
//mode: "client",
////
//// Which endpoints to connect to. E.g. tcp/localhost:7447.
//// By configuring the endpoints, it is possible to tell zenoh which router/peer to connect to at startup.
////
connect: {
endpoints: [
// "<proto>/<ip>:<port>"
]
},
////
//// Which endpoints to listen on. E.g. tcp/localhost:7447.
//// By configuring the endpoints, it is possible to tell zenoh which are the endpoints that other routers,
//// peers, or client can use to establish a zenoh session.
////
listen: {
endpoints: [
// "<proto>/<ip>:<port>"
]
},
}