1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/etc/examples/nodes/zeromq.conf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.2 KiB
Text
Raw Permalink Normal View History

2019-03-26 14:02:12 +01:00
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
2022-03-24 14:10:10 +01:00
# SPDX-License-Identifier: Apache-2.0
nodes = {
zeromq_node = {
type = "zeromq"
# The ZeroMQ pattern. One of pubsub, radiodish
pattern = "pubsub"
# Enable IPv6 support
ipv6 = false
# Z85 encoded Curve25519 keys
curve = {
enabled = false,
public_key = "Veg+Q.V-c&1k>yVh663gQ^7fL($y47gybE-nZP1L"
secret_key = "HPY.+mFuB[jGs@(zZr6$IZ1H1dZ7Ji*j>oi@O?Pc"
}
in = {
# The subscribe endpoint
# See http://api.zeromq.org/2-1:zmq-bind for details
subscribe = "tcp://*:1234"
# A filter which is prefix matched for each received msg
filter = "ab184"
}
out = {
# The publish endpoints
# See http://api.zeromq.org/2-1:zmq-connect for details
publish = [
"tcp://localhost:1235",
"tcp://localhost:12444"
]
# A prefix which is pre-pended to each message
filter = "ab184"
}
}
}