diff options
| author | Russ White <russ@riw.us> | 2024-06-18 12:16:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-18 12:16:24 -0400 |
| commit | 7834c38ab38fe56a7384e77aa051316f9c6ec82b (patch) | |
| tree | 92d34d542b1df9f062a8b9019057e9dd477cf55c /zebra/zebra_errors.c | |
| parent | 0c760efa5c1fd21e9c0ce52c3ce722bee45e9a32 (diff) | |
| parent | 36a310cc9f6ef7694d30fe3527a9462bb7155fd3 (diff) | |
Merge pull request #15604 from cscarpitta/srv6-sid-manager
Add support for SRv6 SID Manager
Diffstat (limited to 'zebra/zebra_errors.c')
| -rw-r--r-- | zebra/zebra_errors.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/zebra/zebra_errors.c b/zebra/zebra_errors.c index 09b369e23e..dcfa37d268 100644 --- a/zebra/zebra_errors.c +++ b/zebra/zebra_errors.c @@ -788,6 +788,18 @@ static struct log_ref ferr_zebra_err[] = { "Wait for Zebra to reattempt update.", }, { + .code = EC_ZEBRA_SM_CANNOT_ASSIGN_SID, + .title = "SRv6 manager unable to assign SID", + .description = "Zebra's SRv6 manager was unable to assign a SID to client.", + .suggestion = "Ensure that Zebra has a sufficient SID range available.", + }, + { + .code = EC_ZEBRA_SM_DAEMON_MISMATCH, + .title = "Daemon mismatch when releasing SRV6 SIDs", + .description = "Zebra noticed a mismatch between a SRv6 SID and a protocol daemon number or instance when releasing unused SRv6 SIDs.", + .suggestion = "Ignore this error.", + }, + { .code = END_FERR, } }; |
