Add example config
This commit is contained in:
parent
e23822c940
commit
24854ce5b5
1 changed files with 28 additions and 0 deletions
28
examples/babel_test.mmss
Normal file
28
examples/babel_test.mmss
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
protocol "babel" load "./libmmss_proto_babel.so" default;
|
||||||
|
|
||||||
|
network "net0" {
|
||||||
|
etx min 1.0 max 5.0 sine period 15m;
|
||||||
|
}
|
||||||
|
|
||||||
|
network "net1" {
|
||||||
|
etx min 1.0 max 5.0 sine period 15m phase 5m;
|
||||||
|
}
|
||||||
|
|
||||||
|
network "net2" {
|
||||||
|
etx min 1.0 max 5.0 sine period 15m phase 10m;
|
||||||
|
}
|
||||||
|
|
||||||
|
node "node1" {
|
||||||
|
interface "mmss1.0" network "net0" address 00:00:00:00:00:00:00:10;
|
||||||
|
interface "mmss1.1" network "net1" address 00:00:00:00:00:00:00:11;
|
||||||
|
}
|
||||||
|
|
||||||
|
node "node2" {
|
||||||
|
interface "mmss2.1" network "net1" address 00:00:00:00:00:00:00:21;
|
||||||
|
interface "mmss2.2" network "net2" address 00:00:00:00:00:00:00:22;
|
||||||
|
}
|
||||||
|
|
||||||
|
node "node3" {
|
||||||
|
interface "mmss3.2" network "net2" address 00:00:00:00:00:00:00:32;
|
||||||
|
interface "mmss3.0" network "net0" address 00:00:00:00:00:00:00:30;
|
||||||
|
}
|
Reference in a new issue