]> git.proxmox.com Git - mirror_frr.git/blame - redhat/daemons
zebra: silence harmless ioctl warning when retrieving interface speed
[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#
b13124f0 37watchfrr_enable=yes
10ea85ee 38watchfrr_options="-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
8a71d93d 52sharpd=no
e5c83d9b 53pbrd=no
7ac1de8e 54staticd=no
7134904b 55bfdd=no
13d9aad8 56fabricd=no
7134904b 57
c2953ac5
MW
58#
59# Command line options for the daemons
60#
61zebra_options=("-A 127.0.0.1")
62bgpd_options=("-A 127.0.0.1")
63ospfd_options=("-A 127.0.0.1")
64ospf6d_options=("-A ::1")
65ripd_options=("-A 127.0.0.1")
66ripngd_options=("-A ::1")
67isisd_options=("-A 127.0.0.1")
68ldpd_options=("-A 127.0.0.1")
c27d02aa 69pimd_options=("-A 127.0.0.1")
5a76db68
MW
70nhrpd_options=("-A 127.0.0.1")
71eigrpd_options=("-A 127.0.0.1")
c27d02aa 72babeld_options=("-A 127.0.0.1")
8a71d93d 73sharpd_options=("-A 127.0.0.1")
e5c83d9b 74pbrd_options=("-A 127.0.0.1")
7ac1de8e 75staticd_options=("-A 127.0.0.1")
7134904b 76bfdd_options=("-A 127.0.0.1")
13d9aad8 77fabricd_options=("-A 127.0.0.1")
c2953ac5 78
01c37e58
DS
79#
80# If the vtysh_enable is yes, then the unified config is read
81# and applied if it exists. If no unified frr.conf exists
82# then the per-daemon <daemon>.conf files are used)
83# If vtysh_enable is no or non-existant, the frr.conf is ignored.
84# it is highly suggested to have this set to yes
85vtysh_enable=yes
86