diff options
author | Robert Bays <rbays@moresby.vyatta.com> | 2008-03-07 00:06:08 -0800 |
---|---|---|
committer | Robert Bays <rbays@moresby.vyatta.com> | 2008-03-07 00:06:08 -0800 |
commit | f38f4f89c5dc66d021938b7a63051c5e601f6eb3 (patch) | |
tree | a0971cf824be8b0c8069e99f381c5dd8705f6eb5 /templates/protocols/bgp/node.def | |
parent | ae70ac4ecc2910e8a3d5bd70d6e3a1cb47f51ccb (diff) | |
download | vyatta-cfg-quagga-f38f4f89c5dc66d021938b7a63051c5e601f6eb3.tar.gz vyatta-cfg-quagga-f38f4f89c5dc66d021938b7a63051c5e601f6eb3.zip |
bug 2753
Diffstat (limited to 'templates/protocols/bgp/node.def')
-rw-r--r-- | templates/protocols/bgp/node.def | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/protocols/bgp/node.def b/templates/protocols/bgp/node.def index 5e89d91a..c1b84c57 100644 --- a/templates/protocols/bgp/node.def +++ b/templates/protocols/bgp/node.def @@ -1,7 +1,9 @@ tag: type: u32 help: Configure a BGP Autonomous System on this router -# TODO: non-multinode parent syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967294; "AS number must be between 1 and 4294967294" update:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -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 because we don't know the AS number +update:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router bgp $VAR(@)\" -c \"bgp network import-check\" " delete:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"no router bgp $VAR(@)\" " |