]> git.proxmox.com Git - mirror_frr.git/blame - redhat/daemons
Merge pull request #1362 from dslicenc/cm18309-label-delete
[mirror_frr.git] / redhat / daemons
CommitLineData
c2953ac5
MW
1# This file tells the frr package which daemons to start.
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#
8# For daemons which support multiple instances, a 2nd line listing
9# the instances can be added. Eg for ospfd:
10# ospfd=yes
11# ospfd_instances="1,2"
12#
13# Priorities were suggested by Dancer <dancer@zeor.simegen.com>.
14# They're used to start the FRR daemons in more than one step
15# (for example start one or two at network initialization and the
16# rest later). The number of FRR daemons being small, priorities
17# must be between 1 and 9, inclusive (or the initscript has to be
18# changed). /etc/init.d/frr then can be started as
19#
20# /etc/init.d/frr <start|stop|restart|<priority>>
21#
22# where priority 0 is the same as 'stop', priority 10 or 'start'
23# means 'start all'
24#
25# Sample configurations for these daemons can be found in
26# /usr/share/doc/frr/examples/.
27#
28# ATTENTION:
29#
30# When activation a daemon at the first time, a config file, even if it is
31# empty, has to be present *and* be owned by the user and group "frr", else
32# the daemon will not be started by /etc/init.d/frr. The permissions should
33# be u=rw,g=r,o=.
34# When using "vtysh" such a config file is also needed. It should be owned by
35# group "frrvty" and set to ug=rw,o= though. Check /etc/pam.d/frr, too.
36#
37watchfrr_enable=no
0012cfec 38watchfrr_options=("-b_" "-r/usr/lib/frr/frr_restart_%s" "-s/usr/lib/frr/frr_start_%s" "-k/usr/lib/frr/frr_stop_%s")
c2953ac5
MW
39#
40zebra=no
41bgpd=no
42ospfd=no
43ospf6d=no
44ripd=no
45ripngd=no
46isisd=no
47ldpd=no
c27d02aa 48pimd=no
5a76db68
MW
49nhrpd=no
50eigrpd=no
c27d02aa 51babeld=no
c2953ac5
MW
52#
53# Command line options for the daemons
54#
55zebra_options=("-A 127.0.0.1")
56bgpd_options=("-A 127.0.0.1")
57ospfd_options=("-A 127.0.0.1")
58ospf6d_options=("-A ::1")
59ripd_options=("-A 127.0.0.1")
60ripngd_options=("-A ::1")
61isisd_options=("-A 127.0.0.1")
62ldpd_options=("-A 127.0.0.1")
c27d02aa 63pimd_options=("-A 127.0.0.1")
5a76db68
MW
64nhrpd_options=("-A 127.0.0.1")
65eigrpd_options=("-A 127.0.0.1")
c27d02aa 66babeld_options=("-A 127.0.0.1")
c2953ac5 67