diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-10-21 22:52:14 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-10-31 20:26:06 +0200 | 
| commit | c60dec369adb04773415f5c41a5bbcd59087e5a8 (patch) | |
| tree | d781379bbef29bffb6740837ad31df388bd93188 /eigrpd | |
| parent | cd206022b106a08a0c3eeb9f0780ad589a713e68 (diff) | |
lib: Add autocomplete for access-lists
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'eigrpd')
| -rw-r--r-- | eigrpd/eigrp_routemap.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/eigrpd/eigrp_routemap.c b/eigrpd/eigrp_routemap.c index 65fa95b652..d9b500a8fd 100644 --- a/eigrpd/eigrp_routemap.c +++ b/eigrpd/eigrp_routemap.c @@ -858,7 +858,7 @@ ALIAS(no_match_interface, no_match_interface_val_cmd, "no match interface WORD",  DEFUN (match_ip_next_hop,         match_ip_next_hop_cmd, -       "match ip next-hop WORD", +       "match ip next-hop ACCESSLIST4_NAME",         MATCH_STR         IP_STR         "Match next-hop address of route\n" @@ -884,7 +884,7 @@ DEFUN (no_match_ip_next_hop,  }  ALIAS(no_match_ip_next_hop, no_match_ip_next_hop_val_cmd, -      "no match ip next-hop WORD", NO_STR MATCH_STR IP_STR +      "no match ip next-hop ACCESSLIST4_NAME", NO_STR MATCH_STR IP_STR        "Match next-hop address of route\n"        "IP Access-list name\n") @@ -927,7 +927,7 @@ ALIAS(no_match_ip_next_hop_prefix_list,  DEFUN (match_ip_address,         match_ip_address_cmd, -       "match ip address WORD", +       "match ip address ACCESSLIST4_NAME",         MATCH_STR         IP_STR         "Match address of route\n" @@ -952,7 +952,7 @@ DEFUN (no_match_ip_address,  }  ALIAS(no_match_ip_address, no_match_ip_address_val_cmd, -      "no match ip address WORD", NO_STR MATCH_STR IP_STR +      "no match ip address ACCESSLIST4_NAME", NO_STR MATCH_STR IP_STR        "Match address of route\n"        "IP Access-list name\n") @@ -1124,7 +1124,7 @@ ALIAS(no_set_tag, no_set_tag_val_cmd, "no set tag (0-65535)", NO_STR SET_STR  DEFUN (eigrp_distribute_list,         eigrp_distribute_list_cmd, -       "distribute-list [prefix] WORD <in|out> [WORD]", +       "distribute-list [prefix] ACCESSLIST_NAME <in|out> [WORD]",         "Filter networks in routing updates\n"         "Specify a prefix\n"         "Access-list name\n" @@ -1144,7 +1144,7 @@ DEFUN (eigrp_distribute_list,  DEFUN (eigrp_no_distribute_list,         eigrp_no_distribute_list_cmd, -       "no distribute-list [prefix] WORD <in|out> [WORD]", +       "no distribute-list [prefix] ACCESSLIST_NAME <in|out> [WORD]",         NO_STR         "Filter networks in routing updates\n"         "Specify a prefix\n"  | 
