diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-06-20 15:21:10 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-06-20 15:29:47 +0000 |
| commit | 795b5abf69904d8607e88f4dba92ab371755d2c0 (patch) | |
| tree | d28900922b3a387975af0f3a6b26d0fab0df02e6 /zebra/interface.c | |
| parent | 76981cd383e4bed69454bcc4151a0aae89e8ca84 (diff) | |
zebra: Add ipv6 router advertisement message counter
Ticket: CM-4497
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/interface.c')
| -rw-r--r-- | zebra/interface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index 4a2adbf01d..9d0a0c9d3d 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -933,6 +933,8 @@ nd_dump_vty (struct vty *vty, struct interface *ifp) rtadv->AdvReachableTime, VTY_NEWLINE); vty_out (vty, " ND advertised retransmit interval is %d milliseconds%s", rtadv->AdvRetransTimer, VTY_NEWLINE); + vty_out (vty, " ND router advertisements sent: %d rcvd: %d%s", + zif->ra_sent, zif->ra_rcvd, VTY_NEWLINE); interval = rtadv->MaxRtrAdvInterval; if (interval % 1000) vty_out (vty, " ND router advertisements are sent every " |
