diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-03 11:30:57 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-03 11:30:57 -0700 |
commit | a1d23a42ef83968222b0744505986db3e02b0ae8 (patch) | |
tree | 0f5d0ad40978a934414202b51d6bbae135169b2a /templates | |
parent | c600f91dee1ed705648eff626f8fd090a28720b5 (diff) | |
download | vyatta-cfg-quagga-a1d23a42ef83968222b0744505986db3e02b0ae8.tar.gz vyatta-cfg-quagga-a1d23a42ef83968222b0744505986db3e02b0ae8.zip |
Use bgpd default import-check flag
Move the default import-check enabled from template to command line
option in bgpd. This resolves some of the startup issues.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/protocols/bgp/node.def | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/protocols/bgp/node.def b/templates/protocols/bgp/node.def index 9a430834..27d29523 100644 --- a/templates/protocols/bgp/node.def +++ b/templates/protocols/bgp/node.def @@ -5,9 +5,7 @@ comp_help: \1 <1-4294967294>\tAS number syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967294 ; \ "AS number must be between 1 and 4294967294" begin: sudo /opt/vyatta/sbin/quagga-manager start bgpd -# 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 -create: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" \ - -c "bgp network import-check" +create: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" delete: vyatta-vtysh -c "configure terminal" -c "no router bgp $VAR(@)" + |