diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-08-22 01:35:27 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-05-26 02:38:33 +0200 |
commit | 7960fa8f754a43a3e0a9c48de21af38051bc1d70 (patch) | |
tree | bdd2584f5d9eb1104c81be68c833dc9f52aaacda /pimd/pim_cmd.h | |
parent | pimd: Change ioctl call failure from vty_out to zlog_warn (diff) | |
download | frr-7960fa8f754a43a3e0a9c48de21af38051bc1d70.tar.xz frr-7960fa8f754a43a3e0a9c48de21af38051bc1d70.zip |
pimd: Create ability to modify hell and hold timers per interface
Create new per interface command:
'ip pim hello <1-180> {<1-180>}'
The first number is the Hello Timer for this interface
The second number is the Hold Timer to pass to neighbors on this interface.
The second number is optional.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_cmd.h')
-rw-r--r-- | pimd/pim_cmd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pimd/pim_cmd.h b/pimd/pim_cmd.h index 25e244462..a1cb58161 100644 --- a/pimd/pim_cmd.h +++ b/pimd/pim_cmd.h @@ -30,6 +30,9 @@ #define CONF_SSMPINGD_STR "Enable ssmpingd operation\n" #define SHOW_SSMPINGD_STR "ssmpingd operation\n" #define IFACE_PIM_STR "Enable PIM SSM operation\n" +#define IFACE_PIM_HELLO_STR "Hello Interval\n" +#define IFACE_PIM_HELLO_TIME_STR "Time in seconds for Hello Interval\n" +#define IFACE_PIM_HELLO_HOLD_STR "Time in seconds for Hold Interval\n" #define IFACE_IGMP_STR "Enable IGMP operation\n" #define IFACE_IGMP_QUERY_INTERVAL_STR "IGMP host query interval\n" #define IFACE_IGMP_QUERY_MAX_RESPONSE_TIME_STR "IGMP max query response value (seconds)\n" |