paul | 15d74e9 | 2003-12-30 11:16:21 +0000 | [diff] [blame] | 1 | # |
| 2 | # Default: Bind all daemon vtys to the loopback(s) only |
| 3 | # |
David Ward | a41242b | 2012-04-29 16:47:07 -0400 | [diff] [blame] | 4 | BABELD_OPTS="-A 127.0.0.1" |
| 5 | BGPD_OPTS="-A 127.0.0.1" |
| 6 | ISISD_OPTS="-A ::1" |
| 7 | OSPF6D_OPTS="-A ::1" |
| 8 | OSPFD_OPTS="-A 127.0.0.1" |
| 9 | RIPD_OPTS="-A 127.0.0.1" |
| 10 | RIPNGD_OPTS="-A ::1" |
| 11 | ZEBRA_OPTS="-A 127.0.0.1" |
Donald Sharp | 08d9590 | 2015-05-27 17:57:31 -0700 | [diff] [blame] | 12 | PIMD_OPTS="-A 127.0.0.1" |
ajs | afc44c2 | 2004-12-22 16:18:53 +0000 | [diff] [blame] | 13 | |
David Ward | 4b5a210 | 2012-04-29 16:47:08 -0400 | [diff] [blame] | 14 | # Watchquagga configuration for LSB initscripts |
| 15 | # |
| 16 | # (Not needed with systemd: the service files are configured to automatically |
| 17 | # restart any daemon on failure. If zebra fails, all running daemons will be |
| 18 | # stopped; zebra will be started again; and then the previously running daemons |
| 19 | # will be started again.) |
David Ward | a41242b | 2012-04-29 16:47:07 -0400 | [diff] [blame] | 20 | # |
| 21 | # Uncomment and edit this line to reflect the daemons you are actually using: |
| 22 | #WATCH_DAEMONS="zebra bgpd ospfd ospf6d ripd ripngd" |
| 23 | # |
| 24 | # Timer values can be adjusting by editing this line: |
| 25 | WATCH_OPTS="-Az -b_ -r/sbin/service_%s_restart -s/sbin/service_%s_start -k/sbin/service_%s_stop" |