diff options
| author | Russ White <russ@riw.us> | 2019-01-29 09:58:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-29 09:58:53 -0500 |
| commit | 3bce6932ef2614cb1cd33f622ad5c2ec2a54225f (patch) | |
| tree | 986642a30b47bdbb36dcbba933ce88ff547d41b5 /ospfd/ospf_errors.c | |
| parent | fc6da5170512b7c54243ed6210f2ef0ded12e701 (diff) | |
| parent | 9b18d58e17d7e84f17114e5f4a6461dd7e250580 (diff) | |
Merge pull request #3657 from nitinsoniism/ospf_mtu_crash
ospfd: ospfd core if hello packet exceeds link MTU
Diffstat (limited to 'ospfd/ospf_errors.c')
| -rw-r--r-- | ospfd/ospf_errors.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ospfd/ospf_errors.c b/ospfd/ospf_errors.c index 566fc29202..b912a80692 100644 --- a/ospfd/ospf_errors.c +++ b/ospfd/ospf_errors.c @@ -170,6 +170,15 @@ static struct log_ref ferr_ospf_err[] = { .suggestion = "Gather log files and open an issue", }, { + .code = EC_OSPF_LARGE_HELLO, + .title = "OSPF Encountered a Large Hello", + .description = "OSPF attempted to send a Hello larger than MTU " + "but did not", + .suggestion = "Too many neighbors configured on a single interface." + " Suggestion is to decrease the number of neighbors on" + " a single interface/subnet" + }, + { .code = END_FERR, } }; |
