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 1b1643834c Use spaces for indention of .conf files
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2024-02-29 23:18:47 +01: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" # villas node 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" # villas node 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" # villas node 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
}
}
}