From 7158009fa019bb9eb5b871750e3658590b3a122f Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 4 Feb 2009 13:58:41 -0800 Subject: Protocol daemon management Bug 3828 Start protocols from configuration system, and use watchquagga to restart protocol daemons after failure --- templates/protocols/bgp/node.def | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'templates/protocols/bgp') diff --git a/templates/protocols/bgp/node.def b/templates/protocols/bgp/node.def index 69c2daab..ef80d812 100644 --- a/templates/protocols/bgp/node.def +++ b/templates/protocols/bgp/node.def @@ -2,9 +2,14 @@ tag: type: u32 help: Configure Border Gateway Protocol (BGP) parameters comp_help: \1 <1-4294967294>\tAS number -syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967294; "AS number must be between 1 and 4294967294" -update: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" -# we need to set default parameters in BGP here since we can't do it in -# startup scripts as we don't know the AS number at that point -update: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" -c "bgp network import-check" +syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967294 ; \ + "AS number must be between 1 and 4294967294" + +create: if [ $(pgrep -c -x vyatta-bgpd) -eq 0 ] + then /opt/vyatta/sbin/vyatta-protocol start bgp + fi + vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" +update: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" \ + -c "bgp network import-check" delete: vyatta-vtysh -c "configure terminal" -c "no router bgp $VAR(@)" + -- cgit v1.2.3