diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-11-04 00:59:19 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-01 13:58:32 +0100 |
commit | 37fe77317cecd662eafaeab67aad02fed949b388 (patch) | |
tree | 30c22ca2369a697a07d9a00457460515ea4935e5 /zebra/zserv.h | |
parent | Merge pull request #226 from donaldsharp/evpn_fix (diff) | |
download | frr-37fe77317cecd662eafaeab67aad02fed949b388.tar.xz frr-37fe77317cecd662eafaeab67aad02fed949b388.zip |
bgpd, zebra: Allow setting ecmp from daemon cli
When starting up bgp and zebra now, you can specify
-e <number> or --ecmp <number>
and that number will be used as the maximum ecmp
that can be used.
The <number specified must be >= 1 and <= MULTIPATH_NUM
that Quagga is compiled with.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | zebra/zserv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h index a5a997946..21cf1004b 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -135,6 +135,7 @@ struct zebra_t struct work_queue *lsp_process_q; }; extern struct zebra_t zebrad; +extern unsigned int multipath_num; /* Prototypes. */ extern void zebra_init (void); |