diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-03-30 16:54:15 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-04-03 14:49:35 -0400 |
| commit | 6f4c7f7476b0124e024f51f32392792efd116b4d (patch) | |
| tree | 597ed83cb62fe92562c13f4c940560202dab697c /zebra/interface.c | |
| parent | 535fe877a9b70084db581e4897452fb4a8dd4e85 (diff) | |
zebra: Display new speed information in 'show int..' command
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/interface.c')
| -rw-r--r-- | zebra/interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index e9c54a629b..adcc78095b 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -1056,8 +1056,8 @@ if_dump_vty (struct vty *vty, struct interface *ifp) return; } - vty_out (vty, " index %d metric %d mtu %d ", - ifp->ifindex, ifp->metric, ifp->mtu); + vty_out (vty, " index %d metric %d mtu %d speed %d ", + ifp->ifindex, ifp->metric, ifp->mtu, ifp->speed); if (ifp->mtu6 != ifp->mtu) vty_out (vty, "mtu6 %d ", ifp->mtu6); vty_out (vty, "%s flags: %s%s", VTY_NEWLINE, |
