diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2008-01-12 13:51:35 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2008-01-12 13:51:35 -0800 |
commit | 74acf758d9059cf9832403da644c4f8eb088563e (patch) | |
tree | e514d4676a649dde058fa6e361bd43b1e852c17c /templates/protocols/bgp/node.def | |
parent | 3add3da42dd4a84329f424d8d0f80f3e76108114 (diff) | |
download | vyatta-cfg-quagga-74acf758d9059cf9832403da644c4f8eb088563e.tar.gz vyatta-cfg-quagga-74acf758d9059cf9832403da644c4f8eb088563e.zip |
Fix 2608: Four octet ASN cannot be configured
Diffstat (limited to 'templates/protocols/bgp/node.def')
-rw-r--r-- | templates/protocols/bgp/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/protocols/bgp/node.def b/templates/protocols/bgp/node.def index 39446de3..63fc0f03 100644 --- a/templates/protocols/bgp/node.def +++ b/templates/protocols/bgp/node.def @@ -2,6 +2,6 @@ tag: type: u32 help: "Configure a BGP Autonomous System on this router" # TODO: non-multinode parent -syntax: $(@) >= 1 && $(@) <= 65535; "AS number must be between 1 and 65535" +syntax: $(@) >= 1 && $(@) <= 4294967294; "AS number must be between 1 and 4294967294" update: "\\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"router bgp $(@)\" " delete: "\\${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" -c \"no router bgp $(@)\" " |