diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-08-07 22:49:25 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-07 22:49:25 +0300 |
| commit | 7e736c770694afff3710e6a0c4a01ab37dcd2f23 (patch) | |
| tree | 0ff1bd453f8cc3f6e5cbfd76ee96bea1998004eb /pimd/pim_cmd.c | |
| parent | f932b4eef3b58e5890dd8dbb750cba11a212d440 (diff) | |
| parent | bb9ff200b3407e7c16b7e6f4c40c9047a7b27a21 (diff) | |
Merge pull request #9253 from donaldsharp/igmp_no
pimd: Allow more permisive versions of some no commands
Diffstat (limited to 'pimd/pim_cmd.c')
| -rw-r--r-- | pimd/pim_cmd.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index 273100c492..812c8c1449 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -8347,11 +8347,12 @@ DEFUN (interface_ip_igmp_last_member_query_count, DEFUN (interface_no_ip_igmp_last_member_query_count, interface_no_ip_igmp_last_member_query_count_cmd, - "no ip igmp last-member-query-count", + "no ip igmp last-member-query-count [(1-7)]", NO_STR IP_STR IFACE_IGMP_STR - IFACE_IGMP_LAST_MEMBER_QUERY_COUNT_STR) + IFACE_IGMP_LAST_MEMBER_QUERY_COUNT_STR + "Last member query count\n") { char default_robustness[2]; @@ -8394,11 +8395,12 @@ DEFUN (interface_ip_igmp_last_member_query_interval, DEFUN (interface_no_ip_igmp_last_member_query_interval, interface_no_ip_igmp_last_member_query_interval_cmd, - "no ip igmp last-member-query-interval", + "no ip igmp last-member-query-interval [(1-255)]", NO_STR IP_STR IFACE_IGMP_STR - IFACE_IGMP_LAST_MEMBER_QUERY_INTERVAL_STR) + IFACE_IGMP_LAST_MEMBER_QUERY_INTERVAL_STR + "Last member query interval in deciseconds\n") { char default_last_member_query_count[4]; |
