mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@101 8ec27952-4edc-4aab-86aa-e87bb2611832
24 lines
652 B
Text
24 lines
652 B
Text
# A simple example configuration for loopback testing
|
|
|
|
name = "server"; # The name of this node
|
|
|
|
affinity = 0x02; # Mask of cores the server should run on
|
|
priority = 50; # Scheduler priority for the server
|
|
|
|
nodes = {
|
|
node = {
|
|
id = 1, # Device ID
|
|
type = "opal", # server, workstation, opal, rtds or dsp
|
|
local = "127.0.0.1:10201", # Local ip:port, use '*' for random port
|
|
remote = "127.0.0.1:10200"
|
|
}
|
|
};
|
|
|
|
paths = (
|
|
{
|
|
enabled = true, # Enable this path
|
|
reverse = false, # Setup a path in the reverse direction too
|
|
in = "node", # Name of the node we listen to (see above)
|
|
out = "node" # And we loop back to the origin
|
|
}
|
|
);
|