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

updated configuration files

git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@203 8ec27952-4edc-4aab-86aa-e87bb2611832
This commit is contained in:
Steffen Vogel 2014-09-04 13:30:38 +00:00
parent 184893aade
commit 2c1e3f4052
4 changed files with 46 additions and 8 deletions

View file

@ -1,20 +1,18 @@
# Example configuration file for the s2ss server
name = "s2ss"; # The name of this node
affinity = 0x02; # Mask of cores the server should run on
priority = 50; # Scheduler priority for the server
nodes = {
acs = {
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"
local = "127.0.0.1:12001", # Local ip:port, use '*' for random port
remote = "127.0.0.1:12000"
},
sintef = {
type = "rtds",
local = "127.0.0.1:10202",
remote = "127.0.0.1:10203",
local = "127.0.0.1:12002",
remote = "127.0.0.1:12003",
# Network emulation for single nodes
netem = {

View file

@ -4,8 +4,8 @@
nodes = {
node = {
local = "*:10201", # Local ip:port, use '*' for random port
remote = "127.0.0.1:10200"
local = "*:12001", # Local ip:port, use '*' for random port
remote = "127.0.0.1:12000"
}
};

20
server/etc/opal-test.conf Normal file
View file

@ -0,0 +1,20 @@
# This is an example for a minimal configuration
#
# All messages will be sent back to the origin.
affinity = 0xc0;
priority = 50;
nodes = {
opal = {
local = "*:12000", # Local ip:port, use '*' for random port
remote = "10.10.10.2:12001"
}
};
paths = (
{
in = "opal", # Name of the node we listen to (see above)
out = "opal" # And we loop back to the origin
}
);

20
server/etc/rtds-test.conf Normal file
View file

@ -0,0 +1,20 @@
# This is an example for a minimal configuration
#
# All messages will be sent back to the origin.
affinity = 0xc0;
priority = 50;
nodes = {
rtds = {
local = "*:12000", # Local ip:port, use '*' for random port
remote = "10.10.11.2:12000"
}
};
paths = (
{
in = "rtds", # Name of the node we listen to (see above)
out = "rtds", # And we loop back to the origin
}
);