diff options
| author | Chirag Shah <chirag@cumulusnetworks.com> | 2018-11-02 08:30:41 -0700 |
|---|---|---|
| committer | Chirag Shah <chirag@cumulusnetworks.com> | 2018-11-17 19:22:17 -0800 |
| commit | e22a946a89579a5d73bcaf5eb10eb1b830a2419e (patch) | |
| tree | be56358ce5ac879b6e309693c757dc97f152e1a3 /zebra/zebra_errors.c | |
| parent | 3950b52c54035a3df5eb203f6ed1de4b8e96173d (diff) | |
zebra: dup addr detect warn-only
Duplicate address detection warning only action
upon an address detected as duplicate.
Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_errors.c')
| -rw-r--r-- | zebra/zebra_errors.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/zebra/zebra_errors.c b/zebra/zebra_errors.c index 17163e2182..32f6653832 100644 --- a/zebra/zebra_errors.c +++ b/zebra/zebra_errors.c @@ -695,6 +695,33 @@ static struct log_ref ferr_zebra_err[] = { "Do not use v6 sourcedest routes, or upgrade your kernel.", }, { + .code = EC_ZEBRA_DUP_MAC_DETECTED, + .title = + "EVPN MAC is detected duplicate", + .description = + "Zebra has hit duplicate address detection threshold which means host MAC is moving.", + .suggestion = + "Check network topology to detect duplicate host MAC for correctness.", + }, + { + .code = EC_ZEBRA_DUP_IP_INHERIT_DETECTED, + .title = + "EVPN IP is detected duplicate by MAC", + .description = + "Zebra has hit duplicate address detection threshold which means MAC-IP pair is moving.", + .suggestion = + "Check network topology to detect duplicate host MAC for correctness.", + }, + { + .code = EC_ZEBRA_DUP_IP_DETECTED, + .title = + "EVPN IP is detected duplicate", + .description = + "Zebra has hit duplicate address detection threshold which means host IP is moving.", + .suggestion = + "Check network topology to detect duplicate host IP for correctness.", + }, + { .code = END_FERR, } }; |
