diff options
| author | Renato Westphal <renatowestphal@gmail.com> | 2017-04-27 14:55:23 -0300 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-13 13:08:00 -0400 | 
| commit | 63863c4797d0f41f5369b37285de78259b38742f (patch) | |
| tree | 818d851f08e56571dc26a938a6c9f76fda46bf97 /eigrpd/eigrp_const.h | |
| parent | 76220653492a3eb9eadc3d1d78a1a4bfbc1b5ece (diff) | |
eigrpd: Diverse Fixes
* Correct the metric calculation as well as the default metrics;
* Do not show invalid routes in the "show ip eigrp topology".
* Add support to VRFs;
* When downloading a neighbor remove the related routes;
* Fix bugs in the parser of packages they were creating
Invalid default routes;
* Add and remove routes in the zebra;
* Add command "on router eigrp AS";
* Make "delay" and "bandwitch" commands work as well as
Display them in running config;
* Add "no" version of several commands;
* Fix a serious momory leaks;
* Fix segfault when there is no 'successor' route to a
Given prefix;
* Other minor corrections;
Signed-off-by: Renato Westphal <renatowestphal@gmail.com>
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_const.h')
| -rw-r--r-- | eigrpd/eigrp_const.h | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/eigrpd/eigrp_const.h b/eigrpd/eigrp_const.h index 9397717bef..13eba207e2 100644 --- a/eigrpd/eigrp_const.h +++ b/eigrpd/eigrp_const.h @@ -89,8 +89,8 @@  #define EIGRP_HELLO_INTERVAL_DEFAULT        5  #define EIGRP_HOLD_INTERVAL_DEFAULT         15 -#define EIGRP_BANDWIDTH_DEFAULT             10000000 -#define EIGRP_DELAY_DEFAULT                 1000 +#define EIGRP_BANDWIDTH_DEFAULT             100000 +#define EIGRP_DELAY_DEFAULT                 10  #define EIGRP_RELIABILITY_DEFAULT           255  #define EIGRP_LOAD_DEFAULT                  1 @@ -103,6 +103,7 @@  #define INTERFACE_DOWN_BY_ZEBRA       1  #define INTERFACE_DOWN_BY_VTY         2 +#define INTERFACE_DOWN_BY_FINAL       3  #define EIGRP_HELLO_NORMAL                    0x00  #define EIGRP_HELLO_GRACEFUL_SHUTDOWN         0x01  | 
