diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-01-27 17:28:14 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-01-27 17:28:14 +0100 |
commit | 90fb3e1389d6347de55db787521c353d3d5e2547 (patch) | |
tree | cb8dec312e0fb38de50ff746ca41f164f6fdbb30 | |
parent | bgpd, ripngd, zebra: Remove duplicate PSIZE define (diff) | |
download | frr-90fb3e1389d6347de55db787521c353d3d5e2547.tar.xz frr-90fb3e1389d6347de55db787521c353d3d5e2547.zip |
debian: Use 256 multipaths
Turn on the ability for Quagga to use 256 multipaths
Ticket: CM-8098
Reviewed-by: Daniel Walton and Don Slice
Testing: Hand tested
-rwxr-xr-x | configure.ac | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4d9007d06..e39cc71b1 100755 --- a/configure.ac +++ b/configure.ac @@ -418,7 +418,7 @@ case "${enable_multipath}" in 0) MPATH_NUM=64 ;; - [[1-9]|[1-9][0-9]]) + [[1-9]|[1-9][0-9]|[1-9][0-9][0-9]]) MPATH_NUM="${enable_multipath}" ;; "") diff --git a/debian/rules b/debian/rules index 457f71780..295b47141 100755 --- a/debian/rules +++ b/debian/rules @@ -56,7 +56,7 @@ override_dh_auto_configure: --enable-ipv6 \ --enable-ospfclient=yes \ --enable-ospfapi=yes \ - --enable-multipath=64 \ + --enable-multipath=256 \ --enable-user=quagga \ --enable-group=quagga \ --enable-vty-group=quaggavty \ |