diff options
| author | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-03-22 19:04:58 +0000 |
|---|---|---|
| committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-03-22 19:04:58 +0000 |
| commit | 7ab5795aee870b46eba1e4576dc43235b02cc25e (patch) | |
| tree | 05c859e8327d72880b5998e215b2151c390aad7f /lib/zebra.h | |
| parent | 5fe9f9631d3be324202667f26e93cddead762e8c (diff) | |
RDNBRD: Change default distance of imported table routes to 15
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Ticket: CM-9898
The 'redistribute neighbor' feature is the primary use case for
importing table routes. We need the redistribute neighbor routes to
have a lower admin distance than eBGP so that the local table routes are
preferred (if the host is dual homed we could also learn about it via eBGP).
Diffstat (limited to 'lib/zebra.h')
| -rw-r--r-- | lib/zebra.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zebra.h b/lib/zebra.h index 8cef0bfac2..751e8ce3df 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -548,7 +548,7 @@ extern const char *zserv_command_string (unsigned int command); #define ZEBRA_ISIS_DISTANCE_DEFAULT 115 #define ZEBRA_IBGP_DISTANCE_DEFAULT 200 #define ZEBRA_EBGP_DISTANCE_DEFAULT 20 -#define ZEBRA_TABLE_DISTANCE_DEFAULT 150 +#define ZEBRA_TABLE_DISTANCE_DEFAULT 15 /* Flag manipulation macros. */ #define CHECK_FLAG(V,F) ((V) & (F)) |
