2025-01-14 14:42:39 +00:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-03-22 13:49:07 +01:00
|
|
|
nodes = {
|
2025-01-14 14:42:39 +00:00
|
|
|
mqtt_node = {
|
|
|
|
type = "mqtt",
|
|
|
|
|
|
|
|
format = "protobuf",
|
|
|
|
|
|
|
|
username = "guest",
|
|
|
|
password = "guest",
|
|
|
|
host = "localhost",
|
|
|
|
port = 1883,
|
|
|
|
|
|
|
|
# Send ping every 5 seconds to keep connection alive
|
|
|
|
keepalive = 5,
|
|
|
|
retain = false,
|
|
|
|
qos = 0,
|
2019-03-22 13:49:07 +01:00
|
|
|
|
2025-01-14 14:42:39 +00:00
|
|
|
out = {
|
|
|
|
publish = "test-topic"
|
|
|
|
},
|
|
|
|
in = {
|
|
|
|
subscribe = "test-topic"
|
|
|
|
},
|
|
|
|
ssl = {
|
|
|
|
enabled = false,
|
|
|
|
insecure = true,
|
|
|
|
cafile = "/etc/ssl/certs/ca-bundle.crt",
|
|
|
|
certfile = "/etc/ssl/certs/my.crt",
|
|
|
|
keyfile = "/etc/ssl/keys/my.key"
|
|
|
|
}
|
|
|
|
}
|
2019-03-22 13:49:07 +01:00
|
|
|
}
|