1 #
2 # This is an example 'emruntab' that runs the UDP link driver, the
3 # neighbor discovery service, and then an application that uses the
4 # neighbor discovery service.
5 #
6 # As usual, cd into the obj.i686-linux directory before running emrun.
7 #
8
9 jitter {
10 type = boot;
11 cmd = "libdev/randsleep 1 50";
12 }
13
14 udpd {
15 type = daemon;
16 cmd = "link/udpd";
17 no-sim; # the simulator provides its own link-layer driver
18 }
19
20 neighbord {
21 type = daemon;
22 waitfor = udpd;
23 cmd = "link/neighbord -p 120000";
24 # loglevel = LOG_OFF;
25 # uncomment the line below if you want to see more detail
26 # about what the neighbor discovery app is doing
27
28 # loglevel = LOG_DEBUG(1);
29 }
30
31 flood {
32 type = daemon;
33 waitfor = udpd;
34 cmd = "routing/floodd";
35 # loglevel = LOG_CRIT;
36 }
37
38 glsd {
39 # type = daemon;
40 type = once;
41 waitfor = neighbord;
42 # cmd = "valgrind --leak-check=yes routing/glsd";
43 cmd = "routing/glsd";
44 # loglevel = LOG_NOTICE;
45 }
46
47
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.