From 795b5abf69904d8607e88f4dba92ab371755d2c0 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Mon, 20 Jun 2016 15:21:10 +0000 Subject: zebra: Add ipv6 router advertisement message counter Ticket: CM-4497 Signed-off-by: Quentin Young Reviewed-by: Donald Sharp --- zebra/interface.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'zebra/interface.c') 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 " -- cgit v1.2.3