diff options
author | Juliusz Chroboczek <jch@pps.jussieu.fr> | 2012-02-11 14:06:24 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2012-03-25 18:06:54 +0200 |
commit | 9c298c7119c1dba6c589b8f4c358debd8e694b72 (patch) | |
tree | d8ae18bd5aec994e02aabed536446a24051cefbc /babeld/babel_interface.c | |
parent | babeld: vty commands (hello-interval, update-interval, resend-delay). (diff) | |
download | frr-9c298c7119c1dba6c589b8f4c358debd8e694b72.tar.xz frr-9c298c7119c1dba6c589b8f4c358debd8e694b72.zip |
babeld: display update-interval and resend-delay in show commands"
Diffstat (limited to 'babeld/babel_interface.c')
-rw-r--r-- | babeld/babel_interface.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c index bc58b7e37..588fea708 100644 --- a/babeld/babel_interface.c +++ b/babeld/babel_interface.c @@ -732,6 +732,7 @@ show_babel_interface_sub (struct vty *vty, struct interface *ifp) vty_out (vty, " Split horizon mode is %s%s", CHECK_FLAG (babel_ifp->flags, BABEL_IF_SPLIT_HORIZON) ? "On" : "Off", VTY_NEWLINE); vty_out (vty, " Hello interval is %u ms%s", babel_ifp->hello_interval, VTY_NEWLINE); + vty_out (vty, " Update interval is %u ms%s", babel_ifp->update_interval, VTY_NEWLINE); } DEFUN (show_babel_interface, |