version 1.1, 2012/02/21 17:26:12
|
version 1.1.1.3, 2016/11/02 10:09:12
|
Line 1
|
Line 1
|
# |
# |
# Default: Bind all daemon vtys to the loopback(s) only |
# Default: Bind all daemon vtys to the loopback(s) only |
# |
# |
QCONFDIR="/etc/quagga" | BABELD_OPTS="-A 127.0.0.1" |
BGPD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/bgpd.conf" | BGPD_OPTS="-A 127.0.0.1" |
OSPF6D_OPTS="-A ::1 -f ${QCONFDIR}/ospf6d.conf" | ISISD_OPTS="-A ::1" |
OSPFD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/ospfd.conf" | OSPF6D_OPTS="-A ::1" |
RIPD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/ripd.conf" | OSPFD_OPTS="-A 127.0.0.1" |
RIPNGD_OPTS="-A ::1 -f ${QCONFDIR}/ripngd.conf" | RIPD_OPTS="-A 127.0.0.1" |
ZEBRA_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/zebra.conf" | RIPNGD_OPTS="-A ::1" |
ISISD_OPTS="-A ::1 -f ${QCONFDIR}/isisd.conf" | ZEBRA_OPTS="-A 127.0.0.1" |
| PIMD_OPTS="-A 127.0.0.1" |
|
|
# Watchquagga configuration (please check timer values before using): | # Watchquagga configuration for LSB initscripts |
WATCH_OPTS="" | # |
WATCH_DAEMONS="zebra bgpd ospfd ospf6d ripd ripngd" | # (Not needed with systemd: the service files are configured to automatically |
# To enable restarts, uncomment this line (but first be sure to edit | # restart any daemon on failure. If zebra fails, all running daemons will be |
# the WATCH_DAEMONS line to reflect the daemons you are actually using): | # stopped; zebra will be started again; and then the previously running daemons |
#WATCH_OPTS="-Az -b_ -r/sbin/service_%s_restart -s/sbin/service_%s_start -k/sbin/service_%s_stop" | # will be started again.) |
| # |
| # Uncomment and edit this line to reflect the daemons you are actually using: |
| #WATCH_DAEMONS="zebra bgpd ospfd ospf6d ripd ripngd" |
| # |
| # Timer values can be adjusting by editing this line: |
| WATCH_OPTS="-Az -b_ -r/sbin/service_%s_restart -s/sbin/service_%s_start -k/sbin/service_%s_stop" |