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

update loopback config example

This commit is contained in:
Steffen Vogel 2018-10-20 14:23:29 +02:00
parent 95eee40d16
commit 474010010a

View file

@ -55,11 +55,11 @@ nodes = {
layer = "udp",
in = {
address = "*:12000", # Local ip:port, use '*' for random port
address = "127.0.0.1:12000" # Local ip:port, use '*' for random port
}
out = {
address = "127.0.0.1:12001",
address = "127.0.0.1:12001"
netem = {
enabled = false,
delay = 1000000, # In micro seconds!
@ -72,20 +72,20 @@ nodes = {
type = "socket",
layer = "udp",
in = {
address = "*:12001", # Local ip:port, use '*' for random port
address = "127.0.0.1:12001" # Local ip:port, use '*' for random port
}
out = {
address = "127.0.0.1:12002",
address = "127.0.0.1:12002"
}
},
node3 = {
type = "socket",
layer = "udp",
in = {
address = "*:12002", # Local ip:port, use '*' for random port
address = "127.0.0.1:12002" # Local ip:port, use '*' for random port
}
out = {
address = "127.0.0.1:12000",
address = "127.0.0.1:12000"
}
},
loopback = {