diff options
author | Robert Bays <robert@vyatta.com> | 2010-07-22 15:17:19 -0700 |
---|---|---|
committer | Robert Bays <robert@vyatta.com> | 2010-07-22 15:17:19 -0700 |
commit | 1c65534b48bd82a5d9c336b0270b85a0059d2a79 (patch) | |
tree | f32d16dbe1338f5c51b82a2003ad78c8af029834 /templates/protocols | |
parent | b6ba95d08128d05e2284836201d8507b7af3b261 (diff) | |
download | vyatta-cfg-quagga-1c65534b48bd82a5d9c336b0270b85a0059d2a79.tar.gz vyatta-cfg-quagga-1c65534b48bd82a5d9c336b0270b85a0059d2a79.zip |
fix for bug 5893
Diffstat (limited to 'templates/protocols')
2 files changed, 3 insertions, 1 deletions
diff --git a/templates/protocols/bgp/node.tag/peer-group/node.tag/address-family/ipv6-unicast/maximum-prefix/node.def b/templates/protocols/bgp/node.tag/peer-group/node.tag/address-family/ipv6-unicast/maximum-prefix/node.def index b48b7b07..6909a6f0 100644 --- a/templates/protocols/bgp/node.tag/peer-group/node.tag/address-family/ipv6-unicast/maximum-prefix/node.def +++ b/templates/protocols/bgp/node.tag/peer-group/node.tag/address-family/ipv6-unicast/maximum-prefix/node.def @@ -1,2 +1,4 @@ type: u32 help: Maximum number of prefixes to accept from this peer-group +val_help: u32:1-4294967295; Prefix limit +syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967295; "maximum-prefix must be between 1 and 4294967295" diff --git a/templates/protocols/bgp/node.tag/peer-group/node.tag/maximum-prefix/node.def b/templates/protocols/bgp/node.tag/peer-group/node.tag/maximum-prefix/node.def index aed2bd6d..6909a6f0 100644 --- a/templates/protocols/bgp/node.tag/peer-group/node.tag/maximum-prefix/node.def +++ b/templates/protocols/bgp/node.tag/peer-group/node.tag/maximum-prefix/node.def @@ -1,4 +1,4 @@ type: u32 help: Maximum number of prefixes to accept from this peer-group -val_help: 1-4294967295; Prefix limit +val_help: u32:1-4294967295; Prefix limit syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967295; "maximum-prefix must be between 1 and 4294967295" |