1
1
# This file tells the frr package which daemons to start.
2
2
#
3
- # Entries are in the format: <daemon>=(yes|no|priority)
4
- # 0, "no" = disabled
5
- # 1, "yes" = highest priority
6
- # 2 .. 10 = lower priorities
7
- # Read /usr/share/doc/frr/README.Debian for details.
8
- #
9
3
# Sample configurations for these daemons can be found in
10
4
# /usr/share/doc/frr/examples/.
11
5
#
18
12
# When using "vtysh" such a config file is also needed. It should be owned by
19
13
# group "frrvty" and set to ug=rw,o= though. Check /etc/pam.d/frr, too.
20
14
#
21
- # The watchfrr daemon is always started. Per default in monitoring-only but
22
- # that can be changed via /etc/frr/daemons.conf.
15
+ # The watchfrr and zebra daemons are always started.
23
16
#
24
- zebra=yes
25
17
bgpd=yes
26
18
ospfd=no
27
19
ospf6d=no
@@ -34,3 +26,40 @@ nhrpd=no
34
26
eigrpd=no
35
27
babeld=no
36
28
sharpd=no
29
+ pbrd=no
30
+ bfdd=no
31
+ fabricd=no
32
+
33
+ #
34
+ # If this option is set the /etc/init.d/frr script automatically loads
35
+ # the config via "vtysh -b" when the servers are started.
36
+ # Check /etc/pam.d/frr if you intend to use "vtysh"!
37
+ #
38
+ vtysh_enable=yes
39
+ zebra_options=" -A 127.0.0.1 -s 90000000"
40
+ bgpd_options=" -A 127.0.0.1"
41
+ ospfd_options=" -A 127.0.0.1"
42
+ ospf6d_options=" -A ::1"
43
+ ripd_options=" -A 127.0.0.1"
44
+ ripngd_options=" -A ::1"
45
+ isisd_options=" -A 127.0.0.1"
46
+ pimd_options=" -A 127.0.0.1"
47
+ ldpd_options=" -A 127.0.0.1"
48
+ nhrpd_options=" -A 127.0.0.1"
49
+ eigrpd_options=" -A 127.0.0.1"
50
+ babeld_options=" -A 127.0.0.1"
51
+ sharpd_options=" -A 127.0.0.1"
52
+ pbrd_options=" -A 127.0.0.1"
53
+ staticd_options="-A 127.0.0.1"
54
+ bfdd_options=" -A 127.0.0.1"
55
+ fabricd_options="-A 127.0.0.1"
56
+
57
+ # The list of daemons to watch is automatically generated by the init script.
58
+ watchfrr_options="-r '/usr/lib/frr/watchfrr.sh restart %s' -s '/usr/lib/frr/watchfrr.sh start %s' -k '/usr/lib/frr/watchfrr.sh stop %s'"
59
+
60
+ # for debugging purposes, you can specify a "wrap" command to start instead
61
+ # of starting the daemon directly, e.g. to use valgrind on ospfd:
62
+ # ospfd_wrap="/usr/bin/valgrind"
63
+ # or you can use "all_wrap" for all daemons, e.g. to use perf record:
64
+ # all_wrap="/usr/bin/perf record --call-graph -"
65
+ # the normal daemon command is added to this at the end.
0 commit comments