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/labs/lab10_nodes.conf
Steffen Vogel abed592b9d Harmonize formatting and style of example configuration files
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2024-04-10 09:38:57 +02:00

80 lines
1.9 KiB
Text

# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
hugepages = 200
nodes = {
# Node names can be any alphanumeric value
rpi-1 = {
type = "socket"
layer = "udp"
format = "gtnet" # Pre-built format to communicate in RTDS GTNET-SKT payload
in = {
address = "*:12005" # VILLASnode machine IP and port number
signals = {
count = 8
type = "float"
}
hooks = (
{
type = "stats"
warmup = 3000
}
)
},
out = {
address = "192.168.0.5:12005" # Remote machine IP and port number
}
},
rpi-2 = {
type = "socket"
layer = "udp"
format = "gtnet" # Pre-built format to communicate in RTDS GTNET-SKT payload
in = {
address = "*:12006" # VILLASnode machine IP and port number
signals = {
count = 8
type = "float"
}
hooks = (
{
type = "stats"
warmup = 3000
}
)
}
out = {
address = "192.168.0.6:12006" # Remote machine IP and port number
}
},
rtds-1 = {
type = "socket"
layer = "udp"
format = "gtnet"
in = {
address = "*:12083" # VILLASnode machine IP and port number
signals = {
count = 8
type = "float"
}
hooks = (
{
type = "stats"
warmup = 3000
}
)
}
out = {
address = "192.168.0.4:12083" # Remote machine IP and port number
}
}
}