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

27 lines
517 B
Text
Raw Permalink Normal View History

nodes = {
2019-03-25 21:17:34 +01:00
ethernet_node = {
type = "socket", # See above.
### The following settings are specific to the socket node-type!! ###
layer = "eth",
in = {
2020-09-10 17:35:35 +02:00
address = "12:34:56:78:90:AB%em1:12002"
},
out = {
2020-09-10 17:35:35 +02:00
address = "12:34:56:78:90:AB%em1:12002"
}
},
unix_domain_node = {
type = "socket",
layer = "unix", # Datagram UNIX domain sockets require two endpoints
in = {
address = "/var/run/villas-node/node.sock"
},
out = {
address = "/var/run/villas-node/client.sock"
}
}
}