diff options
author | Stig Thormodsrud <stig@uffda.(none)> | 2007-11-05 18:53:09 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@uffda.(none)> | 2007-11-05 18:53:09 -0800 |
commit | 27db7410d11a020a409704203f1476a5843fc766 (patch) | |
tree | 4f73af30f1c4e1ae4f5607becbe142b0ab34a66f /templates | |
parent | d2de5c5263822a0c3bfa625f8d7cb3a2baa9377c (diff) | |
download | vyatta-cfg-quagga-27db7410d11a020a409704203f1476a5843fc766.tar.gz vyatta-cfg-quagga-27db7410d11a020a409704203f1476a5843fc766.zip |
Fix update to bgp remote-as that wasn't getting updated.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/protocols/bgp/node.tag/neighbor/node.tag/remote-as/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/protocols/bgp/node.tag/neighbor/node.tag/remote-as/node.def b/templates/protocols/bgp/node.tag/neighbor/node.tag/remote-as/node.def index aad03776..74235115 100644 --- a/templates/protocols/bgp/node.tag/neighbor/node.tag/remote-as/node.def +++ b/templates/protocols/bgp/node.tag/neighbor/node.tag/remote-as/node.def @@ -1,7 +1,7 @@ type: u32 help: "Specify BGP neighbor ASN" syntax: $(@) >= 1 && $(@) <= 65535; "remote-as must be between 1 and 65535" -create: "/usr/bin/vtysh -c \"configure terminal\" -c \"router bgp $(../../@)\" \ +update: "/usr/bin/vtysh -c \"configure terminal\" -c \"router bgp $(../../@)\" \ -c \"neighbor $(../@) remote-as $(@)\" " delete: "/usr/bin/vtysh -c \"configure terminal\" -c \"router bgp $(../../@)\" \ -c \"no neighbor $(../@) remote-as $(@)\" " |