mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ce9017e71b
Positions in the topology are handed out first come first serve. This makes it hard to have a reproducable setup if the ZEP dispatcher is restarted (e.g. to modify the topology). Fix this by allowing to specify a MAC address for each node. If a node with a pinned MAC address connects, it will always be assigned to the same topology node.
11 lines
331 B
Plaintext
11 lines
331 B
Plaintext
# uncomment to pin node A to a specific MAC address
|
|
# A := BA:7C:18:E4:C0:45:65:AF
|
|
|
|
# A and B are connected with an ideal link
|
|
A B
|
|
# A and C are connected with a symmetric link with 10% packet loss
|
|
A C 0.9
|
|
# B and C are on an asymmetric connection
|
|
# The path B -> C has 60% packet loss while C -> B has 30% packet loss
|
|
B C 0.4 0.7
|