summaryrefslogtreecommitdiff
path: root/zebra/zebra_errors.c
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2020-04-22 11:35:53 -0400
committerGitHub <noreply@github.com>2020-04-22 11:35:53 -0400
commite4306dc6953111e954554efe22b6f96b5afc9684 (patch)
tree7bd02617d94f8f6bb02310a53a8e54c6324d1b74 /zebra/zebra_errors.c
parent0f90b81558b1d37ecd960e487632492fe5f84896 (diff)
parent5e0311982af37f1fa98883a629c4c17324455d0b (diff)
Merge pull request #5944 from donaldsharp/vrf_stoppage
Vrf stoppage
Diffstat (limited to 'zebra/zebra_errors.c')
-rw-r--r--zebra/zebra_errors.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/zebra/zebra_errors.c b/zebra/zebra_errors.c
index ef792d14c2..b75708031e 100644
--- a/zebra/zebra_errors.c
+++ b/zebra/zebra_errors.c
@@ -786,6 +786,12 @@ static struct log_ref ferr_zebra_err[] = {
"See if the nexthop you are trying to add is already present in the fib."
},
{
+ .code = EC_ZEBRA_VRF_MISCONFIGURED,
+ .title = "Duplicate VRF table id detected",
+ .description = "Zebra has detected a situation where there are two vrf devices with the exact same tableid. This is considered a complete misconfiguration of VRF devices and breaks a fundamental assumption in FRR about how VRF's work",
+ .suggestion = "Use different table id's for the VRF's in question"
+ },
+ {
.code = END_FERR,
}
};