This file documents the scenario file format.

# to start a section describing the nodes in the simulation
[nodes]

# node 1 has a clock offset of 5 milliseconds
1 offset 0.005

# nodes 2 and 3 have the default offset (0 seconds)
2
3

# to start a section describing how the nodes (aka bridges) are connected
[links]

# nodes 1 and 2 are connected with delay of 1 ms
1 2 delay 0.001 

# each line in the events section starts with the time when the event
# is to take place
[events]

# at 20 seconds, take down the link between nodes 2 and 3.  delay 5 ms
# before informing node 2 and 4 ms before informing node 3
20 linkdown nodeA 2 nodeB 3 delayA 0.005 delayB 0.004

# at 50 seconds, the simulation ends.  without this command, the
# simulation will run forever.
50 simend

