diff options
| author | Russ White <russ@riw.us> | 2018-11-25 22:17:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-25 22:17:33 -0500 |
| commit | 19e5a4659113dc7006373ba6db6cd2d2c04c699a (patch) | |
| tree | 5c15052ff88dcf5327b0ac191b4b32c5dbc958cd /zebra/zebra_errors.c | |
| parent | 4b53ce068df214f72ec14973e045ac4f12c133d2 (diff) | |
| parent | bdca1974e1cd172bdb0cfa76dab3ed751bbcdaec (diff) | |
Merge pull request #3176 from chiragshah6/evpn_dev
zebra: duplicate address detection and dampening
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, } }; |
