blob: 9e9da5ef3acba24a9e1390d94cf30609f58402cb [file] [log] [blame]
paul15d74e92003-12-30 11:16:21 +00001#
2# Default: Bind all daemon vtys to the loopback(s) only
3#
paul00bc5602004-01-09 16:30:52 +00004QCONFDIR="/etc/quagga"
5BGPD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/bgpd.conf"
pauld47b7ba2004-06-06 15:46:23 +00006OSPF6D_OPTS="-A ::1 -f ${QCONFDIR}/ospf6d.conf"
paul00bc5602004-01-09 16:30:52 +00007OSPFD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/ospfd.conf"
8RIPD_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/ripd.conf"
9RIPNGD_OPTS="-A ::1 -f ${QCONFDIR}/ripngd.conf"
10ZEBRA_OPTS="-A 127.0.0.1 -f ${QCONFDIR}/zebra.conf"
11ISISD_OPTS="-A ::1 -f ${QCONFDIR}/isisd.conf"
ajsafc44c22004-12-22 16:18:53 +000012
13# Watchquagga configuration (please check timer values before using):
14WATCH_OPTS=""
15WATCH_DAEMONS="zebra bgpd ospfd ospf6d ripd ripngd"
16# To enable restarts, uncomment this line (but first be sure to edit
17# the WATCH_DAEMONS line to reflect the daemons you are actually using):
18#WATCH_OPTS="-Az -b_ -r/sbin/service_%s_restart -s/sbin/service_%s_start -k/sbin/service_%s_stop"