diff --git a/ip/ipneigh.c b/ip/ipneigh.c index 51e7a176..882d8c3e 100644 --- a/ip/ipneigh.c +++ b/ip/ipneigh.c @@ -287,6 +287,11 @@ int print_neigh(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) ci->ndm_confirmed/hz, ci->ndm_updated/hz); } + if (tb[NDA_PROBES] && show_stats) { + __u32 p = *(__u32 *) RTA_DATA(tb[NDA_PROBES]); + fprintf(fp, " probes %u", p); + } + if (r->ndm_state) { int nud = r->ndm_state; fprintf(fp, " ");