diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-08-21 19:35:27 -0400 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2015-09-03 16:29:09 +0100 |
commit | 22e0224d4148e0e4fd5952020fd6ae74efd1bf93 (patch) | |
tree | 152c51f12832812c84ffdb1b8cce9208abfe3f46 /pimd/pim_cmd.h | |
parent | d2c6da209cec42c05941eff52d88f0ed7eabad48 (diff) | |
download | quagga-22e0224d4148e0e4fd5952020fd6ae74efd1bf93.tar.bz2 quagga-22e0224d4148e0e4fd5952020fd6ae74efd1bf93.tar.xz |
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 25e24446..a1cb5816 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" |