]> git.proxmox.com Git - mirror_frr.git/blame - tools/etc/frr/daemons
vrrpd: update auto*, init scripts, etc
[mirror_frr.git] / tools / etc / frr / daemons
CommitLineData
c97ef382 1# This file tells the frr package which daemons to start.
651415bd 2#
651415bd 3# Sample configurations for these daemons can be found in
c97ef382 4# /usr/share/doc/frr/examples/.
651415bd
DS
5#
6# ATTENTION:
7#
33b39771 8# When activating a daemon for the first time, a config file, even if it is
c97ef382
MW
9# empty, has to be present *and* be owned by the user and group "frr", else
10# the daemon will not be started by /etc/init.d/frr. The permissions should
651415bd
DS
11# be u=rw,g=r,o=.
12# When using "vtysh" such a config file is also needed. It should be owned by
c97ef382 13# group "frrvty" and set to ug=rw,o= though. Check /etc/pam.d/frr, too.
651415bd 14#
ea4d91bf 15# The watchfrr and zebra daemons are always started.
651415bd 16#
651415bd
DS
17bgpd=no
18ospfd=no
19ospf6d=no
20ripd=no
21ripngd=no
22isisd=no
2cba41dc
DS
23pimd=no
24ldpd=no
c838ce0e 25nhrpd=no
e6ddb8e2 26eigrpd=no
97f653d0 27babeld=no
8a71d93d 28sharpd=no
e5c83d9b 29pbrd=no
7134904b 30bfdd=no
bf8e16b5 31fabricd=no
97b5f22b 32vrrpd=no
9c830772
DL
33
34#
35# If this option is set the /etc/init.d/frr script automatically loads
36# the config via "vtysh -b" when the servers are started.
37# Check /etc/pam.d/frr if you intend to use "vtysh"!
38#
39vtysh_enable=yes
40zebra_options=" -A 127.0.0.1 -s 90000000"
41bgpd_options=" -A 127.0.0.1"
42ospfd_options=" -A 127.0.0.1"
43ospf6d_options=" -A ::1"
44ripd_options=" -A 127.0.0.1"
45ripngd_options=" -A ::1"
46isisd_options=" -A 127.0.0.1"
47pimd_options=" -A 127.0.0.1"
48ldpd_options=" -A 127.0.0.1"
49nhrpd_options=" -A 127.0.0.1"
50eigrpd_options=" -A 127.0.0.1"
51babeld_options=" -A 127.0.0.1"
52sharpd_options=" -A 127.0.0.1"
53pbrd_options=" -A 127.0.0.1"
54staticd_options="-A 127.0.0.1"
55bfdd_options=" -A 127.0.0.1"
56fabricd_options="-A 127.0.0.1"
97b5f22b 57vrrpd_options=" -A 127.0.0.1"
9c830772
DL
58
59# The list of daemons to watch is automatically generated by the init script.
3ec95567 60#watchfrr_options=""
9c830772
DL
61
62# for debugging purposes, you can specify a "wrap" command to start instead
63# of starting the daemon directly, e.g. to use valgrind on ospfd:
64# ospfd_wrap="/usr/bin/valgrind"
65# or you can use "all_wrap" for all daemons, e.g. to use perf record:
66# all_wrap="/usr/bin/perf record --call-graph -"
67# the normal daemon command is added to this at the end.