mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 11:25:41 +00:00
2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* ospf_packet.c: (ospf_db_desc) Reduce severity of "Negotiation done" messages from LOG_WARNING to LOG_INFO, since this seems to be normal.
This commit is contained in:
parent
b87f772abe
commit
17eaa728aa
@ -1,3 +1,9 @@
|
|||||||
|
2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
|
||||||
|
|
||||||
|
* ospf_packet.c: (ospf_db_desc) Reduce severity of "Negotiation done"
|
||||||
|
messages from LOG_WARNING to LOG_INFO, since this seems to be
|
||||||
|
normal.
|
||||||
|
|
||||||
2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
|
2004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
|
||||||
|
|
||||||
* ospf_packet.c: (ospf_read) Always look up the interface if
|
* ospf_packet.c: (ospf_read) Always look up the interface if
|
||||||
|
@ -1181,7 +1181,7 @@ ospf_db_desc (struct ip *iph, struct ospf_header *ospfh,
|
|||||||
if (IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) > 0)
|
if (IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) > 0)
|
||||||
{
|
{
|
||||||
/* We're Slave---obey */
|
/* We're Slave---obey */
|
||||||
zlog_warn ("Packet[DD]: Neighbor %s Negotiation done (Slave).",
|
zlog_info ("Packet[DD]: Neighbor %s Negotiation done (Slave).",
|
||||||
inet_ntoa(nbr->router_id));
|
inet_ntoa(nbr->router_id));
|
||||||
nbr->dd_seqnum = ntohl (dd->dd_seqnum);
|
nbr->dd_seqnum = ntohl (dd->dd_seqnum);
|
||||||
nbr->dd_flags &= ~(OSPF_DD_FLAG_MS|OSPF_DD_FLAG_I); /* Reset I/MS */
|
nbr->dd_flags &= ~(OSPF_DD_FLAG_MS|OSPF_DD_FLAG_I); /* Reset I/MS */
|
||||||
@ -1199,7 +1199,7 @@ ospf_db_desc (struct ip *iph, struct ospf_header *ospfh,
|
|||||||
ntohl (dd->dd_seqnum) == nbr->dd_seqnum &&
|
ntohl (dd->dd_seqnum) == nbr->dd_seqnum &&
|
||||||
IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) < 0)
|
IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) < 0)
|
||||||
{
|
{
|
||||||
zlog_warn ("Packet[DD]: Neighbor %s Negotiation done (Master).",
|
zlog_info ("Packet[DD]: Neighbor %s Negotiation done (Master).",
|
||||||
inet_ntoa(nbr->router_id));
|
inet_ntoa(nbr->router_id));
|
||||||
nbr->dd_flags &= ~OSPF_DD_FLAG_I;
|
nbr->dd_flags &= ~OSPF_DD_FLAG_I;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user