Blame Sanity/initscript/daemons

d04e7f7
# This file tells the frr package which daemons to start.
d04e7f7
#
d04e7f7
# Sample configurations for these daemons can be found in
d04e7f7
# /usr/share/doc/frr/examples/.
d04e7f7
#
d04e7f7
# ATTENTION:
d04e7f7
#
d04e7f7
# When activating a daemon for the first time, a config file, even if it is
d04e7f7
# empty, has to be present *and* be owned by the user and group "frr", else
d04e7f7
# the daemon will not be started by /etc/init.d/frr. The permissions should
d04e7f7
# be u=rw,g=r,o=.
d04e7f7
# When using "vtysh" such a config file is also needed. It should be owned by
d04e7f7
# group "frrvty" and set to ug=rw,o= though. Check /etc/pam.d/frr, too.
d04e7f7
#
d04e7f7
# The watchfrr and zebra daemons are always started.
d04e7f7
#
d04e7f7
bgpd=yes
d04e7f7
ospfd=yes
d04e7f7
ospf6d=yes
d04e7f7
ripd=yes
d04e7f7
ripngd=yes
d04e7f7
isisd=no
d04e7f7
pimd=no
d04e7f7
ldpd=no
d04e7f7
nhrpd=no
d04e7f7
eigrpd=no
d04e7f7
babeld=no
d04e7f7
sharpd=no
d04e7f7
pbrd=no
d04e7f7
bfdd=no
d04e7f7
fabricd=no
d04e7f7
vrrpd=no
d04e7f7
d04e7f7
#
d04e7f7
# If this option is set the /etc/init.d/frr script automatically loads
d04e7f7
# the config via "vtysh -b" when the servers are started.
d04e7f7
# Check /etc/pam.d/frr if you intend to use "vtysh"!
d04e7f7
#
d04e7f7
vtysh_enable=yes
d04e7f7
zebra_options="  -A 127.0.0.1 -s 90000000"
d04e7f7
bgpd_options="   -A 127.0.0.1"
d04e7f7
ospfd_options="  -A 127.0.0.1"
d04e7f7
ospf6d_options=" -A ::1"
d04e7f7
ripd_options="   -A 127.0.0.1"
d04e7f7
ripngd_options=" -A ::1"
d04e7f7
isisd_options="  -A 127.0.0.1"
d04e7f7
pimd_options="   -A 127.0.0.1"
d04e7f7
ldpd_options="   -A 127.0.0.1"
d04e7f7
nhrpd_options="  -A 127.0.0.1"
d04e7f7
eigrpd_options=" -A 127.0.0.1"
d04e7f7
babeld_options=" -A 127.0.0.1"
d04e7f7
sharpd_options=" -A 127.0.0.1"
d04e7f7
pbrd_options="   -A 127.0.0.1"
d04e7f7
staticd_options="-A 127.0.0.1"
d04e7f7
bfdd_options="   -A 127.0.0.1"
d04e7f7
fabricd_options="-A 127.0.0.1"
d04e7f7
vrrpd_options="  -A 127.0.0.1"
d04e7f7
d04e7f7
# configuration profile
d04e7f7
#
d04e7f7
#frr_profile="traditional"
d04e7f7
#frr_profile="datacenter"
d04e7f7
d04e7f7
#
d04e7f7
# This is the maximum number of FD's that will be available.
d04e7f7
# Upon startup this is read by the control files and ulimit
d04e7f7
# is called.  Uncomment and use a reasonable value for your
d04e7f7
# setup if you are expecting a large number of peers in
d04e7f7
# say BGP.
d04e7f7
#MAX_FDS=1024
d04e7f7
d04e7f7
# The list of daemons to watch is automatically generated by the init script.
d04e7f7
#watchfrr_options=""
d04e7f7
d04e7f7
# for debugging purposes, you can specify a "wrap" command to start instead
d04e7f7
# of starting the daemon directly, e.g. to use valgrind on ospfd:
d04e7f7
#   ospfd_wrap="/usr/bin/valgrind"
d04e7f7
# or you can use "all_wrap" for all daemons, e.g. to use perf record:
d04e7f7
#   all_wrap="/usr/bin/perf record --call-graph -"
d04e7f7
# the normal daemon command is added to this at the end.