25 lines
945 B
Plaintext
25 lines
945 B
Plaintext
#
|
|
# If this option is set the /etc/init.d/quagga script automatically loads
|
|
# the config via "vtysh -b" when the servers are started.
|
|
# Check /etc/pam.d/quagga if you intend to use "vtysh"!
|
|
#
|
|
vtysh_enable=yes
|
|
zebra_options=" --daemon -A 127.0.0.1"
|
|
bgpd_options=" --daemon -A 127.0.0.1"
|
|
ospfd_options=" --daemon -A 127.0.0.1"
|
|
ospf6d_options=" --daemon -A ::1"
|
|
ripd_options=" --daemon -A 127.0.0.1"
|
|
ripngd_options=" --daemon -A ::1"
|
|
isisd_options=" --daemon -A 127.0.0.1"
|
|
babeld_options=" --daemon -A 127.0.0.1"
|
|
#
|
|
# Please note that watchquagga_options is an array and not a string so that
|
|
# quotes can be used.
|
|
#
|
|
# The list of daemons to watch is automatically generated by the init script
|
|
# from daemons.conf and appended to the watchquagga_options.
|
|
# Example:
|
|
# watchquagga_options=("-Adz" "-r" '/sbin/service %s restart' -s '/sbin/service %s start' -k '/sbin/service %s stop')
|
|
watchquagga_enable=yes
|
|
watchquagga_options=(--daemon)
|