mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-03 23:47:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# This file tells the frr package which daemons to start.
 | 
						|
#
 | 
						|
# Entries are in the format: <daemon>=(yes|no|priority)
 | 
						|
#   0, "no"  = disabled
 | 
						|
#   1, "yes" = highest priority
 | 
						|
#   2 .. 10  = lower priorities
 | 
						|
#
 | 
						|
# For daemons which support multiple instances, a 2nd line listing
 | 
						|
# the instances can be added. Eg for ospfd:
 | 
						|
#   ospfd=yes
 | 
						|
#   ospfd_instances="1,2"
 | 
						|
#
 | 
						|
# Priorities were suggested by Dancer <dancer@zeor.simegen.com>.
 | 
						|
# They're used to start the FRR daemons in more than one step
 | 
						|
# (for example start one or two at network initialization and the
 | 
						|
# rest later). The number of FRR daemons being small, priorities
 | 
						|
# must be between 1 and 9, inclusive (or the initscript has to be
 | 
						|
# changed). /etc/init.d/frr then can be started as
 | 
						|
#
 | 
						|
#   /etc/init.d/frr <start|stop|restart|<priority>>
 | 
						|
#
 | 
						|
# where priority 0 is the same as 'stop', priority 10 or 'start'
 | 
						|
# means 'start all'
 | 
						|
#
 | 
						|
# Sample configurations for these daemons can be found in
 | 
						|
# /usr/share/doc/frr/examples/.
 | 
						|
#
 | 
						|
# ATTENTION:
 | 
						|
#
 | 
						|
# When activation a daemon at the first time, a config file, even if it is
 | 
						|
# empty, has to be present *and* be owned by the user and group "frr", else
 | 
						|
# the daemon will not be started by /etc/init.d/frr. The permissions should
 | 
						|
# be u=rw,g=r,o=.
 | 
						|
# When using "vtysh" such a config file is also needed. It should be owned by
 | 
						|
# group "frrvty" and set to ug=rw,o= though. Check /etc/pam.d/frr, too.
 | 
						|
#
 | 
						|
watchfrr_enable=no
 | 
						|
watchfrr_options=("-b_" "-r/usr/lib/frr/frr_restart_%s" "-s/usr/lib/frr/frr_start_%s" "-k/usr/lib/frr/frr_stop_%s")
 | 
						|
#
 | 
						|
zebra=no
 | 
						|
bgpd=no
 | 
						|
ospfd=no
 | 
						|
ospf6d=no
 | 
						|
ripd=no
 | 
						|
ripngd=no
 | 
						|
isisd=no
 | 
						|
ldpd=no
 | 
						|
pimd=no
 | 
						|
nhrpd=no
 | 
						|
eigrpd=no
 | 
						|
babeld=no
 | 
						|
#
 | 
						|
# Command line options for the daemons
 | 
						|
#
 | 
						|
zebra_options=("-A 127.0.0.1")
 | 
						|
bgpd_options=("-A 127.0.0.1")
 | 
						|
ospfd_options=("-A 127.0.0.1")
 | 
						|
ospf6d_options=("-A ::1")
 | 
						|
ripd_options=("-A 127.0.0.1")
 | 
						|
ripngd_options=("-A ::1")
 | 
						|
isisd_options=("-A 127.0.0.1")
 | 
						|
ldpd_options=("-A 127.0.0.1")
 | 
						|
pimd_options=("-A 127.0.0.1")
 | 
						|
nhrpd_options=("-A 127.0.0.1")
 | 
						|
eigrpd_options=("-A 127.0.0.1")
 | 
						|
babeld_options=("-A 127.0.0.1")
 | 
						|
 | 
						|
#
 | 
						|
# If the vtysh_enable is yes, then the unified config is read
 | 
						|
# and applied if it exists.  If no unified frr.conf exists
 | 
						|
# then the per-daemon <daemon>.conf files are used)
 | 
						|
# If vtysh_enable is no or non-existant, the frr.conf is ignored.
 | 
						|
# it is highly suggested to have this set to yes
 | 
						|
vtysh_enable=yes
 | 
						|
 |