]> git.proxmox.com Git - mirror_frr.git/blob - vtysh/vtysh_cmd.c
Initial revision
[mirror_frr.git] / vtysh / vtysh_cmd.c
1 #include <zebra.h>
2 #include "command.h"
3 #include "vtysh.h"
4
5 DEFSH (VTYSH_BGPD, neighbor_version_cmd_vtysh,
6 "neighbor (A.B.C.D|X:X::X:X) " "version (4|4-)",
7 "Specify neighbor router\n"
8 "Neighbor address\nIPv6 address\n"
9 "Neighbor's BGP version\n"
10 "Border Gateway Protocol 4\n"
11 "Multiprotocol Extensions for BGP-4(Old Draft)\n")
12
13 DEFSH (VTYSH_BGPD, no_set_aspath_prepend_cmd_vtysh,
14 "no set as-path prepend",
15 "Negate a command or set its defaults\n"
16 "Set values in destination routing protocol\n"
17 "Prepend string for a BGP AS-path attribute\n"
18 "Prepend to the as-path\n")
19
20 DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ipv6_prefix_list_cmd_vtysh,
21 "clear ipv6 prefix-list",
22 "Reset functions\n"
23 "IPv6 information\n"
24 "Build a prefix list\n")
25
26 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_out_cmd_vtysh,
27 "clear ip bgp A.B.C.D vpnv4 unicast soft out",
28 "Reset functions\n"
29 "IP information\n"
30 "BGP information\n"
31 "BGP neighbor address to clear\n"
32 "Address family\n"
33 "Address Family Modifier\n"
34 "Soft reconfig\n"
35 "Soft reconfig outbound update\n")
36
37 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_any_cmd_vtysh,
38 "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D any",
39 "Add an access list entry\n"
40 "IP extended access list\n"
41 "IP extended access list (expanded range)\n"
42 "Specify packets to reject\n"
43 "Specify packets to forward\n"
44 "Any Internet Protocol\n"
45 "A single source host\n"
46 "Source address\n"
47 "Any destination host\n")
48
49 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_description_cmd_vtysh,
50 "ip prefix-list WORD description .LINE",
51 "IP information\n"
52 "Build a prefix list\n"
53 "Name of a prefix list\n"
54 "Prefix-list specific description\n"
55 "Up to 80 characters describing this prefix-list\n")
56
57 DEFSH (VTYSH_ZEBRA, no_ipv6_route_cmd_vtysh,
58 "no ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE)",
59 "Negate a command or set its defaults\n"
60 "IP information\n"
61 "Establish static routes\n"
62 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
63 "IPv6 gateway address\n"
64 "IPv6 gateway interface name\n")
65
66 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_inter_external_cmd_vtysh,
67 "distance ospf intra-area <1-255> inter-area <1-255> external <1-255>",
68 "Define an administrative distance\n"
69 "OSPF Administrative distance\n"
70 "Intra-area routes\n"
71 "Distance for intra-area routes\n"
72 "Inter-area routes\n"
73 "Distance for inter-area routes\n"
74 "External routes\n"
75 "Distance for external routes\n")
76
77 DEFSH (VTYSH_OSPFD, area_default_cost_cmd_vtysh,
78 "area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>",
79 "OSPF area parameters\n"
80 "OSPF area ID in IP address format\n"
81 "OSPF area ID as a decimal value\n"
82 "Set the summary-default cost of a NSSA or stub area\n"
83 "Stub's advertised default summary cost\n")
84
85 DEFSH (VTYSH_RIPNGD, default_information_originate_cmd_vtysh,
86 "default-information originate",
87 "Default route information\n"
88 "Distribute default route\n")
89
90 DEFSH (VTYSH_BGPD, no_neighbor_update_source_cmd_vtysh,
91 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "update-source",
92 "Negate a command or set its defaults\n"
93 "Specify neighbor router\n"
94 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
95 "Source of routing updates\n"
96 "Interface name\n")
97
98 DEFSH (VTYSH_BGPD, show_bgp_ipv6_route_cmd_vtysh,
99 "show bgp ipv6 X:X::X:X",
100 "Show running system information\n"
101 "BGP information\n"
102 "Address family\n"
103 "Network in the BGP routing table to display\n")
104
105 DEFSH (VTYSH_ZEBRA, no_bandwidth_if_cmd_vtysh,
106 "no bandwidth",
107 "Negate a command or set its defaults\n"
108 "Set bandwidth informational parameter\n")
109
110 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_any_cmd_vtysh,
111 "access-list (<1-99>|<1300-1999>) (deny|permit) any",
112 "Add an access list entry\n"
113 "IP standard access list\n"
114 "IP standard access list (expanded range)\n"
115 "Specify packets to reject\n"
116 "Specify packets to forward\n"
117 "Any source host\n")
118
119 DEFSH (VTYSH_BGPD, no_match_ipv6_next_hop_cmd_vtysh,
120 "no match ipv6 next-hop X:X::X:X",
121 "Negate a command or set its defaults\n"
122 "Match values from routing table\n"
123 "IPv6 information\n"
124 "Match IPv6 next-hop address of route\n"
125 "IPv6 address of next hop\n")
126
127 DEFSH (VTYSH_BGPD, clear_bgp_external_out_cmd_vtysh,
128 "clear bgp external out",
129 "Reset functions\n"
130 "BGP information\n"
131 "Clear all external peers\n"
132 "Soft reconfig outbound update\n")
133
134 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_le_cmd_vtysh,
135 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32>",
136 "IP information\n"
137 "Build a prefix list\n"
138 "Name of a prefix list\n"
139 "sequence number of an entry\n"
140 "Sequence number\n"
141 "Specify packets to reject\n"
142 "Specify packets to forward\n"
143 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
144 "Maximum prefix length to be matched\n"
145 "Maximum prefix length\n")
146
147 DEFSH (VTYSH_BGPD, show_ip_bgp_instance_summary_cmd_vtysh,
148 "show ip bgp view WORD summary",
149 "Show running system information\n"
150 "IP information\n"
151 "BGP information\n"
152 "BGP view\n"
153 "View name\n"
154 "Summary of BGP neighbor status\n")
155
156 DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_metric_routemap_cmd_vtysh,
157 "redistribute kernel metric <0-16> route-map WORD",
158 "Redistribute information from another routing protocol\n"
159 "Kernel routes\n"
160 "Metric\n"
161 "Metric value\n"
162 "Route map reference\n"
163 "Pointer to route-map entries\n")
164
165 DEFSH (VTYSH_BGPD, no_bgp_distance_source_cmd_vtysh,
166 "no distance <1-255> A.B.C.D/M",
167 "Negate a command or set its defaults\n"
168 "Define an administrative distance\n"
169 "Administrative distance\n"
170 "IP source prefix\n")
171
172 DEFSH (VTYSH_OSPF6D, no_ospf6_redistribute_cmd_vtysh,
173 "no redistribute (static|kernel|connected|ripng|bgp)",
174 "Negate a command or set its defaults\n"
175 "Redistribute\n"
176 "Static route\n"
177 "Kernel route\n"
178 "Connected route\n"
179 "RIPng route\n"
180 "BGP route\n"
181 )
182
183 DEFSH (VTYSH_RIPNGD, ripng_aggregate_address_cmd_vtysh,
184 "aggregate-address X:X::X:X/M",
185 "Set aggregate RIPng route announcement\n"
186 "Aggregate network\n")
187
188 DEFSH (VTYSH_RIPD, send_lifetime_duration_month_day_cmd_vtysh,
189 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> duration <1-2147483646>",
190 "Set send lifetime of the key\n"
191 "Time to start\n"
192 "Month of the year to start\n"
193 "Day of th month to start\n"
194 "Year to start\n"
195 "Duration of the key\n"
196 "Duration seconds\n")
197
198 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_ge_cmd_vtysh,
199 "ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32>",
200 "IP information\n"
201 "Build a prefix list\n"
202 "Name of a prefix list\n"
203 "Specify packets to reject\n"
204 "Specify packets to forward\n"
205 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
206 "Minimum prefix length to be matched\n"
207 "Minimum prefix length\n")
208
209 DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_cmd_vtysh,
210 "clear ip bgp dampening",
211 "Reset functions\n"
212 "IP information\n"
213 "BGP information\n"
214 "Clear route flap dampening information\n")
215
216 DEFSH (VTYSH_RIPNGD, debug_ripng_zebra_cmd_vtysh,
217 "debug ripng zebra",
218 "Debugging functions (see also 'undebug')\n"
219 "RIPng configuration\n"
220 "Debug option set for ripng and zebra communication\n")
221
222 DEFSH (VTYSH_BGPD, show_ip_bgp_community_cmd_vtysh,
223 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export)",
224 "Show running system information\n"
225 "IP information\n"
226 "BGP information\n"
227 "Display routes matching the communities\n"
228 "community number\n"
229 "Do not send outside local AS (well-known community)\n"
230 "Do not advertise to any peer (well-known community)\n"
231 "Do not export to next AS (well-known community)\n")
232
233 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_cmd_vtysh,
234 "no redistribute static",
235 "Negate a command or set its defaults\n"
236 "Redistribute information from another routing protocol\n"
237 "Static routes\n")
238
239 DEFSH (VTYSH_BGPD, show_bgp_community3_cmd_vtysh,
240 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
241 "Show running system information\n"
242 "BGP information\n"
243 "Display routes matching the communities\n"
244 "community number\n"
245 "Do not send outside local AS (well-known community)\n"
246 "Do not advertise to any peer (well-known community)\n"
247 "Do not export to next AS (well-known community)\n"
248 "community number\n"
249 "Do not send outside local AS (well-known community)\n"
250 "Do not advertise to any peer (well-known community)\n"
251 "Do not export to next AS (well-known community)\n"
252 "community number\n"
253 "Do not send outside local AS (well-known community)\n"
254 "Do not advertise to any peer (well-known community)\n"
255 "Do not export to next AS (well-known community)\n")
256
257 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged_cmd_vtysh,
258 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged",
259 "Negate a command or set its defaults\n"
260 "Specify neighbor router\n"
261 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
262 "BGP attribute is propagated unchanged to this neighbor\n")
263
264 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_all_cmd_vtysh,
265 "show ipv6 bgp community",
266 "Show running system information\n"
267 "IPv6 information\n"
268 "BGP information\n"
269 "Display routes matching the communities\n")
270
271 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_prefix_list_val_cmd_vtysh,
272 "no match ip next-hop prefix-list WORD",
273 "Negate a command or set its defaults\n"
274 "Match values from routing table\n"
275 "IP information\n"
276 "Match next-hop address of route\n"
277 "Match entries of prefix-lists\n"
278 "IP prefix-list name\n")
279
280 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_cmd_vtysh,
281 "redistribute (connected|kernel|ospf6|ripng|static)",
282 "Redistribute information from another routing protocol\n"
283 "Connected\n"
284 "Kernel routes\n"
285 "Open Shurtest Path First (OSPFv3)\n"
286 "Routing Information Protocol (RIPng)\n"
287 "Static routes\n")
288
289 DEFSH (VTYSH_BGPD, no_neighbor_local_as_cmd_vtysh,
290 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as",
291 "Negate a command or set its defaults\n"
292 "Specify neighbor router\n"
293 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
294 "Specify a local-as number\n")
295
296 DEFSH (VTYSH_OSPFD, ospf_network_cmd_vtysh,
297 "ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)",
298 "OSPF interface commands\n"
299 "Network type\n"
300 "Specify OSPF broadcast multi-access network\n"
301 "Specify OSPF NBMA network\n"
302 "Specify OSPF point-to-multipoint network\n"
303 "Specify OSPF point-to-point network\n")
304
305 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_set_metric_cmd_vtysh,
306 "no set metric",
307 "Negate a command or set its defaults\n"
308 "Set values in destination routing protocol\n"
309 "Metric value for destination routing protocol\n")
310
311 DEFSH (VTYSH_BGPD, show_ip_bgp_filter_list_cmd_vtysh,
312 "show ip bgp filter-list WORD",
313 "Show running system information\n"
314 "IP information\n"
315 "BGP information\n"
316 "Display routes conforming to the filter-list\n"
317 "Regular expression access list name\n")
318
319 DEFSH (VTYSH_OSPFD, no_area_range_advertise_cmd_vtysh,
320 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise",
321 "Negate a command or set its defaults\n"
322 "OSPF area parameters\n"
323 "OSPF area ID in IP address format\n"
324 "OSPF area ID as a decimal value\n"
325 "OSPF area range for route advertise (default)\n"
326 "area range prefix\n"
327 "advertise this range\n")
328
329 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_ge_cmd_vtysh,
330 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128>",
331 "IPv6 information\n"
332 "Build a prefix list\n"
333 "Name of a prefix list\n"
334 "sequence number of an entry\n"
335 "Sequence number\n"
336 "Specify packets to reject\n"
337 "Specify packets to forward\n"
338 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
339 "Minimum prefix length to be matched\n"
340 "Minimum prefix length\n")
341
342 DEFSH (VTYSH_BGPD, no_bgp_timers_cmd_vtysh,
343 "no timers bgp",
344 "Negate a command or set its defaults\n"
345 "Adjust routing timers\n"
346 "BGP timers\n")
347
348 DEFSH (VTYSH_BGPD, no_bgp_enforce_first_as_cmd_vtysh,
349 "no bgp enforce-first-as",
350 "Negate a command or set its defaults\n"
351 "BGP information\n"
352 "Enforce the first AS for EBGP routes\n")
353
354 DEFSH (VTYSH_RIPD, no_ip_rip_authentication_mode_cmd_vtysh,
355 "no ip rip authentication mode",
356 "Negate a command or set its defaults\n"
357 "IP information\n"
358 "Routing Information Protocol\n"
359 "Authentication control\n"
360 "Authentication mode\n")
361
362 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_cmd_vtysh,
363 "distance ospf intra-area <1-255>",
364 "Define an administrative distance\n"
365 "OSPF Administrative distance\n"
366 "Intra-area routes\n"
367 "Distance for intra-area routes\n")
368
369 DEFSH (VTYSH_BGPD, match_ipv6_address_cmd_vtysh,
370 "match ipv6 address WORD",
371 "Match values from routing table\n"
372 "IPv6 information\n"
373 "Match IPv6 address of route\n"
374 "IPv6 access-list name\n")
375
376 DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_cmd_vtysh,
377 "redistribute static",
378 "Redistribute information from another routing protocol\n"
379 "Static routes\n")
380
381 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_in_cmd_vtysh,
382 "clear ip bgp * soft in",
383 "Reset functions\n"
384 "IP information\n"
385 "BGP information\n"
386 "Clear all peers\n"
387 "Soft reconfig\n"
388 "Soft reconfig inbound update\n")
389
390 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_routemap_cmd_vtysh,
391 "no redistribute ospf6 metric <0-16> route-map WORD",
392 "Negate a command or set its defaults\n"
393 "Redistribute information from another routing protocol\n"
394 "IPv6 Open Shortest Path First (OSPFv3)\n"
395 "Metric\n"
396 "Metric value\n"
397 "Route map reference\n"
398 "Pointer to route-map entries\n")
399
400 DEFSH (VTYSH_RIPD, no_router_rip_cmd_vtysh,
401 "no router rip",
402 "Negate a command or set its defaults\n"
403 "Enable a routing process\n"
404 "Routing Information Protocol (RIP)\n")
405
406 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_summary_name_cmd_vtysh,
407 "show ip prefix-list summary WORD",
408 "Show running system information\n"
409 "IP information\n"
410 "Build a prefix list\n"
411 "Summary of prefix lists\n"
412 "Name of a prefix list\n")
413
414 DEFSH (VTYSH_BGPD, clear_bgp_all_cmd_vtysh,
415 "clear bgp *",
416 "Reset functions\n"
417 "BGP information\n"
418 "Clear all peers\n")
419
420 DEFSH (VTYSH_BGPD, no_neighbor_strict_capability_cmd_vtysh,
421 "no neighbor (A.B.C.D|X:X::X:X) " "strict-capability-match",
422 "Negate a command or set its defaults\n"
423 "Specify neighbor router\n"
424 "Neighbor address\nIPv6 address\n"
425 "Strict capability negotiation match\n")
426
427 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community2_cmd_vtysh,
428 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
429 "Show running system information\n"
430 "BGP information\n"
431 "Address family\n"
432 "Display routes matching the communities\n"
433 "community number\n"
434 "Do not send outside local AS (well-known community)\n"
435 "Do not advertise to any peer (well-known community)\n"
436 "Do not export to next AS (well-known community)\n"
437 "community number\n"
438 "Do not send outside local AS (well-known community)\n"
439 "Do not advertise to any peer (well-known community)\n"
440 "Do not export to next AS (well-known community)\n")
441
442 DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD, no_set_metric_val_cmd_vtysh,
443 "no set metric <0-4294967295>",
444 "Negate a command or set its defaults\n"
445 "Set values in destination routing protocol\n"
446 "Metric value for destination routing protocol\n"
447 "Metric value\n")
448
449 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_in_cmd_vtysh,
450 "clear ip bgp * in",
451 "Reset functions\n"
452 "IP information\n"
453 "BGP information\n"
454 "Clear all peers\n"
455 "Soft reconfig inbound update\n")
456
457 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_out_cmd_vtysh,
458 "clear ip bgp peer-group WORD out",
459 "Reset functions\n"
460 "IP information\n"
461 "BGP information\n"
462 "Clear all members of peer-group\n"
463 "BGP peer-group name\n"
464 "Soft reconfig outbound update\n")
465
466 DEFSH (VTYSH_OSPFD, no_network_area_cmd_vtysh,
467 "no network A.B.C.D/M area (A.B.C.D|<0-4294967295>)",
468 "Negate a command or set its defaults\n"
469 "Enable routing on an IP network\n"
470 "OSPF network prefix\n"
471 "Set the OSPF area ID\n"
472 "OSPF area ID in IP address format\n"
473 "OSPF area ID as a decimal value\n")
474
475 DEFSH (VTYSH_OSPFD, neighbor_pollinterval_cmd_vtysh,
476 "neighbor A.B.C.D poll-interval <1-65535>",
477 "Specify neighbor router\n"
478 "Neighbor IP address\n"
479 "Dead Neighbor Polling interval\n"
480 "Seconds\n")
481
482 DEFSH (VTYSH_BGPD, neighbor_activate_cmd_vtysh,
483 "neighbor (A.B.C.D|X:X::X:X|WORD) " "activate",
484 "Specify neighbor router\n"
485 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
486 "Enable the Address Family for this Neighbor\n")
487
488 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_route_map_cmd_vtysh,
489 "show ip bgp flap-statistics route-map WORD",
490 "Show running system information\n"
491 "IP information\n"
492 "BGP information\n"
493 "Display flap statistics of routes\n"
494 "Display routes matching the route-map\n"
495 "A route-map to match on\n")
496
497 DEFSH (VTYSH_OSPF6D|VTYSH_BGPD, no_match_ipv6_address_prefix_list_cmd_vtysh,
498 "no match ipv6 address prefix-list WORD",
499 "Negate a command or set its defaults\n"
500 "Match values from routing table\n"
501 "IPv6 information\n"
502 "Match address of route\n"
503 "Match entries of prefix-lists\n"
504 "IP prefix-list name\n")
505
506 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_any_cmd_vtysh,
507 "no ipv6 access-list WORD (deny|permit) any",
508 "Negate a command or set its defaults\n"
509 "IPv6 information\n"
510 "Add an access list entry\n"
511 "IPv6 zebra access-list\n"
512 "Specify packets to reject\n"
513 "Specify packets to forward\n"
514 "Any prefixi to match\n")
515
516 DEFSH (VTYSH_ZEBRA, ipv6_nd_reachable_time_cmd_vtysh,
517 "ipv6 nd reachable-time MILLISECONDS",
518 "IP information\n"
519 "Neighbor discovery\n"
520 "Reachable time\n"
521 "Reachable time in milliseconds\n")
522
523 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_ge_le_cmd_vtysh,
524 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128> le <0-128>",
525 "IPv6 information\n"
526 "Build a prefix list\n"
527 "Name of a prefix list\n"
528 "Specify packets to reject\n"
529 "Specify packets to forward\n"
530 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
531 "Minimum prefix length to be matched\n"
532 "Minimum prefix length\n"
533 "Maximum prefix length to be matched\n"
534 "Maximum prefix length\n")
535
536 DEFSH (VTYSH_BGPD, aggregate_address_mask_cmd_vtysh,
537 "aggregate-address A.B.C.D A.B.C.D",
538 "Configure BGP aggregate entries\n"
539 "Aggregate address\n"
540 "Aggregate mask\n")
541
542 DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_metric_cmd_vtysh,
543 "redistribute static metric <0-16>",
544 "Redistribute information from another routing protocol\n"
545 "Static routes\n"
546 "Metric\n"
547 "Metric value\n")
548
549 DEFSH (VTYSH_OSPFD, interface_ip_ospf_authentication_cmd_vtysh,
550 "ip ospf authentication",
551 "IP Information\n"
552 "OSPF interface commands\n"
553 "Enable authentication on this interface\n")
554
555 DEFSH (VTYSH_OSPFD, area_vlink_authtype_authkey_cmd_vtysh,
556 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
557 "(authentication|) "
558 "(authentication-key|) AUTH_KEY",
559 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
560 "Enable authentication on this virtual link\n" "dummy string \n"
561 "Authentication password (key)\n" "The OSPF password (key)")
562
563 DEFSH (VTYSH_OSPFD, no_ospf_compatible_rfc1583_cmd_vtysh,
564 "no compatible rfc1583",
565 "Negate a command or set its defaults\n"
566 "OSPF compatibility list\n"
567 "compatible with RFC 1583\n")
568
569 DEFSH (VTYSH_OSPFD, debug_ospf_ism_cmd_vtysh,
570 "debug ospf ism",
571 "Debugging functions (see also 'undebug')\n"
572 "OSPF information\n"
573 "OSPF Interface State Machine\n")
574
575 DEFSH (VTYSH_RIPD, rip_split_horizon_cmd_vtysh,
576 "ip split-horizon",
577 "IP information\n"
578 "Perform split horizon\n")
579
580 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_list_exact_cmd_vtysh,
581 "show ipv6 mbgp community-list WORD exact-match",
582 "Show running system information\n"
583 "IPv6 information\n"
584 "MBGP information\n"
585 "Display routes matching the community-list\n"
586 "community-list name\n"
587 "Exact match of the communities\n")
588
589 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_routemap_cmd_vtysh,
590 "default-information originate always route-map WORD",
591 "Control distribution of default information\n"
592 "Distribute a default route\n"
593 "Always advertise default route\n"
594 "Route map reference\n"
595 "Pointer to route-map entries\n")
596
597 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_cmd_vtysh,
598 "clear bgp ipv6 external soft",
599 "Reset functions\n"
600 "BGP information\n"
601 "Address family\n"
602 "Clear all external peers\n"
603 "Soft reconfig\n")
604
605 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_sequence_number_cmd_vtysh,
606 "ip prefix-list sequence-number",
607 "IP information\n"
608 "Build a prefix list\n"
609 "Include/exclude sequence numbers in NVGEN\n")
610
611 DEFSH (VTYSH_OSPFD, no_ip_ospf_hello_interval_cmd_vtysh,
612 "no ip ospf hello-interval",
613 "Negate a command or set its defaults\n"
614 "IP Information\n"
615 "OSPF interface commands\n"
616 "Time between HELLO packets\n")
617
618 DEFSH (VTYSH_BGPD, show_bgp_neighbor_received_routes_cmd_vtysh,
619 "show bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
620 "Show running system information\n"
621 "BGP information\n"
622 "Detailed information on TCP and BGP neighbor connections\n"
623 "Neighbor to display information about\n"
624 "Neighbor to display information about\n"
625 "Display the received routes from neighbor\n")
626
627 DEFSH (VTYSH_OSPFD, no_ip_ospf_cost_cmd_vtysh,
628 "no ip ospf cost",
629 "Negate a command or set its defaults\n"
630 "IP Information\n"
631 "OSPF interface commands\n"
632 "Interface cost\n")
633
634 DEFSH (VTYSH_BGPD, show_ip_bgp_community4_cmd_vtysh,
635 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
636 "Show running system information\n"
637 "IP information\n"
638 "BGP information\n"
639 "Display routes matching the communities\n"
640 "community number\n"
641 "Do not send outside local AS (well-known community)\n"
642 "Do not advertise to any peer (well-known community)\n"
643 "Do not export to next AS (well-known community)\n"
644 "community number\n"
645 "Do not send outside local AS (well-known community)\n"
646 "Do not advertise to any peer (well-known community)\n"
647 "Do not export to next AS (well-known community)\n"
648 "community number\n"
649 "Do not send outside local AS (well-known community)\n"
650 "Do not advertise to any peer (well-known community)\n"
651 "Do not export to next AS (well-known community)\n"
652 "community number\n"
653 "Do not send outside local AS (well-known community)\n"
654 "Do not advertise to any peer (well-known community)\n"
655 "Do not export to next AS (well-known community)\n")
656
657 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_ge_le_cmd_vtysh,
658 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128> le <0-128>",
659 "Negate a command or set its defaults\n"
660 "IPv6 information\n"
661 "Build a prefix list\n"
662 "Name of a prefix list\n"
663 "sequence number of an entry\n"
664 "Sequence number\n"
665 "Specify packets to reject\n"
666 "Specify packets to forward\n"
667 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
668 "Minimum prefix length to be matched\n"
669 "Minimum prefix length\n"
670 "Maximum prefix length to be matched\n"
671 "Maximum prefix length\n")
672
673 DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_in_cmd_vtysh,
674 "clear bgp peer-group WORD soft in",
675 "Reset functions\n"
676 "BGP information\n"
677 "Clear all members of peer-group\n"
678 "BGP peer-group name\n"
679 "Soft reconfig\n"
680 "Soft reconfig inbound update\n")
681
682 DEFSH (VTYSH_BGPD, no_aggregate_address_as_set_cmd_vtysh,
683 "no aggregate-address A.B.C.D/M as-set",
684 "Negate a command or set its defaults\n"
685 "Configure BGP aggregate entries\n"
686 "Aggregate prefix\n"
687 "Generate AS set path information\n")
688
689 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_out_cmd_vtysh,
690 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft out",
691 "Reset functions\n"
692 "IP information\n"
693 "BGP information\n"
694 "Clear peers with the AS number\n"
695 "Address family\n"
696 "Address Family modifier\n"
697 "Address Family modifier\n"
698 "Soft reconfig\n"
699 "Soft reconfig outbound update\n")
700
701 DEFSH (VTYSH_BGPD, no_set_local_pref_cmd_vtysh,
702 "no set local-preference",
703 "Negate a command or set its defaults\n"
704 "Set values in destination routing protocol\n"
705 "BGP local preference path attribute\n")
706
707 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_in_prefix_filter_cmd_vtysh,
708 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in prefix-filter",
709 "Reset functions\n"
710 "IP information\n"
711 "BGP information\n"
712 "BGP neighbor address to clear\n"
713 "Address family\n"
714 "Address Family modifier\n"
715 "Address Family modifier\n"
716 "Soft reconfig inbound update\n"
717 "Push out the existing ORF prefix-list\n")
718
719 DEFSH (VTYSH_BGPD, old_no_ipv6_bgp_network_cmd_vtysh,
720 "no ipv6 bgp network X:X::X:X/M",
721 "Negate a command or set its defaults\n"
722 "IPv6 information\n"
723 "BGP information\n"
724 "Specify a network to announce via BGP\n"
725 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
726
727 DEFSH (VTYSH_ZEBRA, ipv6_nd_send_ra_cmd_vtysh,
728 "ipv6 nd send-ra",
729 "IP information\n"
730 "Neighbor discovery\n"
731 "Send Router Advertisement\n")
732
733 DEFSH (VTYSH_BGPD, debug_bgp_normal_cmd_vtysh,
734 "debug bgp",
735 "Debugging functions (see also 'undebug')\n"
736 "BGP information\n")
737
738 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_routemap_cmd_vtysh,
739 "no redistribute static metric <0-16> route-map WORD",
740 "Negate a command or set its defaults\n"
741 "Redistribute information from another routing protocol\n"
742 "Static routes\n"
743 "Metric\n"
744 "Metric value\n"
745 "Route map reference\n"
746 "Pointer to route-map entries\n")
747
748 DEFSH (VTYSH_ZEBRA, no_bandwidth_if_val_cmd_vtysh,
749 "no bandwidth <1-10000000>",
750 "Negate a command or set its defaults\n"
751 "Set bandwidth informational parameter\n"
752 "Bandwidth in kilobits\n")
753
754 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh,
755 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*) (A.B.C.D|*) (A.B.C.D|*) (dump|summary|)",
756 "Show running system information\n"
757 "IPv6 Information\n"
758 "Open Shortest Path First (OSPF) for IPv6\n"
759 "LSA Database\n"
760 "Router-LSA\n"
761 "Network-LSA\n"
762 "AS-External-LSA\n"
763 "Intra-Area-Prefix-LSA\n"
764 "Inter-Area-Router-LSA\n"
765 "Inter-Area-Prefix-LSA\n"
766 "Link-LSA\n"
767 "All LS Type\n"
768 "Link State ID\n"
769 "All Link State ID\n"
770 "Advertising Router\n"
771 "All Advertising Router\n"
772 "Dump raw LSA data in Hex\n"
773 "show summary of LSA\n"
774 )
775
776 DEFSH (VTYSH_BGPD, no_bgp_router_id_val_cmd_vtysh,
777 "no bgp router-id A.B.C.D",
778 "Negate a command or set its defaults\n"
779 "BGP information\n"
780 "Override configured router identifier\n"
781 "Manually configured router identifier\n")
782
783 DEFSH (VTYSH_RIPD, no_rip_offset_list_cmd_vtysh,
784 "no offset-list WORD (in|out) <0-16>",
785 "Negate a command or set its defaults\n"
786 "Modify RIP metric\n"
787 "Access-list name\n"
788 "For incoming updates\n"
789 "For outgoing updates\n"
790 "Metric value\n")
791
792 DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_detail_all_cmd_vtysh,
793 "show ip ospf neighbor detail all",
794 "Show running system information\n"
795 "IP information\n"
796 "OSPF information\n"
797 "Neighbor list\n"
798 "detail of all neighbors\n"
799 "include down status neighbor\n")
800
801 DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_cmd_vtysh,
802 "show bgp ipv6 X:X::X:X/M",
803 "Show running system information\n"
804 "BGP information\n"
805 "Address family\n"
806 "IPv6 prefix <network>/<length>\n")
807
808 DEFSH (VTYSH_BGPD, no_dump_bgp_routes_cmd_vtysh,
809 "no dump bgp routes-mrt [PATH] [INTERVAL]",
810 "Negate a command or set its defaults\n"
811 "Dump packet\n"
812 "BGP packet dump\n"
813 "Dump whole BGP routing table\n")
814
815 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_external_cmd_vtysh,
816 "distance ospf inter-area <1-255> external <1-255>",
817 "Define an administrative distance\n"
818 "OSPF Administrative distance\n"
819 "Inter-area routes\n"
820 "Distance for inter-area routes\n"
821 "External routes\n"
822 "Distance for external routes\n")
823
824 DEFSH (VTYSH_OSPFD, debug_ospf_event_cmd_vtysh,
825 "debug ospf event",
826 "Debugging functions (see also 'undebug')\n"
827 "OSPF information\n"
828 "OSPF event information\n")
829
830 DEFSH (VTYSH_OSPFD, no_ospf_retransmit_interval_cmd_vtysh,
831 "no ospf retransmit-interval",
832 "Negate a command or set its defaults\n"
833 "OSPF interface commands\n"
834 "Time between retransmitting lost link state advertisements\n")
835
836 DEFSH (VTYSH_BGPD, set_community_none_cmd_vtysh,
837 "set community none",
838 "Set values in destination routing protocol\n"
839 "BGP community attribute\n"
840 "No community attribute\n")
841
842 DEFSH (VTYSH_BGPD, debug_bgp_filter_cmd_vtysh,
843 "debug bgp filters",
844 "Debugging functions (see also 'undebug')\n"
845 "BGP information\n"
846 "BGP filters\n")
847
848 DEFSH (VTYSH_OSPF6D, ospf6_routemap_set_forwarding_cmd_vtysh,
849 "set forwarding-address X:X::X:X",
850 "Set value\n"
851 "Forwarding Address\n"
852 "IPv6 Address\n")
853
854 DEFSH (VTYSH_BGPD, no_bgp_bestpath_compare_router_id_cmd_vtysh,
855 "no bgp bestpath compare-routerid",
856 "Negate a command or set its defaults\n"
857 "BGP specific commands\n"
858 "Change the default bestpath selection\n"
859 "Compare router-id for identical EBGP paths\n")
860
861 DEFSH (VTYSH_RIPD, no_match_ip_address_val_cmd_vtysh,
862 "no match ip address WORD",
863 "Negate a command or set its defaults\n"
864 "Match values from routing table\n"
865 "IP information\n"
866 "Match address of route\n"
867 "IP access-list name\n")
868
869 DEFSH (VTYSH_ZEBRA, bandwidth_if_cmd_vtysh,
870 "bandwidth <1-10000000>",
871 "Set bandwidth informational parameter\n"
872 "Bandwidth in kilobits\n")
873
874 DEFSH (VTYSH_OSPFD, ospf_default_metric_cmd_vtysh,
875 "default-metric <0-16777214>",
876 "Set metric of redistributed routes\n"
877 "Default metric\n")
878
879 DEFSH (VTYSH_BGPD, no_neighbor_allowas_in_cmd_vtysh,
880 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in",
881 "Negate a command or set its defaults\n"
882 "Specify neighbor router\n"
883 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
884 "allow local ASN appears in aspath attribute\n")
885
886 DEFSH (VTYSH_RIPNGD, no_ripng_default_metric_cmd_vtysh,
887 "no default-metric",
888 "Negate a command or set its defaults\n"
889 "Set a metric of redistribute routes\n"
890 "Default metric\n")
891
892 DEFSH (VTYSH_OSPF6D, reload_cmd_vtysh,
893 "reload",
894 "Reloads\n")
895
896 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_spf_tree_cmd_vtysh,
897 "show ipv6 ospf6 area A.B.C.D spf tree",
898 "Show running system information\n"
899 "IPv6 Information\n"
900 "Open Shortest Path First (OSPF) for IPv6\n"
901 "Area information\n"
902 "Area ID (as an IPv4 notation)\n"
903 "Shortest Path First caculation\n"
904 "Displays spf tree\n")
905
906 DEFSH (VTYSH_BGPD, bgp_damp_unset2_cmd_vtysh,
907 "no bgp dampening <1-45> <1-20000> <1-20000> <1-255>",
908 "Negate a command or set its defaults\n"
909 "BGP Specific commands\n"
910 "Enable route-flap dampening\n"
911 "Half-life time for the penalty\n"
912 "Value to start reusing a route\n"
913 "Value to start suppressing a route\n"
914 "Maximum duration to suppress a stable route\n")
915
916 DEFSH (VTYSH_OSPFD, ip_ospf_authentication_key_addr_cmd_vtysh,
917 "ip ospf authentication-key AUTH_KEY A.B.C.D",
918 "IP Information\n"
919 "OSPF interface commands\n"
920 "Authentication password (key)\n"
921 "The OSPF password (key)\n"
922 "Address of interface")
923
924 DEFSH (VTYSH_RIPD, ip_rip_send_version_2_cmd_vtysh,
925 "ip rip send version 2 1",
926 "IP information\n"
927 "Routing Information Protocol\n"
928 "Advertisement transmission\n"
929 "Version control\n"
930 "RIP version 2\n"
931 "RIP version 1\n")
932
933 DEFSH (VTYSH_ZEBRA, ipv6_route_ifname_cmd_vtysh,
934 "ipv6 route X:X::X:X/M X:X::X:X INTERFACE",
935 "IP information\n"
936 "Establish static routes\n"
937 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
938 "IPv6 gateway address\n"
939 "IPv6 gateway interface name\n")
940
941 DEFSH (VTYSH_BGPD, show_bgp_community_all_cmd_vtysh,
942 "show bgp community",
943 "Show running system information\n"
944 "BGP information\n"
945 "Display routes matching the communities\n")
946
947 DEFSH (VTYSH_BGPD, neighbor_port_cmd_vtysh,
948 "neighbor (A.B.C.D|X:X::X:X) " "port <0-65535>",
949 "Specify neighbor router\n"
950 "Neighbor address\nIPv6 address\n"
951 "Neighbor's BGP port\n"
952 "TCP port number\n")
953
954 DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_prefix_cmd_vtysh,
955 "clear ip bgp dampening A.B.C.D/M",
956 "Reset functions\n"
957 "IP information\n"
958 "BGP information\n"
959 "Clear route flap dampening information\n"
960 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
961
962 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_out_cmd_vtysh,
963 "clear bgp ipv6 * soft out",
964 "Reset functions\n"
965 "BGP information\n"
966 "Address family\n"
967 "Clear all peers\n"
968 "Soft reconfig\n"
969 "Soft reconfig outbound update\n")
970
971 DEFSH (VTYSH_BGPD, show_ip_community_list_cmd_vtysh,
972 "show ip community-list",
973 "Show running system information\n"
974 "IP information\n"
975 "List community-list\n")
976
977 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_mask_host_cmd_vtysh,
978 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D host A.B.C.D",
979 "Negate a command or set its defaults\n"
980 "Add an access list entry\n"
981 "IP extended access list\n"
982 "IP extended access list (expanded range)\n"
983 "Specify packets to reject\n"
984 "Specify packets to forward\n"
985 "Any Internet Protocol\n"
986 "Source address\n"
987 "Source wildcard bits\n"
988 "A single destination host\n"
989 "Destination address\n")
990
991 DEFSH (VTYSH_ZEBRA, ipv6_nd_ra_lifetime_cmd_vtysh,
992 "ipv6 nd ra-lifetime SECONDS",
993 "IP information\n"
994 "Neighbor discovery\n"
995 "Router lifetime\n"
996 "Router lifetime in seconds\n")
997
998 DEFSH (VTYSH_BGPD, set_ecommunity_soo_cmd_vtysh,
999 "set extcommunity soo .ASN:nn_or_IP-address:nn",
1000 "Set values in destination routing protocol\n"
1001 "BGP extended community attribute\n"
1002 "Site-of-Origin extended community\n"
1003 "VPN extended community\n")
1004
1005 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community4_exact_cmd_vtysh,
1006 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
1007 "Show running system information\n"
1008 "BGP information\n"
1009 "Address family\n"
1010 "Display routes matching the communities\n"
1011 "community number\n"
1012 "Do not send outside local AS (well-known community)\n"
1013 "Do not advertise to any peer (well-known community)\n"
1014 "Do not export to next AS (well-known community)\n"
1015 "community number\n"
1016 "Do not send outside local AS (well-known community)\n"
1017 "Do not advertise to any peer (well-known community)\n"
1018 "Do not export to next AS (well-known community)\n"
1019 "community number\n"
1020 "Do not send outside local AS (well-known community)\n"
1021 "Do not advertise to any peer (well-known community)\n"
1022 "Do not export to next AS (well-known community)\n"
1023 "community number\n"
1024 "Do not send outside local AS (well-known community)\n"
1025 "Do not advertise to any peer (well-known community)\n"
1026 "Do not export to next AS (well-known community)\n"
1027 "Exact match of the communities")
1028
1029 DEFSH (VTYSH_BGPD, no_set_originator_id_cmd_vtysh,
1030 "no set originator-id",
1031 "Negate a command or set its defaults\n"
1032 "Set values in destination routing protocol\n"
1033 "BGP originator ID attribute\n")
1034
1035 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_cmd_vtysh,
1036 "show ip prefix-list WORD A.B.C.D/M",
1037 "Show running system information\n"
1038 "IP information\n"
1039 "Build a prefix list\n"
1040 "Name of a prefix list\n"
1041 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
1042
1043 DEFSH (VTYSH_RIPD, send_lifetime_infinite_day_month_cmd_vtysh,
1044 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> infinite",
1045 "Set send lifetime of the key\n"
1046 "Time to start\n"
1047 "Day of th month to start\n"
1048 "Month of the year to start\n"
1049 "Year to start\n"
1050 "Never expires")
1051
1052 DEFSH (VTYSH_BGPD, no_neighbor_description_val_cmd_vtysh,
1053 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "description .LINE",
1054 "Negate a command or set its defaults\n"
1055 "Specify neighbor router\n"
1056 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1057 "Neighbor specific description\n"
1058 "Up to 80 characters describing this neighbor\n")
1059
1060 DEFSH (VTYSH_ZEBRA, ipv6_nd_suppress_ra_cmd_vtysh,
1061 "ipv6 nd suppress-ra",
1062 "IP information\n"
1063 "Neighbor discovery\n"
1064 "Suppress Router Advertisement\n")
1065
1066 DEFSH (VTYSH_BGPD, no_neighbor_default_originate_cmd_vtysh,
1067 "no neighbor (A.B.C.D|X:X::X:X) " "default-originate",
1068 "Negate a command or set its defaults\n"
1069 "Specify neighbor router\n"
1070 "Neighbor address\nIPv6 address\n"
1071 "Originate default route to this neighbor\n")
1072
1073 DEFSH (VTYSH_RIPD, no_rip_passive_interface_cmd_vtysh,
1074 "no passive-interface IFNAME",
1075 "Negate a command or set its defaults\n"
1076 "Suppress routing updates on an interface\n"
1077 "Interface name\n")
1078
1079 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_remark_arg_cmd_vtysh,
1080 "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark .LINE",
1081 "Negate a command or set its defaults\n"
1082 "Add an access list entry\n"
1083 "IP standard access list\n"
1084 "IP extended access list\n"
1085 "IP standard access list (expanded range)\n"
1086 "IP extended access list (expanded range)\n"
1087 "IP zebra access-list\n"
1088 "Access list entry comment\n"
1089 "Comment up to 100 characters\n")
1090
1091 DEFSH (VTYSH_BGPD, aggregate_address_as_set_cmd_vtysh,
1092 "aggregate-address A.B.C.D/M as-set",
1093 "Configure BGP aggregate entries\n"
1094 "Aggregate prefix\n"
1095 "Generate AS set path information\n")
1096
1097 DEFSH (VTYSH_OSPF6D, interface_area_cmd_vtysh,
1098 "interface IFNAME area A.B.C.D",
1099 "Enable routing on an IPv6 interface\n"
1100 "Interface name(e.g. ep0)\n"
1101 "Set the OSPF6 area ID\n"
1102 "OSPF6 area ID in IPv4 address notation\n"
1103 )
1104
1105 DEFSH (VTYSH_BGPD, no_neighbor_send_community_type_cmd_vtysh,
1106 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community (both|extended|standard)",
1107 "Negate a command or set its defaults\n"
1108 "Specify neighbor router\n"
1109 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1110 "Send Community attribute to this neighbor\n"
1111 "Send Standard and Extended Community attributes\n"
1112 "Send Extended Community attributes\n"
1113 "Send Standard Community attributes\n")
1114
1115 DEFSH (VTYSH_OSPFD, ospf_hello_interval_cmd_vtysh,
1116 "ospf hello-interval <1-65535>",
1117 "OSPF interface commands\n"
1118 "Time between HELLO packets\n"
1119 "Seconds\n")
1120
1121 DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_all_cmd_vtysh,
1122 "show ip ospf neighbor all",
1123 "Show running system information\n"
1124 "IP information\n"
1125 "OSPF information\n"
1126 "Neighbor list\n"
1127 "include down status neighbor\n")
1128
1129 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_cost_cmd_vtysh,
1130 "ipv6 ospf6 cost COST",
1131 "IPv6 Information\n"
1132 "Open Shortest Path First (OSPF) for IPv6\n"
1133 "Interface cost\n"
1134 "<1-65535> Cost\n"
1135 )
1136
1137 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_out_cmd_vtysh,
1138 "clear ip bgp external out",
1139 "Reset functions\n"
1140 "IP information\n"
1141 "BGP information\n"
1142 "Clear all external peers\n"
1143 "Soft reconfig outbound update\n")
1144
1145 DEFSH (VTYSH_RIPD|VTYSH_OSPFD, match_interface_cmd_vtysh,
1146 "match interface WORD",
1147 "Match values from routing table\n"
1148 "Match first hop interface of route\n"
1149 "Interface name\n")
1150
1151 DEFSH (VTYSH_ZEBRA, debug_zebra_kernel_cmd_vtysh,
1152 "debug zebra kernel",
1153 "Debugging functions (see also 'undebug')\n"
1154 "Zebra configuration\n"
1155 "Debug option set for zebra between kernel interface\n")
1156
1157 DEFSH (VTYSH_BGPD, no_aggregate_address_cmd_vtysh,
1158 "no aggregate-address A.B.C.D/M",
1159 "Negate a command or set its defaults\n"
1160 "Configure BGP aggregate entries\n"
1161 "Aggregate prefix\n")
1162
1163 DEFSH (VTYSH_ZEBRA, show_ipv6_forwarding_cmd_vtysh,
1164 "show ipv6 forwarding",
1165 "Show running system information\n"
1166 "IPv6 information\n"
1167 "Forwarding status\n")
1168
1169 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_prefix_advertisement_cmd_vtysh,
1170 "no ipv6 nd prefix-advertisement IPV6PREFIX",
1171 "Negate a command or set its defaults\n"
1172 "IP information\n"
1173 "Neighbor discovery\n"
1174 "Prefix information\n"
1175 "IPv6 prefix\n")
1176
1177 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_instance_cmd_vtysh,
1178 "ipv6 ospf6 instance-id INSTANCE",
1179 "IPv6 Information\n"
1180 "Open Shortest Path First (OSPF) for IPv6\n"
1181 "Instance ID\n"
1182 "<0-255> Instance ID\n"
1183 )
1184
1185 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_rmap_metric_cmd_vtysh,
1186 "redistribute (connected|kernel|ospf|rip|static) route-map WORD metric <0-4294967295>",
1187 "Redistribute information from another routing protocol\n"
1188 "Connected\n"
1189 "Kernel routes\n"
1190 "Open Shurtest Path First (OSPF)\n"
1191 "Routing Information Protocol (RIP)\n"
1192 "Static routes\n"
1193 "Route map reference\n"
1194 "Pointer to route-map entries\n"
1195 "Metric for redistributed routes\n"
1196 "Default metric\n")
1197
1198 DEFSH (VTYSH_BGPD, no_aggregate_address_as_set_summary_cmd_vtysh,
1199 "no aggregate-address A.B.C.D/M as-set summary-only",
1200 "Negate a command or set its defaults\n"
1201 "Configure BGP aggregate entries\n"
1202 "Aggregate prefix\n"
1203 "Generate AS set path information\n"
1204 "Filter more specific routes from updates\n")
1205
1206 DEFSH (VTYSH_BGPD, no_neighbor_capability_dynamic_cmd_vtysh,
1207 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability dynamic",
1208 "Negate a command or set its defaults\n"
1209 "Specify neighbor router\n"
1210 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1211 "Advertise capability to the peer\n"
1212 "Advertise dynamic capability to this neighbor\n")
1213
1214 DEFSH (VTYSH_OSPFD, ospf_retransmit_interval_cmd_vtysh,
1215 "ospf retransmit-interval <3-65535>",
1216 "OSPF interface commands\n"
1217 "Time between retransmitting lost link state advertisements\n"
1218 "Seconds\n")
1219
1220 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_in_cmd_vtysh,
1221 "clear bgp ipv6 peer-group WORD soft in",
1222 "Reset functions\n"
1223 "BGP information\n"
1224 "Address family\n"
1225 "Clear all members of peer-group\n"
1226 "BGP peer-group name\n"
1227 "Soft reconfig\n"
1228 "Soft reconfig inbound update\n")
1229
1230 DEFSH (VTYSH_BGPD, bgp_confederation_identifier_cmd_vtysh,
1231 "bgp confederation identifier <1-65535>",
1232 "BGP specific commands\n"
1233 "AS confederation parameters\n"
1234 "AS number\n"
1235 "Set routing domain confederation AS\n")
1236
1237 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_cmd_vtysh,
1238 "clear ip bgp <1-65535> vpnv4 unicast soft",
1239 "Reset functions\n"
1240 "IP information\n"
1241 "BGP information\n"
1242 "Clear peers with the AS number\n"
1243 "Address family\n"
1244 "Address Family Modifier\n"
1245 "Soft reconfig\n")
1246
1247 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_in_prefix_filter_cmd_vtysh,
1248 "clear bgp ipv6 peer-group WORD in prefix-filter",
1249 "Reset functions\n"
1250 "BGP information\n"
1251 "Address family\n"
1252 "Clear all members of peer-group\n"
1253 "BGP peer-group name\n"
1254 "Soft reconfig inbound update\n"
1255 "Push out prefix-list ORF and do inbound soft reconfig\n")
1256
1257 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged4_cmd_vtysh,
1258 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med (as-path|next-hop)",
1259 "Negate a command or set its defaults\n"
1260 "Specify neighbor router\n"
1261 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1262 "BGP attribute is propagated unchanged to this neighbor\n"
1263 "Med attribute\n"
1264 "As-path attribute\n"
1265 "Nexthop attribute\n")
1266
1267 DEFSH (VTYSH_OSPFD, no_debug_ospf_nsm_cmd_vtysh,
1268 "no debug ospf nsm",
1269 "Negate a command or set its defaults\n"
1270 "Debugging functions (see also 'undebug')\n"
1271 "OSPF information\n"
1272 "OSPF Neighbor State Machine")
1273
1274 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_out_cmd_vtysh,
1275 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft out",
1276 "Reset functions\n"
1277 "IP information\n"
1278 "BGP information\n"
1279 "BGP view\n"
1280 "view name\n"
1281 "Clear all peers\n"
1282 "Address family\n"
1283 "Address Family modifier\n"
1284 "Address Family modifier\n"
1285 "Soft reconfig outbound update\n")
1286
1287 DEFSH (VTYSH_ZEBRA, ip_route_mask_cmd_vtysh,
1288 "ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE)",
1289 "IP information\n"
1290 "Establish static routes\n"
1291 "IP destination prefix\n"
1292 "IP destination prefix mask\n"
1293 "IP gateway address\n"
1294 "IP gateway interface name\n")
1295
1296 DEFSH (VTYSH_BGPD, no_match_ipv6_address_cmd_vtysh,
1297 "no match ipv6 address WORD",
1298 "Negate a command or set its defaults\n"
1299 "Match values from routing table\n"
1300 "IPv6 information\n"
1301 "Match IPv6 address of route\n"
1302 "IPv6 access-list name\n")
1303
1304 DEFSH (VTYSH_BGPD, bgp_damp_set_cmd_vtysh,
1305 "bgp dampening <1-45> <1-20000> <1-20000> <1-255>",
1306 "BGP Specific commands\n"
1307 "Enable route-flap dampening\n"
1308 "Half-life time for the penalty\n"
1309 "Value to start reusing a route\n"
1310 "Value to start suppressing a route\n"
1311 "Maximum duration to suppress a stable route\n")
1312
1313 DEFSH (VTYSH_BGPD, no_bgp_timers_arg_cmd_vtysh,
1314 "no timers bgp <0-65535> <0-65535>",
1315 "Negate a command or set its defaults\n"
1316 "Adjust routing timers\n"
1317 "BGP timers\n"
1318 "Keepalive interval\n"
1319 "Holdtime\n")
1320
1321 DEFSH (VTYSH_RIPD, send_lifetime_month_day_month_day_cmd_vtysh,
1322 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
1323 "Set send lifetime of the key\n"
1324 "Time to start\n"
1325 "Month of the year to start\n"
1326 "Day of th month to start\n"
1327 "Year to start\n"
1328 "Time to expire\n"
1329 "Month of the year to expire\n"
1330 "Day of th month to expire\n"
1331 "Year to expire\n")
1332
1333 DEFSH (VTYSH_BGPD, show_bgp_community4_exact_cmd_vtysh,
1334 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
1335 "Show running system information\n"
1336 "BGP information\n"
1337 "Display routes matching the communities\n"
1338 "community number\n"
1339 "Do not send outside local AS (well-known community)\n"
1340 "Do not advertise to any peer (well-known community)\n"
1341 "Do not export to next AS (well-known community)\n"
1342 "community number\n"
1343 "Do not send outside local AS (well-known community)\n"
1344 "Do not advertise to any peer (well-known community)\n"
1345 "Do not export to next AS (well-known community)\n"
1346 "community number\n"
1347 "Do not send outside local AS (well-known community)\n"
1348 "Do not advertise to any peer (well-known community)\n"
1349 "Do not export to next AS (well-known community)\n"
1350 "community number\n"
1351 "Do not send outside local AS (well-known community)\n"
1352 "Do not advertise to any peer (well-known community)\n"
1353 "Do not export to next AS (well-known community)\n"
1354 "Exact match of the communities")
1355
1356 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighborlist_cmd_vtysh,
1357 "show ipv6 ospf6 (summary-list|request-list|retrans-list|dbdesc-list)",
1358 "Show running system information\n"
1359 "IPv6 Information\n"
1360 "Open Shortest Path First (OSPF) for IPv6\n"
1361 "Link State summary list\n"
1362 "Link State request list\n"
1363 "Link State retransmission list\n"
1364 "Link State Description list (Used to retrans DbDesc)\n"
1365 )
1366
1367 DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_val_cmd_vtysh,
1368 "no neighbor (A.B.C.D|X:X::X:X) " "maximum-prefix <1-4294967295>",
1369 "Negate a command or set its defaults\n"
1370 "Specify neighbor router\n"
1371 "Neighbor address\nIPv6 address\n"
1372 "Maximum number of prefix accept from this peer\n"
1373 "maximum no. of prefix limit\n")
1374
1375 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_external_inter_cmd_vtysh,
1376 "distance ospf intra-area <1-255> external <1-255> inter-area <1-255>",
1377 "Define an administrative distance\n"
1378 "OSPF Administrative distance\n"
1379 "Intra-area routes\n"
1380 "Distance for intra-area routes\n"
1381 "External routes\n"
1382 "Distance for external routes\n"
1383 "Inter-area routes\n"
1384 "Distance for inter-area routes\n")
1385
1386 DEFSH (VTYSH_BGPD, no_set_atomic_aggregate_cmd_vtysh,
1387 "no set atomic-aggregate",
1388 "Negate a command or set its defaults\n"
1389 "Set values in destination routing protocol\n"
1390 "BGP atomic aggregate attribute\n" )
1391
1392 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_cmd_vtysh,
1393 "clear bgp ipv6 external",
1394 "Reset functions\n"
1395 "BGP information\n"
1396 "Address family\n"
1397 "Clear all external peers\n")
1398
1399 DEFSH (VTYSH_OSPFD, network_area_cmd_vtysh,
1400 "network A.B.C.D/M area (A.B.C.D|<0-4294967295>)",
1401 "Enable routing on an IP network\n"
1402 "OSPF network prefix\n"
1403 "Set the OSPF area ID\n"
1404 "OSPF area ID in IP address format\n"
1405 "OSPF area ID as a decimal value\n")
1406
1407 DEFSH (VTYSH_OSPFD, area_vlink_authtype_cmd_vtysh,
1408 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1409 "(authentication|)",
1410 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
1411 "Enable authentication on this virtual link\n" "dummy string \n")
1412
1413 DEFSH (VTYSH_BGPD, bgp_bestpath_aspath_ignore_cmd_vtysh,
1414 "bgp bestpath as-path ignore",
1415 "BGP specific commands\n"
1416 "Change the default bestpath selection\n"
1417 "AS-path attribute\n"
1418 "Ignore as-path length in selecting a route\n")
1419
1420 DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_address_cmd_vtysh,
1421 "clear ip bgp dampening A.B.C.D",
1422 "Reset functions\n"
1423 "IP information\n"
1424 "BGP information\n"
1425 "Clear route flap dampening information\n"
1426 "Network to clear damping information\n")
1427
1428 DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_metric_cmd_vtysh,
1429 "redistribute kernel metric <0-16>",
1430 "Redistribute information from another routing protocol\n"
1431 "Kernel routes\n"
1432 "Metric\n"
1433 "Metric value\n")
1434
1435 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_any_cmd_vtysh,
1436 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any any",
1437 "Negate a command or set its defaults\n"
1438 "Add an access list entry\n"
1439 "IP extended access list\n"
1440 "IP extended access list (expanded range)\n"
1441 "Specify packets to reject\n"
1442 "Specify packets to forward\n"
1443 "Any Internet Protocol\n"
1444 "Any source host\n"
1445 "Any destination host\n")
1446
1447 DEFSH (VTYSH_BGPD, bgp_bestpath_med_cmd_vtysh,
1448 "bgp bestpath med (confed|missing-as-worst)",
1449 "BGP specific commands\n"
1450 "Change the default bestpath selection\n"
1451 "MED attribute\n"
1452 "Compare MED among confederation paths\n"
1453 "Treat missing MED as the least preferred one\n")
1454
1455 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_all_cmd_vtysh,
1456 "show ip bgp ipv4 (unicast|multicast) community",
1457 "Show running system information\n"
1458 "IP information\n"
1459 "BGP information\n"
1460 "Address family\n"
1461 "Address Family modifier\n"
1462 "Address Family modifier\n"
1463 "Display routes matching the communities\n")
1464
1465 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_in_prefix_filter_cmd_vtysh,
1466 "clear ip bgp peer-group WORD in prefix-filter",
1467 "Reset functions\n"
1468 "IP information\n"
1469 "BGP information\n"
1470 "Clear all members of peer-group\n"
1471 "BGP peer-group name\n"
1472 "Soft reconfig inbound update\n"
1473 "Push out prefix-list ORF and do inbound soft reconfig\n")
1474
1475 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_cmd_vtysh,
1476 "show ipv6 mbgp",
1477 "Show running system information\n"
1478 "IP information\n"
1479 "MBGP information\n")
1480
1481 DEFSH (VTYSH_BGPD, no_neighbor_unsuppress_map_cmd_vtysh,
1482 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "unsuppress-map WORD",
1483 "Negate a command or set its defaults\n"
1484 "Specify neighbor router\n"
1485 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1486 "Route-map to selectively unsuppress suppressed routes\n"
1487 "Name of route map\n")
1488
1489 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_routemap_cmd_vtysh,
1490 "no redistribute ospf6 route-map WORD",
1491 "Negate a command or set its defaults\n"
1492 "Redistribute information from another routing protocol\n"
1493 "IPv6 Open Shortest Path First (OSPFv3)\n"
1494 "Route map reference\n"
1495 "Pointer to route-map entries\n")
1496
1497 DEFSH (VTYSH_OSPFD, no_area_default_cost_cmd_vtysh,
1498 "no area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>",
1499 "Negate a command or set its defaults\n"
1500 "OSPF area parameters\n"
1501 "OSPF area ID in IP address format\n"
1502 "OSPF area ID as a decimal value\n"
1503 "Set the summary-default cost of a NSSA or stub area\n"
1504 "Stub's advertised default summary cost\n")
1505
1506 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_summary_cmd_vtysh,
1507 "show ip prefix-list summary",
1508 "Show running system information\n"
1509 "IP information\n"
1510 "Build a prefix list\n"
1511 "Summary of prefix lists\n")
1512
1513 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_cmd_vtysh,
1514 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*) (A.B.C.D|*|dump|summary)",
1515 "Show running system information\n"
1516 "IPv6 Information\n"
1517 "Open Shortest Path First (OSPF) for IPv6\n"
1518 "LSA Database\n"
1519 "Router-LSA\n"
1520 "Network-LSA\n"
1521 "AS-External-LSA\n"
1522 "Intra-Area-Prefix-LSA\n"
1523 "Inter-Area-Router-LSA\n"
1524 "Inter-Area-Prefix-LSA\n"
1525 "Link-LSA\n"
1526 "All LS Type\n"
1527 "Link State ID\n"
1528 "All Link State ID\n"
1529 "Dump raw LSA data in Hex\n"
1530 "show summary of LSA\n"
1531 )
1532
1533 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_summary_name_cmd_vtysh,
1534 "show ipv6 prefix-list summary WORD",
1535 "Show running system information\n"
1536 "IPv6 information\n"
1537 "Build a prefix list\n"
1538 "Summary of prefix lists\n"
1539 "Name of a prefix list\n")
1540
1541 DEFSH (VTYSH_BGPD, set_aggregator_as_cmd_vtysh,
1542 "set aggregator as <1-65535> A.B.C.D",
1543 "Set values in destination routing protocol\n"
1544 "BGP aggregator attribute\n"
1545 "AS number of aggregator\n"
1546 "AS number\n"
1547 "IP address of aggregator\n")
1548
1549 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, match_ip_address_prefix_list_cmd_vtysh,
1550 "match ip address prefix-list WORD",
1551 "Match values from routing table\n"
1552 "IP information\n"
1553 "Match address of route\n"
1554 "Match entries of prefix-lists\n"
1555 "IP prefix-list name\n")
1556
1557 DEFSH (VTYSH_BGPD, no_bgp_network_mask_backdoor_cmd_vtysh,
1558 "no network A.B.C.D mask A.B.C.D backdoor",
1559 "Negate a command or set its defaults\n"
1560 "Specify a network to announce via BGP\n"
1561 "Network number\n"
1562 "Network mask\n"
1563 "Network mask\n"
1564 "Specify a BGP backdoor route\n")
1565
1566 DEFSH (VTYSH_BGPD, no_match_origin_val_cmd_vtysh,
1567 "no match origin (egp|igp|incomplete)",
1568 "Negate a command or set its defaults\n"
1569 "Match values from routing table\n"
1570 "BGP origin code\n"
1571 "remote EGP\n"
1572 "local IGP\n"
1573 "unknown heritage\n")
1574
1575 DEFSH (VTYSH_RIPD, rip_network_cmd_vtysh,
1576 "network (A.B.C.D/M|WORD)",
1577 "Enable routing on an IP network\n"
1578 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
1579 "Interface name\n")
1580
1581 DEFSH (VTYSH_OSPFD, ip_ospf_cost_cmd_vtysh,
1582 "ip ospf cost <1-65535>",
1583 "IP Information\n"
1584 "OSPF interface commands\n"
1585 "Interface cost\n"
1586 "Cost")
1587
1588 DEFSH (VTYSH_BGPD, ipv6_aggregate_address_cmd_vtysh,
1589 "aggregate-address X:X::X:X/M",
1590 "Configure BGP aggregate entries\n"
1591 "Aggregate prefix\n")
1592
1593 DEFSH (VTYSH_BGPD, clear_bgp_as_cmd_vtysh,
1594 "clear bgp <1-65535>",
1595 "Reset functions\n"
1596 "BGP information\n"
1597 "Clear peers with the AS number\n")
1598
1599 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_intra_inter_cmd_vtysh,
1600 "distance ospf external <1-255> intra-area <1-255> inter-area <1-255>",
1601 "Define an administrative distance\n"
1602 "OSPF Administrative distance\n"
1603 "External routes\n"
1604 "Distance for external routes\n"
1605 "Intra-area routes\n"
1606 "Distance for intra-area routes\n"
1607 "Inter-area routes\n"
1608 "Distance for inter-area routes\n")
1609
1610 DEFSH (VTYSH_OSPFD, ospf_cost_cmd_vtysh,
1611 "ospf cost <1-65535>",
1612 "OSPF interface commands\n"
1613 "Interface cost\n"
1614 "Cost")
1615
1616 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_cmd_vtysh,
1617 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) (X:X::X:X/M|any)",
1618 "Negate a command or set its defaults\n"
1619 "IPv6 information\n"
1620 "Build a prefix list\n"
1621 "Name of a prefix list\n"
1622 "sequence number of an entry\n"
1623 "Sequence number\n"
1624 "Specify packets to reject\n"
1625 "Specify packets to forward\n"
1626 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
1627 "Any prefix match. Same as \"::0/0 le 128\"\n")
1628
1629 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_metric_routemap_cmd_vtysh,
1630 "default-information originate metric-type (1|2) metric <0-16777214> route-map WORD",
1631 "Control distribution of default information\n"
1632 "Distribute a default route\n"
1633 "OSPF metric type for default routes\n"
1634 "Set OSPF External Type 1 metrics\n"
1635 "Set OSPF External Type 2 metrics\n"
1636 "OSPF default metric\n"
1637 "OSPF metric\n"
1638 "Route map reference\n"
1639 "Pointer to route-map entries\n")
1640
1641 DEFSH (VTYSH_OSPFD, area_range_subst_cmd_vtysh,
1642 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M",
1643 "OSPF area parameters\n"
1644 "OSPF area ID in IP address format\n"
1645 "OSPF area ID as a decimal value\n"
1646 "configure OSPF area range for route summarization\n"
1647 "area range prefix\n"
1648 "announce area range as another prefix\n"
1649 "network prefix to be announced instead of range\n")
1650
1651 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_cmd_vtysh,
1652 "show ipv6 mbgp X:X::X:X/M",
1653 "Show running system information\n"
1654 "IP information\n"
1655 "MBGP information\n"
1656 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
1657
1658 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_other_config_flag_cmd_vtysh,
1659 "no ipv6 nd other-config-flag",
1660 "Negate a command or set its defaults\n"
1661 "IP information\n"
1662 "Neighbor discovery\n"
1663 "Other statefull configuration flag\n")
1664
1665 DEFSH (VTYSH_RIPD, no_key_cmd_vtysh,
1666 "no key <0-2147483647>",
1667 "Negate a command or set its defaults\n"
1668 "Delete a key\n"
1669 "Key identifier number\n")
1670
1671 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_ge_cmd_vtysh,
1672 "no ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32>",
1673 "Negate a command or set its defaults\n"
1674 "IP information\n"
1675 "Build a prefix list\n"
1676 "Name of a prefix list\n"
1677 "Specify packets to reject\n"
1678 "Specify packets to forward\n"
1679 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
1680 "Minimum prefix length to be matched\n"
1681 "Minimum prefix length\n")
1682
1683 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged4_cmd_vtysh,
1684 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med (as-path|next-hop)",
1685 "Specify neighbor router\n"
1686 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1687 "BGP attribute is propagated unchanged to this neighbor\n"
1688 "Med attribute\n"
1689 "As-path attribute\n"
1690 "Nexthop attribute\n")
1691
1692 DEFSH (VTYSH_RIPNGD, no_debug_ripng_zebra_cmd_vtysh,
1693 "no debug ripng zebra",
1694 "Negate a command or set its defaults\n"
1695 "Debugging functions (see also 'undebug')\n"
1696 "RIPng configuration\n"
1697 "Debug option set for ripng and zebra communication\n")
1698
1699 DEFSH (VTYSH_BGPD, no_neighbor_weight_val_cmd_vtysh,
1700 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "weight <0-65535>",
1701 "Negate a command or set its defaults\n"
1702 "Specify neighbor router\n"
1703 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1704 "Set default weight for routes from this neighbor\n"
1705 "default weight\n")
1706
1707 DEFSH (VTYSH_RIPD, no_rip_default_information_originate_cmd_vtysh,
1708 "no default-information originate",
1709 "Negate a command or set its defaults\n"
1710 "Control distribution of default route\n"
1711 "Distribute a default route\n")
1712
1713 DEFSH (VTYSH_BGPD, match_community_exact_cmd_vtysh,
1714 "match community (<1-99>|<100-199>|WORD) exact-match",
1715 "Match values from routing table\n"
1716 "Match BGP community list\n"
1717 "Community-list number (standard)\n"
1718 "Community-list number (expanded)\n"
1719 "Community-list name\n"
1720 "Do exact matching of communities\n")
1721
1722 DEFSH (VTYSH_BGPD, clear_bgp_as_in_cmd_vtysh,
1723 "clear bgp <1-65535> in",
1724 "Reset functions\n"
1725 "BGP information\n"
1726 "Clear peers with the AS number\n"
1727 "Soft reconfig inbound update\n")
1728
1729 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_host_cmd_vtysh,
1730 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any host A.B.C.D",
1731 "Negate a command or set its defaults\n"
1732 "Add an access list entry\n"
1733 "IP extended access list\n"
1734 "IP extended access list (expanded range)\n"
1735 "Specify packets to reject\n"
1736 "Specify packets to forward\n"
1737 "Any Internet Protocol\n"
1738 "Any source host\n"
1739 "A single destination host\n"
1740 "Destination address\n")
1741
1742 DEFSH (VTYSH_BGPD, ipv6_bgp_network_cmd_vtysh,
1743 "network X:X::X:X/M",
1744 "Specify a network to announce via BGP\n"
1745 "IPv6 prefix <network>/<length>\n")
1746
1747 DEFSH (VTYSH_ZEBRA, ip_irdp_preference_cmd_vtysh,
1748
1749 "ip irdp preference <0-2147483647>",
1750 "IP information\n"
1751 "ICMP Router discovery on this interface\n"
1752 "Set default preference level for this interface\n"
1753 "Preference level\n")
1754
1755 DEFSH (VTYSH_BGPD, bgp_fast_external_failover_cmd_vtysh,
1756 "bgp fast-external-failover",
1757 "BGP information\n"
1758 "Immediately reset session if a link to a directly connected external peer goes down\n")
1759
1760 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_list_cmd_vtysh,
1761 "show ipv6 mbgp prefix-list WORD",
1762 "Show running system information\n"
1763 "IPv6 information\n"
1764 "MBGP information\n"
1765 "Display routes matching the prefix-list\n"
1766 "IPv6 prefix-list name\n")
1767
1768 DEFSH (VTYSH_BGPD, bgp_network_mask_cmd_vtysh,
1769 "network A.B.C.D mask A.B.C.D",
1770 "Specify a network to announce via BGP\n"
1771 "Network number\n"
1772 "Network mask\n"
1773 "Network mask\n")
1774
1775 DEFSH (VTYSH_OSPFD, area_vlink_authtype_md5_cmd_vtysh,
1776 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1777 "(authentication|) "
1778 "(message-digest-key|) <1-255> md5 KEY",
1779 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
1780 "Enable authentication on this virtual link\n" "dummy string \n"
1781 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
1782
1783 DEFSH (VTYSH_BGPD, show_bgp_cmd_vtysh,
1784 "show bgp",
1785 "Show running system information\n"
1786 "BGP information\n")
1787
1788 DEFSH (VTYSH_BGPD, bgp_network_mask_backdoor_cmd_vtysh,
1789 "network A.B.C.D mask A.B.C.D backdoor",
1790 "Specify a network to announce via BGP\n"
1791 "Network number\n"
1792 "Network mask\n"
1793 "Network mask\n"
1794 "Specify a BGP backdoor route\n")
1795
1796 DEFSH (VTYSH_RIPD, ip_rip_authentication_string_cmd_vtysh,
1797 "ip rip authentication string LINE",
1798 "IP information\n"
1799 "Routing Information Protocol\n"
1800 "Authentication control\n"
1801 "Authentication string\n"
1802 "Authentication string\n")
1803
1804 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_interface_cmd_vtysh,
1805 "show ipv6 ospf6 interface",
1806 "Show running system information\n"
1807 "IPv6 Information\n"
1808 "Open Shortest Path First (OSPF) for IPv6\n"
1809 "Interface infomation\n"
1810 )
1811
1812 DEFSH (VTYSH_ZEBRA, no_ip_route_pref_cmd_vtysh,
1813 "no ip route A.B.C.D/M (A.B.C.D|INTERFACE) <1-255>",
1814 "Negate a command or set its defaults\n"
1815 "IP information\n"
1816 "Establish static routes\n"
1817 "IP destination prefix (e.g. 10.0.0.0/8)\n"
1818 "IP gateway address\n"
1819 "IP gateway interface name\n"
1820 "Distance value for this route\n")
1821
1822 DEFSH (VTYSH_BGPD, no_set_community_none_cmd_vtysh,
1823 "no set community none",
1824 "Negate a command or set its defaults\n"
1825 "Set values in destination routing protocol\n"
1826 "BGP community attribute\n"
1827 "No community attribute\n")
1828
1829 DEFSH (VTYSH_BGPD, show_bgp_instance_summary_cmd_vtysh,
1830 "show bgp view WORD summary",
1831 "Show running system information\n"
1832 "BGP information\n"
1833 "BGP view\n"
1834 "View name\n"
1835 "Summary of BGP neighbor status\n")
1836
1837 DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_all_cmd_vtysh,
1838 "no ip extcommunity-list (<1-99>|<100-199>)",
1839 "Negate a command or set its defaults\n"
1840 "IP information\n"
1841 "Add a extended community list entry\n"
1842 "Extended Community list number (standard)\n"
1843 "Extended Community list number (expanded)\n")
1844
1845 DEFSH (VTYSH_BGPD, ipv6_bgp_network_route_map_cmd_vtysh,
1846 "network X:X::X:X/M route-map WORD",
1847 "Specify a network to announce via BGP\n"
1848 "IPv6 prefix <network>/<length>\n"
1849 "Route-map to modify the attributes\n"
1850 "Name of the route map\n")
1851
1852 DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_metric_cmd_vtysh,
1853 "redistribute connected metric <0-16>",
1854 "Redistribute information from another routing protocol\n"
1855 "Connected\n"
1856 "Metric\n"
1857 "Metric value\n")
1858
1859 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_ge_le_cmd_vtysh,
1860 "no ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
1861 "Negate a command or set its defaults\n"
1862 "IP information\n"
1863 "Build a prefix list\n"
1864 "Name of a prefix list\n"
1865 "Specify packets to reject\n"
1866 "Specify packets to forward\n"
1867 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
1868 "Minimum prefix length to be matched\n"
1869 "Minimum prefix length\n"
1870 "Maximum prefix length to be matched\n"
1871 "Maximum prefix length\n")
1872
1873 DEFSH (VTYSH_OSPFD, ip_ospf_authentication_key_cmd_vtysh,
1874 "ip ospf authentication-key AUTH_KEY",
1875 "IP Information\n"
1876 "OSPF interface commands\n"
1877 "Authentication password (key)\n"
1878 "The OSPF password (key)")
1879
1880 DEFSH (VTYSH_ZEBRA, ipv6_nd_other_config_flag_cmd_vtysh,
1881 "ipv6 nd other-config-flag",
1882 "IP information\n"
1883 "Neighbor discovery\n"
1884 "Other statefull configuration flag\n")
1885
1886 DEFSH (VTYSH_BGPD, show_bgp_neighbor_advertised_route_cmd_vtysh,
1887 "show bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
1888 "Show running system information\n"
1889 "BGP information\n"
1890 "Detailed information on TCP and BGP neighbor connections\n"
1891 "Neighbor to display information about\n"
1892 "Neighbor to display information about\n"
1893 "Display the routes advertised to a BGP neighbor\n")
1894
1895 DEFSH (VTYSH_OSPFD, interface_ip_ospf_authentication_addr_cmd_vtysh,
1896 "ip ospf authentication A.B.C.D",
1897 "IP Information\n"
1898 "OSPF interface commands\n"
1899 "Enable authentication on this interface\n"
1900 "Address of interface")
1901
1902 DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_name_prefix_cmd_vtysh,
1903 "clear ip prefix-list WORD A.B.C.D/M",
1904 "Reset functions\n"
1905 "IP information\n"
1906 "Build a prefix list\n"
1907 "Name of a prefix list\n"
1908 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
1909
1910 DEFSH (VTYSH_BGPD, bgp_client_to_client_reflection_cmd_vtysh,
1911 "bgp client-to-client reflection",
1912 "BGP specific commands\n"
1913 "Configure client to client route reflection\n"
1914 "reflection of routes allowed\n")
1915
1916 DEFSH (VTYSH_BGPD, clear_bgp_external_soft_in_cmd_vtysh,
1917 "clear bgp external soft in",
1918 "Reset functions\n"
1919 "BGP information\n"
1920 "Clear all external peers\n"
1921 "Soft reconfig\n"
1922 "Soft reconfig inbound update\n")
1923
1924 DEFSH (VTYSH_RIPD, no_rip_redistribute_type_routemap_cmd_vtysh,
1925 "no redistribute (kernel|connected|static|ospf|bgp) route-map WORD",
1926 "Negate a command or set its defaults\n"
1927 "Redistribute information from another routing protocol\n"
1928 "Kernel routes\n"
1929 "Connected\n"
1930 "Static routes\n"
1931 "Open Shortest Path First (OSPF)\n"
1932 "Border Gateway Protocol (BGP)\n"
1933 "Route map reference\n"
1934 "Pointer to route-map entries\n")
1935
1936 DEFSH (VTYSH_BGPD, no_aggregate_address_mask_summary_as_set_cmd_vtysh,
1937 "no aggregate-address A.B.C.D A.B.C.D summary-only as-set",
1938 "Negate a command or set its defaults\n"
1939 "Configure BGP aggregate entries\n"
1940 "Aggregate address\n"
1941 "Aggregate mask\n"
1942 "Filter more specific routes from updates\n"
1943 "Generate AS set path information\n")
1944
1945 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_tags_cmd_vtysh,
1946 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn tags",
1947 "Show running system information\n"
1948 "IP information\n"
1949 "BGP information\n"
1950 "Display VPNv4 NLRI specific information\n"
1951 "Display information for a route distinguisher\n"
1952 "VPN Route Distinguisher\n"
1953 "Display BGP tags for prefixes\n")
1954
1955 DEFSH (VTYSH_BGPD, no_set_ecommunity_soo_cmd_vtysh,
1956 "no set extcommunity soo",
1957 "Negate a command or set its defaults\n"
1958 "Set values in destination routing protocol\n"
1959 "BGP extended community attribute\n"
1960 "Site-of-Origin extended community\n")
1961
1962 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_exact_cmd_vtysh,
1963 "access-list WORD (deny|permit) A.B.C.D/M exact-match",
1964 "Add an access list entry\n"
1965 "IP zebra access-list name\n"
1966 "Specify packets to reject\n"
1967 "Specify packets to forward\n"
1968 "Prefix to match. e.g. 10.0.0.0/8\n"
1969 "Exact match of the prefixes\n")
1970
1971 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_route_cmd_vtysh,
1972 "show ip bgp ipv4 (unicast|multicast) A.B.C.D",
1973 "Show running system information\n"
1974 "IP information\n"
1975 "BGP information\n"
1976 "Address family\n"
1977 "Address Family modifier\n"
1978 "Address Family modifier\n"
1979 "Network in the BGP routing table to display\n")
1980
1981 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_cmd_vtysh,
1982 "clear bgp ipv6 *",
1983 "Reset functions\n"
1984 "BGP information\n"
1985 "Address family\n"
1986 "Clear all peers\n")
1987
1988 DEFSH (VTYSH_BGPD, bgp_confederation_peers_cmd_vtysh,
1989 "bgp confederation peers .<1-65535>",
1990 "BGP specific commands\n"
1991 "AS confederation parameters\n"
1992 "Peer ASs in BGP confederation\n"
1993 "AS number\n")
1994
1995 DEFSH (VTYSH_BGPD, no_set_ecommunity_soo_val_cmd_vtysh,
1996 "no set extcommunity soo .ASN:nn_or_IP-address:nn",
1997 "Negate a command or set its defaults\n"
1998 "Set values in destination routing protocol\n"
1999 "BGP extended community attribute\n"
2000 "Site-of-Origin extended community\n"
2001 "VPN extended community\n")
2002
2003 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_routemap_cmd_vtysh,
2004 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> route-map WORD",
2005 "Redistribute information from another routing protocol\n"
2006 "Kernel routes\n"
2007 "Connected\n"
2008 "Static routes\n"
2009 "Routing Information Protocol (RIP)\n"
2010 "Border Gateway Protocol (BGP)\n"
2011 "Metric for redistributed routes\n"
2012 "OSPF default metric\n"
2013 "Route map reference\n"
2014 "Pointer to route-map entries\n")
2015
2016 DEFSH (VTYSH_OSPFD, ip_ospf_cost_addr_cmd_vtysh,
2017 "ip ospf cost <1-65535> A.B.C.D",
2018 "IP Information\n"
2019 "OSPF interface commands\n"
2020 "Interface cost\n"
2021 "Cost\n"
2022 "Address of interface")
2023
2024 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_in_cmd_vtysh,
2025 "clear bgp ipv6 external soft in",
2026 "Reset functions\n"
2027 "BGP information\n"
2028 "Address family\n"
2029 "Clear all external peers\n"
2030 "Soft reconfig\n"
2031 "Soft reconfig inbound update\n")
2032
2033 DEFSH (VTYSH_RIPD, show_ip_rip_cmd_vtysh,
2034 "show ip rip",
2035 "Show running system information\n"
2036 "IP information\n"
2037 "Show RIP routes\n")
2038
2039 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_in_cmd_vtysh,
2040 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in",
2041 "Reset functions\n"
2042 "IP information\n"
2043 "BGP information\n"
2044 "BGP neighbor address to clear\n"
2045 "Address family\n"
2046 "Address Family modifier\n"
2047 "Address Family modifier\n"
2048 "Soft reconfig inbound update\n")
2049
2050 DEFSH (VTYSH_RIPD, show_debugging_rip_cmd_vtysh,
2051 "show debugging rip",
2052 "Show running system information\n"
2053 "Debugging functions (see also 'undebug')\n"
2054 "RIP information\n")
2055
2056 DEFSH (VTYSH_BGPD, no_bgp_network_mask_route_map_cmd_vtysh,
2057 "no network A.B.C.D mask A.B.C.D route-map WORD",
2058 "Negate a command or set its defaults\n"
2059 "Specify a network to announce via BGP\n"
2060 "Network number\n"
2061 "Network mask\n"
2062 "Network mask\n"
2063 "Route-map to modify the attributes\n"
2064 "Name of the route map\n")
2065
2066 DEFSH (VTYSH_BGPD, set_local_pref_cmd_vtysh,
2067 "set local-preference <0-4294967295>",
2068 "Set values in destination routing protocol\n"
2069 "BGP local preference path attribute\n"
2070 "Preference value\n")
2071
2072 DEFSH (VTYSH_BGPD, no_neighbor_activate_cmd_vtysh,
2073 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "activate",
2074 "Negate a command or set its defaults\n"
2075 "Specify neighbor router\n"
2076 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2077 "Enable the Address Family for this Neighbor\n")
2078
2079 DEFSH (VTYSH_RIPD, no_rip_redistribute_type_metric_cmd_vtysh,
2080 "no redistribute (kernel|connected|static|ospf|bgp) metric <0-16>",
2081 "Negate a command or set its defaults\n"
2082 "Redistribute information from another routing protocol\n"
2083 "Kernel routes\n"
2084 "Connected\n"
2085 "Static routes\n"
2086 "Open Shortest Path First (OSPF)\n"
2087 "Border Gateway Protocol (BGP)\n"
2088 "Metric\n"
2089 "Metric value\n")
2090
2091 DEFSH (VTYSH_ZEBRA, no_debug_zebra_kernel_cmd_vtysh,
2092 "no debug zebra kernel",
2093 "Negate a command or set its defaults\n"
2094 "Debugging functions (see also 'undebug')\n"
2095 "Zebra configuration\n"
2096 "Debug option set for zebra between kernel interface\n")
2097
2098 DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_global_val_cmd_vtysh,
2099 "no set ipv6 next-hop global X:X::X:X",
2100 "Negate a command or set its defaults\n"
2101 "Set values in destination routing protocol\n"
2102 "IPv6 information\n"
2103 "IPv6 next-hop address\n"
2104 "IPv6 global address\n"
2105 "IPv6 address of next hop\n")
2106
2107 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_in_cmd_vtysh,
2108 "clear bgp ipv6 * soft in",
2109 "Reset functions\n"
2110 "BGP information\n"
2111 "Address family\n"
2112 "Clear all peers\n"
2113 "Soft reconfig\n"
2114 "Soft reconfig inbound update\n")
2115
2116 DEFSH (VTYSH_BGPD, show_bgp_community4_cmd_vtysh,
2117 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
2118 "Show running system information\n"
2119 "BGP information\n"
2120 "Display routes matching the communities\n"
2121 "community number\n"
2122 "Do not send outside local AS (well-known community)\n"
2123 "Do not advertise to any peer (well-known community)\n"
2124 "Do not export to next AS (well-known community)\n"
2125 "community number\n"
2126 "Do not send outside local AS (well-known community)\n"
2127 "Do not advertise to any peer (well-known community)\n"
2128 "Do not export to next AS (well-known community)\n"
2129 "community number\n"
2130 "Do not send outside local AS (well-known community)\n"
2131 "Do not advertise to any peer (well-known community)\n"
2132 "Do not export to next AS (well-known community)\n"
2133 "community number\n"
2134 "Do not send outside local AS (well-known community)\n"
2135 "Do not advertise to any peer (well-known community)\n"
2136 "Do not export to next AS (well-known community)\n")
2137
2138 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh,
2139 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X)",
2140 "Show running system information\n"
2141 "IP information\n"
2142 "BGP information\n"
2143 "Address family\n"
2144 "Address Family modifier\n"
2145 "Address Family modifier\n"
2146 "Detailed information on TCP and BGP neighbor connections\n"
2147 "Neighbor to display information about\n"
2148 "Neighbor to display information about\n")
2149
2150 DEFSH (VTYSH_RIPD, no_rip_split_horizon_cmd_vtysh,
2151 "no ip split-horizon",
2152 "Negate a command or set its defaults\n"
2153 "IP information\n"
2154 "Perform split horizon\n")
2155
2156 DEFSH (VTYSH_BGPD, neighbor_local_as_no_prepend_cmd_vtysh,
2157 "neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535> no-prepend",
2158 "Specify neighbor router\n"
2159 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2160 "Specify a local-as number\n"
2161 "AS number used as local AS\n"
2162 "Do not prepend local-as to updates from ebgp peers\n")
2163
2164 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_routemap_cmd_vtysh,
2165 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) route-map WORD",
2166 "Redistribute information from another routing protocol\n"
2167 "Kernel routes\n"
2168 "Connected\n"
2169 "Static routes\n"
2170 "Routing Information Protocol (RIP)\n"
2171 "Border Gateway Protocol (BGP)\n"
2172 "OSPF exterior metric type for redistributed routes\n"
2173 "Set OSPF External Type 1 metrics\n"
2174 "Set OSPF External Type 2 metrics\n"
2175 "Route map reference\n"
2176 "Pointer to route-map entries\n")
2177
2178 DEFSH (VTYSH_BGPD, no_aggregate_address_mask_as_set_cmd_vtysh,
2179 "no aggregate-address A.B.C.D A.B.C.D as-set",
2180 "Negate a command or set its defaults\n"
2181 "Configure BGP aggregate entries\n"
2182 "Aggregate address\n"
2183 "Aggregate mask\n"
2184 "Generate AS set path information\n")
2185
2186 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_inter_cmd_vtysh,
2187 "distance ospf external <1-255> inter-area <1-255>",
2188 "Define an administrative distance\n"
2189 "OSPF Administrative distance\n"
2190 "External routes\n"
2191 "Distance for external routes\n"
2192 "Inter-area routes\n"
2193 "Distance for inter-area routes\n")
2194
2195 DEFSH (VTYSH_RIPD, accept_lifetime_month_day_month_day_cmd_vtysh,
2196 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
2197 "Set accept lifetime of the key\n"
2198 "Time to start\n"
2199 "Month of the year to start\n"
2200 "Day of th month to start\n"
2201 "Year to start\n"
2202 "Time to expire\n"
2203 "Month of the year to expire\n"
2204 "Day of th month to expire\n"
2205 "Year to expire\n")
2206
2207 DEFSH (VTYSH_BGPD, no_set_originator_id_val_cmd_vtysh,
2208 "no set originator-id A.B.C.D",
2209 "Negate a command or set its defaults\n"
2210 "Set values in destination routing protocol\n"
2211 "BGP originator ID attribute\n"
2212 "IP address of originator\n")
2213
2214 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh,
2215 "show ip bgp vpnv4 all neighbors A.B.C.D routes",
2216 "Show running system information\n"
2217 "IP information\n"
2218 "BGP information\n"
2219 "Display VPNv4 NLRI specific information\n"
2220 "Display information about all VPNv4 NLRIs\n"
2221 "Detailed information on TCP and BGP neighbor connections\n"
2222 "Neighbor to display information about\n"
2223 "Display routes learned from neighbor\n")
2224
2225 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_routemap_cmd_vtysh,
2226 "no redistribute bgp metric <0-16> route-map WORD",
2227 "Negate a command or set its defaults\n"
2228 "Redistribute information from another routing protocol\n"
2229 "Border Gateway Protocol (BGP)\n"
2230 "Metric\n"
2231 "Metric value\n"
2232 "Route map reference\n"
2233 "Pointer to route-map entries\n")
2234
2235 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_routemap_cmd_vtysh,
2236 "default-information originate route-map WORD",
2237 "Control distribution of default information\n"
2238 "Distribute a default route\n"
2239 "Route map reference\n"
2240 "Pointer to route-map entries\n")
2241
2242 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_list_exact_cmd_vtysh,
2243 "show ip bgp ipv4 (unicast|multicast) community-list WORD exact-match",
2244 "Show running system information\n"
2245 "IP information\n"
2246 "BGP information\n"
2247 "Address family\n"
2248 "Address Family modifier\n"
2249 "Address Family modifier\n"
2250 "Display routes matching the community-list\n"
2251 "community-list name\n"
2252 "Exact match of the communities\n")
2253
2254 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_remark_cmd_vtysh,
2255 "access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark .LINE",
2256 "Add an access list entry\n"
2257 "IP standard access list\n"
2258 "IP extended access list\n"
2259 "IP standard access list (expanded range)\n"
2260 "IP extended access list (expanded range)\n"
2261 "IP zebra access-list\n"
2262 "Access list entry comment\n"
2263 "Comment up to 100 characters\n")
2264
2265 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_cmd_vtysh,
2266 "show ip bgp ipv4 (unicast|multicast) A.B.C.D/M",
2267 "Show running system information\n"
2268 "IP information\n"
2269 "BGP information\n"
2270 "Address family\n"
2271 "Address Family modifier\n"
2272 "Address Family modifier\n"
2273 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
2274
2275 DEFSH (VTYSH_BGPD, no_bgp_router_id_cmd_vtysh,
2276 "no bgp router-id",
2277 "Negate a command or set its defaults\n"
2278 "BGP information\n"
2279 "Override configured router identifier\n")
2280
2281 DEFSH (VTYSH_BGPD, dump_bgp_all_interval_cmd_vtysh,
2282 "dump bgp all PATH INTERVAL",
2283 "Dump packet\n"
2284 "BGP packet dump\n"
2285 "Dump all BGP packets\n"
2286 "Output filename\n"
2287 "Interval of output\n")
2288
2289 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_filter_list_cmd_vtysh,
2290 "show ipv6 mbgp filter-list WORD",
2291 "Show running system information\n"
2292 "IPv6 information\n"
2293 "MBGP information\n"
2294 "Display routes conforming to the filter-list\n"
2295 "Regular expression access list name\n")
2296
2297 DEFSH (VTYSH_BGPD, dump_bgp_updates_cmd_vtysh,
2298 "dump bgp updates PATH",
2299 "Dump packet\n"
2300 "BGP packet dump\n"
2301 "Dump BGP updates only\n"
2302 "Output filename\n")
2303
2304 DEFSH (VTYSH_BGPD, no_bgp_network_backdoor_cmd_vtysh,
2305 "no network A.B.C.D/M backdoor",
2306 "Negate a command or set its defaults\n"
2307 "Specify a network to announce via BGP\n"
2308 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
2309 "Specify a BGP backdoor route\n")
2310
2311 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_in_cmd_vtysh,
2312 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in",
2313 "Reset functions\n"
2314 "IP information\n"
2315 "BGP information\n"
2316 "Clear all members of peer-group\n"
2317 "BGP peer-group name\n"
2318 "Address family\n"
2319 "Address Family modifier\n"
2320 "Address Family modifier\n"
2321 "Soft reconfig inbound update\n")
2322
2323 DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_in_cmd_vtysh,
2324 "clear bgp (A.B.C.D|X:X::X:X) soft in",
2325 "Reset functions\n"
2326 "BGP information\n"
2327 "BGP neighbor address to clear\n"
2328 "BGP IPv6 neighbor to clear\n"
2329 "Soft reconfig\n"
2330 "Soft reconfig inbound update\n")
2331
2332 DEFSH (VTYSH_OSPF6D, redistribute_ospf6_cmd_vtysh,
2333 "redistribute ospf6",
2334 "Redistribute control\n"
2335 "OSPF6 route\n")
2336
2337 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_ge_le_cmd_vtysh,
2338 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
2339 "Negate a command or set its defaults\n"
2340 "IP information\n"
2341 "Build a prefix list\n"
2342 "Name of a prefix list\n"
2343 "sequence number of an entry\n"
2344 "Sequence number\n"
2345 "Specify packets to reject\n"
2346 "Specify packets to forward\n"
2347 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
2348 "Minimum prefix length to be matched\n"
2349 "Minimum prefix length\n"
2350 "Maximum prefix length to be matched\n"
2351 "Maximum prefix length\n")
2352
2353 DEFSH (VTYSH_OSPFD, no_ip_ospf_dead_interval_cmd_vtysh,
2354 "no ip ospf dead-interval",
2355 "Negate a command or set its defaults\n"
2356 "IP Information\n"
2357 "OSPF interface commands\n"
2358 "Interval after which a neighbor is declared dead\n")
2359
2360 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_le_cmd_vtysh,
2361 "ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32>",
2362 "IP information\n"
2363 "Build a prefix list\n"
2364 "Name of a prefix list\n"
2365 "Specify packets to reject\n"
2366 "Specify packets to forward\n"
2367 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
2368 "Maximum prefix length to be matched\n"
2369 "Maximum prefix length\n")
2370
2371 DEFSH (VTYSH_OSPF6D, router_id_cmd_vtysh,
2372 "router-id ROUTER_ID",
2373 "Configure ospf Router-ID.\n"
2374 "specify by IPv4 address notation(e.g. 0.0.0.0)\n")
2375
2376 DEFSH (VTYSH_BGPD, bgp_bestpath_med2_cmd_vtysh,
2377 "bgp bestpath med confed missing-as-worst",
2378 "BGP specific commands\n"
2379 "Change the default bestpath selection\n"
2380 "MED attribute\n"
2381 "Compare MED among confederation paths\n"
2382 "Treat missing MED as the least preferred one\n")
2383
2384 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_in_cmd_vtysh,
2385 "clear bgp ipv6 * in",
2386 "Reset functions\n"
2387 "BGP information\n"
2388 "Address family\n"
2389 "Clear all peers\n"
2390 "Soft reconfig inbound update\n")
2391
2392 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community3_cmd_vtysh,
2393 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
2394 "Show running system information\n"
2395 "BGP information\n"
2396 "Address family\n"
2397 "Display routes matching the communities\n"
2398 "community number\n"
2399 "Do not send outside local AS (well-known community)\n"
2400 "Do not advertise to any peer (well-known community)\n"
2401 "Do not export to next AS (well-known community)\n"
2402 "community number\n"
2403 "Do not send outside local AS (well-known community)\n"
2404 "Do not advertise to any peer (well-known community)\n"
2405 "Do not export to next AS (well-known community)\n"
2406 "community number\n"
2407 "Do not send outside local AS (well-known community)\n"
2408 "Do not advertise to any peer (well-known community)\n"
2409 "Do not export to next AS (well-known community)\n")
2410
2411 DEFSH (VTYSH_BGPD, ip_extcommunity_list_standard2_cmd_vtysh,
2412 "ip extcommunity-list <1-99> (deny|permit)",
2413 "IP information\n"
2414 "Add a extended community list entry\n"
2415 "Extended Community list number (standard)\n"
2416 "Specify community to reject\n"
2417 "Specify community to accept\n")
2418
2419 DEFSH (VTYSH_OSPFD, passive_interface_addr_cmd_vtysh,
2420 "passive-interface IFNAME A.B.C.D",
2421 "Suppress routing updates on an interface\n"
2422 "Interface's name\n")
2423
2424 DEFSH (VTYSH_BGPD, neighbor_ebgp_multihop_ttl_cmd_vtysh,
2425 "neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop <1-255>",
2426 "Specify neighbor router\n"
2427 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2428 "Allow EBGP neighbors not on directly connected networks\n"
2429 "maximum hop count\n")
2430
2431 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_longer_cmd_vtysh,
2432 "show ip bgp flap-statistics A.B.C.D/M longer-prefixes",
2433 "Show running system information\n"
2434 "IP information\n"
2435 "BGP information\n"
2436 "Display flap statistics of routes\n"
2437 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
2438 "Display route and more specific routes\n")
2439
2440 DEFSH (VTYSH_BGPD, no_neighbor_peer_group_cmd_vtysh,
2441 "no neighbor WORD peer-group",
2442 "Negate a command or set its defaults\n"
2443 "Specify neighbor router\n"
2444 "Neighbor tag\n"
2445 "Configure peer-group\n")
2446
2447 DEFSH (VTYSH_ZEBRA, no_ipv6_route_ifname_cmd_vtysh,
2448 "no ipv6 route X:X::X:X/M X:X::X:X INTERFACE",
2449 "Negate a command or set its defaults\n"
2450 "IP information\n"
2451 "Establish static routes\n"
2452 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
2453 "IPv6 gateway address\n"
2454 "IPv6 gateway interface name\n")
2455
2456 DEFSH (VTYSH_RIPD, rip_distance_source_access_list_cmd_vtysh,
2457 "distance <1-255> A.B.C.D/M WORD",
2458 "Administrative distance\n"
2459 "Distance value\n"
2460 "IP source prefix\n"
2461 "Access list name\n")
2462
2463 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_rmap_metric_cmd_vtysh,
2464 "no redistribute (connected|kernel|ospf6|ripng|static) route-map WORD metric <0-4294967295>",
2465 "Negate a command or set its defaults\n"
2466 "Redistribute information from another routing protocol\n"
2467 "Connected\n"
2468 "Kernel routes\n"
2469 "Open Shurtest Path First (OSPFv3)\n"
2470 "Routing Information Protocol (RIPng)\n"
2471 "Static routes\n"
2472 "Route map reference\n"
2473 "Pointer to route-map entries\n"
2474 "Metric for redistributed routes\n"
2475 "Default metric\n")
2476
2477 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_advertise_prefix_list_cmd_vtysh,
2478 "ipv6 ospf6 advertise prefix-list WORD",
2479 "IPv6 Information\n"
2480 "Open Shortest Path First (OSPF) for IPv6\n"
2481 "Advertising options\n"
2482 "Filter prefix using prefix-list\n"
2483 "Prefix list name\n"
2484 )
2485
2486 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_transmitdelay_cmd_vtysh,
2487 "ipv6 ospf6 transmit-delay TRANSMITDELAY",
2488 "IPv6 Information\n"
2489 "Open Shortest Path First (OSPF) for IPv6\n"
2490 "Link state transmit delay\n"
2491 "<1-65535> Seconds\n"
2492 )
2493
2494 DEFSH (VTYSH_BGPD, neighbor_maximum_prefix_cmd_vtysh,
2495 "neighbor (A.B.C.D|X:X::X:X) " "maximum-prefix <1-4294967295>",
2496 "Specify neighbor router\n"
2497 "Neighbor address\nIPv6 address\n"
2498 "Maximum number of prefix accept from this peer\n"
2499 "maximum no. of prefix limit\n")
2500
2501 DEFSH (VTYSH_BGPD, vpnv4_network_cmd_vtysh,
2502 "network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD",
2503 "Specify a network to announce via BGP\n"
2504 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
2505 "Specify Route Distinguisher\n"
2506 "VPN Route Distinguisher\n"
2507 "BGP tag\n"
2508 "tag value\n")
2509
2510 DEFSH (VTYSH_ZEBRA, show_ipv6_route_addr_cmd_vtysh,
2511 "show ipv6 route X:X::X:X",
2512 "Show running system information\n"
2513 "IP information\n"
2514 "IPv6 routing table\n"
2515 "IPv6 Address\n")
2516
2517 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbors_peer_cmd_vtysh,
2518 "show ip bgp neighbors (A.B.C.D|X:X::X:X)",
2519 "Show running system information\n"
2520 "IP information\n"
2521 "BGP information\n"
2522 "Detailed information on TCP and BGP neighbor connections\n"
2523 "Neighbor to display information about\n"
2524 "Neighbor to display information about\n")
2525
2526 DEFSH (VTYSH_OSPFD, debug_ospf_nsm_cmd_vtysh,
2527 "debug ospf nsm",
2528 "Debugging functions (see also 'undebug')\n"
2529 "OSPF information\n"
2530 "OSPF Neighbor State Machine\n")
2531
2532 DEFSH (VTYSH_OSPFD, ip_ospf_message_digest_key_cmd_vtysh,
2533 "ip ospf message-digest-key <1-255> md5 KEY",
2534 "IP Information\n"
2535 "OSPF interface commands\n"
2536 "Message digest authentication password (key)\n"
2537 "Key ID\n"
2538 "Use MD5 algorithm\n"
2539 "The OSPF password (key)")
2540
2541 DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_metric_routemap_cmd_vtysh,
2542 "redistribute bgp metric <0-16> route-map WORD",
2543 "Redistribute information from another routing protocol\n"
2544 "Border Gateway Protocol (BGP)\n"
2545 "Metric\n"
2546 "Metric value\n"
2547 "Route map reference\n"
2548 "Pointer to route-map entries\n")
2549
2550 DEFSH (VTYSH_BGPD, bgp_default_local_preference_cmd_vtysh,
2551 "bgp default local-preference <0-4294967295>",
2552 "BGP specific commands\n"
2553 "Configure BGP defaults\n"
2554 "local preference (higher=more preferred)\n"
2555 "Configure default local preference value\n")
2556
2557 DEFSH (VTYSH_RIPD, rip_distance_source_cmd_vtysh,
2558 "distance <1-255> A.B.C.D/M",
2559 "Administrative distance\n"
2560 "Distance value\n"
2561 "IP source prefix\n")
2562
2563 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_le_cmd_vtysh,
2564 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128>",
2565 "IPv6 information\n"
2566 "Build a prefix list\n"
2567 "Name of a prefix list\n"
2568 "sequence number of an entry\n"
2569 "Sequence number\n"
2570 "Specify packets to reject\n"
2571 "Specify packets to forward\n"
2572 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
2573 "Maximum prefix length to be matched\n"
2574 "Maximum prefix length\n")
2575
2576 DEFSH (VTYSH_BGPD, show_bgp_regexp_cmd_vtysh,
2577 "show bgp regexp .LINE",
2578 "Show running system information\n"
2579 "BGP information\n"
2580 "Display routes matching the AS path regular expression\n"
2581 "A regular-expression to match the BGP AS paths\n")
2582
2583 DEFSH (VTYSH_BGPD, show_ipv6_bgp_regexp_cmd_vtysh,
2584 "show ipv6 bgp regexp .LINE",
2585 "Show running system information\n"
2586 "IP information\n"
2587 "BGP information\n"
2588 "Display routes matching the AS path regular expression\n"
2589 "A regular-expression to match the BGP AS paths\n")
2590
2591 DEFSH (VTYSH_OSPFD, no_ip_ospf_priority_cmd_vtysh,
2592 "no ip ospf priority",
2593 "Negate a command or set its defaults\n"
2594 "IP Information\n"
2595 "OSPF interface commands\n"
2596 "Router priority\n")
2597
2598 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_set_ip_nexthop_cmd_vtysh,
2599 "no set ip next-hop",
2600 "Negate a command or set its defaults\n"
2601 "Set values in destination routing protocol\n"
2602 "IP information\n"
2603 "Next hop address\n")
2604
2605 DEFSH (VTYSH_OSPFD, ip_ospf_dead_interval_addr_cmd_vtysh,
2606 "ip ospf dead-interval <1-65535> A.B.C.D",
2607 "IP Information\n"
2608 "OSPF interface commands\n"
2609 "Interval after which a neighbor is declared dead\n"
2610 "Seconds\n"
2611 "Address of interface")
2612
2613 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_name_seq_cmd_vtysh,
2614 "show ipv6 prefix-list WORD seq <1-4294967295>",
2615 "Show running system information\n"
2616 "IPv6 information\n"
2617 "Build a prefix list\n"
2618 "Name of a prefix list\n"
2619 "sequence number of an entry\n"
2620 "Sequence number\n")
2621
2622 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_cmd_vtysh,
2623 "ipv6 access-list WORD (deny|permit) X:X::X:X/M",
2624 "IPv6 information\n"
2625 "Add an access list entry\n"
2626 "IPv6 zebra access-list\n"
2627 "Specify packets to reject\n"
2628 "Specify packets to forward\n"
2629 "Prefix to match. e.g. 3ffe:506::/32\n")
2630
2631 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_cmd_vtysh,
2632 "clear ip bgp external",
2633 "Reset functions\n"
2634 "IP information\n"
2635 "BGP information\n"
2636 "Clear all external peers\n")
2637
2638 DEFSH (VTYSH_OSPFD, no_area_authentication_cmd_vtysh,
2639 "no area (A.B.C.D|<0-4294967295>) authentication",
2640 "Negate a command or set its defaults\n"
2641 "OSPF area parameters\n"
2642 "OSPF area ID in IP address format\n"
2643 "OSPF area ID as a decimal value\n"
2644 "Enable authentication\n")
2645
2646 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_ge_le_cmd_vtysh,
2647 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
2648 "IP information\n"
2649 "Build a prefix list\n"
2650 "Name of a prefix list\n"
2651 "sequence number of an entry\n"
2652 "Sequence number\n"
2653 "Specify packets to reject\n"
2654 "Specify packets to forward\n"
2655 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
2656 "Minimum prefix length to be matched\n"
2657 "Minimum prefix length\n"
2658 "Maximum prefix length to be matched\n"
2659 "Maximum prefix length\n")
2660
2661 DEFSH (VTYSH_BGPD, no_set_aspath_prepend_val_cmd_vtysh,
2662 "no set as-path prepend .<1-65535>",
2663 "Negate a command or set its defaults\n"
2664 "Set values in destination routing protocol\n"
2665 "Prepend string for a BGP AS-path attribute\n"
2666 "Prepend to the as-path\n"
2667 "AS number\n")
2668
2669 DEFSH (VTYSH_OSPFD, area_stub_cmd_vtysh,
2670 "area (A.B.C.D|<0-4294967295>) stub",
2671 "OSPF area parameters\n"
2672 "OSPF area ID in IP address format\n"
2673 "OSPF area ID as a decimal value\n"
2674 "Configure OSPF area as stub\n")
2675
2676 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_cmd_vtysh,
2677 "show ipv6 ospf6 database",
2678 "Show running system information\n"
2679 "IPv6 Information\n"
2680 "Open Shortest Path First (OSPF) for IPv6\n"
2681 "LSA Database\n"
2682 )
2683
2684 DEFSH (VTYSH_RIPD, no_rip_default_metric_val_cmd_vtysh,
2685 "no default-metric <1-16>",
2686 "Negate a command or set its defaults\n"
2687 "Set a metric of redistribute routes\n"
2688 "Default metric\n")
2689
2690 DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_cmd_vtysh,
2691 "show ip bgp A.B.C.D/M",
2692 "Show running system information\n"
2693 "IP information\n"
2694 "BGP information\n"
2695 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
2696
2697 DEFSH (VTYSH_BGPD, clear_bgp_external_in_cmd_vtysh,
2698 "clear bgp external in",
2699 "Reset functions\n"
2700 "BGP information\n"
2701 "Clear all external peers\n"
2702 "Soft reconfig inbound update\n")
2703
2704 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ip_access_list_name_cmd_vtysh,
2705 "show ip access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD)",
2706 "Show running system information\n"
2707 "IP information\n"
2708 "List IP access lists\n"
2709 "IP standard access list\n"
2710 "IP extended access list\n"
2711 "IP standard access list (expanded range)\n"
2712 "IP extended access list (expanded range)\n"
2713 "IP zebra access-list\n")
2714
2715 DEFSH (VTYSH_BGPD, set_community_delete_cmd_vtysh,
2716 "set comm-list (<1-99>|<100-199>|WORD) delete",
2717 "Set values in destination routing protocol\n"
2718 "set BGP community list (for deletion)\n"
2719 "Community-list number (standard)\n"
2720 "Communitly-list number (expanded)\n"
2721 "Community-list name\n"
2722 "Delete matching communities\n")
2723
2724 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community3_exact_cmd_vtysh,
2725 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
2726 "Show running system information\n"
2727 "IPv6 information\n"
2728 "BGP information\n"
2729 "Display routes matching the communities\n"
2730 "community number\n"
2731 "Do not send outside local AS (well-known community)\n"
2732 "Do not advertise to any peer (well-known community)\n"
2733 "Do not export to next AS (well-known community)\n"
2734 "community number\n"
2735 "Do not send outside local AS (well-known community)\n"
2736 "Do not advertise to any peer (well-known community)\n"
2737 "Do not export to next AS (well-known community)\n"
2738 "community number\n"
2739 "Do not send outside local AS (well-known community)\n"
2740 "Do not advertise to any peer (well-known community)\n"
2741 "Do not export to next AS (well-known community)\n"
2742 "Exact match of the communities")
2743
2744 DEFSH (VTYSH_BGPD, no_ip_community_list_all_cmd_vtysh,
2745 "no ip community-list (WORD|<1-99>|<100-199>)",
2746 "Negate a command or set its defaults\n"
2747 "IP information\n"
2748 "Add a community list entry\n"
2749 "Community list name\n"
2750 "Community list number (standard)\n"
2751 "Community list number (expanded)\n")
2752
2753 DEFSH (VTYSH_RIPD, rip_redistribute_rip_cmd_vtysh,
2754 "redistribute rip",
2755 "Redistribute information from another routing protocol\n"
2756 "Routing Information Protocol (RIP)\n")
2757
2758 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_hellointerval_cmd_vtysh,
2759 "ipv6 ospf6 hello-interval HELLO_INTERVAL",
2760 "IPv6 Information\n"
2761 "Open Shortest Path First (OSPF) for IPv6\n"
2762 "Time between HELLO packets\n"
2763 "<1-65535> Seconds\n"
2764 )
2765
2766 DEFSH (VTYSH_RIPNGD, no_ripng_passive_interface_cmd_vtysh,
2767 "no passive-interface IFNAME",
2768 "Negate a command or set its defaults\n"
2769 "Suppress routing updates on an interface\n"
2770 "Interface name\n")
2771
2772 DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_backdoor_cmd_vtysh,
2773 "no network A.B.C.D backdoor",
2774 "Negate a command or set its defaults\n"
2775 "Specify a network to announce via BGP\n"
2776 "Network number\n"
2777 "Specify a BGP backdoor route\n")
2778
2779 DEFSH (VTYSH_ZEBRA, multicast_cmd_vtysh,
2780 "multicast",
2781 "Set multicast flag to interface\n")
2782
2783 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_inter_intra_cmd_vtysh,
2784 "distance ospf external <1-255> inter-area <1-255> intra-area <1-255>",
2785 "Define an administrative distance\n"
2786 "OSPF Administrative distance\n"
2787 "External routes\n"
2788 "Distance for external routes\n"
2789 "Inter-area routes\n"
2790 "Distance for inter-area routes\n"
2791 "Intra-area routes\n"
2792 "Distance for intra-area routes\n")
2793
2794 DEFSH (VTYSH_RIPD, rip_redistribute_type_cmd_vtysh,
2795 "redistribute (kernel|connected|static|ospf|bgp)",
2796 "Redistribute information from another routing protocol\n"
2797 "Kernel routes\n"
2798 "Connected\n"
2799 "Static routes\n"
2800 "Open Shortest Path First (OSPF)\n"
2801 "Border Gateway Protocol (BGP)\n")
2802
2803 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_host_cmd_vtysh,
2804 "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D host A.B.C.D",
2805 "Add an access list entry\n"
2806 "IP extended access list\n"
2807 "IP extended access list (expanded range)\n"
2808 "Specify packets to reject\n"
2809 "Specify packets to forward\n"
2810 "Any Internet Protocol\n"
2811 "A single source host\n"
2812 "Source address\n"
2813 "A single destination host\n"
2814 "Destination address\n")
2815
2816 DEFSH (VTYSH_BGPD, bgp_config_type_cmd_vtysh,
2817 "bgp config-type (cisco|zebra)",
2818 "BGP information\n"
2819 "Configuration type\n"
2820 "cisco\n"
2821 "zebra\n")
2822
2823 DEFSH (VTYSH_BGPD, show_ip_bgp_community2_exact_cmd_vtysh,
2824 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
2825 "Show running system information\n"
2826 "IP information\n"
2827 "BGP information\n"
2828 "Display routes matching the communities\n"
2829 "community number\n"
2830 "Do not send outside local AS (well-known community)\n"
2831 "Do not advertise to any peer (well-known community)\n"
2832 "Do not export to next AS (well-known community)\n"
2833 "community number\n"
2834 "Do not send outside local AS (well-known community)\n"
2835 "Do not advertise to any peer (well-known community)\n"
2836 "Do not export to next AS (well-known community)\n"
2837 "Exact match of the communities")
2838
2839 DEFSH (VTYSH_BGPD, show_ip_bgp_view_cmd_vtysh,
2840 "show ip bgp view WORD",
2841 "Show running system information\n"
2842 "IP information\n"
2843 "BGP information\n"
2844 "BGP view\n"
2845 "BGP view name\n")
2846
2847 DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_address_mask_cmd_vtysh,
2848 "clear ip bgp dampening A.B.C.D A.B.C.D",
2849 "Reset functions\n"
2850 "IP information\n"
2851 "BGP information\n"
2852 "Clear route flap dampening information\n"
2853 "Network to clear damping information\n"
2854 "Network mask\n")
2855
2856 DEFSH (VTYSH_OSPFD, area_authentication_message_digest_cmd_vtysh,
2857 "area (A.B.C.D|<0-4294967295>) authentication message-digest",
2858 "OSPF area parameters\n"
2859 "Enable authentication\n"
2860 "Use message-digest authentication\n")
2861
2862 DEFSH (VTYSH_OSPFD, no_area_range_advertise_cost_cmd_vtysh,
2863 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>",
2864 "Negate a command or set its defaults\n"
2865 "OSPF area parameters\n"
2866 "OSPF area ID in IP address format\n"
2867 "OSPF area ID as a decimal value\n"
2868 "Configure OSPF area range for route summarization\n"
2869 "area range prefix\n"
2870 "advertise this range\n"
2871 "User specified metric for this range\n"
2872 "Advertised metric for this range\n")
2873
2874 DEFSH (VTYSH_RIPD, no_rip_neighbor_cmd_vtysh,
2875 "no neighbor A.B.C.D",
2876 "Negate a command or set its defaults\n"
2877 "Specify a neighbor router\n"
2878 "Neighbor address\n")
2879
2880 DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_metric_routemap_cmd_vtysh,
2881 "redistribute connected metric <0-16> route-map WORD",
2882 "Redistribute information from another routing protocol\n"
2883 "Connected\n"
2884 "Metric\n"
2885 "Metric value\n"
2886 "Route map reference\n"
2887 "Pointer to route-map entries\n")
2888
2889 DEFSH (VTYSH_BGPD, no_bgp_deterministic_med_cmd_vtysh,
2890 "no bgp deterministic-med",
2891 "Negate a command or set its defaults\n"
2892 "BGP specific commands\n"
2893 "Pick the best-MED path among paths advertised from the neighboring AS\n")
2894
2895 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community4_exact_cmd_vtysh,
2896 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
2897 "Show running system information\n"
2898 "IP information\n"
2899 "BGP information\n"
2900 "Address family\n"
2901 "Address Family modifier\n"
2902 "Address Family modifier\n"
2903 "Display routes matching the communities\n"
2904 "community number\n"
2905 "Do not send outside local AS (well-known community)\n"
2906 "Do not advertise to any peer (well-known community)\n"
2907 "Do not export to next AS (well-known community)\n"
2908 "community number\n"
2909 "Do not send outside local AS (well-known community)\n"
2910 "Do not advertise to any peer (well-known community)\n"
2911 "Do not export to next AS (well-known community)\n"
2912 "community number\n"
2913 "Do not send outside local AS (well-known community)\n"
2914 "Do not advertise to any peer (well-known community)\n"
2915 "Do not export to next AS (well-known community)\n"
2916 "community number\n"
2917 "Do not send outside local AS (well-known community)\n"
2918 "Do not advertise to any peer (well-known community)\n"
2919 "Do not export to next AS (well-known community)\n"
2920 "Exact match of the communities")
2921
2922 DEFSH (VTYSH_BGPD, no_set_aggregator_as_cmd_vtysh,
2923 "no set aggregator as",
2924 "Negate a command or set its defaults\n"
2925 "Set values in destination routing protocol\n"
2926 "BGP aggregator attribute\n"
2927 "AS number of aggregator\n")
2928
2929 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_cmd_vtysh,
2930 "clear bgp ipv6 * soft",
2931 "Reset functions\n"
2932 "BGP information\n"
2933 "Address family\n"
2934 "Clear all peers\n"
2935 "Soft reconfig\n")
2936
2937 DEFSH (VTYSH_OSPFD, area_vlink_param1_cmd_vtysh,
2938 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
2939 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
2940 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
2941 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
2942
2943 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_cmd_vtysh,
2944 "no redistribute (connected|kernel|ospf|rip|static)",
2945 "Negate a command or set its defaults\n"
2946 "Redistribute information from another routing protocol\n"
2947 "Connected\n"
2948 "Kernel routes\n"
2949 "Open Shurtest Path First (OSPF)\n"
2950 "Routing Information Protocol (RIP)\n"
2951 "Static routes\n")
2952
2953 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_in_cmd_vtysh,
2954 "clear ip bgp external ipv4 (unicast|multicast) soft in",
2955 "Reset functions\n"
2956 "IP information\n"
2957 "BGP information\n"
2958 "Clear all external peers\n"
2959 "Address family\n"
2960 "Address Family modifier\n"
2961 "Address Family modifier\n"
2962 "Soft reconfig\n"
2963 "Soft reconfig inbound update\n")
2964
2965 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_cmd_vtysh,
2966 "ipv6 prefix-list WORD (deny|permit) (X:X::X:X/M|any)",
2967 "IPv6 information\n"
2968 "Build a prefix list\n"
2969 "Name of a prefix list\n"
2970 "Specify packets to reject\n"
2971 "Specify packets to forward\n"
2972 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
2973 "Any prefix match. Same as \"::0/0 le 128\"\n")
2974
2975 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_cmd_vtysh,
2976 "clear ip bgp * vpnv4 unicast soft",
2977 "Reset functions\n"
2978 "IP information\n"
2979 "BGP information\n"
2980 "Clear all peers\n"
2981 "Address family\n"
2982 "Address Family Modifier\n"
2983 "Soft reconfig\n")
2984
2985 DEFSH (VTYSH_BGPD, debug_bgp_keepalive_cmd_vtysh,
2986 "debug bgp keepalives",
2987 "Debugging functions (see also 'undebug')\n"
2988 "BGP information\n"
2989 "BGP keepalives\n")
2990
2991 DEFSH (VTYSH_BGPD, no_router_bgp_cmd_vtysh,
2992 "no router bgp <1-65535>",
2993 "Negate a command or set its defaults\n"
2994 "Enable a routing process\n"
2995 "BGP information\n"
2996 "AS number\n")
2997
2998 DEFSH (VTYSH_ZEBRA, ipv6_route_ifname_pref_cmd_vtysh,
2999 "ipv6 route X:X::X:X/M X:X::X:X INTERFACE <1-255>",
3000 "IP information\n"
3001 "Establish static routes\n"
3002 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
3003 "IPv6 gateway address\n"
3004 "IPv6 gateway interface name\n"
3005 "Distance value for this prefix\n")
3006
3007 DEFSH (VTYSH_OSPFD, no_ip_ospf_transmit_delay_addr_cmd_vtysh,
3008 "no ip ospf transmit-delay A.B.C.D",
3009 "Negate a command or set its defaults\n"
3010 "IP Information\n"
3011 "OSPF interface commands\n"
3012 "Link state transmit delay\n"
3013 "Address of interface")
3014
3015 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_ge_cmd_vtysh,
3016 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128>",
3017 "IPv6 information\n"
3018 "Build a prefix list\n"
3019 "Name of a prefix list\n"
3020 "Specify packets to reject\n"
3021 "Specify packets to forward\n"
3022 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
3023 "Minimum prefix length to be matched\n"
3024 "Minimum prefix length\n")
3025
3026 DEFSH (VTYSH_OSPFD, ospf_distance_cmd_vtysh,
3027 "distance <1-255>",
3028 "Define an administrative distance\n"
3029 "OSPF Administrative distance\n")
3030
3031 DEFSH (VTYSH_OSPFD, area_range_advertise_cost_cmd_vtysh,
3032 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>",
3033 "OSPF area parameters\n"
3034 "OSPF area ID in IP address format\n"
3035 "OSPF area ID as a decimal value\n"
3036 "Configure OSPF area range for route summarization\n"
3037 "area range prefix\n"
3038 "advertise this range\n"
3039 "User specified metric for this range\n"
3040 "Advertised metric for this range\n")
3041
3042 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_remark_cmd_vtysh,
3043 "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark",
3044 "Negate a command or set its defaults\n"
3045 "Add an access list entry\n"
3046 "IP standard access list\n"
3047 "IP extended access list\n"
3048 "IP standard access list (expanded range)\n"
3049 "IP extended access list (expanded range)\n"
3050 "IP zebra access-list\n"
3051 "Access list entry comment\n")
3052
3053 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_routemap_cmd_vtysh,
3054 "no redistribute connected route-map WORD",
3055 "Negate a command or set its defaults\n"
3056 "Redistribute information from another routing protocol\n"
3057 "Connected\n"
3058 "Route map reference\n"
3059 "Pointer to route-map entries\n")
3060
3061 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged5_cmd_vtysh,
3062 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path next-hop med",
3063 "Negate a command or set its defaults\n"
3064 "Specify neighbor router\n"
3065 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3066 "BGP attribute is propagated unchanged to this neighbor\n"
3067 "As-path attribute\n"
3068 "Nexthop attribute\n"
3069 "Med attribute\n")
3070
3071 DEFSH (VTYSH_OSPFD, no_ospf_distance_ospf_cmd_vtysh,
3072 "no distance ospf",
3073 "Negate a command or set its defaults\n"
3074 "Define an administrative distance\n"
3075 "OSPF Administrative distance\n"
3076 "OSPF Distance\n")
3077
3078 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_cmd_vtysh,
3079 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214>",
3080 "Redistribute information from another routing protocol\n"
3081 "Kernel routes\n"
3082 "Connected\n"
3083 "Static routes\n"
3084 "Routing Information Protocol (RIP)\n"
3085 "Border Gateway Protocol (BGP)\n"
3086 "Metric for redistributed routes\n"
3087 "OSPF default metric\n")
3088
3089 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighbor_cmd_vtysh,
3090 "show ipv6 ospf6 neighbor",
3091 "Show running system information\n"
3092 "IPv6 Information\n"
3093 "Open Shortest Path First (OSPF) for IPv6\n"
3094 "Neighbor list\n"
3095 )
3096
3097 DEFSH (VTYSH_RIPD, key_string_cmd_vtysh,
3098 "key-string LINE",
3099 "Set key string\n"
3100 "The key\n")
3101
3102 DEFSH (VTYSH_BGPD, no_neighbor_enforce_multihop_cmd_vtysh,
3103 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "enforce-multihop",
3104 "Negate a command or set its defaults\n"
3105 "Specify neighbor router\n"
3106 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3107 "Enforce EBGP neighbors perform multihop\n")
3108
3109 DEFSH (VTYSH_RIPNGD, debug_ripng_events_cmd_vtysh,
3110 "debug ripng events",
3111 "Debugging functions (see also 'undebug')\n"
3112 "RIPng configuration\n"
3113 "Debug option set for ripng events\n")
3114
3115 DEFSH (VTYSH_OSPF6D, no_redistribute_ospf6_cmd_vtysh,
3116 "no redistribute ospf6",
3117 "Negate a command or set its defaults\n"
3118 "Redistribute control\n"
3119 "OSPF6 route\n")
3120
3121 DEFSH (VTYSH_BGPD, neighbor_description_cmd_vtysh,
3122 "neighbor (A.B.C.D|X:X::X:X|WORD) " "description .LINE",
3123 "Specify neighbor router\n"
3124 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3125 "Neighbor specific description\n"
3126 "Up to 80 characters describing this neighbor\n")
3127
3128 DEFSH (VTYSH_ZEBRA, no_ipv6_route_pref_cmd_vtysh,
3129 "no ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE) <1-255>",
3130 "Negate a command or set its defaults\n"
3131 "IP information\n"
3132 "Establish static routes\n"
3133 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
3134 "IPv6 gateway address\n"
3135 "IPv6 gateway interface name\n"
3136 "Distance value for this prefix\n")
3137
3138 DEFSH (VTYSH_OSPFD, debug_ospf_packet_send_recv_cmd_vtysh,
3139 "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)",
3140 "Debugging functions\n"
3141 "OSPF information\n"
3142 "OSPF packets\n"
3143 "OSPF Hello\n"
3144 "OSPF Database Description\n"
3145 "OSPF Link State Request\n"
3146 "OSPF Link State Update\n"
3147 "OSPF Link State Acknowledgment\n"
3148 "OSPF all packets\n"
3149 "Packet sent\n"
3150 "Packet received\n"
3151 "Detail information\n")
3152
3153 DEFSH (VTYSH_OSPFD, area_range_cmd_vtysh,
3154 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M",
3155 "OSPF area parameters\n"
3156 "OSPF area ID in IP address format\n"
3157 "OSPF area ID as a decimal value\n"
3158 "Configure OSPF area range for route summarization\n"
3159 "area range prefix\n")
3160
3161 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_le_ge_cmd_vtysh,
3162 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
3163 "IPv6 information\n"
3164 "Build a prefix list\n"
3165 "Name of a prefix list\n"
3166 "sequence number of an entry\n"
3167 "Sequence number\n"
3168 "Specify packets to reject\n"
3169 "Specify packets to forward\n"
3170 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
3171 "Maximum prefix length to be matched\n"
3172 "Maximum prefix length\n"
3173 "Minimum prefix length to be matched\n"
3174 "Minimum prefix length\n")
3175
3176 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_in_prefix_filter_cmd_vtysh,
3177 "clear ip bgp external ipv4 (unicast|multicast) in prefix-filter",
3178 "Reset functions\n"
3179 "IP information\n"
3180 "BGP information\n"
3181 "Clear all external peers\n"
3182 "Address family\n"
3183 "Address Family modifier\n"
3184 "Address Family modifier\n"
3185 "Soft reconfig inbound update\n"
3186 "Push out prefix-list ORF and do inbound soft reconfig\n")
3187
3188 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_mask_cmd_vtysh,
3189 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any A.B.C.D A.B.C.D",
3190 "Negate a command or set its defaults\n"
3191 "Add an access list entry\n"
3192 "IP extended access list\n"
3193 "IP extended access list (expanded range)\n"
3194 "Specify packets to reject\n"
3195 "Specify packets to forward\n"
3196 "Any Internet Protocol\n"
3197 "Any source host\n"
3198 "Destination address\n"
3199 "Destination Wildcard bits\n")
3200
3201 DEFSH (VTYSH_RIPD, no_ip_rip_authentication_key_chain2_cmd_vtysh,
3202 "no ip rip authentication key-chain LINE",
3203 "Negate a command or set its defaults\n"
3204 "IP information\n"
3205 "Routing Information Protocol\n"
3206 "Authentication control\n"
3207 "Authentication key-chain\n"
3208 "name of key-chain\n")
3209
3210 DEFSH (VTYSH_BGPD, show_ip_bgp_cidr_only_cmd_vtysh,
3211 "show ip bgp cidr-only",
3212 "Show running system information\n"
3213 "IP information\n"
3214 "BGP information\n"
3215 "Display only routes with non-natural netmasks\n")
3216
3217 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_description_cmd_vtysh,
3218 "no ipv6 prefix-list WORD description",
3219 "Negate a command or set its defaults\n"
3220 "IPv6 information\n"
3221 "Build a prefix list\n"
3222 "Name of a prefix list\n"
3223 "Prefix-list specific description\n")
3224
3225 DEFSH (VTYSH_RIPD, no_ip_rip_send_version_num_cmd_vtysh,
3226 "no ip rip send version (1|2)",
3227 "Negate a command or set its defaults\n"
3228 "IP information\n"
3229 "Routing Information Protocol\n"
3230 "Advertisement transmission\n"
3231 "Version control\n"
3232 "Version 1\n"
3233 "Version 2\n")
3234
3235 DEFSH (VTYSH_OSPFD, no_refresh_timer_cmd_vtysh,
3236 "no refresh timer",
3237 "Adjust refresh parameters\n"
3238 "Unset refresh timer\n")
3239
3240 DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_routemap_cmd_vtysh,
3241 "redistribute ospf6 route-map WORD",
3242 "Redistribute information from another routing protocol\n"
3243 "IPv6 Open Shortest Path First (OSPFv3)\n"
3244 "Route map reference\n"
3245 "Pointer to route-map entries\n")
3246
3247 DEFSH (VTYSH_ZEBRA, no_shutdown_if_cmd_vtysh,
3248 "no shutdown",
3249 "Negate a command or set its defaults\n"
3250 "Shutdown the selected interface\n")
3251
3252 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_in_cmd_vtysh,
3253 "clear ip bgp view WORD * soft in",
3254 "Reset functions\n"
3255 "IP information\n"
3256 "BGP information\n"
3257 "BGP view\n"
3258 "view name\n"
3259 "Clear all peers\n"
3260 "Soft reconfig\n"
3261 "Soft reconfig inbound update\n")
3262
3263 DEFSH (VTYSH_BGPD, show_ip_extcommunity_list_arg_cmd_vtysh,
3264 "show ip extcommunity-list (<1-199>|WORD)",
3265 "Show running system information\n"
3266 "IP information\n"
3267 "List extended-community list\n"
3268 "Extcommunity-list number\n"
3269 "Extcommunity-list name\n")
3270
3271 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_cmd_vtysh,
3272 "clear bgp ipv6 peer-group WORD",
3273 "Reset functions\n"
3274 "BGP information\n"
3275 "Address family\n"
3276 "Clear all members of peer-group\n"
3277 "BGP peer-group name\n")
3278
3279 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_exact_cmd_vtysh,
3280 "no access-list WORD (deny|permit) A.B.C.D/M exact-match",
3281 "Negate a command or set its defaults\n"
3282 "Add an access list entry\n"
3283 "IP zebra access-list name\n"
3284 "Specify packets to reject\n"
3285 "Specify packets to forward\n"
3286 "Prefix to match. e.g. 10.0.0.0/8\n"
3287 "Exact match of the prefixes\n")
3288
3289 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_in_cmd_vtysh,
3290 "clear ip bgp A.B.C.D soft in",
3291 "Reset functions\n"
3292 "IP information\n"
3293 "BGP information\n"
3294 "BGP neighbor address to clear\n"
3295 "Soft reconfig\n"
3296 "Soft reconfig inbound update\n")
3297
3298 DEFSH (VTYSH_OSPFD, no_ip_ospf_cost_addr_cmd_vtysh,
3299 "no ip ospf cost A.B.C.D",
3300 "Negate a command or set its defaults\n"
3301 "IP Information\n"
3302 "OSPF interface commands\n"
3303 "Interface cost\n"
3304 "Address of interface")
3305
3306 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, rmap_onmatch_next_cmd_vtysh,
3307 "on-match next",
3308 "Exit policy on matches\n"
3309 "Next clause\n")
3310
3311 DEFSH (VTYSH_ZEBRA, ipv6_route_cmd_vtysh,
3312 "ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE)",
3313 "IP information\n"
3314 "Establish static routes\n"
3315 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
3316 "IPv6 gateway address\n"
3317 "IPv6 gateway interface name\n")
3318
3319 DEFSH (VTYSH_BGPD, neighbor_enforce_multihop_cmd_vtysh,
3320 "neighbor (A.B.C.D|X:X::X:X|WORD) " "enforce-multihop",
3321 "Specify neighbor router\n"
3322 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3323 "Enforce EBGP neighbors perform multihop\n")
3324
3325 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_router_cmd_vtysh,
3326 "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>|detail)",
3327 "Show running system information\n"
3328 "IPv6 Information\n"
3329 "Open Shortest Path First (OSPF) for IPv6\n"
3330 "Inter Area topology information\n"
3331 "Specify Router-ID\n"
3332 "Specify Router-ID\n"
3333 "Detailed information\n"
3334 )
3335
3336 DEFSH (VTYSH_OSPFD, debug_ospf_packet_all_cmd_vtysh,
3337 "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)",
3338 "Debugging functions (see also 'undebug')\n"
3339 "OSPF information\n"
3340 "OSPF packets\n"
3341 "OSPF Hello\n"
3342 "OSPF Database Description\n"
3343 "OSPF Link State Request\n"
3344 "OSPF Link State Update\n"
3345 "OSPF Link State Acknowledgment\n"
3346 "OSPF all packets\n")
3347
3348 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_in_prefix_filter_cmd_vtysh,
3349 "clear ip bgp <1-65535> in prefix-filter",
3350 "Reset functions\n"
3351 "IP information\n"
3352 "BGP information\n"
3353 "Clear peers with the AS number\n"
3354 "Soft reconfig inbound update\n"
3355 "Push out prefix-list ORF and do inbound soft reconfig\n")
3356
3357 DEFSH (VTYSH_BGPD, no_match_aspath_cmd_vtysh,
3358 "no match as-path",
3359 "Negate a command or set its defaults\n"
3360 "Match values from routing table\n"
3361 "Match BGP AS path list\n")
3362
3363 DEFSH (VTYSH_RIPD, no_debug_rip_events_cmd_vtysh,
3364 "no debug rip events",
3365 "Negate a command or set its defaults\n"
3366 "Debugging functions (see also 'undebug')\n"
3367 "RIP information\n"
3368 "RIP events\n")
3369
3370 DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_cmd_vtysh,
3371 "no network A.B.C.D",
3372 "Negate a command or set its defaults\n"
3373 "Specify a network to announce via BGP\n"
3374 "Network number\n")
3375
3376 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged5_cmd_vtysh,
3377 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path next-hop med",
3378 "Specify neighbor router\n"
3379 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3380 "BGP attribute is propagated unchanged to this neighbor\n"
3381 "As-path attribute\n"
3382 "Nexthop attribute\n"
3383 "Med attribute\n")
3384
3385 DEFSH (VTYSH_RIPD, rip_default_information_originate_cmd_vtysh,
3386 "default-information originate",
3387 "Control distribution of default route\n"
3388 "Distribute a default route\n")
3389
3390 DEFSH (VTYSH_OSPFD, no_ospf_abr_type_cmd_vtysh,
3391 "no ospf abr-type (cisco|ibm|shortcut)",
3392 "Negate a command or set its defaults\n"
3393 "OSPF specific commands\n"
3394 "Set OSPF ABR type\n"
3395 "Alternative ABR, cisco implementation\n"
3396 "Alternative ABR, IBM implementation\n"
3397 "Shortcut ABR\n")
3398
3399 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_rmap_cmd_vtysh,
3400 "no redistribute (connected|kernel|ospf6|ripng|static) route-map WORD",
3401 "Negate a command or set its defaults\n"
3402 "Redistribute information from another routing protocol\n"
3403 "Connected\n"
3404 "Kernel routes\n"
3405 "Open Shurtest Path First (OSPFv3)\n"
3406 "Routing Information Protocol (RIPng)\n"
3407 "Static routes\n"
3408 "Route map reference\n"
3409 "Pointer to route-map entries\n")
3410
3411 DEFSH (VTYSH_OSPFD, no_ospf_transmit_delay_cmd_vtysh,
3412 "no ospf transmit-delay",
3413 "Negate a command or set its defaults\n"
3414 "OSPF interface commands\n"
3415 "Link state transmit delay\n")
3416
3417 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_remark_cmd_vtysh,
3418 "ipv6 access-list WORD remark .LINE",
3419 "IPv6 information\n"
3420 "Add an access list entry\n"
3421 "IPv6 zebra access-list\n"
3422 "Access list entry comment\n"
3423 "Comment up to 100 characters\n")
3424
3425 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_detail_cmd_vtysh,
3426 "show ipv6 prefix-list detail",
3427 "Show running system information\n"
3428 "IPv6 information\n"
3429 "Build a prefix list\n"
3430 "Detail of prefix lists\n")
3431
3432 DEFSH (VTYSH_BGPD, ip_extcommunity_list_standard_cmd_vtysh,
3433 "ip extcommunity-list <1-99> (deny|permit) .AA:NN",
3434 "IP information\n"
3435 "Add a extended community list entry\n"
3436 "Extended Community list number (standard)\n"
3437 "Specify community to reject\n"
3438 "Specify community to accept\n"
3439 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
3440
3441 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_reachable_time_cmd_vtysh,
3442 "no ipv6 nd reachable-time",
3443 "Negate a command or set its defaults\n"
3444 "IP information\n"
3445 "Neighbor discovery\n"
3446 "Reachable time\n")
3447
3448 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community3_exact_cmd_vtysh,
3449 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
3450 "Show running system information\n"
3451 "IPv6 information\n"
3452 "MBGP information\n"
3453 "Display routes matching the communities\n"
3454 "community number\n"
3455 "Do not send outside local AS (well-known community)\n"
3456 "Do not advertise to any peer (well-known community)\n"
3457 "Do not export to next AS (well-known community)\n"
3458 "community number\n"
3459 "Do not send outside local AS (well-known community)\n"
3460 "Do not advertise to any peer (well-known community)\n"
3461 "Do not export to next AS (well-known community)\n"
3462 "community number\n"
3463 "Do not send outside local AS (well-known community)\n"
3464 "Do not advertise to any peer (well-known community)\n"
3465 "Do not export to next AS (well-known community)\n"
3466 "Exact match of the communities")
3467
3468 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_ge_le_cmd_vtysh,
3469 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128> le <0-128>",
3470 "Negate a command or set its defaults\n"
3471 "IPv6 information\n"
3472 "Build a prefix list\n"
3473 "Name of a prefix list\n"
3474 "Specify packets to reject\n"
3475 "Specify packets to forward\n"
3476 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
3477 "Minimum prefix length to be matched\n"
3478 "Minimum prefix length\n"
3479 "Maximum prefix length to be matched\n"
3480 "Maximum prefix length\n")
3481
3482 DEFSH (VTYSH_OSPFD, no_ip_ospf_retransmit_interval_cmd_vtysh,
3483 "no ip ospf retransmit-interval",
3484 "Negate a command or set its defaults\n"
3485 "IP Information\n"
3486 "OSPF interface commands\n"
3487 "Time between retransmitting lost link state advertisements\n")
3488
3489 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community2_cmd_vtysh,
3490 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
3491 "Show running system information\n"
3492 "IPv6 information\n"
3493 "BGP information\n"
3494 "Display routes matching the communities\n"
3495 "community number\n"
3496 "Do not send outside local AS (well-known community)\n"
3497 "Do not advertise to any peer (well-known community)\n"
3498 "Do not export to next AS (well-known community)\n"
3499 "community number\n"
3500 "Do not send outside local AS (well-known community)\n"
3501 "Do not advertise to any peer (well-known community)\n"
3502 "Do not export to next AS (well-known community)\n")
3503
3504 DEFSH (VTYSH_BGPD, aggregate_address_mask_as_set_summary_cmd_vtysh,
3505 "aggregate-address A.B.C.D A.B.C.D as-set summary-only",
3506 "Configure BGP aggregate entries\n"
3507 "Aggregate address\n"
3508 "Aggregate mask\n"
3509 "Generate AS set path information\n"
3510 "Filter more specific routes from updates\n")
3511
3512 DEFSH (VTYSH_BGPD, no_aggregate_address_mask_cmd_vtysh,
3513 "no aggregate-address A.B.C.D A.B.C.D",
3514 "Negate a command or set its defaults\n"
3515 "Configure BGP aggregate entries\n"
3516 "Aggregate address\n"
3517 "Aggregate mask\n")
3518
3519 DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_longer_cmd_vtysh,
3520 "show ip bgp A.B.C.D/M longer-prefixes",
3521 "Show running system information\n"
3522 "IP information\n"
3523 "BGP information\n"
3524 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3525 "Display route and more specific routes\n")
3526
3527 DEFSH (VTYSH_BGPD, set_metric_cmd_vtysh,
3528 "set metric (<0-4294967295>|<+/-metric>)",
3529 "Set values in destination routing protocol\n"
3530 "Metric value for destination routing protocol\n"
3531 "Metric value\n"
3532 "Add or subtract metric\n")
3533
3534 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_cmd_vtysh,
3535 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export)",
3536 "Show running system information\n"
3537 "IPv6 information\n"
3538 "BGP information\n"
3539 "Display routes matching the communities\n"
3540 "community number\n"
3541 "Do not send outside local AS (well-known community)\n"
3542 "Do not advertise to any peer (well-known community)\n"
3543 "Do not export to next AS (well-known community)\n")
3544
3545 DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_routes_cmd_vtysh,
3546 "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) routes",
3547 "Show running system information\n"
3548 "IPv6 information\n"
3549 "BGP information\n"
3550 "Detailed information on TCP and BGP neighbor connections\n"
3551 "Neighbor to display information about\n"
3552 "Neighbor to display information about\n"
3553 "Display routes learned from neighbor\n")
3554
3555 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_description_arg_cmd_vtysh,
3556 "no ip prefix-list WORD description .LINE",
3557 "Negate a command or set its defaults\n"
3558 "IP information\n"
3559 "Build a prefix list\n"
3560 "Name of a prefix list\n"
3561 "Prefix-list specific description\n"
3562 "Up to 80 characters describing this prefix-list\n")
3563
3564 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbors_cmd_vtysh,
3565 "show ip bgp neighbors",
3566 "Show running system information\n"
3567 "IP information\n"
3568 "BGP information\n"
3569 "Detailed information on TCP and BGP neighbor connections\n")
3570
3571 DEFSH (VTYSH_BGPD, neighbor_advertise_interval_cmd_vtysh,
3572 "neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval <0-600>",
3573 "Specify neighbor router\n"
3574 "Neighbor address\nIPv6 address\n"
3575 "Minimum interval between sending BGP routing updates\n"
3576 "time in seconds\n")
3577
3578 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_cmd_vtysh,
3579 "clear ip bgp external soft",
3580 "Reset functions\n"
3581 "IP information\n"
3582 "BGP information\n"
3583 "Clear all external peers\n"
3584 "Soft reconfig\n")
3585
3586 DEFSH (VTYSH_BGPD, no_neighbor_remove_private_as_cmd_vtysh,
3587 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "remove-private-AS",
3588 "Negate a command or set its defaults\n"
3589 "Specify neighbor router\n"
3590 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3591 "Remove private AS number from outbound updates\n")
3592
3593 DEFSH (VTYSH_RIPD, no_ip_rip_send_version_cmd_vtysh,
3594 "no ip rip send version",
3595 "Negate a command or set its defaults\n"
3596 "IP information\n"
3597 "Routing Information Protocol\n"
3598 "Advertisement transmission\n"
3599 "Version control\n")
3600
3601 DEFSH (VTYSH_BGPD, clear_bgp_external_in_prefix_filter_cmd_vtysh,
3602 "clear bgp external in prefix-filter",
3603 "Reset functions\n"
3604 "BGP information\n"
3605 "Clear all external peers\n"
3606 "Soft reconfig inbound update\n"
3607 "Push out prefix-list ORF and do inbound soft reconfig\n")
3608
3609 DEFSH (VTYSH_BGPD, show_ip_bgp_route_cmd_vtysh,
3610 "show ip bgp A.B.C.D",
3611 "Show running system information\n"
3612 "IP information\n"
3613 "BGP information\n"
3614 "Network in the BGP routing table to display\n")
3615
3616 DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ipv6_prefix_list_name_cmd_vtysh,
3617 "clear ipv6 prefix-list WORD",
3618 "Reset functions\n"
3619 "IPv6 information\n"
3620 "Build a prefix list\n"
3621 "Name of a prefix list\n")
3622
3623 DEFSH (VTYSH_BGPD, no_neighbor_timers_cmd_vtysh,
3624 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "timers",
3625 "Negate a command or set its defaults\n"
3626 "Specify neighbor router\n"
3627 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3628 "BGP per neighbor timers\n")
3629
3630 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_in_cmd_vtysh,
3631 "clear ip bgp peer-group WORD soft in",
3632 "Reset functions\n"
3633 "IP information\n"
3634 "BGP information\n"
3635 "Clear all members of peer-group\n"
3636 "BGP peer-group name\n"
3637 "Soft reconfig\n"
3638 "Soft reconfig inbound update\n")
3639
3640 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_routemap_cmd_vtysh,
3641 "default-information originate always metric-type (1|2) route-map WORD",
3642 "Control distribution of default information\n"
3643 "Distribute a default route\n"
3644 "Always advertise default route\n"
3645 "OSPF metric type for default routes\n"
3646 "Set OSPF External Type 1 metrics\n"
3647 "Set OSPF External Type 2 metrics\n"
3648 "Route map reference\n"
3649 "Pointer to route-map entries\n")
3650
3651 DEFSH (VTYSH_BGPD, ip_extcommunity_list_expanded_cmd_vtysh,
3652 "ip extcommunity-list <100-199> (deny|permit) .LINE",
3653 "IP information\n"
3654 "Add a extended community list entry\n"
3655 "Extended Community list number (expanded)\n"
3656 "Specify community to reject\n"
3657 "Specify community to accept\n"
3658 "An ordered list as a regular-expression\n")
3659
3660 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_exact_cmd_vtysh,
3661 "ipv6 access-list WORD (deny|permit) X:X::X:X/M exact-match",
3662 "IPv6 information\n"
3663 "Add an access list entry\n"
3664 "IPv6 zebra access-list\n"
3665 "Specify packets to reject\n"
3666 "Specify packets to forward\n"
3667 "Prefix to match. e.g. 3ffe:506::/32\n"
3668 "Exact match of the prefixes\n")
3669
3670 DEFSH (VTYSH_BGPD, show_ip_community_list_arg_cmd_vtysh,
3671 "show ip community-list (<1-199>|WORD)",
3672 "Show running system information\n"
3673 "IP information\n"
3674 "List community-list\n"
3675 "Community-list number\n"
3676 "Community-list name\n")
3677
3678 DEFSH (VTYSH_BGPD, bgp_timers_cmd_vtysh,
3679 "timers bgp <0-65535> <0-65535>",
3680 "Adjust routing timers\n"
3681 "BGP timers\n"
3682 "Keepalive interval\n"
3683 "Holdtime\n")
3684
3685 DEFSH (VTYSH_RIPD, rip_neighbor_cmd_vtysh,
3686 "neighbor A.B.C.D",
3687 "Specify a neighbor router\n"
3688 "Neighbor address\n")
3689
3690 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_first_match_cmd_vtysh,
3691 "show ipv6 prefix-list WORD X:X::X:X/M first-match",
3692 "Show running system information\n"
3693 "IPv6 information\n"
3694 "Build a prefix list\n"
3695 "Name of a prefix list\n"
3696 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
3697 "First matched prefix\n")
3698
3699 DEFSH (VTYSH_BGPD, neighbor_shutdown_cmd_vtysh,
3700 "neighbor (A.B.C.D|X:X::X:X|WORD) " "shutdown",
3701 "Specify neighbor router\n"
3702 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3703 "Administratively shut down this neighbor\n")
3704
3705 DEFSH (VTYSH_BGPD, no_debug_bgp_fsm_cmd_vtysh,
3706 "no debug bgp fsm",
3707 "Negate a command or set its defaults\n"
3708 "Debugging functions (see also 'undebug')\n"
3709 "BGP information\n"
3710 "Finite State Machine\n")
3711
3712 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_in_cmd_vtysh,
3713 "clear bgp ipv6 <1-65535> soft in",
3714 "Reset functions\n"
3715 "BGP information\n"
3716 "Address family\n"
3717 "Clear peers with the AS number\n"
3718 "Soft reconfig\n"
3719 "Soft reconfig inbound update\n")
3720
3721 DEFSH (VTYSH_BGPD, neighbor_weight_cmd_vtysh,
3722 "neighbor (A.B.C.D|X:X::X:X|WORD) " "weight <0-65535>",
3723 "Specify neighbor router\n"
3724 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3725 "Set default weight for routes from this neighbor\n"
3726 "default weight\n")
3727
3728 DEFSH (VTYSH_BGPD, neighbor_transparent_nexthop_cmd_vtysh,
3729 "neighbor (A.B.C.D|X:X::X:X) " "transparent-nexthop",
3730 "Specify neighbor router\n"
3731 "Neighbor address\nIPv6 address\n"
3732 "Do not change nexthop even peer is EBGP peer\n")
3733
3734 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_cmd_vtysh,
3735 "clear ip bgp A.B.C.D soft",
3736 "Reset functions\n"
3737 "IP information\n"
3738 "BGP information\n"
3739 "BGP neighbor address to clear\n"
3740 "Soft reconfig\n")
3741
3742 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh,
3743 "show ip bgp vpnv4 all neighbors A.B.C.D",
3744 "Show running system information\n"
3745 "IP information\n"
3746 "BGP information\n"
3747 "Display VPNv4 NLRI specific information\n"
3748 "Display information about all VPNv4 NLRIs\n"
3749 "Detailed information on TCP and BGP neighbor connections\n"
3750 "Neighbor to display information about\n")
3751
3752 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_list_cmd_vtysh,
3753 "show ipv6 bgp community-list WORD",
3754 "Show running system information\n"
3755 "IPv6 information\n"
3756 "BGP information\n"
3757 "Display routes matching the community-list\n"
3758 "community-list name\n")
3759
3760 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_in_cmd_vtysh,
3761 "clear ip bgp A.B.C.D vpnv4 unicast soft in",
3762 "Reset functions\n"
3763 "IP information\n"
3764 "BGP information\n"
3765 "BGP neighbor address to clear\n"
3766 "Address family\n"
3767 "Address Family Modifier\n"
3768 "Soft reconfig\n"
3769 "Soft reconfig inbound update\n")
3770
3771 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_le_cmd_vtysh,
3772 "no ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32>",
3773 "Negate a command or set its defaults\n"
3774 "IP information\n"
3775 "Build a prefix list\n"
3776 "Name of a prefix list\n"
3777 "Specify packets to reject\n"
3778 "Specify packets to forward\n"
3779 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3780 "Maximum prefix length to be matched\n"
3781 "Maximum prefix length\n")
3782
3783 DEFSH (VTYSH_BGPD, no_bgp_bestpath_med2_cmd_vtysh,
3784 "no bgp bestpath med confed missing-as-worst",
3785 "Negate a command or set its defaults\n"
3786 "BGP specific commands\n"
3787 "Change the default bestpath selection\n"
3788 "MED attribute\n"
3789 "Compare MED among confederation paths\n"
3790 "Treat missing MED as the least preferred one\n")
3791
3792 DEFSH (VTYSH_OSPFD, no_ospf_priority_cmd_vtysh,
3793 "no ospf priority",
3794 "Negate a command or set its defaults\n"
3795 "OSPF interface commands\n"
3796 "Router priority\n")
3797
3798 DEFSH (VTYSH_BGPD, bgp_network_mask_natural_cmd_vtysh,
3799 "network A.B.C.D",
3800 "Specify a network to announce via BGP\n"
3801 "Network number\n")
3802
3803 DEFSH (VTYSH_OSPFD, area_stub_nosum_cmd_vtysh,
3804 "area (A.B.C.D|<0-4294967295>) stub no-summary",
3805 "OSPF stub parameters\n"
3806 "OSPF area ID in IP address format\n"
3807 "OSPF area ID as a decimal value\n"
3808 "Configure OSPF area as stub\n"
3809 "Do not inject inter-area routes into stub\n")
3810
3811 DEFSH (VTYSH_BGPD, no_synchronization_cmd_vtysh,
3812 "no synchronization",
3813 "Negate a command or set its defaults\n"
3814 "Perform IGP synchronization\n")
3815
3816 DEFSH (VTYSH_OSPFD, no_area_range_not_advertise_cmd_vtysh,
3817 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M not-advertise",
3818 "Negate a command or set its defaults\n"
3819 "OSPF area parameters\n"
3820 "OSPF area ID in IP address format\n"
3821 "OSPF area ID as a decimal value\n"
3822 "OSPF area range for route DoNotAdvertise\n"
3823 "area range prefix\n"
3824 "do not advertise this range\n")
3825
3826 DEFSH (VTYSH_RIPD|VTYSH_BGPD, set_ip_nexthop_cmd_vtysh,
3827 "set ip next-hop A.B.C.D",
3828 "Set values in destination routing protocol\n"
3829 "IP information\n"
3830 "Next hop address\n"
3831 "IP address of next hop\n")
3832
3833 DEFSH (VTYSH_RIPD, no_rip_version_val_cmd_vtysh,
3834 "no version <1-2>",
3835 "Negate a command or set its defaults\n"
3836 "Set routing protocol version\n"
3837 "version\n")
3838
3839 DEFSH (VTYSH_BGPD, no_bgp_scan_time_cmd_vtysh,
3840 "no bgp scan-time",
3841 "Negate a command or set its defaults\n"
3842 "BGP specific commands\n"
3843 "Configure background scanner interval\n")
3844
3845 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_cmd_vtysh,
3846 "no redistribute connected metric",
3847 "Negate a command or set its defaults\n"
3848 "Redistribute information from another routing protocol\n"
3849 "Connected\n"
3850 "Metric\n")
3851
3852 DEFSH (VTYSH_OSPF6D, debug_ospf6_all_cmd_vtysh,
3853 "debug ospf6 all",
3854 "Debugging functions (see also 'undebug')\n"
3855 "Open Shortest Path First (OSPF) for IPv6\n"
3856 "Turn on ALL OSPFv3 debugging\n")
3857
3858 DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_key_addr_cmd_vtysh,
3859 "no ip ospf authentication-key A.B.C.D",
3860 "Negate a command or set its defaults\n"
3861 "IP Information\n"
3862 "OSPF interface commands\n"
3863 "Authentication password (key)\n"
3864 "Address of interface")
3865
3866 DEFSH (VTYSH_RIPNGD, no_ripng_route_cmd_vtysh,
3867 "no route IPV6ADDR",
3868 "Negate a command or set its defaults\n"
3869 "Static route setup\n"
3870 "Delete static RIPng route announcement\n")
3871
3872 DEFSH (VTYSH_OSPFD, debug_ospf_nsm_sub_cmd_vtysh,
3873 "debug ospf nsm (status|events|timers)",
3874 "Debugging functions (see also 'undebug')\n"
3875 "OSPF information\n"
3876 "OSPF Neighbor State Machine\n"
3877 "NSM Status Information\n"
3878 "NSM Event Information\n"
3879 "NSM Timer Information\n")
3880
3881 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_out_cmd_vtysh,
3882 "clear ip bgp <1-65535> vpnv4 unicast soft out",
3883 "Reset functions\n"
3884 "IP information\n"
3885 "BGP information\n"
3886 "Clear peers with the AS number\n"
3887 "Address family\n"
3888 "Address Family modifier\n"
3889 "Soft reconfig\n"
3890 "Soft reconfig outbound update\n")
3891
3892 DEFSH (VTYSH_BGPD, no_debug_bgp_all_cmd_vtysh,
3893 "no debug all bgp",
3894 "Negate a command or set its defaults\n"
3895 "Debugging functions (see also 'undebug')\n"
3896 "Enable all debugging\n"
3897 "BGP information\n")
3898
3899 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_out_cmd_vtysh,
3900 "clear ip bgp * vpnv4 unicast soft out",
3901 "Reset functions\n"
3902 "IP information\n"
3903 "BGP information\n"
3904 "Clear all peers\n"
3905 "Address family\n"
3906 "Address Family Modifier\n"
3907 "Soft reconfig\n"
3908 "Soft reconfig outbound update\n")
3909
3910 DEFSH (VTYSH_BGPD, no_bgp_distance_cmd_vtysh,
3911 "no distance bgp <1-255> <1-255> <1-255>",
3912 "Negate a command or set its defaults\n"
3913 "Define an administrative distance\n"
3914 "BGP distance\n"
3915 "Distance for routes external to the AS\n"
3916 "Distance for routes internal to the AS\n"
3917 "Distance for local routes\n")
3918
3919 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_out_cmd_vtysh,
3920 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft out",
3921 "Reset functions\n"
3922 "IP information\n"
3923 "BGP information\n"
3924 "Clear all members of peer-group\n"
3925 "BGP peer-group name\n"
3926 "Address family\n"
3927 "Address Family modifier\n"
3928 "Address Family modifier\n"
3929 "Soft reconfig\n"
3930 "Soft reconfig outbound update\n")
3931
3932 DEFSH (VTYSH_RIPD, no_rip_timers_cmd_vtysh,
3933 "no timers basic",
3934 "Negate a command or set its defaults\n"
3935 "Adjust routing timers\n"
3936 "Basic routing protocol update timers\n")
3937
3938 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_passive_cmd_vtysh,
3939 "ipv6 ospf6 passive",
3940 "IPv6 Information\n"
3941 "Open Shortest Path First (OSPF) for IPv6\n"
3942 "passive interface: No Adjacency will be formed on this I/F\n"
3943 )
3944
3945 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_external_intra_cmd_vtysh,
3946 "distance ospf inter-area <1-255> external <1-255> intra-area <1-255>",
3947 "Define an administrative distance\n"
3948 "OSPF Administrative distance\n"
3949 "Inter-area routes\n"
3950 "Distance for inter-area routes\n"
3951 "External routes\n"
3952 "Distance for external routes\n"
3953 "Intra-area routes\n"
3954 "Distance for intra-area routes\n")
3955
3956 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_metric_routemap_cmd_vtysh,
3957 "default-information originate always metric-type (1|2) metric <0-16777214> route-map WORD",
3958 "Control distribution of default information\n"
3959 "Distribute a default route\n"
3960 "Always advertise default route\n"
3961 "OSPF metric type for default routes\n"
3962 "Set OSPF External Type 1 metrics\n"
3963 "Set OSPF External Type 2 metrics\n"
3964 "OSPF default metric\n"
3965 "OSPF metric\n"
3966 "Route map reference\n"
3967 "Pointer to route-map entries\n")
3968
3969 DEFSH (VTYSH_RIPNGD, no_debug_ripng_events_cmd_vtysh,
3970 "no debug ripng events",
3971 "Negate a command or set its defaults\n"
3972 "Debugging functions (see also 'undebug')\n"
3973 "RIPng configuration\n"
3974 "Debug option set for ripng events\n")
3975
3976 DEFSH (VTYSH_RIPD, accept_lifetime_duration_month_day_cmd_vtysh,
3977 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> duration <1-2147483646>",
3978 "Set accept lifetime of the key\n"
3979 "Time to start\n"
3980 "Month of the year to start\n"
3981 "Day of th month to start\n"
3982 "Year to start\n"
3983 "Duration of the key\n"
3984 "Duration seconds\n")
3985
3986 DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_metric_routemap_cmd_vtysh,
3987 "redistribute ospf6 metric <0-16> route-map WORD",
3988 "Redistribute information from another routing protocol\n"
3989 "IPv6 Open Shortest Path First (OSPFv3)\n"
3990 "Metric\n"
3991 "Metric value\n"
3992 "Route map reference\n"
3993 "Pointer to route-map entries\n")
3994
3995 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_match_metric_cmd_vtysh,
3996 "no match metric",
3997 "Negate a command or set its defaults\n"
3998 "Match values from routing table\n"
3999 "Match metric of route\n")
4000
4001 DEFSH (VTYSH_RIPD, match_ip_next_hop_cmd_vtysh,
4002 "match ip next-hop WORD",
4003 "Match values from routing table\n"
4004 "IP information\n"
4005 "Match next-hop address of route\n"
4006 "IP access-list name\n")
4007
4008 DEFSH (VTYSH_ZEBRA, ip_irdp_cmd_vtysh,
4009 "ip irdp",
4010 "IP information\n"
4011 "ICMP Router discovery on this interface\n")
4012
4013 DEFSH (VTYSH_BGPD, aggregate_address_summary_only_cmd_vtysh,
4014 "aggregate-address A.B.C.D/M summary-only",
4015 "Configure BGP aggregate entries\n"
4016 "Aggregate prefix\n"
4017 "Filter more specific routes from updates\n")
4018
4019 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_in_prefix_filter_cmd_vtysh,
4020 "clear bgp ipv6 <1-65535> in prefix-filter",
4021 "Reset functions\n"
4022 "BGP information\n"
4023 "Address family\n"
4024 "Clear peers with the AS number\n"
4025 "Soft reconfig inbound update\n"
4026 "Push out prefix-list ORF and do inbound soft reconfig\n")
4027
4028 DEFSH (VTYSH_BGPD, no_bgp_network_route_map_cmd_vtysh,
4029 "no network A.B.C.D/M route-map WORD",
4030 "Negate a command or set its defaults\n"
4031 "Specify a network to announce via BGP\n"
4032 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
4033 "Route-map to modify the attributes\n"
4034 "Name of the route map\n")
4035
4036 DEFSH (VTYSH_BGPD, show_ip_bgp_instance_neighbors_peer_cmd_vtysh,
4037 "show ip bgp view WORD neighbors (A.B.C.D|X:X::X:X)",
4038 "Show running system information\n"
4039 "IP information\n"
4040 "BGP information\n"
4041 "BGP view\n"
4042 "View name\n"
4043 "Detailed information on TCP and BGP neighbor connections\n"
4044 "Neighbor to display information about\n"
4045 "Neighbor to display information about\n")
4046
4047 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_cmd_vtysh,
4048 "no redistribute connected",
4049 "Negate a command or set its defaults\n"
4050 "Redistribute information from another routing protocol\n"
4051 "Connected\n")
4052
4053 DEFSH (VTYSH_BGPD, aggregate_address_summary_as_set_cmd_vtysh,
4054 "aggregate-address A.B.C.D/M summary-only as-set",
4055 "Configure BGP aggregate entries\n"
4056 "Aggregate prefix\n"
4057 "Filter more specific routes from updates\n"
4058 "Generate AS set path information\n")
4059
4060 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_in_cmd_vtysh,
4061 "clear ip bgp external in",
4062 "Reset functions\n"
4063 "IP information\n"
4064 "BGP information\n"
4065 "Clear all external peers\n"
4066 "Soft reconfig inbound update\n")
4067
4068 DEFSH (VTYSH_RIPD, no_debug_rip_packet_direct_cmd_vtysh,
4069 "no debug rip packet (recv|send)",
4070 "Negate a command or set its defaults\n"
4071 "Debugging functions (see also 'undebug')\n"
4072 "RIP information\n"
4073 "RIP packet\n"
4074 "RIP option set for receive packet\n"
4075 "RIP option set for send packet\n")
4076
4077 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community2_exact_cmd_vtysh,
4078 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
4079 "Show running system information\n"
4080 "BGP information\n"
4081 "Address family\n"
4082 "Display routes matching the communities\n"
4083 "community number\n"
4084 "Do not send outside local AS (well-known community)\n"
4085 "Do not advertise to any peer (well-known community)\n"
4086 "Do not export to next AS (well-known community)\n"
4087 "community number\n"
4088 "Do not send outside local AS (well-known community)\n"
4089 "Do not advertise to any peer (well-known community)\n"
4090 "Do not export to next AS (well-known community)\n"
4091 "Exact match of the communities")
4092
4093 DEFSH (VTYSH_BGPD, no_neighbor_nexthop_self_cmd_vtysh,
4094 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "next-hop-self",
4095 "Negate a command or set its defaults\n"
4096 "Specify neighbor router\n"
4097 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4098 "Disable the next hop calculation for this neighbor\n")
4099
4100 DEFSH (VTYSH_OSPFD, area_range_not_advertise_cmd_vtysh,
4101 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M not-advertise",
4102 "OSPF area parameters\n"
4103 "OSPF area ID in IP address format\n"
4104 "OSPF area ID as a decimal value\n"
4105 "OSPF area range for route DoNotAdvertise\n"
4106 "area range prefix\n"
4107 "do not advertise this range\n")
4108
4109 DEFSH (VTYSH_RIPD, no_ip_rip_authentication_mode_type_cmd_vtysh,
4110 "no ip rip authentication mode (md5|text)",
4111 "Negate a command or set its defaults\n"
4112 "IP information\n"
4113 "Routing Information Protocol\n"
4114 "Authentication control\n"
4115 "Authentication mode\n"
4116 "Keyed message digest\n"
4117 "Clear text authentication\n")
4118
4119 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_summary_cmd_vtysh,
4120 "show ipv6 prefix-list summary",
4121 "Show running system information\n"
4122 "IPv6 information\n"
4123 "Build a prefix list\n"
4124 "Summary of prefix lists\n")
4125
4126 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_any_cmd_vtysh,
4127 "no access-list WORD (deny|permit) any",
4128 "Negate a command or set its defaults\n"
4129 "Add an access list entry\n"
4130 "IP zebra access-list name\n"
4131 "Specify packets to reject\n"
4132 "Specify packets to forward\n"
4133 "Prefix to match. e.g. 10.0.0.0/8\n")
4134
4135 DEFSH (VTYSH_BGPD, bgp_bestpath_med3_cmd_vtysh,
4136 "bgp bestpath med missing-as-worst confed",
4137 "BGP specific commands\n"
4138 "Change the default bestpath selection\n"
4139 "MED attribute\n"
4140 "Treat missing MED as the least preferred one\n"
4141 "Compare MED among confederation paths\n")
4142
4143 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community4_cmd_vtysh,
4144 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
4145 "Show running system information\n"
4146 "BGP information\n"
4147 "Address family\n"
4148 "Display routes matching the communities\n"
4149 "community number\n"
4150 "Do not send outside local AS (well-known community)\n"
4151 "Do not advertise to any peer (well-known community)\n"
4152 "Do not export to next AS (well-known community)\n"
4153 "community number\n"
4154 "Do not send outside local AS (well-known community)\n"
4155 "Do not advertise to any peer (well-known community)\n"
4156 "Do not export to next AS (well-known community)\n"
4157 "community number\n"
4158 "Do not send outside local AS (well-known community)\n"
4159 "Do not advertise to any peer (well-known community)\n"
4160 "Do not export to next AS (well-known community)\n"
4161 "community number\n"
4162 "Do not send outside local AS (well-known community)\n"
4163 "Do not advertise to any peer (well-known community)\n"
4164 "Do not export to next AS (well-known community)\n")
4165
4166 DEFSH (VTYSH_OSPFD, ip_ospf_retransmit_interval_addr_cmd_vtysh,
4167 "ip ospf retransmit-interval <3-65535> A.B.C.D",
4168 "IP Information\n"
4169 "OSPF interface commands\n"
4170 "Time between retransmitting lost link state advertisements\n"
4171 "Seconds\n"
4172 "Address of interface")
4173
4174 DEFSH (VTYSH_RIPD, match_ip_address_cmd_vtysh,
4175 "match ip address WORD",
4176 "Match values from routing table\n"
4177 "IP information\n"
4178 "Match address of route\n"
4179 "IP access-list name\n")
4180
4181 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_deadinterval_cmd_vtysh,
4182 "ipv6 ospf6 dead-interval ROUTER_DEAD_INTERVAL",
4183 "IPv6 Information\n"
4184 "Open Shortest Path First (OSPF) for IPv6\n"
4185 "Interval after which a neighbor is declared dead\n"
4186 "<1-65535> Seconds\n"
4187 )
4188
4189 DEFSH (VTYSH_OSPFD, debug_ospf_zebra_sub_cmd_vtysh,
4190 "debug ospf zebra (interface|redistribute)",
4191 "Debugging functions (see also 'undebug')\n"
4192 "OSPF information\n"
4193 "OSPF Zebra information\n"
4194 "Zebra interface\n"
4195 "Zebra redistribute\n")
4196
4197 DEFSH (VTYSH_BGPD, match_aspath_cmd_vtysh,
4198 "match as-path WORD",
4199 "Match values from routing table\n"
4200 "Match BGP AS path list\n"
4201 "AS path access-list name\n")
4202
4203 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_cidr_only_cmd_vtysh,
4204 "show ip bgp flap-statistics cidr-only",
4205 "Show running system information\n"
4206 "IP information\n"
4207 "BGP information\n"
4208 "Display flap statistics of routes\n"
4209 "Display only routes with non-natural netmasks\n")
4210
4211 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_description_arg_cmd_vtysh,
4212 "no ipv6 prefix-list WORD description .LINE",
4213 "Negate a command or set its defaults\n"
4214 "IPv6 information\n"
4215 "Build a prefix list\n"
4216 "Name of a prefix list\n"
4217 "Prefix-list specific description\n"
4218 "Up to 80 characters describing this prefix-list\n")
4219
4220 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_ra_interval_cmd_vtysh,
4221 "no ipv6 nd ra-interval",
4222 "Negate a command or set its defaults\n"
4223 "IP information\n"
4224 "Neighbor discovery\n"
4225 "Router Advertisement interval\n")
4226
4227 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_in_prefix_filter_cmd_vtysh,
4228 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in prefix-filter",
4229 "Reset functions\n"
4230 "IP information\n"
4231 "BGP information\n"
4232 "Clear all members of peer-group\n"
4233 "BGP peer-group name\n"
4234 "Address family\n"
4235 "Address Family modifier\n"
4236 "Address Family modifier\n"
4237 "Soft reconfig inbound update\n"
4238 "Push out prefix-list ORF and do inbound soft reconfig\n")
4239
4240 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_cmd_vtysh,
4241 "clear ip bgp * soft",
4242 "Reset functions\n"
4243 "IP information\n"
4244 "BGP information\n"
4245 "Clear all peers\n"
4246 "Soft reconfig\n")
4247
4248 DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_metric_routemap_cmd_vtysh,
4249 "redistribute static metric <0-16> route-map WORD",
4250 "Redistribute information from another routing protocol\n"
4251 "Static routes\n"
4252 "Metric\n"
4253 "Metric value\n"
4254 "Route map reference\n"
4255 "Pointer to route-map entries\n")
4256
4257 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_rmap_metric_cmd_vtysh,
4258 "redistribute (connected|kernel|ospf6|ripng|static) route-map WORD metric <0-4294967295>",
4259 "Redistribute information from another routing protocol\n"
4260 "Connected\n"
4261 "Kernel routes\n"
4262 "Open Shurtest Path First (OSPFv3)\n"
4263 "Routing Information Protocol (RIPng)\n"
4264 "Static routes\n"
4265 "Route map reference\n"
4266 "Pointer to route-map entries\n"
4267 "Metric for redistributed routes\n"
4268 "Default metric\n")
4269
4270 DEFSH (VTYSH_BGPD, show_bgp_ipv6_route_map_cmd_vtysh,
4271 "show bgp ipv6 route-map WORD",
4272 "Show running system information\n"
4273 "BGP information\n"
4274 "Address family\n"
4275 "Display routes matching the route-map\n"
4276 "A route-map to match on\n")
4277
4278 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_prefix_list_cmd_vtysh,
4279 "no match ip next-hop prefix-list",
4280 "Negate a command or set its defaults\n"
4281 "Match values from routing table\n"
4282 "IP information\n"
4283 "Match next-hop address of route\n"
4284 "Match entries of prefix-lists\n")
4285
4286 DEFSH (VTYSH_BGPD, no_neighbor_set_peer_group_cmd_vtysh,
4287 "no neighbor (A.B.C.D|X:X::X:X) " "peer-group WORD",
4288 "Negate a command or set its defaults\n"
4289 "Specify neighbor router\n"
4290 "Neighbor address\nIPv6 address\n"
4291 "Member of the peer-group\n"
4292 "peer-group name\n")
4293
4294 DEFSH (VTYSH_BGPD, show_bgp_neighbor_routes_cmd_vtysh,
4295 "show bgp neighbors (A.B.C.D|X:X::X:X) routes",
4296 "Show running system information\n"
4297 "BGP information\n"
4298 "Detailed information on TCP and BGP neighbor connections\n"
4299 "Neighbor to display information about\n"
4300 "Neighbor to display information about\n"
4301 "Display routes learned from neighbor\n")
4302
4303 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_prefix_cmd_vtysh,
4304 "show ipv6 ospf6 route (X::X|detail)",
4305 "Show running system information\n"
4306 "IPv6 Information\n"
4307 "Open Shortest Path First (OSPF) for IPv6\n"
4308 "Routing table\n"
4309 "match IPv6 prefix\n"
4310 )
4311
4312 DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_cmd_vtysh,
4313 "redistribute bgp",
4314 "Redistribute information from another routing protocol\n"
4315 "Border Gateway Protocol (BGP)\n")
4316
4317 DEFSH (VTYSH_ZEBRA, ip_irdp_multicast_cmd_vtysh,
4318 "ip irdp multicast",
4319 "IP information\n"
4320 "ICMP Router discovery on this interface\n"
4321 "Send IRDP advertisement to the multicast address\n")
4322
4323 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_mask_cmd_vtysh,
4324 "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D A.B.C.D A.B.C.D",
4325 "Add an access list entry\n"
4326 "IP extended access list\n"
4327 "IP extended access list (expanded range)\n"
4328 "Specify packets to reject\n"
4329 "Specify packets to forward\n"
4330 "Any Internet Protocol\n"
4331 "A single source host\n"
4332 "Source address\n"
4333 "Destination address\n"
4334 "Destination Wildcard bits\n")
4335
4336 DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_authkey_cmd_vtysh,
4337 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
4338 "(authentication|) "
4339 "(authentication-key|)",
4340 "Negate a command or set its defaults\n"
4341 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
4342 "Enable authentication on this virtual link\n" "dummy string \n"
4343 "Authentication password (key)\n" "The OSPF password (key)")
4344
4345 DEFSH (VTYSH_BGPD, debug_bgp_events_cmd_vtysh,
4346 "debug bgp events",
4347 "Debugging functions (see also 'undebug')\n"
4348 "BGP information\n"
4349 "BGP events\n")
4350
4351 DEFSH (VTYSH_OSPFD, no_area_vlink_param1_cmd_vtysh,
4352 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
4353 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
4354 "Negate a command or set its defaults\n"
4355 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
4356 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
4357
4358 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_ge_cmd_vtysh,
4359 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32>",
4360 "Negate a command or set its defaults\n"
4361 "IP information\n"
4362 "Build a prefix list\n"
4363 "Name of a prefix list\n"
4364 "sequence number of an entry\n"
4365 "Sequence number\n"
4366 "Specify packets to reject\n"
4367 "Specify packets to forward\n"
4368 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
4369 "Minimum prefix length to be matched\n"
4370 "Minimum prefix length\n")
4371
4372 DEFSH (VTYSH_RIPNGD, debug_ripng_packet_cmd_vtysh,
4373 "debug ripng packet",
4374 "Debugging functions (see also 'undebug')\n"
4375 "RIPng configuration\n"
4376 "Debug option set for ripng packet\n")
4377
4378 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_out_cmd_vtysh,
4379 "clear ip bgp <1-65535> out",
4380 "Reset functions\n"
4381 "IP information\n"
4382 "BGP information\n"
4383 "Clear peers with the AS number\n"
4384 "Soft reconfig outbound update\n")
4385
4386 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_cmd_vtysh,
4387 "no redistribute static metric",
4388 "Negate a command or set its defaults\n"
4389 "Redistribute information from another routing protocol\n"
4390 "Static routes\n"
4391 "Metric\n")
4392
4393 DEFSH (VTYSH_OSPFD, no_interface_ip_ospf_authentication_cmd_vtysh,
4394 "no ip ospf authentication",
4395 "Negate a command or set its defaults\n"
4396 "IP Information\n"
4397 "OSPF interface commands\n"
4398 "Enable authentication on this interface\n")
4399
4400 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_routemap_cmd_vtysh,
4401 "redistribute (kernel|connected|static|rip|bgp) route-map WORD",
4402 "Redistribute information from another routing protocol\n"
4403 "Kernel routes\n"
4404 "Connected\n"
4405 "Static routes\n"
4406 "Routing Information Protocol (RIP)\n"
4407 "Border Gateway Protocol (BGP)\n"
4408 "Route map reference\n"
4409 "Pointer to route-map entries\n")
4410
4411 DEFSH (VTYSH_BGPD, show_bgp_community2_exact_cmd_vtysh,
4412 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
4413 "Show running system information\n"
4414 "BGP information\n"
4415 "Display routes matching the communities\n"
4416 "community number\n"
4417 "Do not send outside local AS (well-known community)\n"
4418 "Do not advertise to any peer (well-known community)\n"
4419 "Do not export to next AS (well-known community)\n"
4420 "community number\n"
4421 "Do not send outside local AS (well-known community)\n"
4422 "Do not advertise to any peer (well-known community)\n"
4423 "Do not export to next AS (well-known community)\n"
4424 "Exact match of the communities")
4425
4426 DEFSH (VTYSH_OSPFD, no_neighbor_priority_pollinterval_cmd_vtysh,
4427 "no neighbor A.B.C.D priority <0-255> poll-interval <1-65535>",
4428 "Negate a command or set its defaults\n"
4429 "Specify neighbor router\n"
4430 "Neighbor IP address\n"
4431 "Neighbor Priority\n"
4432 "Priority\n"
4433 "Dead Neighbor Polling interval\n"
4434 "Seconds\n")
4435
4436 DEFSH (VTYSH_BGPD, clear_bgp_external_soft_cmd_vtysh,
4437 "clear bgp external soft",
4438 "Reset functions\n"
4439 "BGP information\n"
4440 "Clear all external peers\n"
4441 "Soft reconfig\n")
4442
4443 DEFSH (VTYSH_BGPD, no_ipv6_aggregate_address_cmd_vtysh,
4444 "no aggregate-address X:X::X:X/M",
4445 "Negate a command or set its defaults\n"
4446 "Configure BGP aggregate entries\n"
4447 "Aggregate prefix\n")
4448
4449 DEFSH (VTYSH_BGPD, clear_bgp_all_in_prefix_filter_cmd_vtysh,
4450 "clear bgp * in prefix-filter",
4451 "Reset functions\n"
4452 "BGP information\n"
4453 "Clear all peers\n"
4454 "Soft reconfig inbound update\n"
4455 "Push out prefix-list ORF and do inbound soft reconfig\n")
4456
4457 DEFSH (VTYSH_BGPD, no_neighbor_timers_connect_val_cmd_vtysh,
4458 "no neighbor (A.B.C.D|X:X::X:X) " "timers connect <0-65535>",
4459 "Negate a command or set its defaults\n"
4460 "Specify neighbor router\n"
4461 "Neighbor address\nIPv6 address\n"
4462 "BGP per neighbor timers\n"
4463 "BGP connect timer\n"
4464 "Connect timer\n")
4465
4466 DEFSH (VTYSH_OSPFD, no_auto_cost_reference_bandwidth_cmd_vtysh,
4467 "no auto-cost reference-bandwidth",
4468 "Negate a command or set its defaults\n"
4469 "Calculate OSPF interface cost according to bandwidth\n"
4470 "Use reference bandwidth method to assign OSPF cost\n")
4471
4472 DEFSH (VTYSH_BGPD, show_ip_bgp_cmd_vtysh,
4473 "show ip bgp",
4474 "Show running system information\n"
4475 "IP information\n"
4476 "BGP information\n")
4477
4478 DEFSH (VTYSH_OSPFD, ip_ospf_message_digest_key_addr_cmd_vtysh,
4479 "ip ospf message-digest-key <1-255> md5 KEY A.B.C.D",
4480 "IP Information\n"
4481 "OSPF interface commands\n"
4482 "Message digest authentication password (key)\n"
4483 "Key ID\n"
4484 "Use MD5 algorithm\n"
4485 "The OSPF password (key)"
4486 "Address of interface")
4487
4488 DEFSH (VTYSH_BGPD, show_debugging_bgp_cmd_vtysh,
4489 "show debugging bgp",
4490 "Show running system information\n"
4491 "Debugging functions (see also 'undebug')\n"
4492 "BGP information\n")
4493
4494 DEFSH (VTYSH_OSPFD|VTYSH_OSPF6D, ospf6_routemap_set_metric_type_cmd_vtysh,
4495 "set metric-type (type-1|type-2)",
4496 "Set value\n"
4497 "Type of metric\n"
4498 "OSPF6 external type 1 metric\n"
4499 "OSPF6 external type 2 metric\n")
4500
4501 DEFSH (VTYSH_BGPD, aggregate_address_mask_summary_only_cmd_vtysh,
4502 "aggregate-address A.B.C.D A.B.C.D summary-only",
4503 "Configure BGP aggregate entries\n"
4504 "Aggregate address\n"
4505 "Aggregate mask\n"
4506 "Filter more specific routes from updates\n")
4507
4508 DEFSH (VTYSH_BGPD, no_neighbor_passive_cmd_vtysh,
4509 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "passive",
4510 "Negate a command or set its defaults\n"
4511 "Specify neighbor router\n"
4512 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4513 "Don't send open messages to this neighbor\n")
4514
4515 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_cmd_vtysh,
4516 "access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D A.B.C.D",
4517 "Add an access list entry\n"
4518 "IP standard access list\n"
4519 "IP standard access list (expanded range)\n"
4520 "Specify packets to reject\n"
4521 "Specify packets to forward\n"
4522 "Address to match\n"
4523 "Wildcard bits\n")
4524
4525 DEFSH (VTYSH_ZEBRA, no_zebra_interface_cmd_vtysh,
4526 "no interface IFNAME",
4527 "Delete a pseudo interface's configuration\n"
4528 "Interface's name\n")
4529
4530 DEFSH (VTYSH_RIPD, debug_rip_zebra_cmd_vtysh,
4531 "debug rip zebra",
4532 "Debugging functions (see also 'undebug')\n"
4533 "RIP information\n"
4534 "RIP and ZEBRA communication\n")
4535
4536 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_mask_any_cmd_vtysh,
4537 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D any",
4538 "Negate a command or set its defaults\n"
4539 "Add an access list entry\n"
4540 "IP extended access list\n"
4541 "IP extended access list (expanded range)\n"
4542 "Specify packets to reject\n"
4543 "Specify packets to forward\n"
4544 "Any Internet Protocol\n"
4545 "Source address\n"
4546 "Source wildcard bits\n"
4547 "Any destination host\n")
4548
4549 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_paths_cmd_vtysh,
4550 "show ip bgp ipv4 (unicast|multicast) paths",
4551 "Show running system information\n"
4552 "IP information\n"
4553 "BGP information\n"
4554 "Address family\n"
4555 "Address Family modifier\n"
4556 "Address Family modifier\n"
4557 "Path information\n")
4558
4559 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_metric_routemap_cmd_vtysh,
4560 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214> route-map WORD",
4561 "Redistribute information from another routing protocol\n"
4562 "Kernel routes\n"
4563 "Connected\n"
4564 "Static routes\n"
4565 "Routing Information Protocol (RIP)\n"
4566 "Border Gateway Protocol (BGP)\n"
4567 "OSPF exterior metric type for redistributed routes\n"
4568 "Set OSPF External Type 1 metrics\n"
4569 "Set OSPF External Type 2 metrics\n"
4570 "Metric for redistributed routes\n"
4571 "OSPF default metric\n"
4572 "Route map reference\n"
4573 "Pointer to route-map entries\n")
4574
4575 DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_out_cmd_vtysh,
4576 "clear bgp peer-group WORD soft out",
4577 "Reset functions\n"
4578 "BGP information\n"
4579 "Clear all members of peer-group\n"
4580 "BGP peer-group name\n"
4581 "Soft reconfig\n"
4582 "Soft reconfig outbound update\n")
4583
4584 DEFSH (VTYSH_OSPFD, no_area_filter_list_cmd_vtysh,
4585 "no area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)",
4586 "Negate a command or set its defaults\n"
4587 "OSPF area parameters\n"
4588 "OSPF area ID in IP address format\n"
4589 "OSPF area ID as a decimal value\n"
4590 "Filter networks between OSPF areas\n"
4591 "Filter prefixes between OSPF areas\n"
4592 "Name of an IP prefix-list\n"
4593 "Filter networks sent to this area\n"
4594 "Filter networks sent from this area\n")
4595
4596 DEFSH (VTYSH_BGPD, show_ipv6_bgp_route_cmd_vtysh,
4597 "show ipv6 bgp X:X::X:X",
4598 "Show running system information\n"
4599 "IP information\n"
4600 "BGP information\n"
4601 "Network in the BGP routing table to display\n")
4602
4603 DEFSH (VTYSH_BGPD, bgp_network_mask_natural_backdoor_cmd_vtysh,
4604 "network A.B.C.D backdoor",
4605 "Specify a network to announce via BGP\n"
4606 "Network number\n"
4607 "Specify a BGP backdoor route\n")
4608
4609 DEFSH (VTYSH_RIPD, rip_route_cmd_vtysh,
4610 "route A.B.C.D/M",
4611 "RIP static route configuration\n"
4612 "IP prefix <network>/<length>\n")
4613
4614 DEFSH (VTYSH_OSPFD, no_ospf_cost_cmd_vtysh,
4615 "no ospf cost",
4616 "Negate a command or set its defaults\n"
4617 "OSPF interface commands\n"
4618 "Interface cost\n")
4619
4620 DEFSH (VTYSH_BGPD, clear_bgp_all_soft_out_cmd_vtysh,
4621 "clear bgp * soft out",
4622 "Reset functions\n"
4623 "BGP information\n"
4624 "Clear all peers\n"
4625 "Soft reconfig\n"
4626 "Soft reconfig outbound update\n")
4627
4628 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_sequence_number_cmd_vtysh,
4629 "ipv6 prefix-list sequence-number",
4630 "IPv6 information\n"
4631 "Build a prefix list\n"
4632 "Include/exclude sequence numbers in NVGEN\n")
4633
4634 DEFSH (VTYSH_RIPD, no_debug_rip_packet_cmd_vtysh,
4635 "no debug rip packet",
4636 "Negate a command or set its defaults\n"
4637 "Debugging functions (see also 'undebug')\n"
4638 "RIP information\n"
4639 "RIP packet\n")
4640
4641 DEFSH (VTYSH_ZEBRA, show_ip_route_prefix_longer_cmd_vtysh,
4642 "show ip route A.B.C.D/M longer-prefixes",
4643 "Show running system information\n"
4644 "IP information\n"
4645 "IP routing table\n"
4646 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
4647 "Show route matching the specified Network/Mask pair only\n")
4648
4649 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ipv6_access_list_name_cmd_vtysh,
4650 "show ipv6 access-list WORD",
4651 "Show running system information\n"
4652 "IPv6 information\n"
4653 "List IPv6 access lists\n"
4654 "IPv6 zebra access-list\n")
4655
4656 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ripng_cmd_vtysh,
4657 "no redistribute ripng",
4658 "Negate a command or set its defaults\n"
4659 "Redistribute information from another routing protocol\n"
4660 "RIPng route\n")
4661
4662 DEFSH (VTYSH_BGPD, no_set_community_val_cmd_vtysh,
4663 "no set community .AA:NN",
4664 "Negate a command or set its defaults\n"
4665 "Set values in destination routing protocol\n"
4666 "BGP community attribute\n"
4667 "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n")
4668
4669 DEFSH (VTYSH_BGPD, clear_bgp_peer_group_out_cmd_vtysh,
4670 "clear bgp peer-group WORD out",
4671 "Reset functions\n"
4672 "BGP information\n"
4673 "Clear all members of peer-group\n"
4674 "BGP peer-group name\n"
4675 "Soft reconfig outbound update\n")
4676
4677 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_longer_cmd_vtysh,
4678 "show ipv6 prefix-list WORD X:X::X:X/M longer",
4679 "Show running system information\n"
4680 "IPv6 information\n"
4681 "Build a prefix list\n"
4682 "Name of a prefix list\n"
4683 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
4684 "Lookup longer prefix\n")
4685
4686 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_metric_cmd_vtysh,
4687 "no redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295>",
4688 "Negate a command or set its defaults\n"
4689 "Redistribute information from another routing protocol\n"
4690 "Connected\n"
4691 "Kernel routes\n"
4692 "Open Shurtest Path First (OSPF)\n"
4693 "Routing Information Protocol (RIP)\n"
4694 "Static routes\n"
4695 "Metric for redistributed routes\n"
4696 "Default metric\n")
4697
4698 DEFSH (VTYSH_OSPFD, area_vlink_authkey_cmd_vtysh,
4699 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
4700 "(authentication-key|) AUTH_KEY",
4701 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
4702 "Authentication password (key)\n" "The OSPF password (key)")
4703
4704 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_list_cmd_vtysh,
4705 "show ip bgp flap-statistics prefix-list WORD",
4706 "Show running system information\n"
4707 "IP information\n"
4708 "BGP information\n"
4709 "Display flap statistics of routes\n"
4710 "Display routes conforming to the prefix-list\n"
4711 "IP prefix-list name\n")
4712
4713 DEFSH (VTYSH_RIPNGD, no_ripng_aggregate_address_cmd_vtysh,
4714 "no aggregate-address X:X::X:X/M",
4715 "Negate a command or set its defaults\n"
4716 "Delete aggregate RIPng route announcement\n"
4717 "Aggregate network")
4718
4719 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh,
4720 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) routes",
4721 "Show running system information\n"
4722 "IP information\n"
4723 "BGP information\n"
4724 "Address family\n"
4725 "Address Family modifier\n"
4726 "Address Family modifier\n"
4727 "Detailed information on TCP and BGP neighbor connections\n"
4728 "Neighbor to display information about\n"
4729 "Neighbor to display information about\n"
4730 "Display routes learned from neighbor\n")
4731
4732 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_retransmitinterval_cmd_vtysh,
4733 "ipv6 ospf6 retransmit-interval RXMTINTERVAL",
4734 "IPv6 Information\n"
4735 "Open Shortest Path First (OSPF) for IPv6\n"
4736 "Time between retransmitting lost link state advertisements\n"
4737 "<1-65535> Seconds\n"
4738 )
4739
4740 DEFSH (VTYSH_RIPD, debug_rip_packet_detail_cmd_vtysh,
4741 "debug rip packet (recv|send) detail",
4742 "Debugging functions (see also 'undebug')\n"
4743 "RIP information\n"
4744 "RIP packet\n"
4745 "RIP receive packet\n"
4746 "RIP send packet\n"
4747 "Detailed information display\n")
4748
4749 DEFSH (VTYSH_ZEBRA, show_ip_route_protocol_cmd_vtysh,
4750 "show ip route (bgp|connected|kernel|ospf|rip|static)",
4751 "Show running system information\n"
4752 "IP information\n"
4753 "IP routing table\n"
4754 "Border Gateway Protocol (BGP)\n"
4755 "Connected\n"
4756 "Kernel\n"
4757 "Open Shortest Path First (OSPF)\n"
4758 "Routing Information Protocol (RIP)\n"
4759 "Static routes\n")
4760
4761 DEFSH (VTYSH_BGPD, no_bgp_client_to_client_reflection_cmd_vtysh,
4762 "no bgp client-to-client reflection",
4763 "Negate a command or set its defaults\n"
4764 "BGP specific commands\n"
4765 "Configure client to client route reflection\n"
4766 "reflection of routes allowed\n")
4767
4768 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_rmap_onmatch_next_cmd_vtysh,
4769 "no on-match next",
4770 "Negate a command or set its defaults\n"
4771 "Exit policy on matches\n"
4772 "Next clause\n")
4773
4774 DEFSH (VTYSH_BGPD, no_bgp_multiple_instance_cmd_vtysh,
4775 "no bgp multiple-instance",
4776 "Negate a command or set its defaults\n"
4777 "BGP information\n"
4778 "BGP multiple instance\n")
4779
4780 DEFSH (VTYSH_OSPFD, no_debug_ospf_nsm_sub_cmd_vtysh,
4781 "no debug ospf nsm (status|events|timers)",
4782 "Negate a command or set its defaults\n"
4783 "Debugging functions\n"
4784 "OSPF information\n"
4785 "OSPF Interface State Machine\n"
4786 "NSM Status Information\n"
4787 "NSM Event Information\n"
4788 "NSM Timer Information\n")
4789
4790 DEFSH (VTYSH_OSPFD, area_vlink_param2_cmd_vtysh,
4791 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
4792 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
4793 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
4794 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
4795 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
4796 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
4797
4798 DEFSH (VTYSH_BGPD, bgp_distance_cmd_vtysh,
4799 "distance bgp <1-255> <1-255> <1-255>",
4800 "Define an administrative distance\n"
4801 "BGP distance\n"
4802 "Distance for routes external to the AS\n"
4803 "Distance for routes internal to the AS\n"
4804 "Distance for local routes\n")
4805
4806 DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_cmd_vtysh,
4807 "clear bgp peer-group WORD soft",
4808 "Reset functions\n"
4809 "BGP information\n"
4810 "Clear all members of peer-group\n"
4811 "BGP peer-group name\n"
4812 "Soft reconfig\n")
4813
4814 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_metric_rmap_cmd_vtysh,
4815 "no redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295> route-map WORD",
4816 "Negate a command or set its defaults\n"
4817 "Redistribute information from another routing protocol\n"
4818 "Connected\n"
4819 "Kernel routes\n"
4820 "Open Shurtest Path First (OSPF)\n"
4821 "Routing Information Protocol (RIP)\n"
4822 "Static routes\n"
4823 "Metric for redistributed routes\n"
4824 "Default metric\n"
4825 "Route map reference\n"
4826 "Pointer to route-map entries\n")
4827
4828 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_any_cmd_vtysh,
4829 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D any",
4830 "Negate a command or set its defaults\n"
4831 "Add an access list entry\n"
4832 "IP extended access list\n"
4833 "IP extended access list (expanded range)\n"
4834 "Specify packets to reject\n"
4835 "Specify packets to forward\n"
4836 "Any Internet Protocol\n"
4837 "A single source host\n"
4838 "Source address\n"
4839 "Any destination host\n")
4840
4841 DEFSH (VTYSH_BGPD, show_ip_bgp_attr_info_cmd_vtysh,
4842 "show ip bgp attribute-info",
4843 "Show running system information\n"
4844 "IP information\n"
4845 "BGP information\n"
4846 "List all bgp attribute information\n")
4847
4848 DEFSH (VTYSH_RIPNGD, no_default_information_originate_cmd_vtysh,
4849 "no default-information originate",
4850 "Negate a command or set its defaults\n"
4851 "Default route information\n"
4852 "Distribute default route\n")
4853
4854 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_host_cmd_vtysh,
4855 "no access-list (<1-99>|<1300-1999>) (deny|permit) host A.B.C.D",
4856 "Negate a command or set its defaults\n"
4857 "Add an access list entry\n"
4858 "IP standard access list\n"
4859 "IP standard access list (expanded range)\n"
4860 "Specify packets to reject\n"
4861 "Specify packets to forward\n"
4862 "A single host address\n"
4863 "Address to match\n")
4864
4865 DEFSH (VTYSH_RIPD, show_ip_protocols_rip_cmd_vtysh,
4866 "show ip protocols",
4867 "Show running system information\n"
4868 "IP information\n"
4869 "IP routing protocol process parameters and statistics\n")
4870
4871 DEFSH (VTYSH_RIPD, send_lifetime_day_month_day_month_cmd_vtysh,
4872 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
4873 "Set send lifetime of the key\n"
4874 "Time to start\n"
4875 "Day of th month to start\n"
4876 "Month of the year to start\n"
4877 "Year to start\n"
4878 "Time to expire\n"
4879 "Day of th month to expire\n"
4880 "Month of the year to expire\n"
4881 "Year to expire\n")
4882
4883 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_cmd_vtysh,
4884 "show ipv6 ospf6 topology",
4885 "Show running system information\n"
4886 "IPv6 Information\n"
4887 "Open Shortest Path First (OSPF) for IPv6\n"
4888 "Inter Area topology information\n"
4889 )
4890
4891 DEFSH (VTYSH_OSPFD, no_ospf_redistribute_source_cmd_vtysh,
4892 "no redistribute (kernel|connected|static|rip|bgp)",
4893 "Negate a command or set its defaults\n"
4894 "Redistribute information from another routing protocol\n"
4895 "Kernel routes\n"
4896 "Connected\n"
4897 "Static routes\n"
4898 "Routing Information Protocol (RIP)\n"
4899 "Border Gateway Protocol (BGP)\n")
4900
4901 DEFSH (VTYSH_RIPD, ip_rip_receive_version_cmd_vtysh,
4902 "ip rip receive version (1|2)",
4903 "IP information\n"
4904 "Routing Information Protocol\n"
4905 "Advertisement reception\n"
4906 "Version control\n"
4907 "RIP version 1\n"
4908 "RIP version 2\n")
4909
4910 DEFSH (VTYSH_OSPFD, ip_ospf_priority_addr_cmd_vtysh,
4911 "ip ospf priority <0-255> A.B.C.D",
4912 "IP Information\n"
4913 "OSPF interface commands\n"
4914 "Router priority\n"
4915 "Priority\n"
4916 "Address of interface")
4917
4918 DEFSH (VTYSH_ZEBRA, debug_zebra_events_cmd_vtysh,
4919 "debug zebra events",
4920 "Debugging functions (see also 'undebug')\n"
4921 "Zebra configuration\n"
4922 "Debug option set for zebra events\n")
4923
4924 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_cmd_vtysh,
4925 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export)",
4926 "Show running system information\n"
4927 "BGP information\n"
4928 "Address family\n"
4929 "Display routes matching the communities\n"
4930 "community number\n"
4931 "Do not send outside local AS (well-known community)\n"
4932 "Do not advertise to any peer (well-known community)\n"
4933 "Do not export to next AS (well-known community)\n")
4934
4935 DEFSH (VTYSH_RIPD|VTYSH_BGPD, match_metric_cmd_vtysh,
4936 "match metric <0-4294967295>",
4937 "Match values from routing table\n"
4938 "Match metric of route\n"
4939 "Metric value\n")
4940
4941 DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_longer_cmd_vtysh,
4942 "show bgp ipv6 X:X::X:X/M longer-prefixes",
4943 "Show running system information\n"
4944 "BGP information\n"
4945 "Address family\n"
4946 "IPv6 prefix <network>/<length>\n"
4947 "Display route and more specific routes\n")
4948
4949 DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_passive_cmd_vtysh,
4950 "no ipv6 ospf6 passive",
4951 "Negate a command or set its defaults\n"
4952 "IPv6 Information\n"
4953 "Open Shortest Path First (OSPF) for IPv6\n"
4954 "passive interface: No Adjacency will be formed on this I/F\n"
4955 )
4956
4957 DEFSH (VTYSH_RIPD, accept_lifetime_infinite_day_month_cmd_vtysh,
4958 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> infinite",
4959 "Set accept lifetime of the key\n"
4960 "Time to start\n"
4961 "Day of th month to start\n"
4962 "Month of the year to start\n"
4963 "Year to start\n"
4964 "Never expires")
4965
4966 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged6_cmd_vtysh,
4967 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path med next-hop",
4968 "Negate a command or set its defaults\n"
4969 "Specify neighbor router\n"
4970 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4971 "BGP attribute is propagated unchanged to this neighbor\n"
4972 "As-path attribute\n"
4973 "Med attribute\n"
4974 "Nexthop attribute\n")
4975
4976 DEFSH (VTYSH_OSPFD, no_area_import_list_cmd_vtysh,
4977 "no area (A.B.C.D|<0-4294967295>) import-list NAME",
4978 "Negate a command or set its defaults\n"
4979 "OSPF area parameters\n"
4980 "OSPF area ID in IP address format\n"
4981 "OSPF area ID as a decimal value\n"
4982 "Unset the filter for networks announced to other areas\n"
4983 "Name of the access-list\n")
4984
4985 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_ge_cmd_vtysh,
4986 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128>",
4987 "Negate a command or set its defaults\n"
4988 "IPv6 information\n"
4989 "Build a prefix list\n"
4990 "Name of a prefix list\n"
4991 "sequence number of an entry\n"
4992 "Sequence number\n"
4993 "Specify packets to reject\n"
4994 "Specify packets to forward\n"
4995 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
4996 "Minimum prefix length to be matched\n"
4997 "Minimum prefix length\n")
4998
4999 DEFSH (VTYSH_OSPFD, no_interface_ip_ospf_authentication_addr_cmd_vtysh,
5000 "no ip ospf authentication A.B.C.D",
5001 "Negate a command or set its defaults\n"
5002 "IP Information\n"
5003 "OSPF interface commands\n"
5004 "Enable authentication on this interface\n"
5005 "Address of interface")
5006
5007 DEFSH (VTYSH_BGPD, neighbor_route_reflector_client_cmd_vtysh,
5008 "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-reflector-client",
5009 "Specify neighbor router\n"
5010 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5011 "Configure a neighbor as Route Reflector client\n")
5012
5013 DEFSH (VTYSH_BGPD, show_bgp_community_list_cmd_vtysh,
5014 "show bgp community-list WORD",
5015 "Show running system information\n"
5016 "BGP information\n"
5017 "Display routes matching the community-list\n"
5018 "community-list name\n")
5019
5020 DEFSH (VTYSH_RIPNGD, ripng_redistribute_ripng_cmd_vtysh,
5021 "redistribute ripng",
5022 "Redistribute information from another routing protocol\n"
5023 "RIPng route\n")
5024
5025 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_host_cmd_vtysh,
5026 "access-list (<1-99>|<1300-1999>) (deny|permit) host A.B.C.D",
5027 "Add an access list entry\n"
5028 "IP standard access list\n"
5029 "IP standard access list (expanded range)\n"
5030 "Specify packets to reject\n"
5031 "Specify packets to forward\n"
5032 "A single host address\n"
5033 "Address to match\n")
5034
5035 DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_metric_cmd_vtysh,
5036 "redistribute bgp metric <0-16>",
5037 "Redistribute information from another routing protocol\n"
5038 "Border Gateway Protocol (BGP)\n"
5039 "Metric\n"
5040 "Metric value\n")
5041
5042 DEFSH (VTYSH_OSPF6D|VTYSH_BGPD, match_ipv6_address_prefix_list_cmd_vtysh,
5043 "match ipv6 address prefix-list WORD",
5044 "Match values from routing table\n"
5045 "IPv6 information\n"
5046 "Match address of route\n"
5047 "Match entries of prefix-lists\n"
5048 "IP prefix-list name\n")
5049
5050 DEFSH (VTYSH_BGPD, show_bgp_neighbor_received_prefix_filter_cmd_vtysh,
5051 "show bgp neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
5052 "Show running system information\n"
5053 "BGP information\n"
5054 "Detailed information on TCP and BGP neighbor connections\n"
5055 "Neighbor to display information about\n"
5056 "Neighbor to display information about\n"
5057 "Display information received from a BGP neighbor\n"
5058 "Display the prefixlist filter\n")
5059
5060 DEFSH (VTYSH_BGPD, show_ip_bgp_instance_neighbors_cmd_vtysh,
5061 "show ip bgp view WORD neighbors",
5062 "Show running system information\n"
5063 "IP information\n"
5064 "BGP information\n"
5065 "BGP view\n"
5066 "View name\n"
5067 "Detailed information on TCP and BGP neighbor connections\n")
5068
5069 DEFSH (VTYSH_OSPF6D, show_zebra_cmd_vtysh,
5070 "show zebra",
5071 "Show running system information\n"
5072 "Zebra information\n")
5073
5074 DEFSH (VTYSH_BGPD, clear_bgp_peer_out_cmd_vtysh,
5075 "clear bgp (A.B.C.D|X:X::X:X) out",
5076 "Reset functions\n"
5077 "BGP information\n"
5078 "BGP neighbor address to clear\n"
5079 "BGP IPv6 neighbor to clear\n"
5080 "Soft reconfig outbound update\n")
5081
5082 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_description_cmd_vtysh,
5083 "no ip prefix-list WORD description",
5084 "Negate a command or set its defaults\n"
5085 "IP information\n"
5086 "Build a prefix list\n"
5087 "Name of a prefix list\n"
5088 "Prefix-list specific description\n")
5089
5090 DEFSH (VTYSH_ZEBRA, no_ip_forwarding_cmd_vtysh,
5091 "no ip forwarding",
5092 "Negate a command or set its defaults\n"
5093 "IP information\n"
5094 "Turn off IP forwarding")
5095
5096 DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_routemap_cmd_vtysh,
5097 "redistribute bgp route-map WORD",
5098 "Redistribute information from another routing protocol\n"
5099 "Border Gateway Protocol (BGP)\n"
5100 "Route map reference\n"
5101 "Pointer to route-map entries\n")
5102
5103 DEFSH (VTYSH_BGPD, no_debug_bgp_update_cmd_vtysh,
5104 "no debug bgp updates",
5105 "Negate a command or set its defaults\n"
5106 "Debugging functions (see also 'undebug')\n"
5107 "BGP information\n"
5108 "BGP updates\n")
5109
5110 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_cmd_vtysh,
5111 "no redistribute ospf6",
5112 "Negate a command or set its defaults\n"
5113 "Redistribute information from another routing protocol\n"
5114 "IPv6 Open Shortest Path First (OSPFv3)\n")
5115
5116 DEFSH (VTYSH_ZEBRA, no_ip_address_cmd_vtysh,
5117 "no ip address A.B.C.D/M",
5118 "Negate a command or set its defaults\n"
5119 "Interface Internet Protocol config commands\n"
5120 "Set the IP address of an interface\n"
5121 "IP Address (e.g. 10.0.0.1/8)")
5122
5123 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_route_map_cmd_vtysh,
5124 "show ip bgp ipv4 (unicast|multicast) route-map WORD",
5125 "Show running system information\n"
5126 "IP information\n"
5127 "BGP information\n"
5128 "Address family\n"
5129 "Address Family modifier\n"
5130 "Address Family modifier\n"
5131 "Display routes matching the route-map\n"
5132 "A route-map to match on\n")
5133
5134 DEFSH (VTYSH_ZEBRA, no_ipv6_address_cmd_vtysh,
5135 "no ipv6 address X:X::X:X/M",
5136 "Negate a command or set its defaults\n"
5137 "Interface Internet Protocol config commands\n"
5138 "Set the IP address of an interface\n"
5139 "IPv6 address (e.g. 3ffe:506::1/48)\n")
5140
5141 DEFSH (VTYSH_BGPD, no_neighbor_shutdown_cmd_vtysh,
5142 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "shutdown",
5143 "Negate a command or set its defaults\n"
5144 "Specify neighbor router\n"
5145 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5146 "Administratively shut down this neighbor\n")
5147
5148 DEFSH (VTYSH_RIPD, no_ip_rip_authentication_string2_cmd_vtysh,
5149 "no ip rip authentication string LINE",
5150 "Negate a command or set its defaults\n"
5151 "IP information\n"
5152 "Routing Information Protocol\n"
5153 "Authentication control\n"
5154 "Authentication string\n"
5155 "Authentication string\n")
5156
5157 DEFSH (VTYSH_OSPFD, ip_ospf_network_cmd_vtysh,
5158 "ip ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)",
5159 "IP Information\n"
5160 "OSPF interface commands\n"
5161 "Network type\n"
5162 "Specify OSPF broadcast multi-access network\n"
5163 "Specify OSPF NBMA network\n"
5164 "Specify OSPF point-to-multipoint network\n"
5165 "Specify OSPF point-to-point network\n")
5166
5167 DEFSH (VTYSH_BGPD, neighbor_send_community_type_cmd_vtysh,
5168 "neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community (both|extended|standard)",
5169 "Specify neighbor router\n"
5170 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5171 "Send Community attribute to this neighbor\n"
5172 "Send Standard and Extended Community attributes\n"
5173 "Send Extended Community attributes\n"
5174 "Send Standard Community attributes\n")
5175
5176 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_cmd_vtysh,
5177 "no redistribute kernel metric",
5178 "Negate a command or set its defaults\n"
5179 "Redistribute information from another routing protocol\n"
5180 "Kernel routes\n"
5181 "Metric\n")
5182
5183 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_rmap_cmd_vtysh,
5184 "redistribute (connected|kernel|ospf|rip|static) route-map WORD",
5185 "Redistribute information from another routing protocol\n"
5186 "Connected\n"
5187 "Kernel routes\n"
5188 "Open Shurtest Path First (OSPF)\n"
5189 "Routing Information Protocol (RIP)\n"
5190 "Static routes\n"
5191 "Route map reference\n"
5192 "Pointer to route-map entries\n")
5193
5194 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_le_cmd_vtysh,
5195 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128>",
5196 "IPv6 information\n"
5197 "Build a prefix list\n"
5198 "Name of a prefix list\n"
5199 "Specify packets to reject\n"
5200 "Specify packets to forward\n"
5201 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
5202 "Maximum prefix length to be matched\n"
5203 "Maximum prefix length\n")
5204
5205 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_cmd_vtysh,
5206 "redistribute (kernel|connected|static|rip|bgp)",
5207 "Redistribute information from another routing protocol\n"
5208 "Kernel routes\n"
5209 "Connected\n"
5210 "Static routes\n"
5211 "Routing Information Protocol (RIP)\n"
5212 "Border Gateway Protocol (BGP)\n")
5213
5214 DEFSH (VTYSH_ZEBRA, ipv6_nd_prefix_advertisement_cmd_vtysh,
5215 "ipv6 nd prefix-advertisement IPV6PREFIX VALID PREFERRED [onlink] [autoconfig]",
5216 "IP information\n"
5217 "Neighbor discovery\n"
5218 "Prefix information\n"
5219 "IPv6 prefix\n"
5220 "Valid lifetime in seconds\n"
5221 "Preferred lifetime in seconds\n"
5222 "On link flag\n"
5223 "Autonomous address-configuration flag\n")
5224
5225 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ipv6_access_list_cmd_vtysh,
5226 "show ipv6 access-list",
5227 "Show running system information\n"
5228 "IPv6 information\n"
5229 "List IPv6 access lists\n")
5230
5231 DEFSH (VTYSH_BGPD, no_neighbor_override_capability_cmd_vtysh,
5232 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "override-capability",
5233 "Negate a command or set its defaults\n"
5234 "Specify neighbor router\n"
5235 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5236 "Override capability negotiation result\n")
5237
5238 DEFSH (VTYSH_BGPD, undebug_bgp_update_cmd_vtysh,
5239 "undebug bgp updates",
5240 "Disable debugging functions (see also 'debug')\n"
5241 "BGP information\n"
5242 "BGP updates\n")
5243
5244 DEFSH (VTYSH_RIPNGD, no_debug_ripng_packet_cmd_vtysh,
5245 "no debug ripng packet",
5246 "Negate a command or set its defaults\n"
5247 "Debugging functions (see also 'undebug')\n"
5248 "RIPng configuration\n"
5249 "Debug option set for ripng packet\n")
5250
5251 DEFSH (VTYSH_ZEBRA, ip_route_pref_cmd_vtysh,
5252 "ip route A.B.C.D/M (A.B.C.D|INTERFACE) <1-255>",
5253 "IP information\n"
5254 "Establish static routes\n"
5255 "IP destination prefix (e.g. 10.0.0.0/8)\n"
5256 "IP gateway address\n"
5257 "IP gateway interface name\n"
5258 "Distance value for this route\n")
5259
5260 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_list_cmd_vtysh,
5261 "show ip bgp ipv4 (unicast|multicast) prefix-list WORD",
5262 "Show running system information\n"
5263 "IP information\n"
5264 "BGP information\n"
5265 "Address family\n"
5266 "Address Family modifier\n"
5267 "Address Family modifier\n"
5268 "Display routes conforming to the prefix-list\n"
5269 "IP prefix-list name\n")
5270
5271 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community2_cmd_vtysh,
5272 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
5273 "Show running system information\n"
5274 "IP information\n"
5275 "BGP information\n"
5276 "Address family\n"
5277 "Address Family modifier\n"
5278 "Address Family modifier\n"
5279 "Display routes matching the communities\n"
5280 "community number\n"
5281 "Do not send outside local AS (well-known community)\n"
5282 "Do not advertise to any peer (well-known community)\n"
5283 "Do not export to next AS (well-known community)\n"
5284 "community number\n"
5285 "Do not send outside local AS (well-known community)\n"
5286 "Do not advertise to any peer (well-known community)\n"
5287 "Do not export to next AS (well-known community)\n")
5288
5289 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged6_cmd_vtysh,
5290 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path med next-hop",
5291 "Specify neighbor router\n"
5292 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5293 "BGP attribute is propagated unchanged to this neighbor\n"
5294 "As-path attribute\n"
5295 "Med attribute\n"
5296 "Nexthop attribute\n")
5297
5298 DEFSH (VTYSH_OSPFD, no_timers_spf_cmd_vtysh,
5299 "no timers spf",
5300 "Negate a command or set its defaults\n"
5301 "Adjust routing timers\n"
5302 "OSPF SPF timers\n")
5303
5304 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_filter_list_cmd_vtysh,
5305 "show ip bgp flap-statistics filter-list WORD",
5306 "Show running system information\n"
5307 "IP information\n"
5308 "BGP information\n"
5309 "Display flap statistics of routes\n"
5310 "Display routes conforming to the filter-list\n"
5311 "Regular expression access list name\n")
5312
5313 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh,
5314 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D advertised-routes",
5315 "Show running system information\n"
5316 "IP information\n"
5317 "BGP information\n"
5318 "Display VPNv4 NLRI specific information\n"
5319 "Display information for a route distinguisher\n"
5320 "VPN Route Distinguisher\n"
5321 "Detailed information on TCP and BGP neighbor connections\n"
5322 "Neighbor to display information about\n"
5323 "Display the routes advertised to a BGP neighbor\n")
5324
5325 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_routemap_cmd_vtysh,
5326 "no redistribute kernel route-map WORD",
5327 "Negate a command or set its defaults\n"
5328 "Redistribute information from another routing protocol\n"
5329 "Kernel routes\n"
5330 "Route map reference\n"
5331 "Pointer to route-map entries\n")
5332
5333 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_route_cmd_vtysh,
5334 "show ip bgp vpnv4 all A.B.C.D",
5335 "Show running system information\n"
5336 "IP information\n"
5337 "BGP information\n"
5338 "Display VPNv4 NLRI specific information\n"
5339 "Display information about all VPNv4 NLRIs\n"
5340 "Network in the BGP routing table to display\n")
5341
5342 DEFSH (VTYSH_BGPD, show_bgp_ipv6_regexp_cmd_vtysh,
5343 "show bgp ipv6 regexp .LINE",
5344 "Show running system information\n"
5345 "BGP information\n"
5346 "Address family\n"
5347 "Display routes matching the AS path regular expression\n"
5348 "A regular-expression to match the BGP AS paths\n")
5349
5350 DEFSH (VTYSH_OSPFD, no_passive_interface_addr_cmd_vtysh,
5351 "no passive-interface IFNAME A.B.C.D",
5352 "Negate a command or set its defaults\n"
5353 "Allow routing updates on an interface\n"
5354 "Interface's name\n")
5355
5356 DEFSH (VTYSH_OSPFD, ospf_authentication_key_cmd_vtysh,
5357 "ospf authentication-key AUTH_KEY",
5358 "OSPF interface commands\n"
5359 "Authentication password (key)\n"
5360 "The OSPF password (key)")
5361
5362 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_priority_cmd_vtysh,
5363 "ipv6 ospf6 priority PRIORITY",
5364 "IPv6 Information\n"
5365 "Open Shortest Path First (OSPF) for IPv6\n"
5366 "Router priority\n"
5367 "<0-255> Priority\n"
5368 )
5369
5370 DEFSH (VTYSH_OSPFD, no_area_vlink_md5_cmd_vtysh,
5371 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
5372 "(message-digest-key|) <1-255>",
5373 "Negate a command or set its defaults\n"
5374 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
5375 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
5376
5377 DEFSH (VTYSH_RIPD, no_rip_distance_source_access_list_cmd_vtysh,
5378 "no distance <1-255> A.B.C.D/M WORD",
5379 "Negate a command or set its defaults\n"
5380 "Administrative distance\n"
5381 "Distance value\n"
5382 "IP source prefix\n"
5383 "Access list name\n")
5384
5385 DEFSH (VTYSH_OSPFD, no_ospf_router_id_cmd_vtysh,
5386 "no ospf router-id",
5387 "Negate a command or set its defaults\n"
5388 "OSPF specific commands\n"
5389 "router-id for the OSPF process\n")
5390
5391 DEFSH (VTYSH_BGPD, bgp_bestpath_compare_router_id_cmd_vtysh,
5392 "bgp bestpath compare-routerid",
5393 "BGP specific commands\n"
5394 "Change the default bestpath selection\n"
5395 "Compare router-id for identical EBGP paths\n")
5396
5397 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_val_cmd_vtysh,
5398 "no redistribute bgp metric <0-16>",
5399 "Negate a command or set its defaults\n"
5400 "Redistribute information from another routing protocol\n"
5401 "Border Gateway Protocol (BGP)\n"
5402 "Metric\n"
5403 "Metric value\n")
5404
5405 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community3_cmd_vtysh,
5406 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
5407 "Show running system information\n"
5408 "IPv6 information\n"
5409 "BGP information\n"
5410 "Display routes matching the communities\n"
5411 "community number\n"
5412 "Do not send outside local AS (well-known community)\n"
5413 "Do not advertise to any peer (well-known community)\n"
5414 "Do not export to next AS (well-known community)\n"
5415 "community number\n"
5416 "Do not send outside local AS (well-known community)\n"
5417 "Do not advertise to any peer (well-known community)\n"
5418 "Do not export to next AS (well-known community)\n"
5419 "community number\n"
5420 "Do not send outside local AS (well-known community)\n"
5421 "Do not advertise to any peer (well-known community)\n"
5422 "Do not export to next AS (well-known community)\n")
5423
5424 DEFSH (VTYSH_ZEBRA, debug_zebra_packet_direct_cmd_vtysh,
5425 "debug zebra packet (recv|send)",
5426 "Debugging functions (see also 'undebug')\n"
5427 "Zebra configuration\n"
5428 "Debug option set for zebra packet\n"
5429 "Debug option set for receive packet\n"
5430 "Debug option set for send packet\n")
5431
5432 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_router_cmd_vtysh,
5433 "show ipv6 ospf6 area A.B.C.D topology (A.B.C.D|<0-4294967295>|detail)",
5434 "Show running system information\n"
5435 "IPv6 Information\n"
5436 "Open Shortest Path First (OSPF) for IPv6\n"
5437 "Area information\n"
5438 "Area ID (as an IPv4 notation)\n"
5439 "Shortest Path First tree information\n"
5440 "Displays SPF topology table\n"
5441 "Specify Router-ID\n"
5442 "Specify Router-ID\n"
5443 )
5444
5445 DEFSH (VTYSH_OSPFD, no_router_id_cmd_vtysh,
5446 "no router-id",
5447 "Negate a command or set its defaults\n"
5448 "router-id for the OSPF process\n")
5449
5450 DEFSH (VTYSH_BGPD, set_ipv6_nexthop_global_cmd_vtysh,
5451 "set ipv6 next-hop global X:X::X:X",
5452 "Set values in destination routing protocol\n"
5453 "IPv6 information\n"
5454 "IPv6 next-hop address\n"
5455 "IPv6 global address\n"
5456 "IPv6 address of next hop\n")
5457
5458 DEFSH (VTYSH_RIPNGD, no_debug_ripng_packet_direct_cmd_vtysh,
5459 "no debug ripng packet (recv|send)",
5460 "Negate a command or set its defaults\n"
5461 "Debugging functions (see also 'undebug')\n"
5462 "RIPng configuration\n"
5463 "Debug option set for ripng packet\n"
5464 "Debug option set for receive packet\n"
5465 "Debug option set for send packet\n")
5466
5467 DEFSH (VTYSH_RIPD, send_lifetime_infinite_month_day_cmd_vtysh,
5468 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> infinite",
5469 "Set send lifetime of the key\n"
5470 "Time to start\n"
5471 "Month of the year to start\n"
5472 "Day of th month to start\n"
5473 "Year to start\n"
5474 "Never expires")
5475
5476 DEFSH (VTYSH_BGPD, no_set_local_pref_val_cmd_vtysh,
5477 "no set local-preference <0-4294967295>",
5478 "Negate a command or set its defaults\n"
5479 "Set values in destination routing protocol\n"
5480 "BGP local preference path attribute\n"
5481 "Preference value\n")
5482
5483 DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_cmd_vtysh,
5484 "redistribute ospf6",
5485 "Redistribute information from another routing protocol\n"
5486 "IPv6 Open Shortest Path First (OSPFv3)\n")
5487
5488 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_any_cmd_vtysh,
5489 "access-list (<100-199>|<2000-2699>) (deny|permit) ip any any",
5490 "Add an access list entry\n"
5491 "IP extended access list\n"
5492 "IP extended access list (expanded range)\n"
5493 "Specify packets to reject\n"
5494 "Specify packets to forward\n"
5495 "Any Internet Protocol\n"
5496 "Any source host\n"
5497 "Any destination host\n")
5498
5499 DEFSH (VTYSH_BGPD, no_neighbor_local_as_val_cmd_vtysh,
5500 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535>",
5501 "Negate a command or set its defaults\n"
5502 "Specify neighbor router\n"
5503 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5504 "Specify a local-as number\n"
5505 "AS number used as local AS\n")
5506
5507 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_mask_host_cmd_vtysh,
5508 "access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D host A.B.C.D",
5509 "Add an access list entry\n"
5510 "IP extended access list\n"
5511 "IP extended access list (expanded range)\n"
5512 "Specify packets to reject\n"
5513 "Specify packets to forward\n"
5514 "Any Internet Protocol\n"
5515 "Source address\n"
5516 "Source wildcard bits\n"
5517 "A single destination host\n"
5518 "Destination address\n")
5519
5520 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_name_cmd_vtysh,
5521 "show ip prefix-list WORD",
5522 "Show running system information\n"
5523 "IP information\n"
5524 "Build a prefix list\n"
5525 "Name of a prefix list\n")
5526
5527 DEFSH (VTYSH_ZEBRA, show_ipv6_route_prefix_cmd_vtysh,
5528 "show ipv6 route X:X::X:X/M",
5529 "Show running system information\n"
5530 "IP information\n"
5531 "IPv6 routing table\n"
5532 "IPv6 prefix\n")
5533
5534 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_cmd_vtysh,
5535 "clear ip bgp A.B.C.D vpnv4 unicast soft",
5536 "Reset functions\n"
5537 "IP information\n"
5538 "BGP information\n"
5539 "BGP neighbor address to clear\n"
5540 "Address family\n"
5541 "Address Family Modifier\n"
5542 "Soft reconfig\n")
5543
5544 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_cmd_vtysh,
5545 "no match ip next-hop",
5546 "Negate a command or set its defaults\n"
5547 "Match values from routing table\n"
5548 "IP information\n"
5549 "Match next-hop address of route\n")
5550
5551 DEFSH (VTYSH_OSPF6D, ospf6_routemap_no_set_forwarding_cmd_vtysh,
5552 "no set forwarding-address X:X::X:X",
5553 "Negate a command or set its defaults\n"
5554 "Set value\n"
5555 "Forwarding Address\n"
5556 "IPv6 Address\n")
5557
5558 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community2_cmd_vtysh,
5559 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
5560 "Show running system information\n"
5561 "IPv6 information\n"
5562 "MBGP information\n"
5563 "Display routes matching the communities\n"
5564 "community number\n"
5565 "Do not send outside local AS (well-known community)\n"
5566 "Do not advertise to any peer (well-known community)\n"
5567 "Do not export to next AS (well-known community)\n"
5568 "community number\n"
5569 "Do not send outside local AS (well-known community)\n"
5570 "Do not advertise to any peer (well-known community)\n"
5571 "Do not export to next AS (well-known community)\n")
5572
5573 DEFSH (VTYSH_OSPFD, no_area_range_cost_cmd_vtysh,
5574 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>",
5575 "Negate a command or set its defaults\n"
5576 "OSPF area parameters\n"
5577 "OSPF area ID in IP address format\n"
5578 "OSPF area ID as a decimal value\n"
5579 "Configure OSPF area range for route summarization\n"
5580 "area range prefix\n"
5581 "User specified metric for this range\n"
5582 "Advertised metric for this range\n")
5583
5584 DEFSH (VTYSH_RIPD, ip_rip_authentication_key_chain_cmd_vtysh,
5585 "ip rip authentication key-chain LINE",
5586 "IP information\n"
5587 "Routing Information Protocol\n"
5588 "Authentication control\n"
5589 "Authentication key-chain\n"
5590 "name of key-chain\n")
5591
5592 DEFSH (VTYSH_BGPD, no_neighbor_distribute_list_cmd_vtysh,
5593 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "distribute-list (<1-199>|<1300-2699>|WORD) (in|out)",
5594 "Negate a command or set its defaults\n"
5595 "Specify neighbor router\n"
5596 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5597 "Filter updates to/from this neighbor\n"
5598 "IP access-list number\n"
5599 "IP access-list number (expanded range)\n"
5600 "IP Access-list name\n"
5601 "Filter incoming updates\n"
5602 "Filter outgoing updates\n")
5603
5604 DEFSH (VTYSH_ZEBRA, show_table_cmd_vtysh,
5605 "show table",
5606 "Show running system information\n"
5607 "default routing table to use for all clients\n")
5608
5609 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_metric_cmd_vtysh,
5610 "no redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295>",
5611 "Negate a command or set its defaults\n"
5612 "Redistribute information from another routing protocol\n"
5613 "Connected\n"
5614 "Kernel routes\n"
5615 "Open Shurtest Path First (OSPFv3)\n"
5616 "Routing Information Protocol (RIPng)\n"
5617 "Static routes\n"
5618 "Metric for redistributed routes\n"
5619 "Default metric\n")
5620
5621 DEFSH (VTYSH_OSPFD, no_area_vlink_authkey_cmd_vtysh,
5622 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
5623 "(authentication-key|)",
5624 "Negate a command or set its defaults\n"
5625 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
5626 "Authentication password (key)\n" "The OSPF password (key)")
5627
5628 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_cmd_vtysh,
5629 "show ipv6 prefix-list",
5630 "Show running system information\n"
5631 "IPv6 information\n"
5632 "Build a prefix list\n")
5633
5634 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_longer_cmd_vtysh,
5635 "show ip prefix-list WORD A.B.C.D/M longer",
5636 "Show running system information\n"
5637 "IP information\n"
5638 "Build a prefix list\n"
5639 "Name of a prefix list\n"
5640 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5641 "Lookup longer prefix\n")
5642
5643 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_intra_external_cmd_vtysh,
5644 "distance ospf inter-area <1-255> intra-area <1-255> external <1-255>",
5645 "Define an administrative distance\n"
5646 "OSPF Administrative distance\n"
5647 "Inter-area routes\n"
5648 "Distance for inter-area routes\n"
5649 "Intra-area routes\n"
5650 "Distance for intra-area routes\n"
5651 "External routes\n"
5652 "Distance for external routes\n")
5653
5654 DEFSH (VTYSH_BGPD, no_bgp_bestpath_med3_cmd_vtysh,
5655 "no bgp bestpath med missing-as-worst confed",
5656 "Negate a command or set its defaults\n"
5657 "BGP specific commands\n"
5658 "Change the default bestpath selection\n"
5659 "MED attribute\n"
5660 "Treat missing MED as the least preferred one\n"
5661 "Compare MED among confederation paths\n")
5662
5663 DEFSH (VTYSH_RIPNGD, debug_ripng_packet_direct_cmd_vtysh,
5664 "debug ripng packet (recv|send)",
5665 "Debugging functions (see also 'undebug')\n"
5666 "RIPng configuration\n"
5667 "Debug option set for ripng packet\n"
5668 "Debug option set for receive packet\n"
5669 "Debug option set for send packet\n")
5670
5671 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_in_cmd_vtysh,
5672 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft in",
5673 "Reset functions\n"
5674 "IP information\n"
5675 "BGP information\n"
5676 "Clear all members of peer-group\n"
5677 "BGP peer-group name\n"
5678 "Address family\n"
5679 "Address Family modifier\n"
5680 "Address Family modifier\n"
5681 "Soft reconfig\n"
5682 "Soft reconfig inbound update\n")
5683
5684 DEFSH (VTYSH_ZEBRA, ip_address_secondary_cmd_vtysh,
5685 "ip address A.B.C.D/M secondary",
5686 "Interface Internet Protocol config commands\n"
5687 "Set the IP address of an interface\n"
5688 "IP address (e.g. 10.0.0.1/8)\n"
5689 "Secondary IP address\n")
5690
5691 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_out_cmd_vtysh,
5692 "clear ip bgp * soft out",
5693 "Reset functions\n"
5694 "IP information\n"
5695 "BGP information\n"
5696 "Clear all peers\n"
5697 "Soft reconfig\n"
5698 "Soft reconfig outbound update\n")
5699
5700 DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh,
5701 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
5702 "Show running system information\n"
5703 "BGP information\n"
5704 "Address family\n"
5705 "Detailed information on TCP and BGP neighbor connections\n"
5706 "Neighbor to display information about\n"
5707 "Neighbor to display information about\n"
5708 "Display information received from a BGP neighbor\n"
5709 "Display the prefixlist filter\n")
5710
5711 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_cmd_vtysh,
5712 "clear ip bgp * ipv4 (unicast|multicast) soft",
5713 "Reset functions\n"
5714 "IP information\n"
5715 "BGP information\n"
5716 "Clear all peers\n"
5717 "Address family\n"
5718 "Address Family Modifier\n"
5719 "Address Family Modifier\n"
5720 "Soft reconfig\n")
5721
5722 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_out_cmd_vtysh,
5723 "clear ip bgp * ipv4 (unicast|multicast) soft out",
5724 "Reset functions\n"
5725 "IP information\n"
5726 "BGP information\n"
5727 "Clear all peers\n"
5728 "Address family\n"
5729 "Address Family modifier\n"
5730 "Address Family modifier\n"
5731 "Soft reconfig\n"
5732 "Soft reconfig outbound update\n")
5733
5734 DEFSH (VTYSH_RIPD, accept_lifetime_day_month_day_month_cmd_vtysh,
5735 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
5736 "Set accept lifetime of the key\n"
5737 "Time to start\n"
5738 "Day of th month to start\n"
5739 "Month of the year to start\n"
5740 "Year to start\n"
5741 "Time to expire\n"
5742 "Day of th month to expire\n"
5743 "Month of the year to expire\n"
5744 "Year to expire\n")
5745
5746 DEFSH (VTYSH_BGPD, no_bgp_cluster_id_cmd_vtysh,
5747 "no bgp cluster-id",
5748 "Negate a command or set its defaults\n"
5749 "BGP information\n"
5750 "Configure Route-Reflector Cluster-id\n")
5751
5752 DEFSH (VTYSH_BGPD, neighbor_maximum_prefix_warning_cmd_vtysh,
5753 "neighbor (A.B.C.D|X:X::X:X) " "maximum-prefix <1-4294967295> warning-only",
5754 "Specify neighbor router\n"
5755 "Neighbor address\nIPv6 address\n"
5756 "Maximum number of prefix accept from this peer\n"
5757 "maximum no. of prefix limit\n"
5758 "Only give warning message when limit is exceeded\n")
5759
5760 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_cmd_vtysh,
5761 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export)",
5762 "Show running system information\n"
5763 "IP information\n"
5764 "BGP information\n"
5765 "Address family\n"
5766 "Address Family modifier\n"
5767 "Address Family modifier\n"
5768 "Display routes matching the communities\n"
5769 "community number\n"
5770 "Do not send outside local AS (well-known community)\n"
5771 "Do not advertise to any peer (well-known community)\n"
5772 "Do not export to next AS (well-known community)\n")
5773
5774 DEFSH (VTYSH_OSPFD, no_area_stub_cmd_vtysh,
5775 "no area (A.B.C.D|<0-4294967295>) stub",
5776 "Negate a command or set its defaults\n"
5777 "OSPF area parameters\n"
5778 "OSPF area ID in IP address format\n"
5779 "OSPF area ID as a decimal value\n"
5780 "Configure OSPF area as stub\n")
5781
5782 DEFSH (VTYSH_ZEBRA, no_debug_zebra_events_cmd_vtysh,
5783 "no debug zebra events",
5784 "Negate a command or set its defaults\n"
5785 "Debugging functions (see also 'undebug')\n"
5786 "Zebra configuration\n"
5787 "Debug option set for zebra events\n")
5788
5789 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_in_cmd_vtysh,
5790 "clear bgp ipv6 peer-group WORD in",
5791 "Reset functions\n"
5792 "BGP information\n"
5793 "Address family\n"
5794 "Clear all members of peer-group\n"
5795 "BGP peer-group name\n"
5796 "Soft reconfig inbound update\n")
5797
5798 DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_list_cmd_vtysh,
5799 "show ipv6 bgp prefix-list WORD",
5800 "Show running system information\n"
5801 "IPv6 information\n"
5802 "BGP information\n"
5803 "Display routes matching the prefix-list\n"
5804 "IPv6 prefix-list name\n")
5805
5806 DEFSH (VTYSH_BGPD, no_bgp_distance2_cmd_vtysh,
5807 "no distance bgp",
5808 "Negate a command or set its defaults\n"
5809 "Define an administrative distance\n"
5810 "BGP distance\n")
5811
5812 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_in_cmd_vtysh,
5813 "clear bgp ipv6 external WORD in",
5814 "Reset functions\n"
5815 "BGP information\n"
5816 "Address family\n"
5817 "Clear all external peers\n"
5818 "Soft reconfig inbound update\n")
5819
5820 DEFSH (VTYSH_BGPD, no_set_aggregator_as_val_cmd_vtysh,
5821 "no set aggregator as <1-65535> A.B.C.D",
5822 "Negate a command or set its defaults\n"
5823 "Set values in destination routing protocol\n"
5824 "BGP aggregator attribute\n"
5825 "AS number of aggregator\n"
5826 "AS number\n"
5827 "IP address of aggregator\n")
5828
5829 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_type_routemap_cmd_vtysh,
5830 "default-information originate metric <0-16777214> metric-type (1|2) route-map WORD",
5831 "Control distribution of default information\n"
5832 "Distribute a default route\n"
5833 "OSPF default metric\n"
5834 "OSPF metric\n"
5835 "OSPF metric type for default routes\n"
5836 "Set OSPF External Type 1 metrics\n"
5837 "Set OSPF External Type 2 metrics\n"
5838 "Route map reference\n"
5839 "Pointer to route-map entries\n")
5840
5841 DEFSH (VTYSH_BGPD, ip_community_list_name_standard_cmd_vtysh,
5842 "ip community-list standard WORD (deny|permit) .AA:NN",
5843 "IP information\n"
5844 "Add a community list entry\n"
5845 "Add a standard community-list entry\n"
5846 "Community list name\n"
5847 "Specify community to reject\n"
5848 "Specify community to accept\n"
5849 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
5850
5851 DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_self_cmd_vtysh,
5852 "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") (self-originate|)",
5853 "Show running system information\n"
5854 "IP information\n"
5855 "OSPF information\n"
5856 "Database summary\n"
5857 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" ""
5858 "Self-originated link states\n")
5859
5860 DEFSH (VTYSH_BGPD, bgp_router_id_cmd_vtysh,
5861 "bgp router-id A.B.C.D",
5862 "BGP information\n"
5863 "Override configured router identifier\n"
5864 "Manually configured router identifier\n")
5865
5866 DEFSH (VTYSH_ZEBRA, show_ip_forwarding_cmd_vtysh,
5867 "show ip forwarding",
5868 "Show running system information\n"
5869 "IP information\n"
5870 "IP forwarding status\n")
5871
5872 DEFSH (VTYSH_BGPD, ip_community_list_standard_cmd_vtysh,
5873 "ip community-list <1-99> (deny|permit) .AA:NN",
5874 "IP information\n"
5875 "Add a community list entry\n"
5876 "Community list number (standard)\n"
5877 "Specify community to reject\n"
5878 "Specify community to accept\n"
5879 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
5880
5881 DEFSH (VTYSH_ZEBRA, no_multicast_cmd_vtysh,
5882 "no multicast",
5883 "Negate a command or set its defaults\n"
5884 "Unset multicast flag to interface\n")
5885
5886 DEFSH (VTYSH_BGPD, show_ip_bgp_instance_ipv4_summary_cmd_vtysh,
5887 "show ip bgp view WORD ipv4 (unicast|multicast) summary",
5888 "Show running system information\n"
5889 "IP information\n"
5890 "BGP information\n"
5891 "BGP view\n"
5892 "View name\n"
5893 "Address family\n"
5894 "Address Family modifier\n"
5895 "Address Family modifier\n"
5896 "Summary of BGP neighbor status\n")
5897
5898 DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_cmd_vtysh,
5899 "clear bgp (A.B.C.D|X:X::X:X) soft",
5900 "Reset functions\n"
5901 "BGP information\n"
5902 "BGP neighbor address to clear\n"
5903 "BGP IPv6 neighbor to clear\n"
5904 "Soft reconfig\n")
5905
5906 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_cmd_vtysh,
5907 "access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D A.B.C.D A.B.C.D",
5908 "Add an access list entry\n"
5909 "IP extended access list\n"
5910 "IP extended access list (expanded range)\n"
5911 "Specify packets to reject\n"
5912 "Specify packets to forward\n"
5913 "Any Internet Protocol\n"
5914 "Source address\n"
5915 "Source wildcard bits\n"
5916 "Destination address\n"
5917 "Destination Wildcard bits\n")
5918
5919 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_filter_list_cmd_vtysh,
5920 "show ip bgp ipv4 (unicast|multicast) filter-list WORD",
5921 "Show running system information\n"
5922 "IP information\n"
5923 "BGP information\n"
5924 "Address family\n"
5925 "Address Family modifier\n"
5926 "Address Family modifier\n"
5927 "Display routes conforming to the filter-list\n"
5928 "Regular expression access list name\n")
5929
5930 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_summary_cmd_vtysh,
5931 "show ip bgp ipv4 (unicast|multicast) summary",
5932 "Show running system information\n"
5933 "IP information\n"
5934 "BGP information\n"
5935 "Address family\n"
5936 "Address Family modifier\n"
5937 "Address Family modifier\n"
5938 "Summary of BGP neighbor status\n")
5939
5940 DEFSH (VTYSH_RIPD, no_rip_redistribute_type_metric_routemap_cmd_vtysh,
5941 "no redistribute (kernel|connected|static|ospf|bgp) metric <0-16> route-map WORD",
5942 "Negate a command or set its defaults\n"
5943 "Redistribute information from another routing protocol\n"
5944 "Kernel routes\n"
5945 "Connected\n"
5946 "Static routes\n"
5947 "Open Shortest Path First (OSPF)\n"
5948 "Border Gateway Protocol (BGP)\n"
5949 "Metric\n"
5950 "Metric value\n"
5951 "Route map reference\n"
5952 "Pointer to route-map entries\n")
5953
5954 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_cmd_vtysh,
5955 "clear ip bgp external ipv4 (unicast|multicast) soft",
5956 "Reset functions\n"
5957 "IP information\n"
5958 "BGP information\n"
5959 "Clear all external peers\n"
5960 "Address family\n"
5961 "Address Family modifier\n"
5962 "Address Family modifier\n"
5963 "Soft reconfig\n")
5964
5965 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_out_cmd_vtysh,
5966 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft out",
5967 "Reset functions\n"
5968 "BGP information\n"
5969 "Address family\n"
5970 "BGP neighbor address to clear\n"
5971 "BGP IPv6 neighbor to clear\n"
5972 "Soft reconfig\n"
5973 "Soft reconfig outbound update\n")
5974
5975 DEFSH (VTYSH_OSPFD, show_ip_ospf_route_cmd_vtysh,
5976 "show ip ospf route",
5977 "Show running system information\n"
5978 "IP information\n"
5979 "OSPF information\n"
5980 "OSPF routing table\n")
5981
5982 DEFSH (VTYSH_OSPFD, interface_ip_ospf_authentication_args_addr_cmd_vtysh,
5983 "ip ospf authentication (null|message-digest) A.B.C.D",
5984 "IP Information\n"
5985 "OSPF interface commands\n"
5986 "Enable authentication on this interface\n"
5987 "Use null authentication\n"
5988 "Use message-digest authentication\n"
5989 "Address of interface")
5990
5991 DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_cmd_vtysh,
5992 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
5993 "(authentication|) (message-digest|null)",
5994 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
5995 "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n")
5996
5997 DEFSH (VTYSH_BGPD, no_bgp_network_cmd_vtysh,
5998 "no network A.B.C.D/M",
5999 "Negate a command or set its defaults\n"
6000 "Specify a network to announce via BGP\n"
6001 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
6002
6003 DEFSH (VTYSH_BGPD, no_ip_as_path_cmd_vtysh,
6004 "no ip as-path access-list WORD (deny|permit) .LINE",
6005 "Negate a command or set its defaults\n"
6006 "IP information\n"
6007 "BGP autonomous system path filter\n"
6008 "Specify an access list name\n"
6009 "Regular expression access list name\n"
6010 "Specify packets to reject\n"
6011 "Specify packets to forward\n"
6012 "A regular-expression to match the BGP AS paths\n")
6013
6014 DEFSH (VTYSH_BGPD, neighbor_distribute_list_cmd_vtysh,
6015 "neighbor (A.B.C.D|X:X::X:X|WORD) " "distribute-list (<1-199>|<1300-2699>|WORD) (in|out)",
6016 "Specify neighbor router\n"
6017 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6018 "Filter updates to/from this neighbor\n"
6019 "IP access-list number\n"
6020 "IP access-list number (expanded range)\n"
6021 "IP Access-list name\n"
6022 "Filter incoming updates\n"
6023 "Filter outgoing updates\n")
6024
6025 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_le_ge_cmd_vtysh,
6026 "ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
6027 "IP information\n"
6028 "Build a prefix list\n"
6029 "Name of a prefix list\n"
6030 "Specify packets to reject\n"
6031 "Specify packets to forward\n"
6032 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
6033 "Maximum prefix length to be matched\n"
6034 "Maximum prefix length\n"
6035 "Minimum prefix length to be matched\n"
6036 "Minimum prefix length\n")
6037
6038 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_all_cmd_vtysh,
6039 "no ipv6 access-list WORD",
6040 "Negate a command or set its defaults\n"
6041 "IPv6 information\n"
6042 "Add an access list entry\n"
6043 "IPv6 zebra access-list\n")
6044
6045 DEFSH (VTYSH_BGPD, ip_community_list_name_expanded_cmd_vtysh,
6046 "ip community-list expanded WORD (deny|permit) .LINE",
6047 "IP information\n"
6048 "Add a community list entry\n"
6049 "Add an expanded community-list entry\n"
6050 "Community list name\n"
6051 "Specify community to reject\n"
6052 "Specify community to accept\n"
6053 "An ordered list as a regular-expression\n")
6054
6055 DEFSH (VTYSH_BGPD, neighbor_timers_connect_cmd_vtysh,
6056 "neighbor (A.B.C.D|X:X::X:X) " "timers connect <0-65535>",
6057 "Specify neighbor router\n"
6058 "Neighbor address\nIPv6 address\n"
6059 "BGP per neighbor timers\n"
6060 "BGP connect timer\n"
6061 "Connect timer\n")
6062
6063 DEFSH (VTYSH_ZEBRA, ipv6_address_cmd_vtysh,
6064 "ipv6 address X:X::X:X/M",
6065 "Interface Internet Protocol config commands\n"
6066 "Set the IP address of an interface\n"
6067 "IPv6 address (e.g. 3ffe:506::1/48)\n")
6068
6069 DEFSH (VTYSH_BGPD, ip_community_list_expanded_cmd_vtysh,
6070 "ip community-list <100-199> (deny|permit) .LINE",
6071 "IP information\n"
6072 "Add a community list entry\n"
6073 "Community list number (expanded)\n"
6074 "Specify community to reject\n"
6075 "Specify community to accept\n"
6076 "An ordered list as a regular-expression\n")
6077
6078 DEFSH (VTYSH_RIPD, rip_offset_list_ifname_cmd_vtysh,
6079 "offset-list WORD (in|out) <0-16> IFNAME",
6080 "Modify RIP metric\n"
6081 "Access-list name\n"
6082 "For incoming updates\n"
6083 "For outgoing updates\n"
6084 "Metric value\n"
6085 "Interface to match\n")
6086
6087 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_longer_cmd_vtysh,
6088 "show ipv6 mbgp X:X::X:X/M longer-prefixes",
6089 "Show running system information\n"
6090 "IPv6 information\n"
6091 "MBGP information\n"
6092 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
6093 "Display route and more specific routes\n")
6094
6095 DEFSH (VTYSH_OSPFD, debug_ospf_ism_sub_cmd_vtysh,
6096 "debug ospf ism (status|events|timers)",
6097 "Debugging functions (see also 'undebug')\n"
6098 "OSPF information\n"
6099 "OSPF Interface State Machine\n"
6100 "ISM Status Information\n"
6101 "ISM Event Information\n"
6102 "ISM TImer Information\n")
6103
6104 DEFSH (VTYSH_BGPD, neighbor_send_community_cmd_vtysh,
6105 "neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community",
6106 "Specify neighbor router\n"
6107 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6108 "Send Community attribute to this neighbor\n")
6109
6110 DEFSH (VTYSH_BGPD, show_bgp_route_map_cmd_vtysh,
6111 "show bgp route-map WORD",
6112 "Show running system information\n"
6113 "BGP information\n"
6114 "Display routes matching the route-map\n"
6115 "A route-map to match on\n")
6116
6117 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_route_cmd_vtysh,
6118 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn A.B.C.D",
6119 "Show running system information\n"
6120 "IP information\n"
6121 "BGP information\n"
6122 "Display VPNv4 NLRI specific information\n"
6123 "Display information for a route distinguisher\n"
6124 "VPN Route Distinguisher\n"
6125 "Network in the BGP routing table to display\n")
6126
6127 DEFSH (VTYSH_ZEBRA, no_ipv6_route_ifname_pref_cmd_vtysh,
6128 "no ipv6 route X:X::X:X/M X:X::X:X INTERFACE <1-255>",
6129 "Negate a command or set its defaults\n"
6130 "IP information\n"
6131 "Establish static routes\n"
6132 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
6133 "IPv6 gateway address\n"
6134 "IPv6 gateway interface name\n"
6135 "Distance value for this prefix\n")
6136
6137 DEFSH (VTYSH_BGPD, dump_bgp_updates_interval_cmd_vtysh,
6138 "dump bgp updates PATH INTERVAL",
6139 "Dump packet\n"
6140 "BGP packet dump\n"
6141 "Dump BGP updates only\n"
6142 "Output filename\n"
6143 "Interval of output\n")
6144
6145 DEFSH (VTYSH_BGPD, no_bgp_confederation_identifier_arg_cmd_vtysh,
6146 "no bgp confederation identifier <1-65535>",
6147 "Negate a command or set its defaults\n"
6148 "BGP specific commands\n"
6149 "AS confederation parameters\n"
6150 "AS number\n"
6151 "Set routing domain confederation AS\n")
6152
6153 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_cmd_vtysh,
6154 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*|dump|summary)",
6155 "Show running system information\n"
6156 "IPv6 Information\n"
6157 "Open Shortest Path First (OSPF) for IPv6\n"
6158 "LSA Database\n"
6159 "Router-LSA\n"
6160 "Network-LSA\n"
6161 "AS-External-LSA\n"
6162 "Intra-Area-Prefix-LSA\n"
6163 "Inter-Area-Router-LSA\n"
6164 "Inter-Area-Prefix-LSA\n"
6165 "Link-LSA\n"
6166 "All LS Type\n"
6167 "Dump raw LSA data in Hex\n"
6168 "show summary of LSA\n"
6169 )
6170
6171 DEFSH (VTYSH_BGPD, no_neighbor_route_server_client_cmd_vtysh,
6172 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-server-client",
6173 "Negate a command or set its defaults\n"
6174 "Specify neighbor router\n"
6175 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6176 "Configure a neighbor as Route Server client\n")
6177
6178 DEFSH (VTYSH_BGPD, show_ip_bgp_community_all_cmd_vtysh,
6179 "show ip bgp community",
6180 "Show running system information\n"
6181 "IP information\n"
6182 "BGP information\n"
6183 "Display routes matching the communities\n")
6184
6185 DEFSH (VTYSH_OSPFD, ospf_message_digest_key_cmd_vtysh,
6186 "ospf message-digest-key <1-255> md5 KEY",
6187 "OSPF interface commands\n"
6188 "Message digest authentication password (key)\n"
6189 "Key ID\n"
6190 "Use MD5 algorithm\n"
6191 "The OSPF password (key)")
6192
6193 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_in_cmd_vtysh,
6194 "clear ip bgp * ipv4 (unicast|multicast) soft in",
6195 "Reset functions\n"
6196 "IP information\n"
6197 "BGP information\n"
6198 "Clear all peers\n"
6199 "Address family\n"
6200 "Address Family modifier\n"
6201 "Address Family modifier\n"
6202 "Soft reconfig\n"
6203 "Soft reconfig inbound update\n")
6204
6205 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_in_prefix_filter_cmd_vtysh,
6206 "clear bgp ipv6 (A.B.C.D|X:X::X:X) in prefix-filter",
6207 "Reset functions\n"
6208 "BGP information\n"
6209 "Address family\n"
6210 "BGP neighbor address to clear\n"
6211 "BGP IPv6 neighbor to clear\n"
6212 "Soft reconfig inbound update\n"
6213 "Push out the existing ORF prefix-list\n")
6214
6215 DEFSH (VTYSH_BGPD, no_match_community_cmd_vtysh,
6216 "no match community",
6217 "Negate a command or set its defaults\n"
6218 "Match values from routing table\n"
6219 "Match BGP community list\n")
6220
6221 DEFSH (VTYSH_RIPD, rip_redistribute_type_metric_cmd_vtysh,
6222 "redistribute (kernel|connected|static|ospf|bgp) metric <0-16>",
6223 "Redistribute information from another routing protocol\n"
6224 "Kernel routes\n"
6225 "Connected\n"
6226 "Static routes\n"
6227 "Open Shortest Path First (OSPF)\n"
6228 "Border Gateway Protocol (BGP)\n"
6229 "Metric\n"
6230 "Metric value\n")
6231
6232 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_summary_cmd_vtysh,
6233 "show ip bgp vpnv4 all summary",
6234 "Show running system information\n"
6235 "IP information\n"
6236 "BGP information\n"
6237 "Display VPNv4 NLRI specific information\n"
6238 "Display information about all VPNv4 NLRIs\n"
6239 "Summary of BGP neighbor status\n")
6240
6241 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community2_exact_cmd_vtysh,
6242 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
6243 "Show running system information\n"
6244 "IP information\n"
6245 "BGP information\n"
6246 "Address family\n"
6247 "Address Family modifier\n"
6248 "Address Family modifier\n"
6249 "Display routes matching the communities\n"
6250 "community number\n"
6251 "Do not send outside local AS (well-known community)\n"
6252 "Do not advertise to any peer (well-known community)\n"
6253 "Do not export to next AS (well-known community)\n"
6254 "community number\n"
6255 "Do not send outside local AS (well-known community)\n"
6256 "Do not advertise to any peer (well-known community)\n"
6257 "Do not export to next AS (well-known community)\n"
6258 "Exact match of the communities")
6259
6260 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_regexp_cmd_vtysh,
6261 "show ipv6 mbgp regexp .LINE",
6262 "Show running system information\n"
6263 "IP information\n"
6264 "BGP information\n"
6265 "Display routes matching the AS path regular expression\n"
6266 "A regular-expression to match the MBGP AS paths\n")
6267
6268 DEFSH (VTYSH_BGPD, no_set_community_delete_cmd_vtysh,
6269 "no set comm-list",
6270 "Negate a command or set its defaults\n"
6271 "Set values in destination routing protocol\n"
6272 "set BGP community list (for deletion)\n")
6273
6274 DEFSH (VTYSH_OSPFD, no_debug_ospf_zebra_cmd_vtysh,
6275 "no debug ospf zebra",
6276 "Negate a command or set its defaults\n"
6277 "Debugging functions (see also 'undebug')\n"
6278 "OSPF information\n"
6279 "OSPF Zebra information\n")
6280
6281 DEFSH (VTYSH_ZEBRA, debug_zebra_packet_cmd_vtysh,
6282 "debug zebra packet",
6283 "Debugging functions (see also 'undebug')\n"
6284 "Zebra configuration\n"
6285 "Debug option set for zebra packet\n")
6286
6287 DEFSH (VTYSH_RIPD, no_rip_redistribute_rip_cmd_vtysh,
6288 "no redistribute rip",
6289 "Negate a command or set its defaults\n"
6290 "Redistribute information from another routing protocol\n"
6291 "Routing Information Protocol (RIP)\n")
6292
6293 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_type_cmd_vtysh,
6294 "default-information originate metric <0-16777214> metric-type (1|2)",
6295 "Control distribution of default information\n"
6296 "Distribute a default route\n"
6297 "OSPF default metric\n"
6298 "OSPF metric\n"
6299 "OSPF metric type for default routes\n"
6300 "Set OSPF External Type 1 metrics\n"
6301 "Set OSPF External Type 2 metrics\n")
6302
6303 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_out_cmd_vtysh,
6304 "clear ip bgp * ipv4 (unicast|multicast) out",
6305 "Reset functions\n"
6306 "IP information\n"
6307 "BGP information\n"
6308 "Clear all peers\n"
6309 "Address family\n"
6310 "Address Family modifier\n"
6311 "Address Family modifier\n"
6312 "Soft reconfig outbound update\n")
6313
6314 DEFSH (VTYSH_RIPD, no_rip_version_cmd_vtysh,
6315 "no version",
6316 "Negate a command or set its defaults\n"
6317 "Set routing protocol version\n")
6318
6319 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_cmd_vtysh,
6320 "show ipv6 ospf6 area A.B.C.D topology",
6321 "Show running system information\n"
6322 "IPv6 Information\n"
6323 "Open Shortest Path First (OSPF) for IPv6\n"
6324 "Area information\n"
6325 "Area ID (as an IPv4 notation)\n"
6326 "Shortest Path First tree information\n"
6327 "Displays SPF topology table\n")
6328
6329 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_match_metric_val_cmd_vtysh,
6330 "no match metric <0-4294967295>",
6331 "Negate a command or set its defaults\n"
6332 "Match values from routing table\n"
6333 "Match metric of route\n"
6334 "Metric value\n")
6335
6336 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_cmd_vtysh,
6337 "show ip bgp flap-statistics A.B.C.D/M",
6338 "Show running system information\n"
6339 "IP information\n"
6340 "BGP information\n"
6341 "Display flap statistics of routes\n"
6342 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
6343
6344 DEFSH (VTYSH_BGPD, bgp_always_compare_med_cmd_vtysh,
6345 "bgp always-compare-med",
6346 "BGP specific commands\n"
6347 "Allow comparing MED from different neighbors\n")
6348
6349 DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_out_cmd_vtysh,
6350 "clear bgp view WORD * soft out",
6351 "Reset functions\n"
6352 "BGP information\n"
6353 "BGP view\n"
6354 "view name\n"
6355 "Clear all peers\n"
6356 "Soft reconfig\n"
6357 "Soft reconfig outbound update\n")
6358
6359 DEFSH (VTYSH_OSPFD, no_area_vlink_param2_cmd_vtysh,
6360 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
6361 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
6362 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
6363 "Negate a command or set its defaults\n"
6364 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
6365 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
6366 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
6367
6368 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh,
6369 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) advertised-routes",
6370 "Show running system information\n"
6371 "IP information\n"
6372 "BGP information\n"
6373 "Address family\n"
6374 "Address Family modifier\n"
6375 "Address Family modifier\n"
6376 "Detailed information on TCP and BGP neighbor connections\n"
6377 "Neighbor to display information about\n"
6378 "Neighbor to display information about\n"
6379 "Display the routes advertised to a BGP neighbor\n")
6380
6381 DEFSH (VTYSH_RIPD, rip_offset_list_cmd_vtysh,
6382 "offset-list WORD (in|out) <0-16>",
6383 "Modify RIP metric\n"
6384 "Access-list name\n"
6385 "For incoming updates\n"
6386 "For outgoing updates\n"
6387 "Metric value\n")
6388
6389 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_out_cmd_vtysh,
6390 "clear bgp ipv6 <1-65535> out",
6391 "Reset functions\n"
6392 "BGP information\n"
6393 "Address family\n"
6394 "Clear peers with the AS number\n"
6395 "Soft reconfig outbound update\n")
6396
6397 DEFSH (VTYSH_BGPD, dump_bgp_routes_cmd_vtysh,
6398 "dump bgp routes-mrt PATH",
6399 "Dump packet\n"
6400 "BGP packet dump\n"
6401 "Dump whole BGP routing table\n"
6402 "Output filename\n")
6403
6404 DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_md5_cmd_vtysh,
6405 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
6406 "(authentication|) "
6407 "(message-digest-key|)",
6408 "Negate a command or set its defaults\n"
6409 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
6410 "Enable authentication on this virtual link\n" "dummy string \n"
6411 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
6412
6413 DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_advertise_prefix_list_cmd_vtysh,
6414 "no ipv6 ospf6 advertise prefix-list",
6415 "Negate a command or set its defaults\n"
6416 "IPv6 Information\n"
6417 "Open Shortest Path First (OSPF) for IPv6\n"
6418 "Advertising options\n"
6419 "Filter prefix using prefix-list\n"
6420 )
6421
6422 DEFSH (VTYSH_OSPF6D, show_ipv6_route_ospf6_external_cmd_vtysh,
6423 "show ipv6 ospf6 route redistribute",
6424 "Show running system information\n"
6425 "IPv6 Information\n"
6426 "Routing Table\n"
6427 "Open Shortest Path First (OSPF) for IPv6\n"
6428 "redistributing External information\n"
6429 )
6430
6431 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh,
6432 "show ip bgp vpnv4 all neighbors A.B.C.D advertised-routes",
6433 "Show running system information\n"
6434 "IP information\n"
6435 "BGP information\n"
6436 "Display VPNv4 NLRI specific information\n"
6437 "Display information about all VPNv4 NLRIs\n"
6438 "Detailed information on TCP and BGP neighbor connections\n"
6439 "Neighbor to display information about\n"
6440 "Display the routes advertised to a BGP neighbor\n")
6441
6442 DEFSH (VTYSH_RIPD, rip_passive_interface_cmd_vtysh,
6443 "passive-interface IFNAME",
6444 "Suppress routing updates on an interface\n"
6445 "Interface name\n")
6446
6447 DEFSH (VTYSH_OSPFD, no_debug_ospf_lsa_cmd_vtysh,
6448 "no debug ospf lsa",
6449 "Negate a command or set its defaults\n"
6450 "Debugging functions (see also 'undebug')\n"
6451 "OSPF information\n"
6452 "OSPF Link State Advertisement\n")
6453
6454 DEFSH (VTYSH_RIPNGD, no_ripng_network_cmd_vtysh,
6455 "no network IF_OR_ADDR",
6456 "Negate a command or set its defaults\n"
6457 "RIPng enable on specified interface or network.\n"
6458 "Interface or address")
6459
6460 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_type_cmd_vtysh,
6461 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2)",
6462 "Redistribute information from another routing protocol\n"
6463 "Kernel routes\n"
6464 "Connected\n"
6465 "Static routes\n"
6466 "Routing Information Protocol (RIP)\n"
6467 "Border Gateway Protocol (BGP)\n"
6468 "Metric for redistributed routes\n"
6469 "OSPF default metric\n"
6470 "OSPF exterior metric type for redistributed routes\n"
6471 "Set OSPF External Type 1 metrics\n"
6472 "Set OSPF External Type 2 metrics\n")
6473
6474 DEFSH (VTYSH_BGPD, clear_bgp_external_soft_out_cmd_vtysh,
6475 "clear bgp external soft out",
6476 "Reset functions\n"
6477 "BGP information\n"
6478 "Clear all external peers\n"
6479 "Soft reconfig\n"
6480 "Soft reconfig outbound update\n")
6481
6482 DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_standard_cmd_vtysh,
6483 "no ip extcommunity-list standard WORD (deny|permit) .AA:NN",
6484 "Negate a command or set its defaults\n"
6485 "IP information\n"
6486 "Add a extended community list entry\n"
6487 "Specify standard extcommunity-list\n"
6488 "Extended Community list name\n"
6489 "Specify community to reject\n"
6490 "Specify community to accept\n"
6491 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
6492
6493 DEFSH (VTYSH_OSPFD, no_ospf_default_metric_cmd_vtysh,
6494 "no default-metric",
6495 "Negate a command or set its defaults\n"
6496 "Set metric of redistributed routes\n")
6497
6498 DEFSH (VTYSH_BGPD, show_ip_bgp_paths_cmd_vtysh,
6499 "show ip bgp paths",
6500 "Show running system information\n"
6501 "IP information\n"
6502 "BGP information\n"
6503 "Path information\n")
6504
6505 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_advertised_route_cmd_vtysh,
6506 "show ip bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
6507 "Show running system information\n"
6508 "IP information\n"
6509 "BGP information\n"
6510 "Detailed information on TCP and BGP neighbor connections\n"
6511 "Neighbor to display information about\n"
6512 "Neighbor to display information about\n"
6513 "Display the routes advertised to a BGP neighbor\n")
6514
6515 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_cmd_vtysh,
6516 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2)",
6517 "Redistribute information from another routing protocol\n"
6518 "Kernel routes\n"
6519 "Connected\n"
6520 "Static routes\n"
6521 "Routing Information Protocol (RIP)\n"
6522 "Border Gateway Protocol (BGP)\n"
6523 "OSPF exterior metric type for redistributed routes\n"
6524 "Set OSPF External Type 1 metrics\n"
6525 "Set OSPF External Type 2 metrics\n")
6526
6527 DEFSH (VTYSH_BGPD, match_ipv6_next_hop_cmd_vtysh,
6528 "match ipv6 next-hop X:X::X:X",
6529 "Match values from routing table\n"
6530 "IPv6 information\n"
6531 "Match IPv6 next-hop address of route\n"
6532 "IPv6 address of next hop\n")
6533
6534 DEFSH (VTYSH_OSPFD, ip_ospf_transmit_delay_cmd_vtysh,
6535 "ip ospf transmit-delay <1-65535>",
6536 "IP Information\n"
6537 "OSPF interface commands\n"
6538 "Link state transmit delay\n"
6539 "Seconds\n")
6540
6541 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_in_cmd_vtysh,
6542 "clear ip bgp <1-65535> vpnv4 unicast soft in",
6543 "Reset functions\n"
6544 "IP information\n"
6545 "BGP information\n"
6546 "Clear peers with the AS number\n"
6547 "Address family\n"
6548 "Address Family modifier\n"
6549 "Soft reconfig\n"
6550 "Soft reconfig inbound update\n")
6551
6552 DEFSH (VTYSH_RIPD, rip_redistribute_type_routemap_cmd_vtysh,
6553 "redistribute (kernel|connected|static|ospf|bgp) route-map WORD",
6554 "Redistribute information from another routing protocol\n"
6555 "Kernel routes\n"
6556 "Connected\n"
6557 "Static routes\n"
6558 "Open Shortest Path First (OSPF)\n"
6559 "Border Gateway Protocol (BGP)\n"
6560 "Route map reference\n"
6561 "Pointer to route-map entries\n")
6562
6563 DEFSH (VTYSH_BGPD, show_ipv6_bgp_filter_list_cmd_vtysh,
6564 "show ipv6 bgp filter-list WORD",
6565 "Show running system information\n"
6566 "IPv6 information\n"
6567 "BGP information\n"
6568 "Display routes conforming to the filter-list\n"
6569 "Regular expression access list name\n")
6570
6571 DEFSH (VTYSH_BGPD, show_bgp_instance_ipv6_summary_cmd_vtysh,
6572 "show bgp view WORD ipv6 summary",
6573 "Show running system information\n"
6574 "BGP information\n"
6575 "BGP view\n"
6576 "View name\n"
6577 "Address family\n"
6578 "Summary of BGP neighbor status\n")
6579
6580 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_ra_lifetime_cmd_vtysh,
6581 "no ipv6 nd ra-lifetime",
6582 "Negate a command or set its defaults\n"
6583 "IP information\n"
6584 "Neighbor discovery\n"
6585 "Router lifetime\n")
6586
6587 DEFSH (VTYSH_OSPFD, no_area_export_list_cmd_vtysh,
6588 "no area (A.B.C.D|<0-4294967295>) export-list NAME",
6589 "Negate a command or set its defaults\n"
6590 "OSPF area parameters\n"
6591 "OSPF area ID in IP address format\n"
6592 "OSPF area ID as a decimal value\n"
6593 "Unset the filter for networks announced to other areas\n"
6594 "Name of the access-list\n")
6595
6596 DEFSH (VTYSH_BGPD, bgp_distance_source_cmd_vtysh,
6597 "distance <1-255> A.B.C.D/M",
6598 "Define an administrative distance\n"
6599 "Administrative distance\n"
6600 "IP source prefix\n")
6601
6602 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh,
6603 "show ip bgp neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
6604 "Show running system information\n"
6605 "IP information\n"
6606 "BGP information\n"
6607 "Detailed information on TCP and BGP neighbor connections\n"
6608 "Neighbor to display information about\n"
6609 "Neighbor to display information about\n"
6610 "Display information received from a BGP neighbor\n"
6611 "Display the prefixlist filter\n")
6612
6613 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_routes_cmd_vtysh,
6614 "show ip bgp neighbors (A.B.C.D|X:X::X:X) routes",
6615 "Show running system information\n"
6616 "IP information\n"
6617 "BGP information\n"
6618 "Detailed information on TCP and BGP neighbor connections\n"
6619 "Neighbor to display information about\n"
6620 "Neighbor to display information about\n"
6621 "Display routes learned from neighbor\n")
6622
6623 DEFSH (VTYSH_BGPD, no_set_origin_cmd_vtysh,
6624 "no set origin",
6625 "Negate a command or set its defaults\n"
6626 "Set values in destination routing protocol\n"
6627 "BGP origin code\n")
6628
6629 DEFSH (VTYSH_BGPD, no_set_community_delete_val_cmd_vtysh,
6630 "no set comm-list (<1-99>|<100-199>|WORD) delete",
6631 "Negate a command or set its defaults\n"
6632 "Set values in destination routing protocol\n"
6633 "set BGP community list (for deletion)\n"
6634 "Community-list number (standard)\n"
6635 "Communitly-list number (expanded)\n"
6636 "Community-list name\n"
6637 "Delete matching communities\n")
6638
6639 DEFSH (VTYSH_BGPD, no_bgp_bestpath_aspath_ignore_cmd_vtysh,
6640 "no bgp bestpath as-path ignore",
6641 "Negate a command or set its defaults\n"
6642 "BGP specific commands\n"
6643 "Change the default bestpath selection\n"
6644 "AS-path attribute\n"
6645 "Ignore as-path length in selecting a route\n")
6646
6647 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_exact_cmd_vtysh,
6648 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
6649 "Show running system information\n"
6650 "IPv6 information\n"
6651 "MBGP information\n"
6652 "Display routes matching the communities\n"
6653 "community number\n"
6654 "Do not send outside local AS (well-known community)\n"
6655 "Do not advertise to any peer (well-known community)\n"
6656 "Do not export to next AS (well-known community)\n"
6657 "Exact match of the communities")
6658
6659 DEFSH (VTYSH_BGPD, show_ip_bgp_scan_cmd_vtysh,
6660 "show ip bgp scan",
6661 "Show running system information\n"
6662 "IP information\n"
6663 "BGP information\n"
6664 "BGP scan status\n")
6665
6666 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_suppress_ra_cmd_vtysh,
6667 "no ipv6 nd suppress-ra",
6668 "Negate a command or set its defaults\n"
6669 "IP information\n"
6670 "Neighbor discovery\n"
6671 "Suppress Router Advertisement\n")
6672
6673 DEFSH (VTYSH_BGPD, no_bgp_cluster_id_arg_cmd_vtysh,
6674 "no bgp cluster-id A.B.C.D",
6675 "Negate a command or set its defaults\n"
6676 "BGP information\n"
6677 "Configure Route-Reflector Cluster-id\n"
6678 "Route-Reflector Cluster-id in IP address format\n")
6679
6680 DEFSH (VTYSH_OSPFD, no_area_shortcut_cmd_vtysh,
6681 "no area (A.B.C.D|<0-4294967295>) shortcut (enable|disable)",
6682 "Negate a command or set its defaults\n"
6683 "OSPF area parameters\n"
6684 "OSPF area ID in IP address format\n"
6685 "OSPF area ID as a decimal value\n"
6686 "Deconfigure the area's shortcutting mode\n"
6687 "Deconfigure enabled shortcutting through the area\n"
6688 "Deconfigure disabled shortcutting through the area\n")
6689
6690 DEFSH (VTYSH_OSPF6D, interface_area_passive_cmd_vtysh,
6691 "interface IFNAME area A.B.C.D passive",
6692 "Enable routing on an IPv6 interface\n"
6693 "Interface name(e.g. ep0)\n"
6694 "Set the OSPF6 area ID\n"
6695 "OSPF6 area ID in IPv4 address notation\n"
6696 "Suppress routing updates on an interface\n"
6697 )
6698
6699 DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_cmd_vtysh,
6700 "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") A.B.C.D",
6701 "Show running system information\n"
6702 "IP information\n"
6703 "OSPF information\n"
6704 "Database summary\n"
6705 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" ""
6706 "Link State ID (as an IP address)\n")
6707
6708 DEFSH (VTYSH_BGPD, no_bgp_confederation_peers_cmd_vtysh,
6709 "no bgp confederation peers .<1-65535>",
6710 "Negate a command or set its defaults\n"
6711 "BGP specific commands\n"
6712 "AS confederation parameters\n"
6713 "Peer ASs in BGP confederation\n"
6714 "AS number\n")
6715
6716 DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_expanded_cmd_vtysh,
6717 "no ip extcommunity-list expanded WORD (deny|permit) .LINE",
6718 "Negate a command or set its defaults\n"
6719 "IP information\n"
6720 "Add a extended community list entry\n"
6721 "Specify expanded extcommunity-list\n"
6722 "Community list name\n"
6723 "Specify community to reject\n"
6724 "Specify community to accept\n"
6725 "An ordered list as a regular-expression\n")
6726
6727 DEFSH (VTYSH_BGPD, show_bgp_community_list_exact_cmd_vtysh,
6728 "show bgp community-list WORD exact-match",
6729 "Show running system information\n"
6730 "BGP information\n"
6731 "Display routes matching the community-list\n"
6732 "community-list name\n"
6733 "Exact match of the communities\n")
6734
6735 DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_received_routes_cmd_vtysh,
6736 "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
6737 "Show running system information\n"
6738 "IPv6 information\n"
6739 "BGP information\n"
6740 "Detailed information on TCP and BGP neighbor connections\n"
6741 "Neighbor to display information about\n"
6742 "Neighbor to display information about\n"
6743 "Display the received routes from neighbor\n")
6744
6745 DEFSH (VTYSH_OSPFD, no_ospf_hello_interval_cmd_vtysh,
6746 "no ospf hello-interval",
6747 "Negate a command or set its defaults\n"
6748 "OSPF interface commands\n"
6749 "Time between HELLO packets\n")
6750
6751 DEFSH (VTYSH_BGPD, no_set_weight_cmd_vtysh,
6752 "no set weight",
6753 "Negate a command or set its defaults\n"
6754 "Set values in destination routing protocol\n"
6755 "BGP weight for routing table\n")
6756
6757 DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_int_detail_cmd_vtysh,
6758 "show ip ospf neighbor A.B.C.D detail",
6759 "Show running system information\n"
6760 "IP information\n"
6761 "OSPF information\n"
6762 "Neighbor list\n"
6763 "Interface address\n"
6764 "detail of all neighbors")
6765
6766 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_list_cmd_vtysh,
6767 "show bgp ipv6 community-list WORD",
6768 "Show running system information\n"
6769 "BGP information\n"
6770 "Address family\n"
6771 "Display routes matching the community-list\n"
6772 "community-list name\n")
6773
6774 DEFSH (VTYSH_BGPD, clear_bgp_peer_group_in_prefix_filter_cmd_vtysh,
6775 "clear bgp peer-group WORD in prefix-filter",
6776 "Reset functions\n"
6777 "BGP information\n"
6778 "Clear all members of peer-group\n"
6779 "BGP peer-group name\n"
6780 "Soft reconfig inbound update\n"
6781 "Push out prefix-list ORF and do inbound soft reconfig\n")
6782
6783 DEFSH (VTYSH_BGPD, set_ecommunity_rt_cmd_vtysh,
6784 "set extcommunity rt .ASN:nn_or_IP-address:nn",
6785 "Set values in destination routing protocol\n"
6786 "BGP extended community attribute\n"
6787 "Route Target extened communityt\n"
6788 "VPN extended community\n")
6789
6790 DEFSH (VTYSH_BGPD, no_neighbor_description_cmd_vtysh,
6791 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "description",
6792 "Negate a command or set its defaults\n"
6793 "Specify neighbor router\n"
6794 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6795 "Neighbor specific description\n")
6796
6797 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_le_cmd_vtysh,
6798 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32>",
6799 "Negate a command or set its defaults\n"
6800 "IP information\n"
6801 "Build a prefix list\n"
6802 "Name of a prefix list\n"
6803 "sequence number of an entry\n"
6804 "Sequence number\n"
6805 "Specify packets to reject\n"
6806 "Specify packets to forward\n"
6807 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
6808 "Maximum prefix length to be matched\n"
6809 "Maximum prefix length\n")
6810
6811 DEFSH (VTYSH_OSPFD, area_vlink_md5_cmd_vtysh,
6812 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
6813 "(message-digest-key|) <1-255> md5 KEY",
6814 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
6815 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
6816
6817 DEFSH (VTYSH_ZEBRA, no_ipv6_forwarding_cmd_vtysh,
6818 "no ipv6 forwarding",
6819 "Negate a command or set its defaults\n"
6820 "IP information\n"
6821 "Doesn't forward IPv6 protocol packet")
6822
6823 DEFSH (VTYSH_BGPD, show_bgp_community_cmd_vtysh,
6824 "show bgp community (AA:NN|local-AS|no-advertise|no-export)",
6825 "Show running system information\n"
6826 "BGP information\n"
6827 "Display routes matching the communities\n"
6828 "community number\n"
6829 "Do not send outside local AS (well-known community)\n"
6830 "Do not advertise to any peer (well-known community)\n"
6831 "Do not export to next AS (well-known community)\n")
6832
6833 DEFSH (VTYSH_OSPFD, ospf_router_id_cmd_vtysh,
6834 "ospf router-id A.B.C.D",
6835 "OSPF specific commands\n"
6836 "router-id for the OSPF process\n"
6837 "OSPF router-id in IP address format\n")
6838
6839 DEFSH (VTYSH_BGPD, show_bgp_community_exact_cmd_vtysh,
6840 "show bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
6841 "Show running system information\n"
6842 "BGP information\n"
6843 "Display routes matching the communities\n"
6844 "community number\n"
6845 "Do not send outside local AS (well-known community)\n"
6846 "Do not advertise to any peer (well-known community)\n"
6847 "Do not export to next AS (well-known community)\n"
6848 "Exact match of the communities")
6849
6850 DEFSH (VTYSH_BGPD, no_neighbor_capability_orf_prefix_cmd_vtysh,
6851 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability orf prefix-list (both|send|receive)",
6852 "Negate a command or set its defaults\n"
6853 "Specify neighbor router\n"
6854 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6855 "Advertise capability to the peer\n"
6856 "Advertise ORF capability to the peer\n"
6857 "Advertise prefixlist ORF capability to this neighbor\n"
6858 "Capability to SEND and RECEIVE the ORF to/from this neighbor\n"
6859 "Capability to RECEIVE the ORF from this neighbor\n"
6860 "Capability to SEND the ORF to this neighbor\n")
6861
6862 DEFSH (VTYSH_OSPFD, no_area_vlink_cmd_vtysh,
6863 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D",
6864 "Negate a command or set its defaults\n"
6865 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n")
6866
6867 DEFSH (VTYSH_OSPFD, ip_ospf_hello_interval_addr_cmd_vtysh,
6868 "ip ospf hello-interval <1-65535> A.B.C.D",
6869 "IP Information\n"
6870 "OSPF interface commands\n"
6871 "Time between HELLO packets\n"
6872 "Seconds\n"
6873 "Address of interface")
6874
6875 DEFSH (VTYSH_BGPD, no_aggregate_address_mask_summary_only_cmd_vtysh,
6876 "no aggregate-address A.B.C.D A.B.C.D summary-only",
6877 "Negate a command or set its defaults\n"
6878 "Configure BGP aggregate entries\n"
6879 "Aggregate address\n"
6880 "Aggregate mask\n"
6881 "Filter more specific routes from updates\n")
6882
6883 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_intra_cmd_vtysh,
6884 "distance ospf external <1-255> intra-area <1-255>",
6885 "Define an administrative distance\n"
6886 "OSPF Administrative distance\n"
6887 "External routes\n"
6888 "Distance for external routes\n"
6889 "Intra-area routes\n"
6890 "Distance for intra-area routes\n")
6891
6892 DEFSH (VTYSH_OSPFD, area_vlink_param3_cmd_vtysh,
6893 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
6894 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
6895 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
6896 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
6897 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
6898 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
6899 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
6900 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
6901
6902 DEFSH (VTYSH_BGPD, neighbor_soft_reconfiguration_cmd_vtysh,
6903 "neighbor (A.B.C.D|X:X::X:X|WORD) " "soft-reconfiguration inbound",
6904 "Specify neighbor router\n"
6905 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6906 "Per neighbor soft reconfiguration\n"
6907 "Allow inbound soft reconfiguration for this neighbor\n")
6908
6909 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_exact_cmd_vtysh,
6910 "no ipv6 access-list WORD (deny|permit) X:X::X:X/M exact-match",
6911 "Negate a command or set its defaults\n"
6912 "IPv6 information\n"
6913 "Add an access list entry\n"
6914 "IPv6 zebra access-list\n"
6915 "Specify packets to reject\n"
6916 "Specify packets to forward\n"
6917 "Prefix to match. e.g. 3ffe:506::/32\n"
6918 "Exact match of the prefixes\n")
6919
6920 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_metric_rmap_cmd_vtysh,
6921 "redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295> route-map WORD",
6922 "Redistribute information from another routing protocol\n"
6923 "Connected\n"
6924 "Kernel routes\n"
6925 "Open Shurtest Path First (OSPF)\n"
6926 "Routing Information Protocol (RIP)\n"
6927 "Static routes\n"
6928 "Metric for redistributed routes\n"
6929 "Default metric\n"
6930 "Route map reference\n"
6931 "Pointer to route-map entries\n")
6932
6933 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_in_prefix_filter_cmd_vtysh,
6934 "clear ip bgp external in prefix-filter",
6935 "Reset functions\n"
6936 "IP information\n"
6937 "BGP information\n"
6938 "Clear all external peers\n"
6939 "Soft reconfig inbound update\n"
6940 "Push out prefix-list ORF and do inbound soft reconfig\n")
6941
6942 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_cmd_vtysh,
6943 "no redistribute (connected|kernel|ospf6|ripng|static)",
6944 "Negate a command or set its defaults\n"
6945 "Redistribute information from another routing protocol\n"
6946 "Connected\n"
6947 "Kernel routes\n"
6948 "Open Shurtest Path First (OSPFv3)\n"
6949 "Routing Information Protocol (RIPng)\n"
6950 "Static routes\n")
6951
6952 DEFSH (VTYSH_ZEBRA, show_ipv6_route_cmd_vtysh,
6953 "show ipv6 route",
6954 "Show running system information\n"
6955 "IP information\n"
6956 "IPv6 routing table\n")
6957
6958 DEFSH (VTYSH_BGPD, no_bgp_fast_external_failover_cmd_vtysh,
6959 "no bgp fast-external-failover",
6960 "Negate a command or set its defaults\n"
6961 "BGP information\n"
6962 "Immediately reset session if a link to a directly connected external peer goes down\n")
6963
6964 DEFSH (VTYSH_BGPD, no_aggregate_address_mask_as_set_summary_cmd_vtysh,
6965 "no aggregate-address A.B.C.D A.B.C.D as-set summary-only",
6966 "Negate a command or set its defaults\n"
6967 "Configure BGP aggregate entries\n"
6968 "Aggregate address\n"
6969 "Aggregate mask\n"
6970 "Generate AS set path information\n"
6971 "Filter more specific routes from updates\n")
6972
6973 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_out_cmd_vtysh,
6974 "clear ip bgp external soft out",
6975 "Reset functions\n"
6976 "IP information\n"
6977 "BGP information\n"
6978 "Clear all external peers\n"
6979 "Soft reconfig\n"
6980 "Soft reconfig outbound update\n")
6981
6982 DEFSH (VTYSH_BGPD, show_bgp_ipv6_summary_cmd_vtysh,
6983 "show bgp ipv6 summary",
6984 "Show running system information\n"
6985 "BGP information\n"
6986 "Address family\n"
6987 "Summary of BGP neighbor status\n")
6988
6989 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_regexp_cmd_vtysh,
6990 "show ip bgp ipv4 (unicast|multicast) regexp .LINE",
6991 "Show running system information\n"
6992 "IP information\n"
6993 "BGP information\n"
6994 "Address family\n"
6995 "Address Family modifier\n"
6996 "Address Family modifier\n"
6997 "Display routes matching the AS path regular expression\n"
6998 "A regular-expression to match the BGP AS paths\n")
6999
7000 DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_cmd_vtysh,
7001 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
7002 "(authentication|)",
7003 "Negate a command or set its defaults\n"
7004 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
7005 "Enable authentication on this virtual link\n" "dummy string \n")
7006
7007 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_out_cmd_vtysh,
7008 "clear ip bgp * vpnv4 unicast out",
7009 "Reset functions\n"
7010 "IP information\n"
7011 "BGP information\n"
7012 "Clear all peers\n"
7013 "Address family\n"
7014 "Address Family Modifier\n"
7015 "Soft reconfig outbound update\n")
7016
7017 DEFSH (VTYSH_ZEBRA, no_ip_address_label_cmd_vtysh,
7018 "no ip address A.B.C.D/M label LINE",
7019 "Negate a command or set its defaults\n"
7020 "Interface Internet Protocol config commands\n"
7021 "Set the IP address of an interface\n"
7022 "IP address (e.g. 10.0.0.1/8)\n"
7023 "Label of this address\n"
7024 "Label\n")
7025
7026 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged7_cmd_vtysh,
7027 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop med as-path",
7028 "Negate a command or set its defaults\n"
7029 "Specify neighbor router\n"
7030 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7031 "BGP attribute is propagated unchanged to this neighbor\n"
7032 "Nexthop attribute\n"
7033 "Med attribute\n"
7034 "As-path attribute\n")
7035
7036 DEFSH (VTYSH_BGPD, no_ipv6_bgp_network_route_map_cmd_vtysh,
7037 "no network X:X::X:X/M route-map WORD",
7038 "Negate a command or set its defaults\n"
7039 "Specify a network to announce via BGP\n"
7040 "IPv6 prefix <network>/<length>\n"
7041 "Route-map to modify the attributes\n"
7042 "Name of the route map\n")
7043
7044 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_cmd_vtysh,
7045 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft",
7046 "Reset functions\n"
7047 "IP information\n"
7048 "BGP information\n"
7049 "BGP neighbor address to clear\n"
7050 "Address family\n"
7051 "Address Family Modifier\n"
7052 "Address Family Modifier\n"
7053 "Soft reconfig\n")
7054
7055 DEFSH (VTYSH_BGPD, neighbor_ebgp_multihop_cmd_vtysh,
7056 "neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop",
7057 "Specify neighbor router\n"
7058 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7059 "Allow EBGP neighbors not on directly connected networks\n")
7060
7061 DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_key_cmd_vtysh,
7062 "no ip ospf authentication-key",
7063 "Negate a command or set its defaults\n"
7064 "IP Information\n"
7065 "OSPF interface commands\n"
7066 "Authentication password (key)\n")
7067
7068 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh,
7069 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D routes",
7070 "Show running system information\n"
7071 "IP information\n"
7072 "BGP information\n"
7073 "Display VPNv4 NLRI specific information\n"
7074 "Display information for a route distinguisher\n"
7075 "VPN Route Distinguisher\n"
7076 "Detailed information on TCP and BGP neighbor connections\n"
7077 "Neighbor to display information about\n"
7078 "Display routes learned from neighbor\n")
7079
7080 DEFSH (VTYSH_OSPFD, no_debug_ospf_ism_sub_cmd_vtysh,
7081 "no debug ospf ism (status|events|timers)",
7082 "Negate a command or set its defaults\n"
7083 "Debugging functions\n"
7084 "OSPF information\n"
7085 "OSPF Interface State Machine\n"
7086 "ISM Status Information\n"
7087 "ISM Event Information\n"
7088 "ISM Timer Information\n")
7089
7090 DEFSH (VTYSH_OSPFD, refresh_timer_cmd_vtysh,
7091 "refresh timer <10-1800>",
7092 "Adjust refresh parameters\n"
7093 "Set refresh timer\n"
7094 "Timer value in seconds\n")
7095
7096 DEFSH (VTYSH_ZEBRA, ipv6_nd_managed_config_flag_cmd_vtysh,
7097 "ipv6 nd managed-config-flag",
7098 "IP information\n"
7099 "Neighbor discovery\n"
7100 "Managed address configuration flag\n")
7101
7102 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_inter_cmd_vtysh,
7103 "distance ospf intra-area <1-255> inter-area <1-255>",
7104 "Define an administrative distance\n"
7105 "OSPF Administrative distance\n"
7106 "Intra-area routes\n"
7107 "Distance for intra-area routes\n"
7108 "Inter-area routes\n"
7109 "Distance for inter-area routes\n")
7110
7111 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_val_cmd_vtysh,
7112 "no redistribute ospf6 metric <0-16>",
7113 "Negate a command or set its defaults\n"
7114 "Redistribute information from another routing protocol\n"
7115 "IPv6 Open Shortest Path First (OSPFv3)\n"
7116 "Metric\n"
7117 "Metric value\n")
7118
7119 DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_local_val_cmd_vtysh,
7120 "no set ipv6 next-hop local X:X::X:X",
7121 "Negate a command or set its defaults\n"
7122 "Set values in destination routing protocol\n"
7123 "IPv6 information\n"
7124 "IPv6 next-hop address\n"
7125 "IPv6 local address\n"
7126 "IPv6 address of next hop\n")
7127
7128 DEFSH (VTYSH_BGPD, ip_community_list_name_standard2_cmd_vtysh,
7129 "ip community-list standard WORD (deny|permit)",
7130 "IP information\n"
7131 "Add a community list entry\n"
7132 "Add a standard community-list entry\n"
7133 "Community list name\n"
7134 "Specify community to reject\n"
7135 "Specify community to accept\n")
7136
7137 DEFSH (VTYSH_BGPD, no_neighbor_capability_route_refresh_cmd_vtysh,
7138 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability route-refresh",
7139 "Negate a command or set its defaults\n"
7140 "Specify neighbor router\n"
7141 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7142 "Advertise capability to the peer\n"
7143 "Advertise route-refresh capability to this neighbor\n")
7144
7145 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_cmd_vtysh,
7146 "no access-list WORD (deny|permit) A.B.C.D/M",
7147 "Negate a command or set its defaults\n"
7148 "Add an access list entry\n"
7149 "IP zebra access-list name\n"
7150 "Specify packets to reject\n"
7151 "Specify packets to forward\n"
7152 "Prefix to match. e.g. 10.0.0.0/8\n")
7153
7154 DEFSH (VTYSH_ZEBRA, show_zebra_client_cmd_vtysh,
7155 "show zebra client",
7156 "Show running system information\n"
7157 "Zebra information"
7158 "Client information")
7159
7160 DEFSH (VTYSH_BGPD, neighbor_allowas_in_arg_cmd_vtysh,
7161 "neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in <1-10>",
7162 "Specify neighbor router\n"
7163 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7164 "Accept as-path with my AS present in it\n"
7165 "Number of occurances of AS number\n")
7166
7167 DEFSH (VTYSH_BGPD, bgp_cluster_id_cmd_vtysh,
7168 "bgp cluster-id A.B.C.D",
7169 "BGP information\n"
7170 "Configure Route-Reflector Cluster-id\n"
7171 "Route-Reflector Cluster-id in IP address format\n")
7172
7173 DEFSH (VTYSH_BGPD, no_router_bgp_view_cmd_vtysh,
7174 "no router bgp <1-65535> view WORD",
7175 "Negate a command or set its defaults\n"
7176 "Enable a routing process\n"
7177 "BGP information\n"
7178 "AS number\n"
7179 "BGP view\n"
7180 "view name\n")
7181
7182 DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_send_recv_cmd_vtysh,
7183 "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)",
7184 "Negate a command or set its defaults\n"
7185 "Debugging functions\n"
7186 "OSPF information\n"
7187 "OSPF packets\n"
7188 "OSPF Hello\n"
7189 "OSPF Database Description\n"
7190 "OSPF Link State Request\n"
7191 "OSPF Link State Update\n"
7192 "OSPF Link State Acknowledgment\n"
7193 "OSPF all packets\n"
7194 "Packet sent\n"
7195 "Packet received\n"
7196 "Detail Information\n")
7197
7198 DEFSH (VTYSH_BGPD, no_set_community_cmd_vtysh,
7199 "no set community",
7200 "Negate a command or set its defaults\n"
7201 "Set values in destination routing protocol\n"
7202 "BGP community attribute\n")
7203
7204 DEFSH (VTYSH_OSPFD|VTYSH_OSPF6D, ospf6_routemap_no_set_metric_type_cmd_vtysh,
7205 "no set metric-type (type-1|type-2)",
7206 "Negate a command or set its defaults\n"
7207 "Set value\n"
7208 "Type of metric\n"
7209 "OSPF6 external type 1 metric\n"
7210 "OSPF6 external type 2 metric\n")
7211
7212 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_name_seq_cmd_vtysh,
7213 "show ip prefix-list WORD seq <1-4294967295>",
7214 "Show running system information\n"
7215 "IP information\n"
7216 "Build a prefix list\n"
7217 "Name of a prefix list\n"
7218 "sequence number of an entry\n"
7219 "Sequence number\n")
7220
7221 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_in_cmd_vtysh,
7222 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft in",
7223 "Reset functions\n"
7224 "IP information\n"
7225 "BGP information\n"
7226 "Clear peers with the AS number\n"
7227 "Address family\n"
7228 "Address Family modifier\n"
7229 "Address Family modifier\n"
7230 "Soft reconfig\n"
7231 "Soft reconfig inbound update\n")
7232
7233 DEFSH (VTYSH_OSPFD, ospf_rfc1583_flag_cmd_vtysh,
7234 "ospf rfc1583compatibility",
7235 "OSPF specific commands\n"
7236 "Enable the RFC1583Compatibility flag\n")
7237
7238 DEFSH (VTYSH_ZEBRA, no_debug_zebra_packet_cmd_vtysh,
7239 "no debug zebra packet",
7240 "Negate a command or set its defaults\n"
7241 "Debugging functions (see also 'undebug')\n"
7242 "Zebra configuration\n"
7243 "Debug option set for zebra packet\n")
7244
7245 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community4_exact_cmd_vtysh,
7246 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
7247 "Show running system information\n"
7248 "IPv6 information\n"
7249 "BGP information\n"
7250 "Display routes matching the communities\n"
7251 "community number\n"
7252 "Do not send outside local AS (well-known community)\n"
7253 "Do not advertise to any peer (well-known community)\n"
7254 "Do not export to next AS (well-known community)\n"
7255 "community number\n"
7256 "Do not send outside local AS (well-known community)\n"
7257 "Do not advertise to any peer (well-known community)\n"
7258 "Do not export to next AS (well-known community)\n"
7259 "community number\n"
7260 "Do not send outside local AS (well-known community)\n"
7261 "Do not advertise to any peer (well-known community)\n"
7262 "Do not export to next AS (well-known community)\n"
7263 "community number\n"
7264 "Do not send outside local AS (well-known community)\n"
7265 "Do not advertise to any peer (well-known community)\n"
7266 "Do not export to next AS (well-known community)\n"
7267 "Exact match of the communities")
7268
7269 DEFSH (VTYSH_RIPD, ip_rip_authentication_mode_cmd_vtysh,
7270 "ip rip authentication mode (md5|text)",
7271 "IP information\n"
7272 "Routing Information Protocol\n"
7273 "Authentication control\n"
7274 "Authentication mode\n"
7275 "Keyed message digest\n"
7276 "Clear text authentication\n")
7277
7278 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_send_ra_cmd_vtysh,
7279 "no ipv6 nd send-ra",
7280 "Negate a command or set its defaults\n"
7281 "IP information\n"
7282 "Neighbor discovery\n"
7283 "Send Router Advertisement\n")
7284
7285 DEFSH (VTYSH_OSPFD, no_neighbor_pollinterval_cmd_vtysh,
7286 "no neighbor A.B.C.D poll-interval <1-65535>",
7287 "Negate a command or set its defaults\n"
7288 "Specify neighbor router\n"
7289 "Neighbor IP address\n"
7290 "Dead Neighbor Polling interval\n"
7291 "Seconds\n")
7292
7293 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_exact_cmd_vtysh,
7294 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) exact-match",
7295 "Show running system information\n"
7296 "IP information\n"
7297 "BGP information\n"
7298 "Address family\n"
7299 "Address Family modifier\n"
7300 "Address Family modifier\n"
7301 "Display routes matching the communities\n"
7302 "community number\n"
7303 "Do not send outside local AS (well-known community)\n"
7304 "Do not advertise to any peer (well-known community)\n"
7305 "Do not export to next AS (well-known community)\n"
7306 "Exact match of the communities")
7307
7308 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_cmd_vtysh,
7309 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft",
7310 "Reset functions\n"
7311 "IP information\n"
7312 "BGP information\n"
7313 "Clear peers with the AS number\n"
7314 "Address family\n"
7315 "Address Family Modifier\n"
7316 "Address Family Modifier\n"
7317 "Soft reconfig\n")
7318
7319 DEFSH (VTYSH_OSPFD, ospf_abr_type_cmd_vtysh,
7320 "ospf abr-type (cisco|ibm|shortcut|standard)",
7321 "OSPF specific commands\n"
7322 "Set OSPF ABR type\n"
7323 "Alternative ABR, cisco implementation\n"
7324 "Alternative ABR, IBM implementation\n"
7325 "Shortcut ABR\n"
7326 "Standard behavior (RFC2328)\n")
7327
7328 DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_cmd_vtysh,
7329 "no neighbor (A.B.C.D|X:X::X:X) " "maximum-prefix",
7330 "Negate a command or set its defaults\n"
7331 "Specify neighbor router\n"
7332 "Neighbor address\nIPv6 address\n"
7333 "Maximum number of prefix accept from this peer\n")
7334
7335 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_cmd_vtysh,
7336 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft",
7337 "Reset functions\n"
7338 "BGP information\n"
7339 "Address family\n"
7340 "BGP neighbor address to clear\n"
7341 "BGP IPv6 neighbor to clear\n"
7342 "Soft reconfig\n")
7343
7344 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_type_cmd_vtysh,
7345 "default-information originate always metric <0-16777214> metric-type (1|2)",
7346 "Control distribution of default information\n"
7347 "Distribute a default route\n"
7348 "Always advertise default route\n"
7349 "OSPF default metric\n"
7350 "OSPF metric\n"
7351 "OSPF metric type for default routes\n"
7352 "Set OSPF External Type 1 metrics\n"
7353 "Set OSPF External Type 2 metrics\n")
7354
7355 DEFSH (VTYSH_BGPD, neighbor_strict_capability_cmd_vtysh,
7356 "neighbor (A.B.C.D|X:X::X:X) " "strict-capability-match",
7357 "Specify neighbor router\n"
7358 "Neighbor address\nIPv6 address\n"
7359 "Strict capability negotiation match\n")
7360
7361 DEFSH (VTYSH_BGPD, show_ip_bgp_community3_exact_cmd_vtysh,
7362 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
7363 "Show running system information\n"
7364 "IP information\n"
7365 "BGP information\n"
7366 "Display routes matching the communities\n"
7367 "community number\n"
7368 "Do not send outside local AS (well-known community)\n"
7369 "Do not advertise to any peer (well-known community)\n"
7370 "Do not export to next AS (well-known community)\n"
7371 "community number\n"
7372 "Do not send outside local AS (well-known community)\n"
7373 "Do not advertise to any peer (well-known community)\n"
7374 "Do not export to next AS (well-known community)\n"
7375 "community number\n"
7376 "Do not send outside local AS (well-known community)\n"
7377 "Do not advertise to any peer (well-known community)\n"
7378 "Do not export to next AS (well-known community)\n"
7379 "Exact match of the communities")
7380
7381 DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_cmd_vtysh,
7382 "clear bgp view WORD * soft",
7383 "Reset functions\n"
7384 "BGP information\n"
7385 "BGP view\n"
7386 "view name\n"
7387 "Clear all peers\n"
7388 "Soft reconfig\n")
7389
7390 DEFSH (VTYSH_BGPD, clear_bgp_peer_in_cmd_vtysh,
7391 "clear bgp (A.B.C.D|X:X::X:X) in",
7392 "Reset functions\n"
7393 "BGP information\n"
7394 "BGP neighbor address to clear\n"
7395 "BGP IPv6 neighbor to clear\n"
7396 "Soft reconfig inbound update\n")
7397
7398 DEFSH (VTYSH_BGPD, no_neighbor_version_cmd_vtysh,
7399 "no neighbor (A.B.C.D|X:X::X:X) " "version",
7400 "Negate a command or set its defaults\n"
7401 "Specify neighbor router\n"
7402 "Neighbor address\nIPv6 address\n"
7403 "Neighbor's BGP version\n")
7404
7405 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_cmd_vtysh,
7406 "show ipv6 prefix-list WORD X:X::X:X/M",
7407 "Show running system information\n"
7408 "IPv6 information\n"
7409 "Build a prefix list\n"
7410 "Name of a prefix list\n"
7411 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
7412
7413 DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_advertised_route_cmd_vtysh,
7414 "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
7415 "Show running system information\n"
7416 "IPv6 information\n"
7417 "MBGP information\n"
7418 "Detailed information on TCP and BGP neighbor connections\n"
7419 "Neighbor to display information about\n"
7420 "Neighbor to display information about\n"
7421 "Display the routes advertised to a BGP neighbor\n")
7422
7423 DEFSH (VTYSH_ZEBRA, show_ip_route_addr_cmd_vtysh,
7424 "show ip route A.B.C.D",
7425 "Show running system information\n"
7426 "IP information\n"
7427 "IP routing table\n"
7428 "Network in the IP routing table to display\n")
7429
7430 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_le_cmd_vtysh,
7431 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128>",
7432 "Negate a command or set its defaults\n"
7433 "IPv6 information\n"
7434 "Build a prefix list\n"
7435 "Name of a prefix list\n"
7436 "sequence number of an entry\n"
7437 "Sequence number\n"
7438 "Specify packets to reject\n"
7439 "Specify packets to forward\n"
7440 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
7441 "Maximum prefix length to be matched\n"
7442 "Maximum prefix length\n")
7443
7444 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_list_cmd_vtysh,
7445 "show ipv6 mbgp community-list WORD",
7446 "Show running system information\n"
7447 "IPv6 information\n"
7448 "MBGP information\n"
7449 "Display routes matching the community-list\n"
7450 "community-list name\n")
7451
7452 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community3_cmd_vtysh,
7453 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
7454 "Show running system information\n"
7455 "IP information\n"
7456 "BGP information\n"
7457 "Address family\n"
7458 "Address Family modifier\n"
7459 "Address Family modifier\n"
7460 "Display routes matching the communities\n"
7461 "community number\n"
7462 "Do not send outside local AS (well-known community)\n"
7463 "Do not advertise to any peer (well-known community)\n"
7464 "Do not export to next AS (well-known community)\n"
7465 "community number\n"
7466 "Do not send outside local AS (well-known community)\n"
7467 "Do not advertise to any peer (well-known community)\n"
7468 "Do not export to next AS (well-known community)\n"
7469 "community number\n"
7470 "Do not send outside local AS (well-known community)\n"
7471 "Do not advertise to any peer (well-known community)\n"
7472 "Do not export to next AS (well-known community)\n")
7473
7474 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged7_cmd_vtysh,
7475 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop med as-path",
7476 "Specify neighbor router\n"
7477 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7478 "BGP attribute is propagated unchanged to this neighbor\n"
7479 "Nexthop attribute\n"
7480 "Med attribute\n"
7481 "As-path attribute\n")
7482
7483 DEFSH (VTYSH_BGPD, neighbor_default_originate_rmap_cmd_vtysh,
7484 "neighbor (A.B.C.D|X:X::X:X) " "default-originate route-map WORD",
7485 "Specify neighbor router\n"
7486 "Neighbor address\nIPv6 address\n"
7487 "Originate default route to this neighbor\n"
7488 "Route-map to specify criteria to originate default\n"
7489 "route-map name\n")
7490
7491 DEFSH (VTYSH_OSPFD, ip_ospf_priority_cmd_vtysh,
7492 "ip ospf priority <0-255>",
7493 "IP Information\n"
7494 "OSPF interface commands\n"
7495 "Router priority\n"
7496 "Priority\n")
7497
7498 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_routemap_cmd_vtysh,
7499 "no redistribute connected metric <0-16> route-map WORD",
7500 "Negate a command or set its defaults\n"
7501 "Redistribute information from another routing protocol\n"
7502 "Connected\n"
7503 "Metric\n"
7504 "Metric value\n"
7505 "Route map reference\n"
7506 "Pointer to route-map entries\n")
7507
7508 DEFSH (VTYSH_BGPD, neighbor_allowas_in_cmd_vtysh,
7509 "neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in",
7510 "Specify neighbor router\n"
7511 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7512 "Accept as-path with my AS present in it\n")
7513
7514 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_out_cmd_vtysh,
7515 "clear ip bgp external ipv4 (unicast|multicast) out",
7516 "Reset functions\n"
7517 "IP information\n"
7518 "BGP information\n"
7519 "Clear all external peers\n"
7520 "Address family\n"
7521 "Address Family modifier\n"
7522 "Address Family modifier\n"
7523 "Soft reconfig outbound update\n")
7524
7525 DEFSH (VTYSH_BGPD, bgp_distance_source_access_list_cmd_vtysh,
7526 "distance <1-255> A.B.C.D/M WORD",
7527 "Define an administrative distance\n"
7528 "Administrative distance\n"
7529 "IP source prefix\n"
7530 "Access list name\n")
7531
7532 DEFSH (VTYSH_BGPD, show_ip_bgp_regexp_cmd_vtysh,
7533 "show ip bgp regexp .LINE",
7534 "Show running system information\n"
7535 "IP information\n"
7536 "BGP information\n"
7537 "Display routes matching the AS path regular expression\n"
7538 "A regular-expression to match the BGP AS paths\n")
7539
7540 DEFSH (VTYSH_BGPD, clear_bgp_all_in_cmd_vtysh,
7541 "clear bgp * in",
7542 "Reset functions\n"
7543 "BGP information\n"
7544 "Clear all peers\n"
7545 "Soft reconfig inbound update\n")
7546
7547 DEFSH (VTYSH_OSPF6D, show_debug_ospf6_cmd_vtysh,
7548 "show debugging ospf6",
7549 "Show running system information\n"
7550 "Debugging functions (see also 'undebug')\n"
7551 "Open Shortest Path First (OSPF) for IPv6\n")
7552
7553 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community4_cmd_vtysh,
7554 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
7555 "Show running system information\n"
7556 "IPv6 information\n"
7557 "BGP information\n"
7558 "Display routes matching the communities\n"
7559 "community number\n"
7560 "Do not send outside local AS (well-known community)\n"
7561 "Do not advertise to any peer (well-known community)\n"
7562 "Do not export to next AS (well-known community)\n"
7563 "community number\n"
7564 "Do not send outside local AS (well-known community)\n"
7565 "Do not advertise to any peer (well-known community)\n"
7566 "Do not export to next AS (well-known community)\n"
7567 "community number\n"
7568 "Do not send outside local AS (well-known community)\n"
7569 "Do not advertise to any peer (well-known community)\n"
7570 "Do not export to next AS (well-known community)\n"
7571 "community number\n"
7572 "Do not send outside local AS (well-known community)\n"
7573 "Do not advertise to any peer (well-known community)\n"
7574 "Do not export to next AS (well-known community)\n")
7575
7576 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_summary_cmd_vtysh,
7577 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn summary",
7578 "Show running system information\n"
7579 "IP information\n"
7580 "BGP information\n"
7581 "Display VPNv4 NLRI specific information\n"
7582 "Display information for a route distinguisher\n"
7583 "VPN Route Distinguisher\n"
7584 "Summary of BGP neighbor status\n")
7585
7586 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_in_cmd_vtysh,
7587 "clear ip bgp A.B.C.D in",
7588 "Reset functions\n"
7589 "IP information\n"
7590 "BGP information\n"
7591 "BGP neighbor address to clear\n"
7592 "Soft reconfig inbound update\n")
7593
7594 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged_cmd_vtysh,
7595 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged",
7596 "Specify neighbor router\n"
7597 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7598 "BGP attribute is propagated unchanged to this neighbor\n")
7599
7600 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_out_cmd_vtysh,
7601 "clear bgp ipv6 peer-group WORD out",
7602 "Reset functions\n"
7603 "BGP information\n"
7604 "Address family\n"
7605 "Clear all members of peer-group\n"
7606 "BGP peer-group name\n"
7607 "Soft reconfig outbound update\n")
7608
7609 DEFSH (VTYSH_BGPD, debug_bgp_fsm_cmd_vtysh,
7610 "debug bgp fsm",
7611 "Debugging functions (see also 'undebug')\n"
7612 "BGP information\n"
7613 "BGP Finite State Machine\n")
7614
7615 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_cmd_vtysh,
7616 "no redistribute bgp",
7617 "Negate a command or set its defaults\n"
7618 "Redistribute information from another routing protocol\n"
7619 "Border Gateway Protocol (BGP)\n")
7620
7621 DEFSH (VTYSH_RIPD, rip_timers_cmd_vtysh,
7622 "timers basic <5-2147483647> <5-2147483647> <5-2147483647>",
7623 "Adjust routing timers\n"
7624 "Basic routing protocol update timers\n"
7625 "Routing table update timer value in second. Default is 30.\n"
7626 "Routing information timeout timer. Default is 180.\n"
7627 "Garbage collection timer. Default is 120.\n")
7628
7629 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_ge_le_cmd_vtysh,
7630 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128> le <0-128>",
7631 "IPv6 information\n"
7632 "Build a prefix list\n"
7633 "Name of a prefix list\n"
7634 "sequence number of an entry\n"
7635 "Sequence number\n"
7636 "Specify packets to reject\n"
7637 "Specify packets to forward\n"
7638 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
7639 "Minimum prefix length to be matched\n"
7640 "Minimum prefix length\n"
7641 "Maximum prefix length to be matched\n"
7642 "Maximum prefix length\n")
7643
7644 DEFSH (VTYSH_BGPD, old_ipv6_aggregate_address_cmd_vtysh,
7645 "ipv6 bgp aggregate-address X:X::X:X/M",
7646 "IPv6 information\n"
7647 "BGP information\n"
7648 "Configure BGP aggregate entries\n"
7649 "Aggregate prefix\n")
7650
7651 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_in_cmd_vtysh,
7652 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft in",
7653 "Reset functions\n"
7654 "IP information\n"
7655 "BGP information\n"
7656 "BGP view\n"
7657 "view name\n"
7658 "Clear all peers\n"
7659 "Address family\n"
7660 "Address Family modifier\n"
7661 "Address Family modifier\n"
7662 "Soft reconfig\n"
7663 "Soft reconfig inbound update\n")
7664
7665 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged1_cmd_vtysh,
7666 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged (as-path|next-hop|med)",
7667 "Negate a command or set its defaults\n"
7668 "Specify neighbor router\n"
7669 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7670 "BGP attribute is propagated unchanged to this neighbor\n"
7671 "As-path attribute\n"
7672 "Nexthop attribute\n"
7673 "Med attribute\n")
7674
7675 DEFSH (VTYSH_RIPD|VTYSH_OSPFD, no_match_interface_cmd_vtysh,
7676 "no match interface",
7677 "Negate a command or set its defaults\n"
7678 "Match values from routing table\n"
7679 "Match first hop interface of route\n")
7680
7681 DEFSH (VTYSH_ZEBRA, show_ipv6_route_prefix_longer_cmd_vtysh,
7682 "show ipv6 route X:X::X:X/M longer-prefixes",
7683 "Show running system information\n"
7684 "IP information\n"
7685 "IPv6 routing table\n"
7686 "IPv6 prefix\n"
7687 "Show route matching the specified Network/Mask pair only\n")
7688
7689 DEFSH (VTYSH_OSPFD, ospf_priority_cmd_vtysh,
7690 "ospf priority <0-255>",
7691 "OSPF interface commands\n"
7692 "Router priority\n"
7693 "Priority\n")
7694
7695 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_description_cmd_vtysh,
7696 "ipv6 prefix-list WORD description .LINE",
7697 "IPv6 information\n"
7698 "Build a prefix list\n"
7699 "Name of a prefix list\n"
7700 "Prefix-list specific description\n"
7701 "Up to 80 characters describing this prefix-list\n")
7702
7703 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_all_cmd_vtysh,
7704 "show bgp ipv6 community",
7705 "Show running system information\n"
7706 "BGP information\n"
7707 "Address family\n"
7708 "Display routes matching the communities\n")
7709
7710 DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_all_cmd_vtysh,
7711 "no ip extcommunity-list (standard|expanded) WORD",
7712 "Negate a command or set its defaults\n"
7713 "IP information\n"
7714 "Add a extended community list entry\n"
7715 "Specify standard extcommunity-list\n"
7716 "Specify expanded extcommunity-list\n"
7717 "Extended Community list name\n")
7718
7719 DEFSH (VTYSH_BGPD, no_neighbor_advertise_interval_cmd_vtysh,
7720 "no neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval",
7721 "Negate a command or set its defaults\n"
7722 "Specify neighbor router\n"
7723 "Neighbor address\nIPv6 address\n"
7724 "Minimum interval between sending BGP routing updates\n")
7725
7726 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community3_cmd_vtysh,
7727 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
7728 "Show running system information\n"
7729 "IPv6 information\n"
7730 "MBGP information\n"
7731 "Display routes matching the communities\n"
7732 "community number\n"
7733 "Do not send outside local AS (well-known community)\n"
7734 "Do not advertise to any peer (well-known community)\n"
7735 "Do not export to next AS (well-known community)\n"
7736 "community number\n"
7737 "Do not send outside local AS (well-known community)\n"
7738 "Do not advertise to any peer (well-known community)\n"
7739 "Do not export to next AS (well-known community)\n"
7740 "community number\n"
7741 "Do not send outside local AS (well-known community)\n"
7742 "Do not advertise to any peer (well-known community)\n"
7743 "Do not export to next AS (well-known community)\n")
7744
7745 DEFSH (VTYSH_RIPD, send_lifetime_duration_day_month_cmd_vtysh,
7746 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> duration <1-2147483646>",
7747 "Set send lifetime of the key\n"
7748 "Time to start\n"
7749 "Day of th month to start\n"
7750 "Month of the year to start\n"
7751 "Year to start\n"
7752 "Duration of the key\n"
7753 "Duration seconds\n")
7754
7755 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_cmd_vtysh,
7756 "ip prefix-list WORD seq <1-4294967295> (deny|permit) (A.B.C.D/M|any)",
7757 "IP information\n"
7758 "Build a prefix list\n"
7759 "Name of a prefix list\n"
7760 "sequence number of an entry\n"
7761 "Sequence number\n"
7762 "Specify packets to reject\n"
7763 "Specify packets to forward\n"
7764 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
7765 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
7766
7767 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_prefix_cmd_vtysh,
7768 "no ip prefix-list WORD (deny|permit) (A.B.C.D/M|any)",
7769 "Negate a command or set its defaults\n"
7770 "IP information\n"
7771 "Build a prefix list\n"
7772 "Name of a prefix list\n"
7773 "Specify packets to reject\n"
7774 "Specify packets to forward\n"
7775 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
7776 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
7777
7778 DEFSH (VTYSH_BGPD, clear_bgp_as_soft_cmd_vtysh,
7779 "clear bgp <1-65535> soft",
7780 "Reset functions\n"
7781 "BGP information\n"
7782 "Clear peers with the AS number\n"
7783 "Soft reconfig\n")
7784
7785 DEFSH (VTYSH_BGPD, show_bgp_ipv6_cmd_vtysh,
7786 "show bgp ipv6",
7787 "Show running system information\n"
7788 "BGP information\n"
7789 "Address family\n")
7790
7791 DEFSH (VTYSH_BGPD, no_neighbor_ebgp_multihop_ttl_cmd_vtysh,
7792 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop <1-255>",
7793 "Negate a command or set its defaults\n"
7794 "Specify neighbor router\n"
7795 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7796 "Allow EBGP neighbors not on directly connected networks\n"
7797 "maximum hop count\n")
7798
7799 DEFSH (VTYSH_BGPD, bgp_scan_time_cmd_vtysh,
7800 "bgp scan-time <5-60>",
7801 "BGP specific commands\n"
7802 "Configure background scanner interval\n"
7803 "Scanner interval (seconds)\n")
7804
7805 DEFSH (VTYSH_OSPFD, no_ip_ospf_message_digest_key_addr_cmd_vtysh,
7806 "no ip ospf message-digest-key <1-255> A.B.C.D",
7807 "Negate a command or set its defaults\n"
7808 "IP Information\n"
7809 "OSPF interface commands\n"
7810 "Message digest authentication password (key)\n"
7811 "Key ID\n"
7812 "Address of interface")
7813
7814 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_name_cmd_vtysh,
7815 "show ipv6 prefix-list WORD",
7816 "Show running system information\n"
7817 "IPv6 information\n"
7818 "Build a prefix list\n"
7819 "Name of a prefix list\n")
7820
7821 DEFSH (VTYSH_RIPNGD, show_debugging_ripng_cmd_vtysh,
7822 "show debugging ripng",
7823 "Show running system information\n"
7824 "RIPng configuration\n"
7825 "Debugging information\n")
7826
7827 DEFSH (VTYSH_BGPD, ip_community_list_standard2_cmd_vtysh,
7828 "ip community-list <1-99> (deny|permit)",
7829 "IP information\n"
7830 "Add a community list entry\n"
7831 "Community list number (standard)\n"
7832 "Specify community to reject\n"
7833 "Specify community to accept\n")
7834
7835 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ip_access_list_cmd_vtysh,
7836 "show ip access-list",
7837 "Show running system information\n"
7838 "IP information\n"
7839 "List IP access lists\n")
7840
7841 DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_advertised_route_cmd_vtysh,
7842 "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
7843 "Show running system information\n"
7844 "IPv6 information\n"
7845 "BGP information\n"
7846 "Detailed information on TCP and BGP neighbor connections\n"
7847 "Neighbor to display information about\n"
7848 "Neighbor to display information about\n"
7849 "Display the routes advertised to a BGP neighbor\n")
7850
7851 DEFSH (VTYSH_BGPD, no_set_origin_val_cmd_vtysh,
7852 "no set origin (egp|igp|incomplete)",
7853 "Negate a command or set its defaults\n"
7854 "Set values in destination routing protocol\n"
7855 "BGP origin code\n"
7856 "remote EGP\n"
7857 "local IGP\n"
7858 "unknown heritage\n")
7859
7860 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_route_cmd_vtysh,
7861 "show ipv6 ospf6 area A.B.C.D route",
7862 "Show running system information\n"
7863 "IPv6 Information\n"
7864 "Open Shortest Path First (OSPF) for IPv6\n"
7865 "Area information\n"
7866 "Area ID (as an IPv4 notation)\n"
7867 "Routing Table\n"
7868 )
7869
7870 DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_routes_cmd_vtysh,
7871 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) routes",
7872 "Show running system information\n"
7873 "BGP information\n"
7874 "Address family\n"
7875 "Detailed information on TCP and BGP neighbor connections\n"
7876 "Neighbor to display information about\n"
7877 "Neighbor to display information about\n"
7878 "Display routes learned from neighbor\n")
7879
7880 DEFSH (VTYSH_OSPFD, debug_ospf_lsa_cmd_vtysh,
7881 "debug ospf lsa",
7882 "Debugging functions (see also 'undebug')\n"
7883 "OSPF information\n"
7884 "OSPF Link State Advertisement\n")
7885
7886 DEFSH (VTYSH_BGPD, no_neighbor_dont_capability_negotiate_cmd_vtysh,
7887 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "dont-capability-negotiate",
7888 "Negate a command or set its defaults\n"
7889 "Specify neighbor router\n"
7890 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7891 "Do not perform capability negotiation\n")
7892
7893 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_cmd_vtysh,
7894 "clear ip bgp view WORD * soft",
7895 "Reset functions\n"
7896 "IP information\n"
7897 "BGP information\n"
7898 "BGP view\n"
7899 "view name\n"
7900 "Clear all peers\n"
7901 "Soft reconfig\n")
7902
7903 DEFSH (VTYSH_OSPFD, ip_ospf_dead_interval_cmd_vtysh,
7904 "ip ospf dead-interval <1-65535>",
7905 "IP Information\n"
7906 "OSPF interface commands\n"
7907 "Interval after which a neighbor is declared dead\n"
7908 "Seconds\n")
7909
7910 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_cmd_vtysh,
7911 "distance ospf inter-area <1-255>",
7912 "Define an administrative distance\n"
7913 "OSPF Administrative distance\n"
7914 "Inter-area routes\n"
7915 "Distance for inter-area routes\n")
7916
7917 DEFSH (VTYSH_OSPFD, no_ip_ospf_message_digest_key_cmd_vtysh,
7918 "no ip ospf message-digest-key <1-255>",
7919 "Negate a command or set its defaults\n"
7920 "IP Information\n"
7921 "OSPF interface commands\n"
7922 "Message digest authentication password (key)\n"
7923 "Key ID\n")
7924
7925 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_cmd_vtysh,
7926 "clear ip bgp peer-group WORD soft",
7927 "Reset functions\n"
7928 "IP information\n"
7929 "BGP information\n"
7930 "Clear all members of peer-group\n"
7931 "BGP peer-group name\n"
7932 "Soft reconfig\n")
7933
7934 DEFSH (VTYSH_OSPF6D, show_ipv6_route_ospf6_external_prefix_cmd_vtysh,
7935 "show ipv6 ospf6 route redistribute X::X",
7936 "Show running system information\n"
7937 "IPv6 Information\n"
7938 "Routing Table\n"
7939 "Open Shortest Path First (OSPF) for IPv6\n"
7940 "redistributing External information\n"
7941 "match IPv6 prefix\n"
7942 )
7943
7944 DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_metric_cmd_vtysh,
7945 "redistribute ospf6 metric <0-16>",
7946 "Redistribute information from another routing protocol\n"
7947 "IPv6 Open Shortest Path First (OSPFv3)\n"
7948 "Metric\n"
7949 "Metric value\n")
7950
7951 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_cmd_vtysh,
7952 "clear ip bgp <1-65535> soft",
7953 "Reset functions\n"
7954 "IP information\n"
7955 "BGP information\n"
7956 "Clear peers with the AS number\n"
7957 "Soft reconfig\n")
7958
7959 DEFSH (VTYSH_ZEBRA, config_table_cmd_vtysh,
7960 "table TABLENO",
7961 "Configure target kernel routing table\n"
7962 "TABLE integer\n")
7963
7964 DEFSH (VTYSH_OSPFD, no_debug_ospf_zebra_sub_cmd_vtysh,
7965 "no debug ospf zebra (interface|redistribute)",
7966 "Negate a command or set its defaults\n"
7967 "Debugging functions (see also 'undebug')\n"
7968 "OSPF information\n"
7969 "OSPF Zebra information\n"
7970 "Zebra interface\n"
7971 "Zebra redistribute\n")
7972
7973 DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_cmd_vtysh,
7974 "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" "|max-age|self-originate)",
7975 "Show running system information\n"
7976 "IP information\n"
7977 "OSPF information\n"
7978 "Database summary\n"
7979 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" ""
7980 "LSAs in MaxAge list\n"
7981 "Self-originated link states\n")
7982
7983 DEFSH (VTYSH_BGPD, neighbor_prefix_list_cmd_vtysh,
7984 "neighbor (A.B.C.D|X:X::X:X|WORD) " "prefix-list WORD (in|out)",
7985 "Specify neighbor router\n"
7986 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7987 "Filter updates to/from this neighbor\n"
7988 "Name of a prefix list\n"
7989 "Filter incoming updates\n"
7990 "Filter outgoing updates\n")
7991
7992 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_cmd_vtysh,
7993 "no ip prefix-list WORD",
7994 "Negate a command or set its defaults\n"
7995 "IP information\n"
7996 "Build a prefix list\n"
7997 "Name of a prefix list\n")
7998
7999 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_nomask_cmd_vtysh,
8000 "access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D",
8001 "Add an access list entry\n"
8002 "IP standard access list\n"
8003 "IP standard access list (expanded range)\n"
8004 "Specify packets to reject\n"
8005 "Specify packets to forward\n"
8006 "Address to match\n")
8007
8008 DEFSH (VTYSH_BGPD, neighbor_default_originate_cmd_vtysh,
8009 "neighbor (A.B.C.D|X:X::X:X) " "default-originate",
8010 "Specify neighbor router\n"
8011 "Neighbor address\nIPv6 address\n"
8012 "Originate default route to this neighbor\n")
8013
8014 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_cmd_vtysh,
8015 "default-information originate always metric <0-16777214>",
8016 "Control distribution of default information\n"
8017 "Distribute a default route\n"
8018 "Always advertise default route\n"
8019 "OSPF default metric\n"
8020 "OSPF metric\n"
8021 "OSPF metric type for default routes\n")
8022
8023 DEFSH (VTYSH_RIPD, no_rip_route_cmd_vtysh,
8024 "no route A.B.C.D/M",
8025 "Negate a command or set its defaults\n"
8026 "RIP static route configuration\n"
8027 "IP prefix <network>/<length>\n")
8028
8029 DEFSH (VTYSH_RIPD, rip_default_metric_cmd_vtysh,
8030 "default-metric <1-16>",
8031 "Set a metric of redistribute routes\n"
8032 "Default metric\n")
8033
8034 DEFSH (VTYSH_OSPFD, no_ip_ospf_dead_interval_addr_cmd_vtysh,
8035 "no ip ospf dead-interval A.B.C.D",
8036 "Negate a command or set its defaults\n"
8037 "IP Information\n"
8038 "OSPF interface commands\n"
8039 "Interval after which a neighbor is declared dead\n"
8040 "Address of interface")
8041
8042 DEFSH (VTYSH_RIPNGD, show_ipv6_ripng_cmd_vtysh,
8043 "show ipv6 ripng",
8044 "Show running system information\n"
8045 "IP information\n"
8046 "Show RIPng routes\n")
8047
8048 DEFSH (VTYSH_OSPFD, ospf_compatible_rfc1583_cmd_vtysh,
8049 "compatible rfc1583",
8050 "OSPF compatibility list\n"
8051 "compatible with RFC 1583\n")
8052
8053 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_routemap_cmd_vtysh,
8054 "no redistribute static route-map WORD",
8055 "Negate a command or set its defaults\n"
8056 "Redistribute information from another routing protocol\n"
8057 "Static routes\n"
8058 "Route map reference\n"
8059 "Pointer to route-map entries\n")
8060
8061 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged1_cmd_vtysh,
8062 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged (as-path|next-hop|med)",
8063 "Specify neighbor router\n"
8064 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8065 "BGP attribute is propagated unchanged to this neighbor\n"
8066 "As-path attribute\n"
8067 "Nexthop attribute\n"
8068 "Med attribute\n")
8069
8070 DEFSH (VTYSH_BGPD, dump_bgp_routes_interval_cmd_vtysh,
8071 "dump bgp routes-mrt PATH INTERVAL",
8072 "Dump packet\n"
8073 "BGP packet dump\n"
8074 "Dump whole BGP routing table\n"
8075 "Output filename\n"
8076 "Interval of output\n")
8077
8078 DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_routemap_cmd_vtysh,
8079 "redistribute kernel route-map WORD",
8080 "Redistribute information from another routing protocol\n"
8081 "Kernel routes\n"
8082 "Route map reference\n"
8083 "Pointer to route-map entries\n")
8084
8085 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community4_exact_cmd_vtysh,
8086 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
8087 "Show running system information\n"
8088 "IPv6 information\n"
8089 "MBGP information\n"
8090 "Display routes matching the communities\n"
8091 "community number\n"
8092 "Do not send outside local AS (well-known community)\n"
8093 "Do not advertise to any peer (well-known community)\n"
8094 "Do not export to next AS (well-known community)\n"
8095 "community number\n"
8096 "Do not send outside local AS (well-known community)\n"
8097 "Do not advertise to any peer (well-known community)\n"
8098 "Do not export to next AS (well-known community)\n"
8099 "community number\n"
8100 "Do not send outside local AS (well-known community)\n"
8101 "Do not advertise to any peer (well-known community)\n"
8102 "Do not export to next AS (well-known community)\n"
8103 "community number\n"
8104 "Do not send outside local AS (well-known community)\n"
8105 "Do not advertise to any peer (well-known community)\n"
8106 "Do not export to next AS (well-known community)\n"
8107 "Exact match of the communities")
8108
8109 DEFSH (VTYSH_BGPD, clear_bgp_as_soft_out_cmd_vtysh,
8110 "clear bgp <1-65535> soft out",
8111 "Reset functions\n"
8112 "BGP information\n"
8113 "Clear peers with the AS number\n"
8114 "Soft reconfig\n"
8115 "Soft reconfig outbound update\n")
8116
8117 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh,
8118 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors",
8119 "Show running system information\n"
8120 "IP information\n"
8121 "BGP information\n"
8122 "Display VPNv4 NLRI specific information\n"
8123 "Display information for a route distinguisher\n"
8124 "VPN Route Distinguisher\n"
8125 "Detailed information on TCP and BGP neighbor connections\n")
8126
8127 DEFSH (VTYSH_OSPFD, interface_ip_ospf_authentication_args_cmd_vtysh,
8128 "ip ospf authentication (null|message-digest)",
8129 "IP Information\n"
8130 "OSPF interface commands\n"
8131 "Enable authentication on this interface\n"
8132 "Use null authentication\n"
8133 "Use message-digest authentication\n")
8134
8135 DEFSH (VTYSH_RIPNGD, no_ripng_timers_cmd_vtysh,
8136 "no timers basic",
8137 "Negate a command or set its defaults\n"
8138 "RIPng timers setup\n"
8139 "Basic timer\n")
8140
8141 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_cmd_vtysh,
8142 "show ip prefix-list",
8143 "Show running system information\n"
8144 "IP information\n"
8145 "Build a prefix list\n")
8146
8147 DEFSH (VTYSH_BGPD, no_match_community_val_cmd_vtysh,
8148 "no match community (<1-99>|<100-199>|WORD)",
8149 "Negate a command or set its defaults\n"
8150 "Match values from routing table\n"
8151 "Match BGP community list\n"
8152 "Community-list number (standard)\n"
8153 "Community-list number (expanded)\n"
8154 "Community-list name\n")
8155
8156 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_set_ip_nexthop_val_cmd_vtysh,
8157 "no set ip next-hop A.B.C.D",
8158 "Negate a command or set its defaults\n"
8159 "Set values in destination routing protocol\n"
8160 "IP information\n"
8161 "Next hop address\n"
8162 "IP address of next hop\n")
8163
8164 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_sequence_number_cmd_vtysh,
8165 "no ip prefix-list sequence-number",
8166 "Negate a command or set its defaults\n"
8167 "IP information\n"
8168 "Build a prefix list\n"
8169 "Include/exclude sequence numbers in NVGEN\n")
8170
8171 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_in_cmd_vtysh,
8172 "clear bgp ipv6 <1-65535> in",
8173 "Reset functions\n"
8174 "BGP information\n"
8175 "Address family\n"
8176 "Clear peers with the AS number\n"
8177 "Soft reconfig inbound update\n")
8178
8179 DEFSH (VTYSH_RIPD, no_ip_rip_receive_version_cmd_vtysh,
8180 "no ip rip receive version",
8181 "Negate a command or set its defaults\n"
8182 "IP information\n"
8183 "Routing Information Protocol\n"
8184 "Advertisement reception\n"
8185 "Version control\n")
8186
8187 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_cmd_vtysh,
8188 "default-information originate always",
8189 "Control distribution of default information\n"
8190 "Distribute a default route\n"
8191 "Always advertise default route\n")
8192
8193 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_in_cmd_vtysh,
8194 "clear ip bgp * vpnv4 unicast in",
8195 "Reset functions\n"
8196 "IP information\n"
8197 "BGP information\n"
8198 "Clear all peers\n"
8199 "Address family\n"
8200 "Address Family Modifier\n"
8201 "Soft reconfig inbound update\n")
8202
8203 DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_advertise_force_prefix_cmd_vtysh,
8204 "no ipv6 ospf6 advertise force-prefix",
8205 "Negate a command or set its defaults\n"
8206 "IPv6 Information\n"
8207 "Open Shortest Path First (OSPF) for IPv6\n"
8208 "Advertising options\n"
8209 "Force to advertise prefix, applicable if Loopback or P-to-P\n"
8210 )
8211
8212 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh,
8213 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) received-routes",
8214 "Show running system information\n"
8215 "IP information\n"
8216 "BGP information\n"
8217 "Address family\n"
8218 "Address Family modifier\n"
8219 "Address Family modifier\n"
8220 "Detailed information on TCP and BGP neighbor connections\n"
8221 "Neighbor to display information about\n"
8222 "Neighbor to display information about\n"
8223 "Display the received routes from neighbor\n")
8224
8225 DEFSH (VTYSH_BGPD, no_debug_bgp_normal_cmd_vtysh,
8226 "no debug bgp",
8227 "Negate a command or set its defaults\n"
8228 "Debugging functions (see also 'undebug')\n"
8229 "BGP information\n")
8230
8231 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_out_cmd_vtysh,
8232 "clear ip bgp A.B.C.D vpnv4 unicast out",
8233 "Reset functions\n"
8234 "IP information\n"
8235 "BGP information\n"
8236 "BGP neighbor address to clear\n"
8237 "Address family\n"
8238 "Address Family Modifier\n"
8239 "Soft reconfig outbound update\n")
8240
8241 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_routemap_cmd_vtysh,
8242 "default-information originate always metric <0-16777214> route-map WORD",
8243 "Control distribution of default information\n"
8244 "Distribute a default route\n"
8245 "Always advertise default route\n"
8246 "OSPF default metric\n"
8247 "OSPF metric\n"
8248 "Route map reference\n"
8249 "Pointer to route-map entries\n")
8250
8251 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_cmd_vtysh,
8252 "default-information originate metric <0-16777214>",
8253 "Control distribution of default information\n"
8254 "Distribute a default route\n"
8255 "OSPF default metric\n"
8256 "OSPF metric\n")
8257
8258 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_summary_cmd_vtysh,
8259 "show ipv6 mbgp summary",
8260 "Show running system information\n"
8261 "IPv6 information\n"
8262 "MBGP information\n"
8263 "Summary of BGP neighbor status\n")
8264
8265 DEFSH (VTYSH_OSPFD, no_refresh_timer_val_cmd_vtysh,
8266 "no refresh timer <10-1800>",
8267 "Adjust refresh parameters\n"
8268 "Unset refresh timer\n"
8269 "Timer value in seconds\n")
8270
8271 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_cmd_vtysh,
8272 "no access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D A.B.C.D",
8273 "Negate a command or set its defaults\n"
8274 "Add an access list entry\n"
8275 "IP standard access list\n"
8276 "IP standard access list (expanded range)\n"
8277 "Specify packets to reject\n"
8278 "Specify packets to forward\n"
8279 "Address to match\n"
8280 "Wildcard bits\n")
8281
8282 DEFSH (VTYSH_ZEBRA, shutdown_if_cmd_vtysh,
8283 "shutdown",
8284 "Shutdown the selected interface\n")
8285
8286 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_metric_rmap_cmd_vtysh,
8287 "no redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295> route-map WORD",
8288 "Negate a command or set its defaults\n"
8289 "Redistribute information from another routing protocol\n"
8290 "Connected\n"
8291 "Kernel routes\n"
8292 "Open Shurtest Path First (OSPFv3)\n"
8293 "Routing Information Protocol (RIPng)\n"
8294 "Static routes\n"
8295 "Metric for redistributed routes\n"
8296 "Default metric\n"
8297 "Route map reference\n"
8298 "Pointer to route-map entries\n")
8299
8300 DEFSH (VTYSH_BGPD, no_neighbor_route_reflector_client_cmd_vtysh,
8301 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-reflector-client",
8302 "Negate a command or set its defaults\n"
8303 "Specify neighbor router\n"
8304 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8305 "Configure a neighbor as Route Reflector client\n")
8306
8307 DEFSH (VTYSH_RIPD, no_rip_distance_source_cmd_vtysh,
8308 "no distance <1-255> A.B.C.D/M",
8309 "Negate a command or set its defaults\n"
8310 "Administrative distance\n"
8311 "Distance value\n"
8312 "IP source prefix\n")
8313
8314 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_out_cmd_vtysh,
8315 "clear ip bgp view WORD * soft out",
8316 "Reset functions\n"
8317 "IP information\n"
8318 "BGP information\n"
8319 "BGP view\n"
8320 "view name\n"
8321 "Clear all peers\n"
8322 "Soft reconfig\n"
8323 "Soft reconfig outbound update\n")
8324
8325 DEFSH (VTYSH_OSPFD, no_debug_ospf_event_cmd_vtysh,
8326 "no debug ospf event",
8327 "Negate a command or set its defaults\n"
8328 "Debugging functions (see also 'undebug')\n"
8329 "OSPF information\n"
8330 "OSPF event information\n")
8331
8332 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_cmd_vtysh,
8333 "clear ip bgp (A.B.C.D|X:X::X:X)",
8334 "Reset functions\n"
8335 "IP information\n"
8336 "BGP information\n"
8337 "BGP neighbor IP address to clear\n"
8338 "BGP IPv6 neighbor to clear\n")
8339
8340 DEFSH (VTYSH_BGPD, show_ip_bgp_dampened_paths_cmd_vtysh,
8341 "show ip bgp dampened-paths",
8342 "Show running system information\n"
8343 "IP information\n"
8344 "BGP information\n"
8345 "Display paths suppressed due to dampening\n")
8346
8347 DEFSH (VTYSH_BGPD, no_debug_bgp_filter_cmd_vtysh,
8348 "no debug bgp filters",
8349 "Negate a command or set its defaults\n"
8350 "Debugging functions (see also 'undebug')\n"
8351 "BGP information\n"
8352 "BGP filters\n")
8353
8354 DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_cmd_vtysh,
8355 "clear ip prefix-list",
8356 "Reset functions\n"
8357 "IP information\n"
8358 "Build a prefix list\n")
8359
8360 DEFSH (VTYSH_BGPD, no_aggregate_address_summary_as_set_cmd_vtysh,
8361 "no aggregate-address A.B.C.D/M summary-only as-set",
8362 "Negate a command or set its defaults\n"
8363 "Configure BGP aggregate entries\n"
8364 "Aggregate prefix\n"
8365 "Filter more specific routes from updates\n"
8366 "Generate AS set path information\n")
8367
8368 DEFSH (VTYSH_RIPD, debug_rip_events_cmd_vtysh,
8369 "debug rip events",
8370 "Debugging functions (see also 'undebug')\n"
8371 "RIP information\n"
8372 "RIP events\n")
8373
8374 DEFSH (VTYSH_OSPFD, no_ospf_distribute_list_out_cmd_vtysh,
8375 "no distribute-list WORD out (kernel|connected|static|rip|bgp)",
8376 "Negate a command or set its defaults\n"
8377 "Filter networks in routing updates\n"
8378 "Access-list name\n"
8379 "Filter outgoing routing updates\n"
8380 "Kernel routes\n"
8381 "Connected\n"
8382 "Static routes\n"
8383 "Routing Information Protocol (RIP)\n"
8384 "Border Gateway Protocol (BGP)\n")
8385
8386 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_prefix_cmd_vtysh,
8387 "no ipv6 prefix-list WORD (deny|permit) (X:X::X:X/M|any)",
8388 "Negate a command or set its defaults\n"
8389 "IPv6 information\n"
8390 "Build a prefix list\n"
8391 "Name of a prefix list\n"
8392 "Specify packets to reject\n"
8393 "Specify packets to forward\n"
8394 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
8395 "Any prefix match. Same as \"::0/0 le 128\"\n")
8396
8397 DEFSH (VTYSH_BGPD, no_set_ecommunity_rt_cmd_vtysh,
8398 "no set extcommunity rt",
8399 "Negate a command or set its defaults\n"
8400 "Set values in destination routing protocol\n"
8401 "BGP extended community attribute\n"
8402 "Route Target extened communityt\n")
8403
8404 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged10_cmd_vtysh,
8405 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med as-path next-hop",
8406 "Negate a command or set its defaults\n"
8407 "Specify neighbor router\n"
8408 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8409 "BGP attribute is propagated unchanged to this neighbor\n"
8410 "Med attribute\n"
8411 "As-path attribute\n"
8412 "Nexthop attribute\n")
8413
8414 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_cmd_vtysh,
8415 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft",
8416 "Reset functions\n"
8417 "IP information\n"
8418 "BGP information\n"
8419 "Clear all members of peer-group\n"
8420 "BGP peer-group name\n"
8421 "Address family\n"
8422 "Address Family modifier\n"
8423 "Address Family modifier\n"
8424 "Soft reconfig\n")
8425
8426 DEFSH (VTYSH_BGPD, undebug_bgp_normal_cmd_vtysh,
8427 "undebug bgp",
8428 "Disable debugging functions (see also 'debug')\n"
8429 "BGP information\n")
8430
8431 DEFSH (VTYSH_OSPFD, no_ip_ospf_retransmit_interval_addr_cmd_vtysh,
8432 "no ip ospf retransmit-interval A.B.C.D",
8433 "Negate a command or set its defaults\n"
8434 "IP Information\n"
8435 "OSPF interface commands\n"
8436 "Time between retransmitting lost link state advertisements\n"
8437 "Address of interface")
8438
8439 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_routemap_cmd_vtysh,
8440 "no redistribute bgp route-map WORD",
8441 "Negate a command or set its defaults\n"
8442 "Redistribute information from another routing protocol\n"
8443 "Border Gateway Protocol (BGP)\n"
8444 "Route map reference\n"
8445 "Pointer to route-map entries\n")
8446
8447 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_in_prefix_filter_cmd_vtysh,
8448 "clear ip bgp * in prefix-filter",
8449 "Reset functions\n"
8450 "IP information\n"
8451 "BGP information\n"
8452 "Clear all peers\n"
8453 "Soft reconfig inbound update\n"
8454 "Push out prefix-list ORF and do inbound soft reconfig\n")
8455
8456 DEFSH (VTYSH_BGPD, neighbor_transparent_as_cmd_vtysh,
8457 "neighbor (A.B.C.D|X:X::X:X) " "transparent-as",
8458 "Specify neighbor router\n"
8459 "Neighbor address\nIPv6 address\n"
8460 "Do not append my AS number even peer is EBGP peer\n")
8461
8462 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_remark_cmd_vtysh,
8463 "no ipv6 access-list WORD remark",
8464 "Negate a command or set its defaults\n"
8465 "IPv6 information\n"
8466 "Add an access list entry\n"
8467 "IPv6 zebra access-list\n"
8468 "Access list entry comment\n")
8469
8470 DEFSH (VTYSH_BGPD, no_match_community_exact_cmd_vtysh,
8471 "no match community (<1-99>|<100-199>|WORD) exact-match",
8472 "Negate a command or set its defaults\n"
8473 "Match values from routing table\n"
8474 "Match BGP community list\n"
8475 "Community-list number (standard)\n"
8476 "Community-list number (expanded)\n"
8477 "Community-list name\n"
8478 "Do exact matching of communities\n")
8479
8480 DEFSH (VTYSH_OSPFD, no_area_vlink_param3_cmd_vtysh,
8481 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
8482 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
8483 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
8484 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
8485 "Negate a command or set its defaults\n"
8486 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
8487 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
8488 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
8489 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
8490
8491 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_in_prefix_filter_cmd_vtysh,
8492 "clear ip bgp <1-65535> ipv4 (unicast|multicast) in prefix-filter",
8493 "Reset functions\n"
8494 "IP information\n"
8495 "BGP information\n"
8496 "Clear peers with the AS number\n"
8497 "Address family\n"
8498 "Address Family modifier\n"
8499 "Address Family modifier\n"
8500 "Soft reconfig inbound update\n"
8501 "Push out prefix-list ORF and do inbound soft reconfig\n")
8502
8503 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_out_cmd_vtysh,
8504 "clear bgp ipv6 external WORD out",
8505 "Reset functions\n"
8506 "BGP information\n"
8507 "Address family\n"
8508 "Clear all external peers\n"
8509 "Soft reconfig outbound update\n")
8510
8511 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_intra_cmd_vtysh,
8512 "distance ospf inter-area <1-255> intra-area <1-255>",
8513 "Define an administrative distance\n"
8514 "OSPF Administrative distance\n"
8515 "Inter-area routes\n"
8516 "Distance for inter-area routes\n"
8517 "Intra-area routes\n"
8518 "Distance for intra-area routes\n")
8519
8520 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_out_cmd_vtysh,
8521 "clear ip bgp <1-65535> vpnv4 unicast out",
8522 "Reset functions\n"
8523 "IP information\n"
8524 "BGP information\n"
8525 "Clear peers with the AS number\n"
8526 "Address family\n"
8527 "Address Family modifier\n"
8528 "Soft reconfig outbound update\n")
8529
8530 DEFSH (VTYSH_BGPD, show_bgp_summary_cmd_vtysh,
8531 "show bgp summary",
8532 "Show running system information\n"
8533 "BGP information\n"
8534 "Summary of BGP neighbor status\n")
8535
8536 DEFSH (VTYSH_BGPD, bgp_deterministic_med_cmd_vtysh,
8537 "bgp deterministic-med",
8538 "BGP specific commands\n"
8539 "Pick the best-MED path among paths advertised from the neighboring AS\n")
8540
8541 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_le_ge_cmd_vtysh,
8542 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
8543 "IPv6 information\n"
8544 "Build a prefix list\n"
8545 "Name of a prefix list\n"
8546 "Specify packets to reject\n"
8547 "Specify packets to forward\n"
8548 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
8549 "Maximum prefix length to be matched\n"
8550 "Maximum prefix length\n"
8551 "Minimum prefix length to be matched\n"
8552 "Minimum prefix length\n")
8553
8554 DEFSH (VTYSH_BGPD, undebug_bgp_filter_cmd_vtysh,
8555 "undebug bgp filters",
8556 "Disable debugging functions (see also 'debug')\n"
8557 "BGP information\n"
8558 "BGP filters\n")
8559
8560 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_cmd_vtysh,
8561 "show ipv6 ospf6",
8562 "Show running system information\n"
8563 "IPv6 Information\n"
8564 "Open Shortest Path First (OSPF) for IPv6\n")
8565
8566 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_in_prefix_filter_cmd_vtysh,
8567 "clear bgp ipv6 external in prefix-filter",
8568 "Reset functions\n"
8569 "BGP information\n"
8570 "Address family\n"
8571 "Clear all external peers\n"
8572 "Soft reconfig inbound update\n"
8573 "Push out prefix-list ORF and do inbound soft reconfig\n")
8574
8575 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_spf_node_cmd_vtysh,
8576 "show ipv6 ospf6 area A.B.C.D spf node",
8577 "Show running system information\n"
8578 "IPv6 Information\n"
8579 "Open Shortest Path First (OSPF) for IPv6\n"
8580 "Area information\n"
8581 "Area ID (as an IPv4 notation)\n"
8582 "Shortest Path First caculation\n"
8583 "vertex infomation\n"
8584 )
8585
8586 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_cmd_vtysh,
8587 "redistribute (connected|kernel|ospf|rip|static)",
8588 "Redistribute information from another routing protocol\n"
8589 "Connected\n"
8590 "Kernel routes\n"
8591 "Open Shurtest Path First (OSPF)\n"
8592 "Routing Information Protocol (RIP)\n"
8593 "Static routes\n")
8594
8595 DEFSH (VTYSH_BGPD, neighbor_filter_list_cmd_vtysh,
8596 "neighbor (A.B.C.D|X:X::X:X|WORD) " "filter-list WORD (in|out)",
8597 "Specify neighbor router\n"
8598 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8599 "Establish BGP filters\n"
8600 "AS path access-list name\n"
8601 "Filter incoming routes\n"
8602 "Filter outgoing routes\n")
8603
8604 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged10_cmd_vtysh,
8605 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med as-path next-hop",
8606 "Specify neighbor router\n"
8607 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8608 "BGP attribute is propagated unchanged to this neighbor\n"
8609 "Med attribute\n"
8610 "As-path attribute\n"
8611 "Nexthop attribute\n")
8612
8613 DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_name_cmd_vtysh,
8614 "clear ip prefix-list WORD",
8615 "Reset functions\n"
8616 "IP information\n"
8617 "Build a prefix list\n"
8618 "Name of a prefix list\n")
8619
8620 DEFSH (VTYSH_ZEBRA, show_ip_route_cmd_vtysh,
8621 "show ip route",
8622 "Show running system information\n"
8623 "IP information\n"
8624 "IP routing table\n")
8625
8626 DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_cmd_vtysh,
8627 "redistribute connected",
8628 "Redistribute information from another routing protocol\n"
8629 "Connected\n")
8630
8631 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_cmd_vtysh,
8632 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export)",
8633 "Show running system information\n"
8634 "IPv6 information\n"
8635 "MBGP information\n"
8636 "Display routes matching the communities\n"
8637 "community number\n"
8638 "Do not send outside local AS (well-known community)\n"
8639 "Do not advertise to any peer (well-known community)\n"
8640 "Do not export to next AS (well-known community)\n")
8641
8642 DEFSH (VTYSH_BGPD, ip_community_list_cmd_vtysh,
8643 "ip community-list WORD (deny|permit) .AA:NN",
8644 "IP information\n"
8645 "Add a community list entry\n"
8646 "Community list name\n"
8647 "Specify community to reject\n"
8648 "Specify community to accept\n"
8649 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
8650
8651 DEFSH (VTYSH_BGPD, clear_bgp_peer_in_prefix_filter_cmd_vtysh,
8652 "clear bgp (A.B.C.D|X:X::X:X) in prefix-filter",
8653 "Reset functions\n"
8654 "BGP information\n"
8655 "BGP neighbor address to clear\n"
8656 "BGP IPv6 neighbor to clear\n"
8657 "Soft reconfig inbound update\n"
8658 "Push out the existing ORF prefix-list\n")
8659
8660 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_external_cmd_vtysh,
8661 "distance ospf intra-area <1-255> external <1-255>",
8662 "Define an administrative distance\n"
8663 "OSPF Administrative distance\n"
8664 "Intra-area routes\n"
8665 "Distance for intra-area routes\n"
8666 "External routes\n"
8667 "Distance for external routes\n")
8668
8669 DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_received_routes_cmd_vtysh,
8670 "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) received-routes",
8671 "Show running system information\n"
8672 "IPv6 information\n"
8673 "MBGP information\n"
8674 "Detailed information on TCP and BGP neighbor connections\n"
8675 "Neighbor to display information about\n"
8676 "Neighbor to display information about\n"
8677 "Display the received routes from neighbor\n")
8678
8679 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_type_routemap_cmd_vtysh,
8680 "default-information originate always metric <0-16777214> metric-type (1|2) route-map WORD",
8681 "Control distribution of default information\n"
8682 "Distribute a default route\n"
8683 "Always advertise default route\n"
8684 "OSPF default metric\n"
8685 "OSPF metric\n"
8686 "OSPF metric type for default routes\n"
8687 "Set OSPF External Type 1 metrics\n"
8688 "Set OSPF External Type 2 metrics\n"
8689 "Route map reference\n"
8690 "Pointer to route-map entries\n")
8691
8692 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_cmd_vtysh,
8693 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) (A.B.C.D/M|any)",
8694 "Negate a command or set its defaults\n"
8695 "IP information\n"
8696 "Build a prefix list\n"
8697 "Name of a prefix list\n"
8698 "sequence number of an entry\n"
8699 "Sequence number\n"
8700 "Specify packets to reject\n"
8701 "Specify packets to forward\n"
8702 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
8703 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
8704
8705 DEFSH (VTYSH_OSPF6D, interface_area_plist_passive_cmd_vtysh,
8706 "interface IFNAME area A.B.C.D prefix-list WORD passive",
8707 "Enable routing on an IPv6 interface\n"
8708 "Interface name(e.g. ep0)\n"
8709 "Set the OSPF6 area ID\n"
8710 "OSPF6 area ID in IPv4 address notation\n"
8711 "Advertise I/F Address only match entries of prefix-list\n"
8712 "IPv6 prefix-list name\n"
8713 "IPv6 prefix-list name\n"
8714 "Suppress routing updates on an interface\n"
8715 )
8716
8717 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_le_ge_cmd_vtysh,
8718 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
8719 "Negate a command or set its defaults\n"
8720 "IPv6 information\n"
8721 "Build a prefix list\n"
8722 "Name of a prefix list\n"
8723 "sequence number of an entry\n"
8724 "Sequence number\n"
8725 "Specify packets to reject\n"
8726 "Specify packets to forward\n"
8727 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
8728 "Maximum prefix length to be matched\n"
8729 "Maximum prefix length\n"
8730 "Minimum prefix length to be matched\n"
8731 "Minimum prefix length\n")
8732
8733 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_in_prefix_filter_cmd_vtysh,
8734 "clear bgp ipv6 * in prefix-filter",
8735 "Reset functions\n"
8736 "BGP information\n"
8737 "Address family\n"
8738 "Clear all peers\n"
8739 "Soft reconfig inbound update\n"
8740 "Push out prefix-list ORF and do inbound soft reconfig\n")
8741
8742 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh,
8743 "show ip bgp vpnv4 all neighbors",
8744 "Show running system information\n"
8745 "IP information\n"
8746 "BGP information\n"
8747 "Display VPNv4 NLRI specific information\n"
8748 "Display information about all VPNv4 NLRIs\n"
8749 "Detailed information on TCP and BGP neighbor connections\n")
8750
8751 DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbors_cmd_vtysh,
8752 "show bgp ipv6 neighbors",
8753 "Show running system information\n"
8754 "BGP information\n"
8755 "Address family\n"
8756 "Detailed information on TCP and BGP neighbor connections\n")
8757
8758 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_routemap_cmd_vtysh,
8759 "no redistribute kernel metric <0-16> route-map WORD",
8760 "Negate a command or set its defaults\n"
8761 "Redistribute information from another routing protocol\n"
8762 "Kernel routes\n"
8763 "Metric\n"
8764 "Metric value\n"
8765 "Route map reference\n"
8766 "Pointer to route-map entries\n")
8767
8768 DEFSH (VTYSH_BGPD, old_no_ipv6_aggregate_address_summary_only_cmd_vtysh,
8769 "no ipv6 bgp aggregate-address X:X::X:X/M summary-only",
8770 "Negate a command or set its defaults\n"
8771 "IPv6 information\n"
8772 "BGP information\n"
8773 "Configure BGP aggregate entries\n"
8774 "Aggregate prefix\n"
8775 "Filter more specific routes from updates\n")
8776
8777 DEFSH (VTYSH_BGPD, show_ipv6_bgp_summary_cmd_vtysh,
8778 "show ipv6 bgp summary",
8779 "Show running system information\n"
8780 "IPv6 information\n"
8781 "BGP information\n"
8782 "Summary of BGP neighbor status\n")
8783
8784 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_in_prefix_filter_cmd_vtysh,
8785 "clear ip bgp view WORD * in prefix-filter",
8786 "Reset functions\n"
8787 "IP information\n"
8788 "BGP information\n"
8789 "BGP view\n"
8790 "view name\n"
8791 "Clear all peers\n"
8792 "Soft reconfig inbound update\n"
8793 "Push out prefix-list ORF and do inbound soft reconfig\n")
8794
8795 DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_standard_cmd_vtysh,
8796 "no ip extcommunity-list <1-99> (deny|permit) .AA:NN",
8797 "Negate a command or set its defaults\n"
8798 "IP information\n"
8799 "Add a extended community list entry\n"
8800 "Extended Community list number (standard)\n"
8801 "Specify community to reject\n"
8802 "Specify community to accept\n"
8803 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
8804
8805 DEFSH (VTYSH_OSPFD, ospf_distribute_list_out_cmd_vtysh,
8806 "distribute-list WORD out (kernel|connected|static|rip|bgp)",
8807 "Filter networks in routing updates\n"
8808 "Access-list name\n"
8809 "Filter outgoing routing updates\n"
8810 "Kernel routes\n"
8811 "Connected\n"
8812 "Static routes\n"
8813 "Routing Information Protocol (RIP)\n"
8814 "Border Gateway Protocol (BGP)\n")
8815
8816 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_remark_arg_cmd_vtysh,
8817 "no ipv6 access-list WORD remark .LINE",
8818 "Negate a command or set its defaults\n"
8819 "IPv6 information\n"
8820 "Add an access list entry\n"
8821 "IPv6 zebra access-list\n"
8822 "Access list entry comment\n"
8823 "Comment up to 100 characters\n")
8824
8825 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_statistics_cmd_vtysh,
8826 "show ip bgp flap-statistics",
8827 "Show running system information\n"
8828 "IP information\n"
8829 "BGP information\n"
8830 "Display flap statistics of routes\n")
8831
8832 DEFSH (VTYSH_ZEBRA, show_ip_route_supernets_cmd_vtysh,
8833 "show ip route supernets-only",
8834 "Show running system information\n"
8835 "IP information\n"
8836 "IP routing table\n"
8837 "Show supernet entries only\n")
8838
8839 DEFSH (VTYSH_BGPD, set_ipv6_nexthop_local_cmd_vtysh,
8840 "set ipv6 next-hop local X:X::X:X",
8841 "Set values in destination routing protocol\n"
8842 "IPv6 information\n"
8843 "IPv6 next-hop address\n"
8844 "IPv6 local address\n"
8845 "IPv6 address of next hop\n")
8846
8847 DEFSH (VTYSH_OSPFD, no_ospf_rfc1583_flag_cmd_vtysh,
8848 "no ospf rfc1583compatibility",
8849 "Negate a command or set its defaults\n"
8850 "OSPF specific commands\n"
8851 "Disable the RFC1583Compatibility flag\n")
8852
8853 DEFSH (VTYSH_BGPD, neighbor_route_map_cmd_vtysh,
8854 "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-map WORD (in|out)",
8855 "Specify neighbor router\n"
8856 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8857 "Apply route map to neighbor\n"
8858 "Name of route map\n"
8859 "Apply map to incoming routes\n"
8860 "Apply map to outbound routes\n")
8861
8862 DEFSH (VTYSH_BGPD, no_debug_bgp_keepalive_cmd_vtysh,
8863 "no debug bgp keepalives",
8864 "Negate a command or set its defaults\n"
8865 "Debugging functions (see also 'undebug')\n"
8866 "BGP information\n"
8867 "BGP keepalives\n")
8868
8869 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community3_exact_cmd_vtysh,
8870 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
8871 "Show running system information\n"
8872 "BGP information\n"
8873 "Address family\n"
8874 "Display routes matching the communities\n"
8875 "community number\n"
8876 "Do not send outside local AS (well-known community)\n"
8877 "Do not advertise to any peer (well-known community)\n"
8878 "Do not export to next AS (well-known community)\n"
8879 "community number\n"
8880 "Do not send outside local AS (well-known community)\n"
8881 "Do not advertise to any peer (well-known community)\n"
8882 "Do not export to next AS (well-known community)\n"
8883 "community number\n"
8884 "Do not send outside local AS (well-known community)\n"
8885 "Do not advertise to any peer (well-known community)\n"
8886 "Do not export to next AS (well-known community)\n"
8887 "Exact match of the communities")
8888
8889 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_router_lsid_cmd_vtysh,
8890 "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>) (A.B.C.D|<0-4294967295>)",
8891 "Show running system information\n"
8892 "IPv6 Information\n"
8893 "Open Shortest Path First (OSPF) for IPv6\n"
8894 "Inter Area topology information\n"
8895 "Specify Router-ID\n"
8896 "Specify Router-ID\n"
8897 "Specify Link State ID\n"
8898 "Specify Link State ID\n"
8899 )
8900
8901 DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_route_map_cmd_vtysh,
8902 "no network A.B.C.D route-map WORD",
8903 "Negate a command or set its defaults\n"
8904 "Specify a network to announce via BGP\n"
8905 "Network number\n"
8906 "Route-map to modify the attributes\n"
8907 "Name of the route map\n")
8908
8909 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_all_cmd_vtysh,
8910 "show ipv6 mbgp community",
8911 "Show running system information\n"
8912 "IPv6 information\n"
8913 "MBGP information\n"
8914 "Display routes matching the communities\n")
8915
8916 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_route_map_cmd_vtysh,
8917 "no route-map WORD (deny|permit) <1-65535>",
8918 "Negate a command or set its defaults\n"
8919 "Create route-map or enter route-map command mode\n"
8920 "Route map tag\n"
8921 "Route map denies set operations\n"
8922 "Route map permits set operations\n"
8923 "Sequence to insert to/delete from existing route-map entry\n")
8924
8925 DEFSH (VTYSH_ZEBRA, ip_address_cmd_vtysh,
8926 "ip address A.B.C.D/M",
8927 "Interface Internet Protocol config commands\n"
8928 "Set the IP address of an interface\n"
8929 "IP address (e.g. 10.0.0.1/8)\n")
8930
8931 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_ge_cmd_vtysh,
8932 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128>",
8933 "Negate a command or set its defaults\n"
8934 "IPv6 information\n"
8935 "Build a prefix list\n"
8936 "Name of a prefix list\n"
8937 "Specify packets to reject\n"
8938 "Specify packets to forward\n"
8939 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
8940 "Minimum prefix length to be matched\n"
8941 "Minimum prefix length\n")
8942
8943 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_sequence_number_cmd_vtysh,
8944 "no ipv6 prefix-list sequence-number",
8945 "Negate a command or set its defaults\n"
8946 "IPv6 information\n"
8947 "Build a prefix list\n"
8948 "Include/exclude sequence numbers in NVGEN\n")
8949
8950 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_cmd_vtysh,
8951 "show ip bgp ipv4 (unicast|multicast)",
8952 "Show running system information\n"
8953 "IP information\n"
8954 "BGP information\n"
8955 "Address family\n"
8956 "Address Family modifier\n"
8957 "Address Family modifier\n")
8958
8959 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_host_cmd_vtysh,
8960 "access-list (<100-199>|<2000-2699>) (deny|permit) ip any host A.B.C.D",
8961 "Add an access list entry\n"
8962 "IP extended access list\n"
8963 "IP extended access list (expanded range)\n"
8964 "Specify packets to reject\n"
8965 "Specify packets to forward\n"
8966 "Any Internet Protocol\n"
8967 "Any source host\n"
8968 "A single destination host\n"
8969 "Destination address\n")
8970
8971 DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_routes_cmd_vtysh,
8972 "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) routes",
8973 "Show running system information\n"
8974 "IPv6 information\n"
8975 "MBGP information\n"
8976 "Detailed information on TCP and BGP neighbor connections\n"
8977 "Neighbor to display information about\n"
8978 "Neighbor to display information about\n"
8979 "Display routes learned from neighbor\n")
8980
8981 DEFSH (VTYSH_OSPFD, area_vlink_param4_cmd_vtysh,
8982 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
8983 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
8984 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
8985 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
8986 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
8987 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
8988 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
8989 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
8990 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
8991 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
8992
8993 DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_expanded_cmd_vtysh,
8994 "no ip extcommunity-list <100-199> (deny|permit) .LINE",
8995 "Negate a command or set its defaults\n"
8996 "IP information\n"
8997 "Add a extended community list entry\n"
8998 "Extended Community list number (expanded)\n"
8999 "Specify community to reject\n"
9000 "Specify community to accept\n"
9001 "An ordered list as a regular-expression\n")
9002
9003 DEFSH (VTYSH_RIPD, no_ip_rip_authentication_key_chain_cmd_vtysh,
9004 "no ip rip authentication key-chain",
9005 "Negate a command or set its defaults\n"
9006 "IP information\n"
9007 "Routing Information Protocol\n"
9008 "Authentication control\n"
9009 "Authentication key-chain\n")
9010
9011 DEFSH (VTYSH_ZEBRA, ip_route_mask_pref_cmd_vtysh,
9012 "ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE) <1-255>",
9013 "IP information\n"
9014 "Establish static routes\n"
9015 "IP destination prefix\n"
9016 "IP destination prefix mask\n"
9017 "IP gateway address\n"
9018 "IP gateway interface name\n"
9019 "Distance value for this route\n")
9020
9021 DEFSH (VTYSH_OSPFD, no_ospf_default_information_originate_cmd_vtysh,
9022 "no default-information originate",
9023 "Negate a command or set its defaults\n"
9024 "Control distribution of default information\n"
9025 "Distribute a default route\n")
9026
9027 DEFSH (VTYSH_BGPD, no_bgp_bestpath_med_cmd_vtysh,
9028 "no bgp bestpath med (confed|missing-as-worst)",
9029 "Negate a command or set its defaults\n"
9030 "BGP specific commands\n"
9031 "Change the default bestpath selection\n"
9032 "MED attribute\n"
9033 "Compare MED among confederation paths\n"
9034 "Treat missing MED as the least preferred one\n")
9035
9036 DEFSH (VTYSH_BGPD, neighbor_unsuppress_map_cmd_vtysh,
9037 "neighbor (A.B.C.D|X:X::X:X|WORD) " "unsuppress-map WORD",
9038 "Specify neighbor router\n"
9039 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9040 "Route-map to selectively unsuppress suppressed routes\n"
9041 "Name of route map\n")
9042
9043 DEFSH (VTYSH_RIPNGD, ripng_route_cmd_vtysh,
9044 "route IPV6ADDR",
9045 "Static route setup\n"
9046 "Set static RIPng route announcement\n")
9047
9048 DEFSH (VTYSH_ZEBRA, ip_route_cmd_vtysh,
9049 "ip route A.B.C.D/M (A.B.C.D|INTERFACE)",
9050 "IP information\n"
9051 "Establish static routes\n"
9052 "IP destination prefix (e.g. 10.0.0.0/8)\n"
9053 "IP gateway address\n"
9054 "IP gateway interface name\n")
9055
9056 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_damp_cmd_vtysh,
9057 "show ip bgp neighbors (A.B.C.D|X:X::X:X) dampened-routes",
9058 "Show running system information\n"
9059 "IP information\n"
9060 "BGP information\n"
9061 "Detailed information on TCP and BGP neighbor connections\n"
9062 "Neighbor to display information about\n"
9063 "Neighbor to display information about\n"
9064 "Display the dampened routes received from neighbor\n")
9065
9066 DEFSH (VTYSH_RIPD, send_lifetime_month_day_day_month_cmd_vtysh,
9067 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
9068 "Set send lifetime of the key\n"
9069 "Time to start\n"
9070 "Month of the year to start\n"
9071 "Day of th month to start\n"
9072 "Year to start\n"
9073 "Time to expire\n"
9074 "Day of th month to expire\n"
9075 "Month of the year to expire\n"
9076 "Year to expire\n")
9077
9078 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_route_map_all_cmd_vtysh,
9079 "no route-map WORD",
9080 "Negate a command or set its defaults\n"
9081 "Create route-map or enter route-map command mode\n"
9082 "Route map tag\n")
9083
9084 DEFSH (VTYSH_RIPD, no_rip_network_cmd_vtysh,
9085 "no network (A.B.C.D/M|WORD)",
9086 "Negate a command or set its defaults\n"
9087 "Enable routing on an IP network\n"
9088 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
9089 "Interface name\n")
9090
9091 DEFSH (VTYSH_BGPD, bgp_network_mask_route_map_cmd_vtysh,
9092 "network A.B.C.D mask A.B.C.D route-map WORD",
9093 "Specify a network to announce via BGP\n"
9094 "Network number\n"
9095 "Network mask\n"
9096 "Network mask\n"
9097 "Route-map to modify the attributes\n"
9098 "Name of the route map\n")
9099
9100 DEFSH (VTYSH_BGPD, set_vpnv4_nexthop_cmd_vtysh,
9101 "set vpnv4 next-hop A.B.C.D",
9102 "Set values in destination routing protocol\n"
9103 "VPNv4 information\n"
9104 "VPNv4 next-hop address\n"
9105 "IP address of next hop\n")
9106
9107 DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_send_recv_detail_cmd_vtysh,
9108 "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)",
9109 "Negate a command or set its defaults\n"
9110 "Debugging functions\n"
9111 "OSPF information\n"
9112 "OSPF packets\n"
9113 "OSPF Hello\n"
9114 "OSPF Database Description\n"
9115 "OSPF Link State Request\n"
9116 "OSPF Link State Update\n"
9117 "OSPF Link State Acknowledgment\n"
9118 "OSPF all packets\n"
9119 "Packet sent\n"
9120 "Packet received\n"
9121 "Detail Information\n")
9122
9123 DEFSH (VTYSH_RIPD, no_rip_default_metric_cmd_vtysh,
9124 "no default-metric",
9125 "Negate a command or set its defaults\n"
9126 "Set a metric of redistribute routes\n"
9127 "Default metric\n")
9128
9129 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_out_cmd_vtysh,
9130 "clear ip bgp peer-group WORD soft out",
9131 "Reset functions\n"
9132 "IP information\n"
9133 "BGP information\n"
9134 "Clear all members of peer-group\n"
9135 "BGP peer-group name\n"
9136 "Soft reconfig\n"
9137 "Soft reconfig outbound update\n")
9138
9139 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_route_cmd_vtysh,
9140 "show ipv6 mbgp X:X::X:X",
9141 "Show running system information\n"
9142 "IP information\n"
9143 "MBGP information\n"
9144 "Network in the MBGP routing table to display\n")
9145
9146 DEFSH (VTYSH_OSPFD, neighbor_cmd_vtysh,
9147 "neighbor A.B.C.D",
9148 "Specify neighbor router\n"
9149 "Neighbor IP address\n")
9150
9151 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_in_cmd_vtysh,
9152 "clear ip bgp external ipv4 (unicast|multicast) in",
9153 "Reset functions\n"
9154 "IP information\n"
9155 "BGP information\n"
9156 "Clear all external peers\n"
9157 "Address family\n"
9158 "Address Family modifier\n"
9159 "Address Family modifier\n"
9160 "Soft reconfig inbound update\n")
9161
9162 DEFSH (VTYSH_OSPFD, area_range_advertise_cmd_vtysh,
9163 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise",
9164 "OSPF area parameters\n"
9165 "OSPF area ID in IP address format\n"
9166 "OSPF area ID as a decimal value\n"
9167 "OSPF area range for route advertise (default)\n"
9168 "area range prefix\n"
9169 "advertise this range\n")
9170
9171 DEFSH (VTYSH_OSPFD, timers_spf_cmd_vtysh,
9172 "timers spf <0-4294967295> <0-4294967295>",
9173 "Adjust routing timers\n"
9174 "OSPF SPF timers\n"
9175 "Delay between receiving a change to SPF calculation\n"
9176 "Hold time between consecutive SPF calculations\n")
9177
9178 DEFSH (VTYSH_ZEBRA, ipv6_route_pref_cmd_vtysh,
9179 "ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE) <1-255>",
9180 "IP information\n"
9181 "Establish static routes\n"
9182 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
9183 "IPv6 gateway address\n"
9184 "IPv6 gateway interface name\n"
9185 "Distance value for this prefix\n")
9186
9187 DEFSH (VTYSH_BGPD, no_bgp_default_local_preference_val_cmd_vtysh,
9188 "no bgp default local-preference <0-4294967295>",
9189 "Negate a command or set its defaults\n"
9190 "BGP specific commands\n"
9191 "Configure BGP defaults\n"
9192 "local preference (higher=more preferred)\n"
9193 "Configure default local preference value\n")
9194
9195 DEFSH (VTYSH_RIPNGD, ripng_timers_cmd_vtysh,
9196 "timers basic <0-65535> <0-65535> <0-65535>",
9197 "RIPng timers setup\n"
9198 "Basic timer\n"
9199 "Routing table update timer value in second. Default is 30.\n"
9200 "Routing information timeout timer. Default is 180.\n"
9201 "Garbage collection timer. Default is 120.\n")
9202
9203 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged8_cmd_vtysh,
9204 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop as-path med",
9205 "Negate a command or set its defaults\n"
9206 "Specify neighbor router\n"
9207 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9208 "BGP attribute is propagated unchanged to this neighbor\n"
9209 "Nexthop attribute\n"
9210 "As-path attribute\n"
9211 "Med attribute\n")
9212
9213 DEFSH (VTYSH_BGPD, show_ip_bgp_community2_cmd_vtysh,
9214 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
9215 "Show running system information\n"
9216 "IP information\n"
9217 "BGP information\n"
9218 "Display routes matching the communities\n"
9219 "community number\n"
9220 "Do not send outside local AS (well-known community)\n"
9221 "Do not advertise to any peer (well-known community)\n"
9222 "Do not export to next AS (well-known community)\n"
9223 "community number\n"
9224 "Do not send outside local AS (well-known community)\n"
9225 "Do not advertise to any peer (well-known community)\n"
9226 "Do not export to next AS (well-known community)\n")
9227
9228 DEFSH (VTYSH_OSPFD, no_set_metric_type_cmd_vtysh,
9229 "no set metric-type",
9230 "Negate a command or set its defaults\n"
9231 "Set values in destination routing protocol\n"
9232 "Type of metric for destination routing protocol\n")
9233
9234 DEFSH (VTYSH_BGPD, neighbor_peer_group_cmd_vtysh,
9235 "neighbor WORD peer-group",
9236 "Specify neighbor router\n"
9237 "Neighbor tag\n"
9238 "Configure peer-group\n")
9239
9240 DEFSH (VTYSH_BGPD, show_ip_bgp_community_exact_cmd_vtysh,
9241 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
9242 "Show running system information\n"
9243 "IP information\n"
9244 "BGP information\n"
9245 "Display routes matching the communities\n"
9246 "community number\n"
9247 "Do not send outside local AS (well-known community)\n"
9248 "Do not advertise to any peer (well-known community)\n"
9249 "Do not export to next AS (well-known community)\n"
9250 "Exact match of the communities")
9251
9252 DEFSH (VTYSH_OSPFD, no_area_range_subst_cmd_vtysh,
9253 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M",
9254 "Negate a command or set its defaults\n"
9255 "OSPF area parameters\n"
9256 "OSPF area ID in IP address format\n"
9257 "OSPF area ID as a decimal value\n"
9258 "Deconfigure OSPF area range for route summarization\n"
9259 "area range prefix\n"
9260 "Do not advertise this range\n"
9261 "Announce area range as another prefix\n"
9262 "Network prefix to be announced instead of range\n")
9263
9264 DEFSH (VTYSH_BGPD, bgp_enforce_first_as_cmd_vtysh,
9265 "bgp enforce-first-as",
9266 "BGP information\n"
9267 "Enforce the first AS for EBGP routes\n")
9268
9269 DEFSH (VTYSH_BGPD, show_bgp_community3_exact_cmd_vtysh,
9270 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
9271 "Show running system information\n"
9272 "BGP information\n"
9273 "Display routes matching the communities\n"
9274 "community number\n"
9275 "Do not send outside local AS (well-known community)\n"
9276 "Do not advertise to any peer (well-known community)\n"
9277 "Do not export to next AS (well-known community)\n"
9278 "community number\n"
9279 "Do not send outside local AS (well-known community)\n"
9280 "Do not advertise to any peer (well-known community)\n"
9281 "Do not export to next AS (well-known community)\n"
9282 "community number\n"
9283 "Do not send outside local AS (well-known community)\n"
9284 "Do not advertise to any peer (well-known community)\n"
9285 "Do not export to next AS (well-known community)\n"
9286 "Exact match of the communities")
9287
9288 DEFSH (VTYSH_OSPFD, ospf_dead_interval_cmd_vtysh,
9289 "ospf dead-interval <1-65535>",
9290 "OSPF interface commands\n"
9291 "Interval after which a neighbor is declared dead\n"
9292 "Seconds\n")
9293
9294 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_cmd_vtysh,
9295 "clear bgp ipv6 peer-group WORD soft",
9296 "Reset functions\n"
9297 "BGP information\n"
9298 "Address family\n"
9299 "Clear all members of peer-group\n"
9300 "BGP peer-group name\n"
9301 "Soft reconfig\n")
9302
9303 DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_md5_cmd_vtysh,
9304 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
9305 "(authentication|) (message-digest|null) "
9306 "(message-digest-key|) <1-255> md5 KEY",
9307 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
9308 "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n"
9309 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
9310
9311 DEFSH (VTYSH_BGPD, clear_bgp_external_cmd_vtysh,
9312 "clear bgp external",
9313 "Reset functions\n"
9314 "BGP information\n"
9315 "Clear all external peers\n")
9316
9317 DEFSH (VTYSH_BGPD, no_ip_community_list_name_standard_cmd_vtysh,
9318 "no ip community-list standard WORD (deny|permit) .AA:NN",
9319 "Negate a command or set its defaults\n"
9320 "IP information\n"
9321 "Add a community list entry\n"
9322 "Specify a standard community-list\n"
9323 "Community list name\n"
9324 "Specify community to reject\n"
9325 "Specify community to accept\n"
9326 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
9327
9328 DEFSH (VTYSH_BGPD, neighbor_update_source_cmd_vtysh,
9329 "neighbor (A.B.C.D|X:X::X:X|WORD) " "update-source WORD",
9330 "Specify neighbor router\n"
9331 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9332 "Source of routing updates\n"
9333 "Interface name\n")
9334
9335 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_in_cmd_vtysh,
9336 "clear ip bgp peer-group WORD in",
9337 "Reset functions\n"
9338 "IP information\n"
9339 "BGP information\n"
9340 "Clear all members of peer-group\n"
9341 "BGP peer-group name\n"
9342 "Soft reconfig inbound update\n")
9343
9344 DEFSH (VTYSH_OSPFD, neighbor_priority_cmd_vtysh,
9345 "neighbor A.B.C.D priority <0-255>",
9346 "Specify neighbor router\n"
9347 "Neighbor IP address\n"
9348 "Neighbor Priority\n"
9349 "Seconds\n")
9350
9351 DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_standard_cmd_vtysh,
9352 "ip extcommunity-list standard WORD (deny|permit) .AA:NN",
9353 "IP information\n"
9354 "Add a extended community list entry\n"
9355 "Specify standard extcommunity-list\n"
9356 "Extended Community list name\n"
9357 "Specify community to reject\n"
9358 "Specify community to accept\n"
9359 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
9360
9361 DEFSH (VTYSH_BGPD, neighbor_capability_route_refresh_cmd_vtysh,
9362 "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability route-refresh",
9363 "Specify neighbor router\n"
9364 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9365 "Advertise capability to the peer\n"
9366 "Advertise route-refresh capability to this neighbor\n")
9367
9368 DEFSH (VTYSH_BGPD, no_ipv6_bgp_network_cmd_vtysh,
9369 "no network X:X::X:X/M",
9370 "Negate a command or set its defaults\n"
9371 "Specify a network to announce via BGP\n"
9372 "IPv6 prefix <network>/<length>\n")
9373
9374 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_val_cmd_vtysh,
9375 "no redistribute connected metric <0-16>",
9376 "Negate a command or set its defaults\n"
9377 "Redistribute information from another routing protocol\n"
9378 "Connected\n"
9379 "Metric\n"
9380 "Metric value\n")
9381
9382 DEFSH (VTYSH_RIPD, ip_rip_receive_version_1_cmd_vtysh,
9383 "ip rip receive version 1 2",
9384 "IP information\n"
9385 "Routing Information Protocol\n"
9386 "Advertisement reception\n"
9387 "Version control\n"
9388 "RIP version 1\n"
9389 "RIP version 2\n")
9390
9391 DEFSH (VTYSH_BGPD, no_bgp_network_mask_cmd_vtysh,
9392 "no network A.B.C.D mask A.B.C.D",
9393 "Negate a command or set its defaults\n"
9394 "Specify a network to announce via BGP\n"
9395 "Network number\n"
9396 "Network mask\n"
9397 "Network mask\n")
9398
9399 DEFSH (VTYSH_ZEBRA, show_interface_cmd_vtysh,
9400 "show interface [IFNAME]",
9401 "Show running system information\n"
9402 "Interface status and configuration\n"
9403 "Inteface name\n")
9404
9405 DEFSH (VTYSH_OSPFD, no_router_ospf_cmd_vtysh,
9406 "no router ospf",
9407 "Negate a command or set its defaults\n"
9408 "Enable a routing process\n"
9409 "Start OSPF configuration\n")
9410
9411 DEFSH (VTYSH_BGPD, no_bgp_confederation_identifier_cmd_vtysh,
9412 "no bgp confederation identifier",
9413 "Negate a command or set its defaults\n"
9414 "BGP specific commands\n"
9415 "AS confederation parameters\n"
9416 "AS number\n")
9417
9418 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_type_routemap_cmd_vtysh,
9419 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2) route-map WORD",
9420 "Redistribute information from another routing protocol\n"
9421 "Kernel routes\n"
9422 "Connected\n"
9423 "Static routes\n"
9424 "Routing Information Protocol (RIP)\n"
9425 "Border Gateway Protocol (BGP)\n"
9426 "Metric for redistributed routes\n"
9427 "OSPF default metric\n"
9428 "OSPF exterior metric type for redistributed routes\n"
9429 "Set OSPF External Type 1 metrics\n"
9430 "Set OSPF External Type 2 metrics\n"
9431 "Route map reference\n"
9432 "Pointer to route-map entries\n")
9433
9434 DEFSH (VTYSH_BGPD, no_neighbor_local_as_val2_cmd_vtysh,
9435 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535> no-prepend",
9436 "Negate a command or set its defaults\n"
9437 "Specify neighbor router\n"
9438 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9439 "Specify a local-as number\n"
9440 "AS number used as local AS\n"
9441 "Do not prepend local-as to updates from ebgp peers\n")
9442
9443 DEFSH (VTYSH_BGPD, show_ip_bgp_community_info_cmd_vtysh,
9444 "show ip bgp community-info",
9445 "Show running system information\n"
9446 "IP information\n"
9447 "BGP information\n"
9448 "List all bgp community information\n")
9449
9450 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_metric_cmd_vtysh,
9451 "redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295>",
9452 "Redistribute information from another routing protocol\n"
9453 "Connected\n"
9454 "Kernel routes\n"
9455 "Open Shurtest Path First (OSPF)\n"
9456 "Routing Information Protocol (RIP)\n"
9457 "Static routes\n"
9458 "Metric for redistributed routes\n"
9459 "Default metric\n")
9460
9461 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_cidr_only_cmd_vtysh,
9462 "show ip bgp ipv4 (unicast|multicast) cidr-only",
9463 "Show running system information\n"
9464 "IP information\n"
9465 "BGP information\n"
9466 "Address family\n"
9467 "Address Family modifier\n"
9468 "Address Family modifier\n"
9469 "Display only routes with non-natural netmasks\n")
9470
9471 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_any_cmd_vtysh,
9472 "ipv6 access-list WORD (deny|permit) any",
9473 "IPv6 information\n"
9474 "Add an access list entry\n"
9475 "IPv6 zebra access-list\n"
9476 "Specify packets to reject\n"
9477 "Specify packets to forward\n"
9478 "Any prefixi to match\n")
9479
9480 DEFSH (VTYSH_BGPD, undebug_bgp_fsm_cmd_vtysh,
9481 "undebug bgp fsm",
9482 "Disable debugging functions (see also 'debug')\n"
9483 "Debugging functions (see also 'undebug')\n"
9484 "BGP information\n"
9485 "Finite State Machine\n")
9486
9487 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_cmd_vtysh,
9488 "ip prefix-list WORD (deny|permit) (A.B.C.D/M|any)",
9489 "IP information\n"
9490 "Build a prefix list\n"
9491 "Name of a prefix list\n"
9492 "Specify packets to reject\n"
9493 "Specify packets to forward\n"
9494 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
9495 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
9496
9497 DEFSH (VTYSH_BGPD, no_bgp_network_import_check_cmd_vtysh,
9498 "no bgp network import-check",
9499 "Negate a command or set its defaults\n"
9500 "BGP specific commands\n"
9501 "BGP network command\n"
9502 "Check BGP network route exists in IGP\n")
9503
9504 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_out_cmd_vtysh,
9505 "clear ip bgp A.B.C.D soft out",
9506 "Reset functions\n"
9507 "IP information\n"
9508 "BGP information\n"
9509 "BGP neighbor address to clear\n"
9510 "Soft reconfig\n"
9511 "Soft reconfig outbound update\n")
9512
9513 DEFSH (VTYSH_BGPD, no_ip_community_list_name_expanded_cmd_vtysh,
9514 "no ip community-list expanded WORD (deny|permit) .LINE",
9515 "Negate a command or set its defaults\n"
9516 "IP information\n"
9517 "Add a community list entry\n"
9518 "Specify an expanded community-list\n"
9519 "Community list name\n"
9520 "Specify community to reject\n"
9521 "Specify community to accept\n"
9522 "An ordered list as a regular-expression\n")
9523
9524 DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_expanded_cmd_vtysh,
9525 "ip extcommunity-list expanded WORD (deny|permit) .LINE",
9526 "IP information\n"
9527 "Add a extended community list entry\n"
9528 "Specify expanded extcommunity-list\n"
9529 "Extended Community list name\n"
9530 "Specify community to reject\n"
9531 "Specify community to accept\n"
9532 "An ordered list as a regular-expression\n")
9533
9534 DEFSH (VTYSH_RIPD, no_rip_distance_cmd_vtysh,
9535 "no distance <1-255>",
9536 "Negate a command or set its defaults\n"
9537 "Administrative distance\n"
9538 "Distance value\n")
9539
9540 DEFSH (VTYSH_ZEBRA, show_debugging_zebra_cmd_vtysh,
9541 "show debugging zebra",
9542 "Show running system information\n"
9543 "Zebra configuration\n"
9544 "Debugging information\n")
9545
9546 DEFSH (VTYSH_OSPFD, area_authentication_cmd_vtysh,
9547 "area (A.B.C.D|<0-4294967295>) authentication",
9548 "OSPF area parameters\n"
9549 "OSPF area ID in IP address format\n"
9550 "OSPF area ID as a decimal value\n"
9551 "Enable authentication\n")
9552
9553 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_list_cmd_vtysh,
9554 "show ip bgp ipv4 (unicast|multicast) community-list WORD",
9555 "Show running system information\n"
9556 "IP information\n"
9557 "BGP information\n"
9558 "Address family\n"
9559 "Address Family modifier\n"
9560 "Address Family modifier\n"
9561 "Display routes matching the community-list\n"
9562 "community-list name\n")
9563
9564 DEFSH (VTYSH_RIPD, no_rip_offset_list_ifname_cmd_vtysh,
9565 "no offset-list WORD (in|out) <0-16> IFNAME",
9566 "Negate a command or set its defaults\n"
9567 "Modify RIP metric\n"
9568 "Access-list name\n"
9569 "For incoming updates\n"
9570 "For outgoing updates\n"
9571 "Metric value\n"
9572 "Interface to match\n")
9573
9574 DEFSH (VTYSH_ZEBRA, show_ip_route_prefix_cmd_vtysh,
9575 "show ip route A.B.C.D/M",
9576 "Show running system information\n"
9577 "IP information\n"
9578 "IP routing table\n"
9579 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
9580
9581 DEFSH (VTYSH_OSPF6D, interface_area_plist_cmd_vtysh,
9582 "interface IFNAME area A.B.C.D prefix-list WORD",
9583 "Enable routing on an IPv6 interface\n"
9584 "Interface name(e.g. ep0)\n"
9585 "Set the OSPF6 area ID\n"
9586 "OSPF6 area ID in IPv4 address notation\n"
9587 "Advertise I/F Address only match entries of prefix-list\n"
9588 "IPv6 prefix-list name\n"
9589 )
9590
9591 DEFSH (VTYSH_OSPFD, neighbor_priority_pollinterval_cmd_vtysh,
9592 "neighbor A.B.C.D priority <0-255> poll-interval <1-65535>",
9593 "Specify neighbor router\n"
9594 "Neighbor IP address\n"
9595 "Neighbor Priority\n"
9596 "Priority\n"
9597 "Dead Neighbor Polling interval\n"
9598 "Seconds\n")
9599
9600 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, rmap_onmatch_goto_cmd_vtysh,
9601 "on-match goto <1-65535>",
9602 "Exit policy on matches\n"
9603 "Goto Clause number\n"
9604 "Number\n")
9605
9606 DEFSH (VTYSH_BGPD, no_neighbor_peer_group_remote_as_cmd_vtysh,
9607 "no neighbor WORD remote-as <1-65535>",
9608 "Negate a command or set its defaults\n"
9609 "Specify neighbor router\n"
9610 "Neighbor tag\n"
9611 "Specify a BGP neighbor\n"
9612 "AS number\n")
9613
9614 DEFSH (VTYSH_BGPD, aggregate_address_mask_as_set_cmd_vtysh,
9615 "aggregate-address A.B.C.D A.B.C.D as-set",
9616 "Configure BGP aggregate entries\n"
9617 "Aggregate address\n"
9618 "Aggregate mask\n"
9619 "Generate AS set path information\n")
9620
9621 DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_adv_router_cmd_vtysh,
9622 "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") A.B.C.D adv-router A.B.C.D",
9623 "Show running system information\n"
9624 "IP information\n"
9625 "OSPF information\n"
9626 "Database summary\n"
9627 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" ""
9628 "Link State ID (as an IP address)\n"
9629 "Advertising Router link states\n"
9630 "Advertising Router (as an IP address)\n")
9631
9632 DEFSH (VTYSH_BGPD, no_dump_bgp_all_cmd_vtysh,
9633 "no dump bgp all [PATH] [INTERVAL]",
9634 "Negate a command or set its defaults\n"
9635 "Dump packet\n"
9636 "BGP packet dump\n"
9637 "Dump all BGP packets\n")
9638
9639 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community4_cmd_vtysh,
9640 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
9641 "Show running system information\n"
9642 "IP information\n"
9643 "BGP information\n"
9644 "Address family\n"
9645 "Address Family modifier\n"
9646 "Address Family modifier\n"
9647 "Display routes matching the communities\n"
9648 "community number\n"
9649 "Do not send outside local AS (well-known community)\n"
9650 "Do not advertise to any peer (well-known community)\n"
9651 "Do not export to next AS (well-known community)\n"
9652 "community number\n"
9653 "Do not send outside local AS (well-known community)\n"
9654 "Do not advertise to any peer (well-known community)\n"
9655 "Do not export to next AS (well-known community)\n"
9656 "community number\n"
9657 "Do not send outside local AS (well-known community)\n"
9658 "Do not advertise to any peer (well-known community)\n"
9659 "Do not export to next AS (well-known community)\n"
9660 "community number\n"
9661 "Do not send outside local AS (well-known community)\n"
9662 "Do not advertise to any peer (well-known community)\n"
9663 "Do not export to next AS (well-known community)\n")
9664
9665 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged8_cmd_vtysh,
9666 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop as-path med",
9667 "Specify neighbor router\n"
9668 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9669 "BGP attribute is propagated unchanged to this neighbor\n"
9670 "Nexthop attribute\n"
9671 "As-path attribute\n"
9672 "Med attribute\n")
9673
9674 DEFSH (VTYSH_BGPD, no_bgp_config_type_cmd_vtysh,
9675 "no bgp config-type",
9676 "Negate a command or set its defaults\n"
9677 "BGP information\n"
9678 "Display configuration type\n")
9679
9680 DEFSH (VTYSH_BGPD, show_ip_bgp_view_prefix_cmd_vtysh,
9681 "show ip bgp view WORD A.B.C.D/M",
9682 "Show running system information\n"
9683 "IP information\n"
9684 "BGP information\n"
9685 "BGP view\n"
9686 "BGP view name\n"
9687 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
9688
9689 DEFSH (VTYSH_BGPD, aggregate_address_as_set_summary_cmd_vtysh,
9690 "aggregate-address A.B.C.D/M as-set summary-only",
9691 "Configure BGP aggregate entries\n"
9692 "Aggregate prefix\n"
9693 "Generate AS set path information\n"
9694 "Filter more specific routes from updates\n")
9695
9696 DEFSH (VTYSH_BGPD, show_ipv6_bgp_cmd_vtysh,
9697 "show ipv6 bgp",
9698 "Show running system information\n"
9699 "IP information\n"
9700 "BGP information\n")
9701
9702 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_out_cmd_vtysh,
9703 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) out",
9704 "Reset functions\n"
9705 "IP information\n"
9706 "BGP information\n"
9707 "Clear all members of peer-group\n"
9708 "BGP peer-group name\n"
9709 "Address family\n"
9710 "Address Family modifier\n"
9711 "Address Family modifier\n"
9712 "Soft reconfig outbound update\n")
9713
9714 DEFSH (VTYSH_ZEBRA, no_ip_address_secondary_cmd_vtysh,
9715 "no ip address A.B.C.D/M secondary",
9716 "Negate a command or set its defaults\n"
9717 "Interface Internet Protocol config commands\n"
9718 "Set the IP address of an interface\n"
9719 "IP address (e.g. 10.0.0.1/8)\n"
9720 "Secondary IP address\n")
9721
9722 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_out_cmd_vtysh,
9723 "clear ip bgp external ipv4 (unicast|multicast) soft out",
9724 "Reset functions\n"
9725 "IP information\n"
9726 "BGP information\n"
9727 "Clear all external peers\n"
9728 "Address family\n"
9729 "Address Family modifier\n"
9730 "Address Family modifier\n"
9731 "Soft reconfig\n"
9732 "Soft reconfig outbound update\n")
9733
9734 DEFSH (VTYSH_BGPD, clear_bgp_instance_all_cmd_vtysh,
9735 "clear bgp view WORD *",
9736 "Reset functions\n"
9737 "BGP information\n"
9738 "BGP view\n"
9739 "view name\n"
9740 "Clear all peers\n")
9741
9742 DEFSH (VTYSH_BGPD, no_neighbor_port_cmd_vtysh,
9743 "no neighbor (A.B.C.D|X:X::X:X) " "port",
9744 "Negate a command or set its defaults\n"
9745 "Specify neighbor router\n"
9746 "Neighbor address\nIPv6 address\n"
9747 "Neighbor's BGP port\n")
9748
9749 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_prefix_list_cmd_vtysh,
9750 "no match ip address prefix-list",
9751 "Negate a command or set its defaults\n"
9752 "Match values from routing table\n"
9753 "IP information\n"
9754 "Match address of route\n"
9755 "Match entries of prefix-lists\n")
9756
9757 DEFSH (VTYSH_BGPD, neighbor_passive_cmd_vtysh,
9758 "neighbor (A.B.C.D|X:X::X:X|WORD) " "passive",
9759 "Specify neighbor router\n"
9760 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9761 "Don't send open messages to this neighbor\n")
9762
9763 DEFSH (VTYSH_BGPD, clear_bgp_all_out_cmd_vtysh,
9764 "clear bgp * out",
9765 "Reset functions\n"
9766 "BGP information\n"
9767 "Clear all peers\n"
9768 "Soft reconfig outbound update\n")
9769
9770 DEFSH (VTYSH_BGPD, bgp_damp_set2_cmd_vtysh,
9771 "bgp dampening <1-45>",
9772 "BGP Specific commands\n"
9773 "Enable route-flap dampening\n"
9774 "Half-life time for the penalty\n")
9775
9776 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_detail_cmd_vtysh,
9777 "show ip prefix-list detail",
9778 "Show running system information\n"
9779 "IP information\n"
9780 "Build a prefix list\n"
9781 "Detail of prefix lists\n")
9782
9783 DEFSH (VTYSH_BGPD, neighbor_capability_dynamic_cmd_vtysh,
9784 "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability dynamic",
9785 "Specify neighbor router\n"
9786 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9787 "Advertise capability to the peer\n"
9788 "Advertise dynamic capability to this neighbor\n")
9789
9790 DEFSH (VTYSH_BGPD, neighbor_timers_cmd_vtysh,
9791 "neighbor (A.B.C.D|X:X::X:X|WORD) " "timers <0-65535> <0-65535>",
9792 "Specify neighbor router\n"
9793 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9794 "BGP per neighbor timers\n"
9795 "Keepalive interval\n"
9796 "Holdtime\n")
9797
9798 DEFSH (VTYSH_BGPD, undebug_bgp_all_cmd_vtysh,
9799 "undebug all bgp",
9800 "Disable debugging functions (see also 'debug')\n"
9801 "Enable all debugging\n"
9802 "BGP information\n")
9803
9804 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_cmd_vtysh,
9805 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn",
9806 "Show running system information\n"
9807 "IP information\n"
9808 "BGP information\n"
9809 "Display VPNv4 NLRI specific information\n"
9810 "Display information for a route distinguisher\n"
9811 "VPN Route Distinguisher\n")
9812
9813 DEFSH (VTYSH_BGPD, show_bgp_prefix_list_cmd_vtysh,
9814 "show bgp prefix-list WORD",
9815 "Show running system information\n"
9816 "BGP information\n"
9817 "Display routes conforming to the prefix-list\n"
9818 "IPv6 prefix-list name\n")
9819
9820 DEFSH (VTYSH_BGPD, no_set_vpnv4_nexthop_val_cmd_vtysh,
9821 "no set vpnv4 next-hop A.B.C.D",
9822 "Negate a command or set its defaults\n"
9823 "Set values in destination routing protocol\n"
9824 "VPNv4 information\n"
9825 "VPNv4 next-hop address\n"
9826 "IP address of next hop\n")
9827
9828 DEFSH (VTYSH_OSPFD, area_filter_list_cmd_vtysh,
9829 "area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)",
9830 "OSPF area parameters\n"
9831 "OSPF area ID in IP address format\n"
9832 "OSPF area ID as a decimal value\n"
9833 "Filter networks between OSPF areas\n"
9834 "Filter prefixes between OSPF areas\n"
9835 "Name of an IP prefix-list\n"
9836 "Filter networks sent to this area\n"
9837 "Filter networks sent from this area\n")
9838
9839 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_out_cmd_vtysh,
9840 "clear bgp ipv6 external soft out",
9841 "Reset functions\n"
9842 "BGP information\n"
9843 "Address family\n"
9844 "Clear all external peers\n"
9845 "Soft reconfig\n"
9846 "Soft reconfig outbound update\n")
9847
9848 DEFSH (VTYSH_OSPFD, show_ip_ospf_interface_cmd_vtysh,
9849 "show ip ospf interface [INTERFACE]",
9850 "Show running system information\n"
9851 "IP information\n"
9852 "OSPF information\n"
9853 "Interface information\n"
9854 "Interface name\n")
9855
9856 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbors_cmd_vtysh,
9857 "show ip bgp ipv4 (unicast|multicast) neighbors",
9858 "Show running system information\n"
9859 "IP information\n"
9860 "BGP information\n"
9861 "Address family\n"
9862 "Address Family modifier\n"
9863 "Address Family modifier\n"
9864 "Detailed information on TCP and BGP neighbor connections\n")
9865
9866 DEFSH (VTYSH_BGPD, no_bgp_always_compare_med_cmd_vtysh,
9867 "no bgp always-compare-med",
9868 "Negate a command or set its defaults\n"
9869 "BGP specific commands\n"
9870 "Allow comparing MED from different neighbors\n")
9871
9872 DEFSH (VTYSH_BGPD, old_no_ipv6_aggregate_address_cmd_vtysh,
9873 "no ipv6 bgp aggregate-address X:X::X:X/M",
9874 "Negate a command or set its defaults\n"
9875 "IPv6 information\n"
9876 "BGP information\n"
9877 "Configure BGP aggregate entries\n"
9878 "Aggregate prefix\n")
9879
9880 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_metric_cmd_vtysh,
9881 "default-information originate metric-type (1|2) metric <0-16777214>",
9882 "Control distribution of default information\n"
9883 "Distribute a default route\n"
9884 "OSPF metric type for default routes\n"
9885 "Set OSPF External Type 1 metrics\n"
9886 "Set OSPF External Type 2 metrics\n"
9887 "OSPF default metric\n"
9888 "OSPF metric\n")
9889
9890 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged2_cmd_vtysh,
9891 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path (next-hop|med)",
9892 "Negate a command or set its defaults\n"
9893 "Specify neighbor router\n"
9894 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9895 "BGP attribute is propagated unchanged to this neighbor\n"
9896 "As-path attribute\n"
9897 "Nexthop attribute\n"
9898 "Med attribute\n")
9899
9900 DEFSH (VTYSH_RIPD, debug_rip_packet_cmd_vtysh,
9901 "debug rip packet",
9902 "Debugging functions (see also 'undebug')\n"
9903 "RIP information\n"
9904 "RIP packet\n")
9905
9906 DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh,
9907 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) advertised-routes",
9908 "Show running system information\n"
9909 "BGP information\n"
9910 "Address family\n"
9911 "Detailed information on TCP and BGP neighbor connections\n"
9912 "Neighbor to display information about\n"
9913 "Neighbor to display information about\n"
9914 "Display the routes advertised to a BGP neighbor\n")
9915
9916 DEFSH (VTYSH_RIPNGD, ripng_default_metric_cmd_vtysh,
9917 "default-metric <1-16>",
9918 "Set a metric of redistribute routes\n"
9919 "Default metric\n")
9920
9921 DEFSH (VTYSH_RIPD, no_rip_redistribute_type_cmd_vtysh,
9922 "no redistribute (kernel|connected|static|ospf|bgp)",
9923 "Negate a command or set its defaults\n"
9924 "Redistribute information from another routing protocol\n"
9925 "Kernel routes\n"
9926 "Connected\n"
9927 "Static routes\n"
9928 "Open Shortest Path First (OSPF)\n"
9929 "Border Gateway Protocol (BGP)\n")
9930
9931 DEFSH (VTYSH_BGPD, undebug_bgp_keepalive_cmd_vtysh,
9932 "undebug bgp keepalives",
9933 "Disable debugging functions (see also 'debug')\n"
9934 "BGP information\n"
9935 "BGP keepalives\n")
9936
9937 DEFSH (VTYSH_BGPD, bgp_network_import_check_cmd_vtysh,
9938 "bgp network import-check",
9939 "BGP specific commands\n"
9940 "BGP network command\n"
9941 "Check BGP network route exists in IGP\n")
9942
9943 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_out_cmd_vtysh,
9944 "clear ip bgp <1-65535> soft out",
9945 "Reset functions\n"
9946 "IP information\n"
9947 "BGP information\n"
9948 "Clear peers with the AS number\n"
9949 "Soft reconfig\n"
9950 "Soft reconfig outbound update\n")
9951
9952 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_cmd_vtysh,
9953 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D A.B.C.D A.B.C.D",
9954 "Negate a command or set its defaults\n"
9955 "Add an access list entry\n"
9956 "IP extended access list\n"
9957 "IP extended access list (expanded range)\n"
9958 "Specify packets to reject\n"
9959 "Specify packets to forward\n"
9960 "Any Internet Protocol\n"
9961 "Source address\n"
9962 "Source wildcard bits\n"
9963 "Destination address\n"
9964 "Destination Wildcard bits\n")
9965
9966 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community4_cmd_vtysh,
9967 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
9968 "Show running system information\n"
9969 "IPv6 information\n"
9970 "MBGP information\n"
9971 "Display routes matching the communities\n"
9972 "community number\n"
9973 "Do not send outside local AS (well-known community)\n"
9974 "Do not advertise to any peer (well-known community)\n"
9975 "Do not export to next AS (well-known community)\n"
9976 "community number\n"
9977 "Do not send outside local AS (well-known community)\n"
9978 "Do not advertise to any peer (well-known community)\n"
9979 "Do not export to next AS (well-known community)\n"
9980 "community number\n"
9981 "Do not send outside local AS (well-known community)\n"
9982 "Do not advertise to any peer (well-known community)\n"
9983 "Do not export to next AS (well-known community)\n"
9984 "community number\n"
9985 "Do not send outside local AS (well-known community)\n"
9986 "Do not advertise to any peer (well-known community)\n"
9987 "Do not export to next AS (well-known community)\n")
9988
9989 DEFSH (VTYSH_BGPD, ip_as_path_cmd_vtysh,
9990 "ip as-path access-list WORD (deny|permit) .LINE",
9991 "IP information\n"
9992 "BGP autonomous system path filter\n"
9993 "Specify an access list name\n"
9994 "Regular expression access list name\n"
9995 "Specify packets to reject\n"
9996 "Specify packets to forward\n"
9997 "A regular-expression to match the BGP AS paths\n")
9998
9999 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_out_cmd_vtysh,
10000 "clear ip bgp * out",
10001 "Reset functions\n"
10002 "IP information\n"
10003 "BGP information\n"
10004 "Clear all peers\n"
10005 "Soft reconfig outbound update\n")
10006
10007 DEFSH (VTYSH_RIPD, send_lifetime_day_month_month_day_cmd_vtysh,
10008 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
10009 "Set send lifetime of the key\n"
10010 "Time to start\n"
10011 "Day of th month to start\n"
10012 "Month of the year to start\n"
10013 "Year to start\n"
10014 "Time to expire\n"
10015 "Month of the year to expire\n"
10016 "Day of th month to expire\n"
10017 "Year to expire\n")
10018
10019 DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPF6D, no_router_zebra_cmd_vtysh,
10020 "no router zebra",
10021 "Negate a command or set its defaults\n"
10022 "Configure routing process\n"
10023 "Disable connection to zebra daemon\n")
10024
10025 DEFSH (VTYSH_RIPD, no_ip_rip_authentication_string_cmd_vtysh,
10026 "no ip rip authentication string",
10027 "Negate a command or set its defaults\n"
10028 "IP information\n"
10029 "Routing Information Protocol\n"
10030 "Authentication control\n"
10031 "Authentication string\n")
10032
10033 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_out_cmd_vtysh,
10034 "clear bgp ipv6 peer-group WORD soft out",
10035 "Reset functions\n"
10036 "BGP information\n"
10037 "Address family\n"
10038 "Clear all members of peer-group\n"
10039 "BGP peer-group name\n"
10040 "Soft reconfig\n"
10041 "Soft reconfig outbound update\n")
10042
10043 DEFSH (VTYSH_BGPD, no_neighbor_route_map_cmd_vtysh,
10044 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-map WORD (in|out)",
10045 "Negate a command or set its defaults\n"
10046 "Specify neighbor router\n"
10047 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10048 "Apply route map to neighbor\n"
10049 "Name of route map\n"
10050 "Apply map to incoming routes\n"
10051 "Apply map to outbound routes\n")
10052
10053 DEFSH (VTYSH_BGPD, ipv6_aggregate_address_summary_only_cmd_vtysh,
10054 "aggregate-address X:X::X:X/M summary-only",
10055 "Configure BGP aggregate entries\n"
10056 "Aggregate prefix\n"
10057 "Filter more specific routes from updates\n")
10058
10059 DEFSH (VTYSH_OSPFD, no_ip_ospf_transmit_delay_cmd_vtysh,
10060 "no ip ospf transmit-delay",
10061 "Negate a command or set its defaults\n"
10062 "IP Information\n"
10063 "OSPF interface commands\n"
10064 "Link state transmit delay\n")
10065
10066 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_le_ge_cmd_vtysh,
10067 "no ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
10068 "Negate a command or set its defaults\n"
10069 "IP information\n"
10070 "Build a prefix list\n"
10071 "Name of a prefix list\n"
10072 "Specify packets to reject\n"
10073 "Specify packets to forward\n"
10074 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
10075 "Maximum prefix length to be matched\n"
10076 "Maximum prefix length\n"
10077 "Minimum prefix length to be matched\n"
10078 "Minimum prefix length\n")
10079
10080 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh,
10081 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn A.B.C.D/M",
10082 "Show running system information\n"
10083 "IP information\n"
10084 "BGP information\n"
10085 "Display VPNv4 NLRI specific information\n"
10086 "Display information for a route distinguisher\n"
10087 "VPN Route Distinguisher\n"
10088 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
10089
10090 DEFSH (VTYSH_BGPD, bgp_network_route_map_cmd_vtysh,
10091 "network A.B.C.D/M route-map WORD",
10092 "Specify a network to announce via BGP\n"
10093 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
10094 "Route-map to modify the attributes\n"
10095 "Name of the route map\n")
10096
10097 DEFSH (VTYSH_BGPD, show_ip_bgp_community_list_cmd_vtysh,
10098 "show ip bgp community-list WORD",
10099 "Show running system information\n"
10100 "IP information\n"
10101 "BGP information\n"
10102 "Display routes matching the community-list\n"
10103 "community-list name\n")
10104
10105 DEFSH (VTYSH_ZEBRA, no_ip_route_mask_cmd_vtysh,
10106 "no ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE)",
10107 "Negate a command or set its defaults\n"
10108 "IP information\n"
10109 "Establish static routes\n"
10110 "IP destination prefix\n"
10111 "IP destination prefix mask\n"
10112 "IP gateway address\n"
10113 "IP gateway interface name\n")
10114
10115 DEFSH (VTYSH_RIPD, accept_lifetime_infinite_month_day_cmd_vtysh,
10116 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> infinite",
10117 "Set accept lifetime of the key\n"
10118 "Time to start\n"
10119 "Month of the year to start\n"
10120 "Day of th month to start\n"
10121 "Year to start\n"
10122 "Never expires")
10123
10124 DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_metric_cmd_vtysh,
10125 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214>",
10126 "Redistribute information from another routing protocol\n"
10127 "Kernel routes\n"
10128 "Connected\n"
10129 "Static routes\n"
10130 "Routing Information Protocol (RIP)\n"
10131 "Border Gateway Protocol (BGP)\n"
10132 "OSPF exterior metric type for redistributed routes\n"
10133 "Set OSPF External Type 1 metrics\n"
10134 "Set OSPF External Type 2 metrics\n"
10135 "Metric for redistributed routes\n"
10136 "OSPF default metric\n")
10137
10138 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_out_cmd_vtysh,
10139 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) out",
10140 "Reset functions\n"
10141 "IP information\n"
10142 "BGP information\n"
10143 "BGP neighbor address to clear\n"
10144 "Address family\n"
10145 "Address Family modifier\n"
10146 "Address Family modifier\n"
10147 "Soft reconfig outbound update\n")
10148
10149 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_in_cmd_vtysh,
10150 "clear bgp ipv6 (A.B.C.D|X:X::X:X) in",
10151 "Reset functions\n"
10152 "BGP information\n"
10153 "Address family\n"
10154 "BGP neighbor address to clear\n"
10155 "BGP IPv6 neighbor to clear\n"
10156 "Soft reconfig inbound update\n")
10157
10158 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_out_cmd_vtysh,
10159 "clear bgp ipv6 (A.B.C.D|X:X::X:X) out",
10160 "Reset functions\n"
10161 "BGP information\n"
10162 "Address family\n"
10163 "BGP neighbor address to clear\n"
10164 "BGP IPv6 neighbor to clear\n"
10165 "Soft reconfig outbound update\n")
10166
10167 DEFSH (VTYSH_BGPD, neighbor_override_capability_cmd_vtysh,
10168 "neighbor (A.B.C.D|X:X::X:X|WORD) " "override-capability",
10169 "Specify neighbor router\n"
10170 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10171 "Override capability negotiation result\n")
10172
10173 DEFSH (VTYSH_BGPD, no_dump_bgp_updates_cmd_vtysh,
10174 "no dump bgp updates [PATH] [INTERVAL]",
10175 "Negate a command or set its defaults\n"
10176 "Dump packet\n"
10177 "BGP packet dump\n"
10178 "Dump BGP updates only\n")
10179
10180 DEFSH (VTYSH_OSPFD, debug_ospf_lsa_sub_cmd_vtysh,
10181 "debug ospf lsa (generate|flooding|install|refresh)",
10182 "Debugging functions (see also 'undebug')\n"
10183 "OSPF information\n"
10184 "OSPF Link State Advertisement\n"
10185 "LSA Generation\n"
10186 "LSA Flooding\n"
10187 "LSA Install/Delete\n"
10188 "LSA Refresh\n")
10189
10190 DEFSH (VTYSH_OSPFD, ip_ospf_hello_interval_cmd_vtysh,
10191 "ip ospf hello-interval <1-65535>",
10192 "IP Information\n"
10193 "OSPF interface commands\n"
10194 "Time between HELLO packets\n"
10195 "Seconds\n")
10196
10197 DEFSH (VTYSH_OSPF6D, passive_interface_cmd_vtysh,
10198 "passive-interface IFNAME",
10199 "Suppress routing updates on an interface\n"
10200 "Interface name(e.g. ep0)\n")
10201
10202 DEFSH (VTYSH_BGPD, neighbor_nexthop_self_cmd_vtysh,
10203 "neighbor (A.B.C.D|X:X::X:X|WORD) " "next-hop-self",
10204 "Specify neighbor router\n"
10205 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10206 "Disable the next hop calculation for this neighbor\n")
10207
10208 DEFSH (VTYSH_RIPD, accept_lifetime_month_day_day_month_cmd_vtysh,
10209 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
10210 "Set accept lifetime of the key\n"
10211 "Time to start\n"
10212 "Month of the year to start\n"
10213 "Day of th month to start\n"
10214 "Year to start\n"
10215 "Time to expire\n"
10216 "Day of th month to expire\n"
10217 "Month of the year to expire\n"
10218 "Year to expire\n")
10219
10220 DEFSH (VTYSH_ZEBRA, no_ip_route_mask_pref_cmd_vtysh,
10221 "no ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE) <1-255>",
10222 "Negate a command or set its defaults\n"
10223 "IP information\n"
10224 "Establish static routes\n"
10225 "IP destination prefix\n"
10226 "IP destination prefix mask\n"
10227 "IP gateway address\n"
10228 "IP gateway interface name\n"
10229 "Distance value for this route\n")
10230
10231 DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_longer_cmd_vtysh,
10232 "show ipv6 bgp X:X::X:X/M longer-prefixes",
10233 "Show running system information\n"
10234 "IPv6 information\n"
10235 "BGP information\n"
10236 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
10237 "Display route and more specific routes\n")
10238
10239 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_val_cmd_vtysh,
10240 "no redistribute static metric <0-16>",
10241 "Negate a command or set its defaults\n"
10242 "Redistribute information from another routing protocol\n"
10243 "Static routes\n"
10244 "Metric\n"
10245 "Metric value\n")
10246
10247 DEFSH (VTYSH_BGPD, no_match_aspath_val_cmd_vtysh,
10248 "no match as-path WORD",
10249 "Negate a command or set its defaults\n"
10250 "Match values from routing table\n"
10251 "Match BGP AS path list\n"
10252 "AS path access-list name\n")
10253
10254 DEFSH (VTYSH_RIPD, no_key_chain_cmd_vtysh,
10255 "no key chain WORD",
10256 "Negate a command or set its defaults\n"
10257 "Authentication key management\n"
10258 "Key-chain management\n"
10259 "Key-chain name\n")
10260
10261 DEFSH (VTYSH_OSPF6D, show_version_ospf6_cmd_vtysh,
10262 "show version ospf6",
10263 "Show running system information\n"
10264 "Displays ospf6d version\n")
10265
10266 DEFSH (VTYSH_BGPD, clear_bgp_peer_cmd_vtysh,
10267 "clear bgp (A.B.C.D|X:X::X:X)",
10268 "Reset functions\n"
10269 "BGP information\n"
10270 "BGP neighbor address to clear\n"
10271 "BGP IPv6 neighbor to clear\n")
10272
10273 DEFSH (VTYSH_BGPD, bgp_damp_unset_cmd_vtysh,
10274 "no bgp dampening",
10275 "Negate a command or set its defaults\n"
10276 "BGP Specific commands\n"
10277 "Enable route-flap dampening\n")
10278
10279 DEFSH (VTYSH_OSPFD, area_import_list_cmd_vtysh,
10280 "area (A.B.C.D|<0-4294967295>) import-list NAME",
10281 "OSPF area parameters\n"
10282 "OSPF area ID in IP address format\n"
10283 "OSPF area ID as a decimal value\n"
10284 "Set the filter for networks from other areas announced to the specified one\n"
10285 "Name of the access-list\n")
10286
10287 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_routemap_cmd_vtysh,
10288 "default-information originate metric <0-16777214> route-map WORD",
10289 "Control distribution of default information\n"
10290 "Distribute a default route\n"
10291 "OSPF default metric\n"
10292 "OSPF metric\n"
10293 "Route map reference\n"
10294 "Pointer to route-map entries\n")
10295
10296 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged2_cmd_vtysh,
10297 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path (next-hop|med)",
10298 "Specify neighbor router\n"
10299 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10300 "BGP attribute is propagated unchanged to this neighbor\n"
10301 "As-path attribute\n"
10302 "Nexthop attribute\n"
10303 "Med attribute\n")
10304
10305 DEFSH (VTYSH_BGPD, clear_bgp_peer_group_in_cmd_vtysh,
10306 "clear bgp peer-group WORD in",
10307 "Reset functions\n"
10308 "BGP information\n"
10309 "Clear all members of peer-group\n"
10310 "BGP peer-group name\n"
10311 "Soft reconfig inbound update\n")
10312
10313 DEFSH (VTYSH_OSPFD, no_ospf_dead_interval_cmd_vtysh,
10314 "no ospf dead-interval",
10315 "Negate a command or set its defaults\n"
10316 "OSPF interface commands\n"
10317 "Interval after which a neighbor is declared dead\n")
10318
10319 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_all_cmd_vtysh,
10320 "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD)",
10321 "Negate a command or set its defaults\n"
10322 "Add an access list entry\n"
10323 "IP standard access list\n"
10324 "IP extended access list\n"
10325 "IP standard access list (expanded range)\n"
10326 "IP extended access list (expanded range)\n"
10327 "IP zebra access-list name\n")
10328
10329 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_ge_cmd_vtysh,
10330 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32>",
10331 "IP information\n"
10332 "Build a prefix list\n"
10333 "Name of a prefix list\n"
10334 "sequence number of an entry\n"
10335 "Sequence number\n"
10336 "Specify packets to reject\n"
10337 "Specify packets to forward\n"
10338 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
10339 "Minimum prefix length to be matched\n"
10340 "Minimum prefix length\n")
10341
10342 DEFSH (VTYSH_BGPD, no_set_ecommunity_rt_val_cmd_vtysh,
10343 "no set extcommunity rt .ASN:nn_or_IP-address:nn",
10344 "Negate a command or set its defaults\n"
10345 "Set values in destination routing protocol\n"
10346 "BGP extended community attribute\n"
10347 "Route Target extened communityt\n"
10348 "VPN extended community\n")
10349
10350 DEFSH (VTYSH_BGPD, set_atomic_aggregate_cmd_vtysh,
10351 "set atomic-aggregate",
10352 "Set values in destination routing protocol\n"
10353 "BGP atomic aggregate attribute\n" )
10354
10355 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_any_cmd_vtysh,
10356 "access-list WORD (deny|permit) any",
10357 "Add an access list entry\n"
10358 "IP zebra access-list name\n"
10359 "Specify packets to reject\n"
10360 "Specify packets to forward\n"
10361 "Prefix to match. e.g. 10.0.0.0/8\n")
10362
10363 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_cmd_vtysh,
10364 "clear bgp ipv6 <1-65535> soft",
10365 "Reset functions\n"
10366 "BGP information\n"
10367 "Address family\n"
10368 "Clear peers with the AS number\n"
10369 "Soft reconfig\n")
10370
10371 DEFSH (VTYSH_BGPD, debug_bgp_update_cmd_vtysh,
10372 "debug bgp updates",
10373 "Debugging functions (see also 'undebug')\n"
10374 "BGP information\n"
10375 "BGP updates\n")
10376
10377 DEFSH (VTYSH_BGPD, no_ip_community_list_cmd_vtysh,
10378 "no ip community-list WORD (deny|permit) .AA:NN",
10379 "Negate a command or set its defaults\n"
10380 "IP information\n"
10381 "Add a community list entry\n"
10382 "Community list name\n"
10383 "Specify community to reject\n"
10384 "Specify community to accept\n"
10385 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
10386
10387 DEFSH (VTYSH_BGPD, no_neighbor_advertise_interval_val_cmd_vtysh,
10388 "no neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval <0-600>",
10389 "Negate a command or set its defaults\n"
10390 "Specify neighbor router\n"
10391 "Neighbor address\nIPv6 address\n"
10392 "Minimum interval between sending BGP routing updates\n"
10393 "time in seconds\n")
10394
10395 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_metric_cmd_vtysh,
10396 "redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295>",
10397 "Redistribute information from another routing protocol\n"
10398 "Connected\n"
10399 "Kernel routes\n"
10400 "Open Shurtest Path First (OSPFv3)\n"
10401 "Routing Information Protocol (RIPng)\n"
10402 "Static routes\n"
10403 "Metric for redistributed routes\n"
10404 "Default metric\n")
10405
10406 DEFSH (VTYSH_BGPD, show_bgp_prefix_cmd_vtysh,
10407 "show bgp X:X::X:X/M",
10408 "Show running system information\n"
10409 "BGP information\n"
10410 "IPv6 prefix <network>/<length>\n")
10411
10412 DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_cmd_vtysh,
10413 "show ipv6 bgp X:X::X:X/M",
10414 "Show running system information\n"
10415 "IP information\n"
10416 "BGP information\n"
10417 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
10418
10419 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_out_cmd_vtysh,
10420 "clear ip bgp <1-65535> ipv4 (unicast|multicast) out",
10421 "Reset functions\n"
10422 "IP information\n"
10423 "BGP information\n"
10424 "Clear peers with the AS number\n"
10425 "Address family\n"
10426 "Address Family modifier\n"
10427 "Address Family modifier\n"
10428 "Soft reconfig outbound update\n")
10429
10430 DEFSH (VTYSH_OSPF6D, ipv6_ospf6_advertise_force_prefix_cmd_vtysh,
10431 "ipv6 ospf6 advertise force-prefix",
10432 "IPv6 Information\n"
10433 "Open Shortest Path First (OSPF) for IPv6\n"
10434 "Advertising options\n"
10435 "Force advertising prefix, applicable if Loopback or P-to-P\n"
10436 )
10437
10438 DEFSH (VTYSH_BGPD, show_bgp_filter_list_cmd_vtysh,
10439 "show bgp filter-list WORD",
10440 "Show running system information\n"
10441 "BGP information\n"
10442 "Display routes conforming to the filter-list\n"
10443 "Regular expression access list name\n")
10444
10445 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_in_cmd_vtysh,
10446 "clear ip bgp <1-65535> ipv4 (unicast|multicast) in",
10447 "Reset functions\n"
10448 "IP information\n"
10449 "BGP information\n"
10450 "Clear peers with the AS number\n"
10451 "Address family\n"
10452 "Address Family modifier\n"
10453 "Address Family modifier\n"
10454 "Soft reconfig inbound update\n")
10455
10456 DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_out_cmd_vtysh,
10457 "clear bgp (A.B.C.D|X:X::X:X) soft out",
10458 "Reset functions\n"
10459 "BGP information\n"
10460 "BGP neighbor address to clear\n"
10461 "BGP IPv6 neighbor to clear\n"
10462 "Soft reconfig\n"
10463 "Soft reconfig outbound update\n")
10464
10465 DEFSH (VTYSH_RIPD, rip_distance_cmd_vtysh,
10466 "distance <1-255>",
10467 "Administrative distance\n"
10468 "Distance value\n")
10469
10470 DEFSH (VTYSH_BGPD, set_origin_cmd_vtysh,
10471 "set origin (egp|igp|incomplete)",
10472 "Set values in destination routing protocol\n"
10473 "BGP origin code\n"
10474 "remote EGP\n"
10475 "local IGP\n"
10476 "unknown heritage\n")
10477
10478 DEFSH (VTYSH_OSPFD, ospf_transmit_delay_cmd_vtysh,
10479 "ospf transmit-delay <1-65535>",
10480 "OSPF interface commands\n"
10481 "Link state transmit delay\n"
10482 "Seconds\n")
10483
10484 DEFSH (VTYSH_BGPD, no_neighbor_port_val_cmd_vtysh,
10485 "no neighbor (A.B.C.D|X:X::X:X) " "port <0-65535>",
10486 "Negate a command or set its defaults\n"
10487 "Specify neighbor router\n"
10488 "Neighbor address\nIPv6 address\n"
10489 "Neighbor's BGP port\n"
10490 "TCP port number\n")
10491
10492 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_cmd_vtysh,
10493 "no ipv6 access-list WORD (deny|permit) X:X::X:X/M",
10494 "Negate a command or set its defaults\n"
10495 "IPv6 information\n"
10496 "Add an access list entry\n"
10497 "IPv6 zebra access-list\n"
10498 "Specify packets to reject\n"
10499 "Specify packets to forward\n"
10500 "Prefix to match. e.g. 3ffe:506::/32\n")
10501
10502 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh,
10503 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*) (A.B.C.D|*) (A.B.C.D|*|dump|summary)",
10504 "Show running system information\n"
10505 "IPv6 Information\n"
10506 "Open Shortest Path First (OSPF) for IPv6\n"
10507 "LSA Database\n"
10508 "Router-LSA\n"
10509 "Network-LSA\n"
10510 "AS-External-LSA\n"
10511 "Intra-Area-Prefix-LSA\n"
10512 "Inter-Area-Router-LSA\n"
10513 "Inter-Area-Prefix-LSA\n"
10514 "Link-LSA\n"
10515 "All LS Type\n"
10516 "Link State ID\n"
10517 "All Link State ID\n"
10518 "Advertising Router\n"
10519 "All Advertising Router\n"
10520 "Dump raw LSA data in Hex\n"
10521 "show summary of LSA\n"
10522 )
10523
10524 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_metric_rmap_cmd_vtysh,
10525 "redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295> route-map WORD",
10526 "Redistribute information from another routing protocol\n"
10527 "Connected\n"
10528 "Kernel routes\n"
10529 "Open Shurtest Path First (OSPFv3)\n"
10530 "Routing Information Protocol (RIPng)\n"
10531 "Static routes\n"
10532 "Metric for redistributed routes\n"
10533 "Default metric\n"
10534 "Route map reference\n"
10535 "Pointer to route-map entries\n")
10536
10537 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_exact_cmd_vtysh,
10538 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) exact-match",
10539 "Show running system information\n"
10540 "BGP information\n"
10541 "Address family\n"
10542 "Display routes matching the communities\n"
10543 "community number\n"
10544 "Do not send outside local AS (well-known community)\n"
10545 "Do not advertise to any peer (well-known community)\n"
10546 "Do not export to next AS (well-known community)\n"
10547 "Exact match of the communities")
10548
10549 DEFSH (VTYSH_BGPD, no_set_weight_val_cmd_vtysh,
10550 "no set weight <0-4294967295>",
10551 "Negate a command or set its defaults\n"
10552 "Set values in destination routing protocol\n"
10553 "BGP weight for routing table\n"
10554 "Weight value\n")
10555
10556 DEFSH (VTYSH_BGPD, no_neighbor_ebgp_multihop_cmd_vtysh,
10557 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop",
10558 "Negate a command or set its defaults\n"
10559 "Specify neighbor router\n"
10560 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10561 "Allow EBGP neighbors not on directly connected networks\n")
10562
10563 DEFSH (VTYSH_ZEBRA, ipv6_nd_prefix_advertisement_no_val_cmd_vtysh,
10564 "ipv6 nd prefix-advertisement IPV6PREFIX",
10565 "IP information\n"
10566 "Neighbor discovery\n"
10567 "Prefix information\n"
10568 "IPv6 prefix\n")
10569
10570 DEFSH (VTYSH_BGPD, dump_bgp_all_cmd_vtysh,
10571 "dump bgp all PATH",
10572 "Dump packet\n"
10573 "BGP packet dump\n"
10574 "Dump all BGP packets\n"
10575 "Output filename\n")
10576
10577 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_out_cmd_vtysh,
10578 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft out",
10579 "Reset functions\n"
10580 "IP information\n"
10581 "BGP information\n"
10582 "BGP neighbor address to clear\n"
10583 "Address family\n"
10584 "Address Family modifier\n"
10585 "Address Family modifier\n"
10586 "Soft reconfig\n"
10587 "Soft reconfig outbound update\n")
10588
10589 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_route_prefix_cmd_vtysh,
10590 "show ipv6 ospf6 area A.B.C.D route (X::X|detail)",
10591 "Show running system information\n"
10592 "IPv6 Information\n"
10593 "Open Shortest Path First (OSPF) for IPv6\n"
10594 "Area information\n"
10595 "Area ID (as an IPv4 notation)\n"
10596 "Routing Table\n"
10597 "Specify IPv6 address\n"
10598 "Detailed information\n"
10599 )
10600
10601 DEFSH (VTYSH_RIPNGD, ripng_passive_interface_cmd_vtysh,
10602 "passive-interface IFNAME",
10603 "Suppress routing updates on an interface\n"
10604 "Interface name\n")
10605
10606 DEFSH (VTYSH_BGPD, show_bgp_neighbors_peer_cmd_vtysh,
10607 "show bgp neighbors (A.B.C.D|X:X::X:X)",
10608 "Show running system information\n"
10609 "BGP information\n"
10610 "Detailed information on TCP and BGP neighbor connections\n"
10611 "Neighbor to display information about\n"
10612 "Neighbor to display information about\n")
10613
10614 DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_all_cmd_vtysh,
10615 "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)",
10616 "Negate a command or set its defaults\n"
10617 "Debugging functions (see also 'undebug')\n"
10618 "OSPF information\n"
10619 "OSPF packets\n"
10620 "OSPF Hello\n"
10621 "OSPF Database Description\n"
10622 "OSPF Link State Request\n"
10623 "OSPF Link State Update\n"
10624 "OSPF Link State Acknowledgment\n"
10625 "OSPF all packets\n")
10626
10627 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_cmd_vtysh,
10628 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) (X:X::X:X/M|any)",
10629 "IPv6 information\n"
10630 "Build a prefix list\n"
10631 "Name of a prefix list\n"
10632 "sequence number of an entry\n"
10633 "Sequence number\n"
10634 "Specify packets to reject\n"
10635 "Specify packets to forward\n"
10636 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
10637 "Any prefix match. Same as \"::0/0 le 128\"\n")
10638
10639 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_cmd_vtysh,
10640 "no redistribute kernel",
10641 "Negate a command or set its defaults\n"
10642 "Redistribute information from another routing protocol\n"
10643 "Kernel routes\n")
10644
10645 DEFSH (VTYSH_BGPD, set_weight_cmd_vtysh,
10646 "set weight <0-4294967295>",
10647 "Set values in destination routing protocol\n"
10648 "BGP weight for routing table\n"
10649 "Weight value\n")
10650
10651 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_routemap_cmd_vtysh,
10652 "default-information originate metric-type (1|2) route-map WORD",
10653 "Control distribution of default information\n"
10654 "Distribute a default route\n"
10655 "OSPF metric type for default routes\n"
10656 "Set OSPF External Type 1 metrics\n"
10657 "Set OSPF External Type 2 metrics\n"
10658 "Route map reference\n"
10659 "Pointer to route-map entries\n")
10660
10661 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_cmd_vtysh,
10662 "no redistribute bgp metric",
10663 "Negate a command or set its defaults\n"
10664 "Redistribute information from another routing protocol\n"
10665 "Border Gateway Protocol (BGP)\n"
10666 "Metric\n")
10667
10668 DEFSH (VTYSH_RIPNGD, ripng_network_cmd_vtysh,
10669 "network IF_OR_ADDR",
10670 "RIPng enable on specified interface or network.\n"
10671 "Interface or address")
10672
10673 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_le_ge_cmd_vtysh,
10674 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
10675 "Negate a command or set its defaults\n"
10676 "IP information\n"
10677 "Build a prefix list\n"
10678 "Name of a prefix list\n"
10679 "sequence number of an entry\n"
10680 "Sequence number\n"
10681 "Specify packets to reject\n"
10682 "Specify packets to forward\n"
10683 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
10684 "Maximum prefix length to be matched\n"
10685 "Maximum prefix length\n"
10686 "Minimum prefix length to be matched\n"
10687 "Minimum prefix length\n")
10688
10689 DEFSH (VTYSH_OSPFD, no_ospf_default_metric_val_cmd_vtysh,
10690 "no default-metric <0-16777214>",
10691 "Negate a command or set its defaults\n"
10692 "Set metric of redistributed routes\n"
10693 "Default metric\n")
10694
10695 DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_cmd_vtysh,
10696 "distance ospf external <1-255>",
10697 "Define an administrative distance\n"
10698 "OSPF Administrative distance\n"
10699 "External routes\n"
10700 "Distance for external routes\n")
10701
10702 DEFSH (VTYSH_BGPD, no_bgp_scan_time_val_cmd_vtysh,
10703 "no bgp scan-time <5-60>",
10704 "Negate a command or set its defaults\n"
10705 "BGP specific commands\n"
10706 "Configure background scanner interval\n"
10707 "Scanner interval (seconds)\n")
10708
10709 DEFSH (VTYSH_BGPD, old_ipv6_aggregate_address_summary_only_cmd_vtysh,
10710 "ipv6 bgp aggregate-address X:X::X:X/M summary-only",
10711 "IPv6 information\n"
10712 "BGP information\n"
10713 "Configure BGP aggregate entries\n"
10714 "Aggregate prefix\n"
10715 "Filter more specific routes from updates\n")
10716
10717 DEFSH (VTYSH_BGPD, show_bgp_route_cmd_vtysh,
10718 "show bgp X:X::X:X",
10719 "Show running system information\n"
10720 "BGP information\n"
10721 "Network in the BGP routing table to display\n")
10722
10723 DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_adv_router_cmd_vtysh,
10724 "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") adv-router A.B.C.D",
10725 "Show running system information\n"
10726 "IP information\n"
10727 "OSPF information\n"
10728 "Database summary\n"
10729 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" ""
10730 "Advertising Router link states\n"
10731 "Advertising Router (as an IP address)\n")
10732
10733 DEFSH (VTYSH_BGPD, no_ip_community_list_name_all_cmd_vtysh,
10734 "no ip community-list (standard|expanded) WORD",
10735 "Negate a command or set its defaults\n"
10736 "IP information\n"
10737 "Add a community list entry\n"
10738 "Add a standard community-list entry\n"
10739 "Add an expanded community-list entry\n"
10740 "Community list name\n")
10741
10742 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh,
10743 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D",
10744 "Show running system information\n"
10745 "IP information\n"
10746 "BGP information\n"
10747 "Display VPNv4 NLRI specific information\n"
10748 "Display information about all VPNv4 NLRIs\n"
10749 "Detailed information on TCP and BGP neighbor connections\n"
10750 "Neighbor to display information about\n")
10751
10752 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_in_cmd_vtysh,
10753 "clear ip bgp <1-65535> in",
10754 "Reset functions\n"
10755 "IP information\n"
10756 "BGP information\n"
10757 "Clear peers with the AS number\n"
10758 "Soft reconfig inbound update\n")
10759
10760 DEFSH (VTYSH_RIPD, ip_rip_send_version_cmd_vtysh,
10761 "ip rip send version (1|2)",
10762 "IP information\n"
10763 "Routing Information Protocol\n"
10764 "Advertisement transmission\n"
10765 "Version control\n"
10766 "RIP version 1\n"
10767 "RIP version 2\n")
10768
10769 DEFSH (VTYSH_OSPFD, no_ospf_authentication_key_cmd_vtysh,
10770 "no ospf authentication-key",
10771 "Negate a command or set its defaults\n"
10772 "OSPF interface commands\n"
10773 "Authentication password (key)\n")
10774
10775 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_host_cmd_vtysh,
10776 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D host A.B.C.D",
10777 "Negate a command or set its defaults\n"
10778 "Add an access list entry\n"
10779 "IP extended access list\n"
10780 "IP extended access list (expanded range)\n"
10781 "Specify packets to reject\n"
10782 "Specify packets to forward\n"
10783 "Any Internet Protocol\n"
10784 "A single source host\n"
10785 "Source address\n"
10786 "A single destination host\n"
10787 "Destination address\n")
10788
10789 DEFSH (VTYSH_BGPD, neighbor_dont_capability_negotiate_cmd_vtysh,
10790 "neighbor (A.B.C.D|X:X::X:X|WORD) " "dont-capability-negotiate",
10791 "Specify neighbor router\n"
10792 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10793 "Do not perform capability negotiation\n")
10794
10795 DEFSH (VTYSH_OSPFD, no_area_vlink_param4_cmd_vtysh,
10796 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
10797 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
10798 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
10799 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
10800 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
10801 "Negate a command or set its defaults\n"
10802 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
10803 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
10804 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
10805 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n"
10806 "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n")
10807
10808 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_in_prefix_filter_cmd_vtysh,
10809 "clear ip bgp A.B.C.D in prefix-filter",
10810 "Reset functions\n"
10811 "IP information\n"
10812 "BGP information\n"
10813 "BGP neighbor address to clear\n"
10814 "Soft reconfig inbound update\n"
10815 "Push out the existing ORF prefix-list\n")
10816
10817 DEFSH (VTYSH_OSPFD, area_vlink_cmd_vtysh,
10818 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D",
10819 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n")
10820
10821 DEFSH (VTYSH_BGPD, no_neighbor_weight_cmd_vtysh,
10822 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "weight",
10823 "Negate a command or set its defaults\n"
10824 "Specify neighbor router\n"
10825 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10826 "Set default weight for routes from this neighbor\n")
10827
10828 DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ipv6_prefix_list_name_prefix_cmd_vtysh,
10829 "clear ipv6 prefix-list WORD X:X::X:X/M",
10830 "Reset functions\n"
10831 "IPv6 information\n"
10832 "Build a prefix list\n"
10833 "Name of a prefix list\n"
10834 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
10835
10836 DEFSH (VTYSH_ZEBRA, ip_irdp_address_preference_cmd_vtysh,
10837 "ip irdp address A.B.C.D <0-2147483647>",
10838 "IP information\n"
10839 "ICMP Router discovery on this interface\n"
10840 "Specify IRDP address and preference to proxy-advertise\n"
10841 "Set IRDP address for proxy-advertise\n"
10842 "Preference level\n")
10843
10844 DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_in_cmd_vtysh,
10845 "clear ip bgp external soft in",
10846 "Reset functions\n"
10847 "IP information\n"
10848 "BGP information\n"
10849 "Clear all external peers\n"
10850 "Soft reconfig\n"
10851 "Soft reconfig inbound update\n")
10852
10853 DEFSH (VTYSH_BGPD, no_set_vpnv4_nexthop_cmd_vtysh,
10854 "no set vpnv4 next-hop",
10855 "Negate a command or set its defaults\n"
10856 "Set values in destination routing protocol\n"
10857 "VPNv4 information\n"
10858 "VPNv4 next-hop address\n")
10859
10860 DEFSH (VTYSH_BGPD, bgp_multiple_instance_cmd_vtysh,
10861 "bgp multiple-instance",
10862 "BGP information\n"
10863 "Enable bgp multiple instance\n")
10864
10865 DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_global_cmd_vtysh,
10866 "no set ipv6 next-hop global",
10867 "Negate a command or set its defaults\n"
10868 "Set values in destination routing protocol\n"
10869 "IPv6 information\n"
10870 "IPv6 next-hop address\n"
10871 "IPv6 global address\n")
10872
10873 DEFSH (VTYSH_BGPD, show_bgp_neighbors_cmd_vtysh,
10874 "show bgp neighbors",
10875 "Show running system information\n"
10876 "BGP information\n"
10877 "Detailed information on TCP and BGP neighbor connections\n")
10878
10879 DEFSH (VTYSH_RIPD, no_match_ip_next_hop_val_cmd_vtysh,
10880 "no match ip next-hop WORD",
10881 "Negate a command or set its defaults\n"
10882 "Match values from routing table\n"
10883 "IP information\n"
10884 "Match next-hop address of route\n"
10885 "IP access-list name\n")
10886
10887 DEFSH (VTYSH_BGPD, show_bgp_community2_cmd_vtysh,
10888 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
10889 "Show running system information\n"
10890 "BGP information\n"
10891 "Display routes matching the communities\n"
10892 "community number\n"
10893 "Do not send outside local AS (well-known community)\n"
10894 "Do not advertise to any peer (well-known community)\n"
10895 "Do not export to next AS (well-known community)\n"
10896 "community number\n"
10897 "Do not send outside local AS (well-known community)\n"
10898 "Do not advertise to any peer (well-known community)\n"
10899 "Do not export to next AS (well-known community)\n")
10900
10901 DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_list_cmd_vtysh,
10902 "show bgp ipv6 prefix-list WORD",
10903 "Show running system information\n"
10904 "BGP information\n"
10905 "Address family\n"
10906 "Display routes conforming to the prefix-list\n"
10907 "IPv6 prefix-list name\n")
10908
10909 DEFSH (VTYSH_OSPFD, no_area_stub_nosum_cmd_vtysh,
10910 "no area (A.B.C.D|<0-4294967295>) stub no-summary",
10911 "Negate a command or set its defaults\n"
10912 "OSPF area parameters\n"
10913 "OSPF area ID in IP address format\n"
10914 "OSPF area ID as a decimal value\n"
10915 "Configure OSPF area as stub\n"
10916 "Do not inject inter-area routes into area\n")
10917
10918 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_cmd_vtysh,
10919 "clear bgp ipv6 (A.B.C.D|X:X::X:X)",
10920 "Reset functions\n"
10921 "BGP information\n"
10922 "Address family\n"
10923 "BGP neighbor address to clear\n"
10924 "BGP IPv6 neighbor to clear\n")
10925
10926 DEFSH (VTYSH_OSPFD, area_shortcut_cmd_vtysh,
10927 "area (A.B.C.D|<0-4294967295>) shortcut (default|enable|disable)",
10928 "OSPF area parameters\n"
10929 "OSPF area ID in IP address format\n"
10930 "OSPF area ID as a decimal value\n"
10931 "Configure the area's shortcutting mode\n"
10932 "Set default shortcutting behavior\n"
10933 "Enable shortcutting through the area\n"
10934 "Disable shortcutting through the area\n")
10935
10936 DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_cmd_vtysh,
10937 "redistribute kernel",
10938 "Redistribute information from another routing protocol\n"
10939 "Kernel routes\n")
10940
10941 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_ge_le_cmd_vtysh,
10942 "ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
10943 "IP information\n"
10944 "Build a prefix list\n"
10945 "Name of a prefix list\n"
10946 "Specify packets to reject\n"
10947 "Specify packets to forward\n"
10948 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
10949 "Minimum prefix length to be matched\n"
10950 "Minimum prefix length\n"
10951 "Maximum prefix length to be matched\n"
10952 "Maximum prefix length\n")
10953
10954 DEFSH (VTYSH_BGPD, no_bgp_default_local_preference_cmd_vtysh,
10955 "no bgp default local-preference",
10956 "Negate a command or set its defaults\n"
10957 "BGP specific commands\n"
10958 "Configure BGP defaults\n"
10959 "local preference (higher=more preferred)\n")
10960
10961 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_in_cmd_vtysh,
10962 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft in",
10963 "Reset functions\n"
10964 "IP information\n"
10965 "BGP information\n"
10966 "BGP neighbor address to clear\n"
10967 "Address family\n"
10968 "Address Family modifier\n"
10969 "Address Family modifier\n"
10970 "Soft reconfig\n"
10971 "Soft reconfig inbound update\n")
10972
10973 DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_rmap_cmd_vtysh,
10974 "redistribute (connected|kernel|ospf6|ripng|static) route-map WORD",
10975 "Redistribute information from another routing protocol\n"
10976 "Connected\n"
10977 "Kernel routes\n"
10978 "Open Shurtest Path First (OSPFv3)\n"
10979 "Routing Information Protocol (RIPng)\n"
10980 "Static routes\n"
10981 "Route map reference\n"
10982 "Pointer to route-map entries\n")
10983
10984 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_cmd_vtysh,
10985 "show ipv6 ospf6 route",
10986 "Show running system information\n"
10987 "IPv6 Information\n"
10988 "Open Shortest Path First (OSPF) for IPv6\n"
10989 "Routing table\n"
10990 )
10991
10992 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_mask_cmd_vtysh,
10993 "access-list (<100-199>|<2000-2699>) (deny|permit) ip any A.B.C.D A.B.C.D",
10994 "Add an access list entry\n"
10995 "IP extended access list\n"
10996 "IP extended access list (expanded range)\n"
10997 "Specify packets to reject\n"
10998 "Specify packets to forward\n"
10999 "Any Internet Protocol\n"
11000 "Any source host\n"
11001 "Destination address\n"
11002 "Destination Wildcard bits\n")
11003
11004 DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPF6D, router_zebra_cmd_vtysh,
11005 "router zebra",
11006 "Enable a routing process\n"
11007 "Make connection to zebra daemon\n")
11008
11009 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_cmd_vtysh,
11010 "clear ip bgp view WORD *",
11011 "Reset functions\n"
11012 "IP information\n"
11013 "BGP information\n"
11014 "BGP view\n"
11015 "view name\n"
11016 "Clear all peers\n")
11017
11018 DEFSH (VTYSH_BGPD, no_neighbor_default_originate_rmap_cmd_vtysh,
11019 "no neighbor (A.B.C.D|X:X::X:X) " "default-originate route-map WORD",
11020 "Negate a command or set its defaults\n"
11021 "Specify neighbor router\n"
11022 "Neighbor address\nIPv6 address\n"
11023 "Originate default route to this neighbor\n"
11024 "Route-map to specify criteria to originate default\n"
11025 "route-map name\n")
11026
11027 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_cmd_vtysh,
11028 "no ipv6 prefix-list WORD",
11029 "Negate a command or set its defaults\n"
11030 "IPv6 information\n"
11031 "Build a prefix list\n"
11032 "Name of a prefix list\n")
11033
11034 DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_authkey_cmd_vtysh,
11035 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
11036 "(authentication|) (message-digest|null) "
11037 "(authentication-key|) AUTH_KEY",
11038 "OSPF area parameters\n" "OSPF area ID in IP address format\n" "OSPF area ID as a decimal value\n" "Configure a virtual link\n" "Router ID of the remote ABR\n"
11039 "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n"
11040 "Authentication password (key)\n" "The OSPF password (key)")
11041
11042 DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_routemap_cmd_vtysh,
11043 "redistribute static route-map WORD",
11044 "Redistribute information from another routing protocol\n"
11045 "Static routes\n"
11046 "Route map reference\n"
11047 "Pointer to route-map entries\n")
11048
11049 DEFSH (VTYSH_RIPD, accept_lifetime_day_month_month_day_cmd_vtysh,
11050 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
11051 "Set accept lifetime of the key\n"
11052 "Time to start\n"
11053 "Day of th month to start\n"
11054 "Month of the year to start\n"
11055 "Year to start\n"
11056 "Time to expire\n"
11057 "Month of the year to expire\n"
11058 "Day of th month to expire\n"
11059 "Year to expire\n")
11060
11061 DEFSH (VTYSH_OSPF6D, no_debug_ospf6_all_cmd_vtysh,
11062 "no debug ospf6 all",
11063 "Negate a command or set its defaults\n"
11064 "Debugging functions (see also 'undebug')\n"
11065 "Open Shortest Path First (OSPF) for IPv6\n"
11066 "Turn off ALL OSPFv3 debugging\n")
11067
11068 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_metric_cmd_vtysh,
11069 "default-information originate always metric-type (1|2) metric <0-16777214>",
11070 "Control distribution of default information\n"
11071 "Distribute a default route\n"
11072 "Always advertise default route\n"
11073 "OSPF metric type for default routes\n"
11074 "Set OSPF External Type 1 metrics\n"
11075 "Set OSPF External Type 2 metrics\n"
11076 "OSPF default metric\n"
11077 "OSPF metric\n")
11078
11079 DEFSH (VTYSH_BGPD, neighbor_route_server_client_cmd_vtysh,
11080 "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-server-client",
11081 "Specify neighbor router\n"
11082 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11083 "Configure a neighbor as Route Server client\n")
11084
11085 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community2_exact_cmd_vtysh,
11086 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
11087 "Show running system information\n"
11088 "IPv6 information\n"
11089 "BGP information\n"
11090 "Display routes matching the communities\n"
11091 "community number\n"
11092 "Do not send outside local AS (well-known community)\n"
11093 "Do not advertise to any peer (well-known community)\n"
11094 "Do not export to next AS (well-known community)\n"
11095 "community number\n"
11096 "Do not send outside local AS (well-known community)\n"
11097 "Do not advertise to any peer (well-known community)\n"
11098 "Do not export to next AS (well-known community)\n"
11099 "Exact match of the communities")
11100
11101 DEFSH (VTYSH_BGPD, show_bgp_prefix_longer_cmd_vtysh,
11102 "show bgp X:X::X:X/M longer-prefixes",
11103 "Show running system information\n"
11104 "BGP information\n"
11105 "IPv6 prefix <network>/<length>\n"
11106 "Display route and more specific routes\n")
11107
11108 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_cmd_vtysh,
11109 "default-information originate metric-type (1|2)",
11110 "Control distribution of default information\n"
11111 "Distribute a default route\n"
11112 "OSPF metric type for default routes\n"
11113 "Set OSPF External Type 1 metrics\n"
11114 "Set OSPF External Type 2 metrics\n")
11115
11116 DEFSH (VTYSH_OSPFD, no_neighbor_priority_cmd_vtysh,
11117 "no neighbor A.B.C.D priority <0-255>",
11118 "Negate a command or set its defaults\n"
11119 "Specify neighbor router\n"
11120 "Neighbor IP address\n"
11121 "Neighbor Priority\n"
11122 "Priority\n")
11123
11124 DEFSH (VTYSH_BGPD, no_bgp_distance_source_access_list_cmd_vtysh,
11125 "no distance <1-255> A.B.C.D/M WORD",
11126 "Negate a command or set its defaults\n"
11127 "Define an administrative distance\n"
11128 "Administrative distance\n"
11129 "IP source prefix\n"
11130 "Access list name\n")
11131
11132 DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_le_ge_cmd_vtysh,
11133 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
11134 "IP information\n"
11135 "Build a prefix list\n"
11136 "Name of a prefix list\n"
11137 "sequence number of an entry\n"
11138 "Sequence number\n"
11139 "Specify packets to reject\n"
11140 "Specify packets to forward\n"
11141 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
11142 "Maximum prefix length to be matched\n"
11143 "Maximum prefix length\n"
11144 "Minimum prefix length to be matched\n"
11145 "Minimum prefix length\n")
11146
11147 DEFSH (VTYSH_BGPD, neighbor_remote_as_cmd_vtysh,
11148 "neighbor (A.B.C.D|X:X::X:X|WORD) " "remote-as <1-65535>",
11149 "Specify neighbor router\n"
11150 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11151 "Specify a BGP neighbor\n"
11152 "AS number\n")
11153
11154 DEFSH (VTYSH_OSPFD, no_debug_ospf_lsa_sub_cmd_vtysh,
11155 "no debug ospf lsa (generate|flooding|install|refresh)",
11156 "Negate a command or set its defaults\n"
11157 "Debugging functions (see also 'undebug')\n"
11158 "OSPF information\n"
11159 "OSPF Link State Advertisement\n"
11160 "LSA Generation\n"
11161 "LSA Flooding\n"
11162 "LSA Install/Delete\n"
11163 "LSA Refres\n")
11164
11165 DEFSH (VTYSH_BGPD, no_match_origin_cmd_vtysh,
11166 "no match origin",
11167 "Negate a command or set its defaults\n"
11168 "Match values from routing table\n"
11169 "BGP origin code\n")
11170
11171 DEFSH (VTYSH_BGPD, neighbor_remove_private_as_cmd_vtysh,
11172 "neighbor (A.B.C.D|X:X::X:X|WORD) " "remove-private-AS",
11173 "Specify neighbor router\n"
11174 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11175 "Remove private AS number from outbound updates\n")
11176
11177 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_detail_name_cmd_vtysh,
11178 "show ipv6 prefix-list detail WORD",
11179 "Show running system information\n"
11180 "IPv6 information\n"
11181 "Build a prefix list\n"
11182 "Detail of prefix lists\n"
11183 "Name of a prefix list\n")
11184
11185 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_address_cmd_vtysh,
11186 "show ip bgp flap-statistics A.B.C.D",
11187 "Show running system information\n"
11188 "IP information\n"
11189 "BGP information\n"
11190 "Display flap statistics of routes\n"
11191 "Network in the BGP routing table to display\n")
11192
11193 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_rmap_cmd_vtysh,
11194 "no redistribute (connected|kernel|ospf|rip|static) route-map WORD",
11195 "Negate a command or set its defaults\n"
11196 "Redistribute information from another routing protocol\n"
11197 "Connected\n"
11198 "Kernel routes\n"
11199 "Open Shurtest Path First (OSPF)\n"
11200 "Routing Information Protocol (RIP)\n"
11201 "Static routes\n"
11202 "Route map reference\n"
11203 "Pointer to route-map entries\n")
11204
11205 DEFSH (VTYSH_BGPD, clear_bgp_peer_group_cmd_vtysh,
11206 "clear bgp peer-group WORD",
11207 "Reset functions\n"
11208 "BGP information\n"
11209 "Clear all members of peer-group\n"
11210 "BGP peer-group name\n")
11211
11212 DEFSH (VTYSH_BGPD, neighbor_interface_cmd_vtysh,
11213 "neighbor (A.B.C.D|X:X::X:X) " "interface WORD",
11214 "Specify neighbor router\n"
11215 "Neighbor address\nIPv6 address\n"
11216 "Interface\n"
11217 "Interface name\n")
11218
11219 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_in_cmd_vtysh,
11220 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft in",
11221 "Reset functions\n"
11222 "BGP information\n"
11223 "Address family\n"
11224 "BGP neighbor address to clear\n"
11225 "BGP IPv6 neighbor to clear\n"
11226 "Soft reconfig\n"
11227 "Soft reconfig inbound update\n")
11228
11229 DEFSH (VTYSH_BGPD, clear_bgp_all_soft_cmd_vtysh,
11230 "clear bgp * soft",
11231 "Reset functions\n"
11232 "BGP information\n"
11233 "Clear all peers\n"
11234 "Soft reconfig\n")
11235
11236 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community3_exact_cmd_vtysh,
11237 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
11238 "Show running system information\n"
11239 "IP information\n"
11240 "BGP information\n"
11241 "Address family\n"
11242 "Address Family modifier\n"
11243 "Address Family modifier\n"
11244 "Display routes matching the communities\n"
11245 "community number\n"
11246 "Do not send outside local AS (well-known community)\n"
11247 "Do not advertise to any peer (well-known community)\n"
11248 "Do not export to next AS (well-known community)\n"
11249 "community number\n"
11250 "Do not send outside local AS (well-known community)\n"
11251 "Do not advertise to any peer (well-known community)\n"
11252 "Do not export to next AS (well-known community)\n"
11253 "community number\n"
11254 "Do not send outside local AS (well-known community)\n"
11255 "Do not advertise to any peer (well-known community)\n"
11256 "Do not export to next AS (well-known community)\n"
11257 "Exact match of the communities")
11258
11259 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_received_routes_cmd_vtysh,
11260 "show ip bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
11261 "Show running system information\n"
11262 "IP information\n"
11263 "BGP information\n"
11264 "Detailed information on TCP and BGP neighbor connections\n"
11265 "Neighbor to display information about\n"
11266 "Neighbor to display information about\n"
11267 "Display the received routes from neighbor\n")
11268
11269 DEFSH (VTYSH_BGPD, aggregate_address_mask_summary_as_set_cmd_vtysh,
11270 "aggregate-address A.B.C.D A.B.C.D summary-only as-set",
11271 "Configure BGP aggregate entries\n"
11272 "Aggregate address\n"
11273 "Aggregate mask\n"
11274 "Filter more specific routes from updates\n"
11275 "Generate AS set path information\n")
11276
11277 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighbor_routerid_cmd_vtysh,
11278 "show ipv6 ospf6 neighbor A.B.C.D",
11279 "Show running system information\n"
11280 "IPv6 Information\n"
11281 "Open Shortest Path First (OSPF) for IPv6\n"
11282 "Neighbor list\n"
11283 "OSPF6 neighbor Router ID in IP address format\n"
11284 )
11285
11286 DEFSH (VTYSH_BGPD, bgp_cluster_id32_cmd_vtysh,
11287 "bgp cluster-id <1-4294967295>",
11288 "BGP information\n"
11289 "Configure Route-Reflector Cluster-id\n"
11290 "Route-Reflector Cluster-id as 32 bit quantity\n")
11291
11292 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_cmd_vtysh,
11293 "clear bgp ipv6 <1-65535>",
11294 "Reset functions\n"
11295 "BGP information\n"
11296 "Address family\n"
11297 "Clear peers with the AS number\n")
11298
11299 DEFSH (VTYSH_OSPFD|VTYSH_OSPFD, show_ip_ospf_neighbor_id_cmd_vtysh,
11300 "show ip ospf neighbor A.B.C.D",
11301 "Show running system information\n"
11302 "IP information\n"
11303 "OSPF information\n"
11304 "Neighbor list\n"
11305 "Neighbor ID\n")
11306
11307 DEFSH (VTYSH_OSPFD, no_ip_ospf_hello_interval_addr_cmd_vtysh,
11308 "no ip ospf hello-interval A.B.C.D",
11309 "Negate a command or set its defaults\n"
11310 "IP Information\n"
11311 "OSPF interface commands\n"
11312 "Time between HELLO packets\n"
11313 "Address of interface")
11314
11315 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_val_cmd_vtysh,
11316 "no redistribute kernel metric <0-16>",
11317 "Negate a command or set its defaults\n"
11318 "Redistribute information from another routing protocol\n"
11319 "Kernel routes\n"
11320 "Metric\n"
11321 "Metric value\n")
11322
11323 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_rmap_onmatch_goto_cmd_vtysh,
11324 "no on-match goto",
11325 "Negate a command or set its defaults\n"
11326 "Exit policy on matches\n"
11327 "Next clause\n")
11328
11329 DEFSH (VTYSH_OSPF6D, ospf6_redistribute_routemap_cmd_vtysh,
11330 "redistribute (static|kernel|connected|ripng|bgp) route-map WORD",
11331 "Redistribute\n"
11332 "Static routes\n"
11333 "Kernel route\n"
11334 "Connected route\n"
11335 "RIPng route\n"
11336 "BGP route\n"
11337 "Route map reference\n"
11338 "Route map name\n"
11339 )
11340
11341 DEFSH (VTYSH_BGPD, neighbor_local_as_cmd_vtysh,
11342 "neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535>",
11343 "Specify neighbor router\n"
11344 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11345 "Specify a local-as number\n"
11346 "AS number used as local AS\n")
11347
11348 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_in_prefix_filter_cmd_vtysh,
11349 "clear ip bgp view WORD * ipv4 (unicast|multicast) in prefix-filter",
11350 "Reset functions\n"
11351 "IP information\n"
11352 "BGP information\n"
11353 "Clear all peers\n"
11354 "Address family\n"
11355 "Address Family modifier\n"
11356 "Address Family modifier\n"
11357 "Soft reconfig inbound update\n"
11358 "Push out prefix-list ORF and do inbound soft reconfig\n")
11359
11360 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_prefix_list_val_cmd_vtysh,
11361 "no match ip address prefix-list WORD",
11362 "Negate a command or set its defaults\n"
11363 "Match values from routing table\n"
11364 "IP information\n"
11365 "Match address of route\n"
11366 "Match entries of prefix-lists\n"
11367 "IP prefix-list name\n")
11368
11369 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged9_cmd_vtysh,
11370 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med next-hop as-path",
11371 "Negate a command or set its defaults\n"
11372 "Specify neighbor router\n"
11373 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11374 "BGP attribute is propagated unchanged to this neighbor\n"
11375 "Med attribute\n"
11376 "Nexthop attribute\n"
11377 "As-path attribute\n")
11378
11379 DEFSH (VTYSH_ZEBRA, ipv6_nd_ra_interval_cmd_vtysh,
11380 "ipv6 nd ra-interval SECONDS",
11381 "IP information\n"
11382 "Neighbor discovery\n"
11383 "Router Advertisement interval\n"
11384 "Router Advertisement interval in seconds\n")
11385
11386 DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_cmd_vtysh,
11387 "no redistribute ospf6 metric",
11388 "Negate a command or set its defaults\n"
11389 "Redistribute information from another routing protocol\n"
11390 "IPv6 Open Shortest Path First (OSPFv3)\n"
11391 "Metric\n")
11392
11393 DEFSH (VTYSH_BGPD, show_ip_bgp_community3_cmd_vtysh,
11394 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
11395 "Show running system information\n"
11396 "IP information\n"
11397 "BGP information\n"
11398 "Display routes matching the communities\n"
11399 "community number\n"
11400 "Do not send outside local AS (well-known community)\n"
11401 "Do not advertise to any peer (well-known community)\n"
11402 "Do not export to next AS (well-known community)\n"
11403 "community number\n"
11404 "Do not send outside local AS (well-known community)\n"
11405 "Do not advertise to any peer (well-known community)\n"
11406 "Do not export to next AS (well-known community)\n"
11407 "community number\n"
11408 "Do not send outside local AS (well-known community)\n"
11409 "Do not advertise to any peer (well-known community)\n"
11410 "Do not export to next AS (well-known community)\n")
11411
11412 DEFSH (VTYSH_BGPD, no_neighbor_timers_connect_cmd_vtysh,
11413 "no neighbor (A.B.C.D|X:X::X:X) " "timers connect",
11414 "Negate a command or set its defaults\n"
11415 "Specify neighbor router\n"
11416 "Neighbor address\nIPv6 address\n"
11417 "BGP per neighbor timers\n"
11418 "BGP connect timer\n")
11419
11420 DEFSH (VTYSH_BGPD, set_community_cmd_vtysh,
11421 "set community .AA:NN",
11422 "Set values in destination routing protocol\n"
11423 "BGP community attribute\n"
11424 "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n")
11425
11426 DEFSH (VTYSH_BGPD, show_ip_bgp_community_list_exact_cmd_vtysh,
11427 "show ip bgp community-list WORD exact-match",
11428 "Show running system information\n"
11429 "IP information\n"
11430 "BGP information\n"
11431 "Display routes matching the community-list\n"
11432 "community-list name\n"
11433 "Exact match of the communities\n")
11434
11435 DEFSH (VTYSH_BGPD, bgp_network_cmd_vtysh,
11436 "network A.B.C.D/M",
11437 "Specify a network to announce via BGP\n"
11438 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
11439
11440 DEFSH (VTYSH_BGPD, show_ip_bgp_summary_cmd_vtysh,
11441 "show ip bgp summary",
11442 "Show running system information\n"
11443 "IP information\n"
11444 "BGP information\n"
11445 "Summary of BGP neighbor status\n")
11446
11447 DEFSH (VTYSH_BGPD, no_vpnv4_network_cmd_vtysh,
11448 "no network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD",
11449 "Negate a command or set its defaults\n"
11450 "Specify a network to announce via BGP\n"
11451 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
11452 "Specify Route Distinguisher\n"
11453 "VPN Route Distinguisher\n"
11454 "BGP tag\n"
11455 "tag value\n")
11456
11457 DEFSH (VTYSH_BGPD, bgp_network_backdoor_cmd_vtysh,
11458 "network A.B.C.D/M backdoor",
11459 "Specify a network to announce via BGP\n"
11460 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
11461 "Specify a BGP backdoor route\n")
11462
11463 DEFSH (VTYSH_BGPD, no_neighbor_send_community_cmd_vtysh,
11464 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community",
11465 "Negate a command or set its defaults\n"
11466 "Specify neighbor router\n"
11467 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11468 "Send Community attribute to this neighbor\n")
11469
11470 DEFSH (VTYSH_ZEBRA, debug_zebra_packet_detail_cmd_vtysh,
11471 "debug zebra packet (recv|send) detail",
11472 "Debugging functions (see also 'undebug')\n"
11473 "Zebra configuration\n"
11474 "Debug option set for zebra packet\n"
11475 "Debug option set for receive packet\n"
11476 "Debug option set for send packet\n"
11477 "Debug option set detaied information\n")
11478
11479 DEFSH (VTYSH_OSPFD, show_ip_ospf_cmd_vtysh,
11480 "show ip ospf",
11481 "Show running system information\n"
11482 "IP information\n"
11483 "OSPF information\n")
11484
11485 DEFSH (VTYSH_BGPD, show_bgp_ipv6_filter_list_cmd_vtysh,
11486 "show bgp ipv6 filter-list WORD",
11487 "Show running system information\n"
11488 "BGP information\n"
11489 "Address family\n"
11490 "Display routes conforming to the filter-list\n"
11491 "Regular expression access list name\n")
11492
11493 DEFSH (VTYSH_RIPD, ip_rip_receive_version_2_cmd_vtysh,
11494 "ip rip receive version 2 1",
11495 "IP information\n"
11496 "Routing Information Protocol\n"
11497 "Advertisement reception\n"
11498 "Version control\n"
11499 "RIP version 2\n"
11500 "RIP version 1\n")
11501
11502 DEFSH (VTYSH_ZEBRA, ip_irdp_maxadvertinterval_cmd_vtysh,
11503 "ip irdp maxadvertinterval (0|<4-1800>)",
11504 "IP information\n"
11505 "ICMP Router discovery on this interface\n"
11506 "Set maximum time between advertisement\n"
11507 "Maximum advertisement interval in seconds\n")
11508
11509 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_longer_cmd_vtysh,
11510 "show ip bgp ipv4 (unicast|multicast) A.B.C.D/M longer-prefixes",
11511 "Show running system information\n"
11512 "IP information\n"
11513 "BGP information\n"
11514 "Address family\n"
11515 "Address Family modifier\n"
11516 "Address Family modifier\n"
11517 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
11518 "Display route and more specific routes\n")
11519
11520 DEFSH (VTYSH_BGPD, clear_bgp_all_soft_in_cmd_vtysh,
11521 "clear bgp * soft in",
11522 "Reset functions\n"
11523 "BGP information\n"
11524 "Clear all peers\n"
11525 "Soft reconfig\n"
11526 "Soft reconfig inbound update\n")
11527
11528 DEFSH (VTYSH_BGPD, no_bgp_default_ipv4_unicast_cmd_vtysh,
11529 "no bgp default ipv4-unicast",
11530 "Negate a command or set its defaults\n"
11531 "BGP specific commands\n"
11532 "Configure BGP defaults\n"
11533 "Activate ipv4-unicast for a peer by default\n")
11534
11535 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh,
11536 "show ipv6 ospf6 area A.B.C.D topology (A.B.C.D|<0-4294967295>) (A.B.C.D|<0-4294967295>)",
11537 "Show running system information\n"
11538 "IPv6 Information\n"
11539 "Open Shortest Path First (OSPF) for IPv6\n"
11540 "Area information\n"
11541 "Area ID (as an IPv4 notation)\n"
11542 "Shortest Path First tree information\n"
11543 "Displays SPF topology table\n"
11544 "Specify Router-ID\n"
11545 "Specify Router-ID\n"
11546 "Specify Link State ID\n"
11547 "Specify Link State ID\n"
11548 )
11549
11550 DEFSH (VTYSH_ZEBRA, no_ipv6_nd_managed_config_flag_cmd_vtysh,
11551 "no ipv6 nd managed-config-flag",
11552 "Negate a command or set its defaults\n"
11553 "IP information\n"
11554 "Neighbor discovery\n"
11555 "Managed address configuration flag\n")
11556
11557 DEFSH (VTYSH_OSPFD, no_ospf_message_digest_key_cmd_vtysh,
11558 "no ospf message-digest-key <1-255>",
11559 "Negate a command or set its defaults\n"
11560 "OSPF interface commands\n"
11561 "Message digest authentication password (key)\n"
11562 "Key ID\n")
11563
11564 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_le_cmd_vtysh,
11565 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128>",
11566 "Negate a command or set its defaults\n"
11567 "IPv6 information\n"
11568 "Build a prefix list\n"
11569 "Name of a prefix list\n"
11570 "Specify packets to reject\n"
11571 "Specify packets to forward\n"
11572 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
11573 "Maximum prefix length to be matched\n"
11574 "Maximum prefix length\n")
11575
11576 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_first_match_cmd_vtysh,
11577 "show ip prefix-list WORD A.B.C.D/M first-match",
11578 "Show running system information\n"
11579 "IP information\n"
11580 "Build a prefix list\n"
11581 "Name of a prefix list\n"
11582 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
11583 "First matched prefix\n")
11584
11585 DEFSH (VTYSH_OSPFD, debug_ospf_zebra_cmd_vtysh,
11586 "debug ospf zebra",
11587 "Debugging functions (see also 'undebug')\n"
11588 "OSPF information\n"
11589 "OSPF Zebra information\n")
11590
11591 DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_self_cmd_vtysh,
11592 "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") A.B.C.D (self-originate|)",
11593 "Show running system information\n"
11594 "IP information\n"
11595 "OSPF information\n"
11596 "Database summary\n"
11597 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" ""
11598 "Link State ID (as an IP address)\n"
11599 "Self-originated link states\n"
11600 "\n")
11601
11602 DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_flap_cmd_vtysh,
11603 "show ip bgp neighbors (A.B.C.D|X:X::X:X) flap-statistics",
11604 "Show running system information\n"
11605 "IP information\n"
11606 "BGP information\n"
11607 "Detailed information on TCP and BGP neighbor connections\n"
11608 "Neighbor to display information about\n"
11609 "Neighbor to display information about\n"
11610 "Display flap statistics of the routes learned from neighbor\n")
11611
11612 DEFSH (VTYSH_BGPD, no_ip_as_path_all_cmd_vtysh,
11613 "no ip as-path access-list WORD",
11614 "Negate a command or set its defaults\n"
11615 "IP information\n"
11616 "BGP autonomous system path filter\n"
11617 "Specify an access list name\n"
11618 "Regular expression access list name\n")
11619
11620 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_in_cmd_vtysh,
11621 "clear ip bgp * ipv4 (unicast|multicast) in",
11622 "Reset functions\n"
11623 "IP information\n"
11624 "BGP information\n"
11625 "Clear all peers\n"
11626 "Address family\n"
11627 "Address Family modifier\n"
11628 "Address Family modifier\n"
11629 "Soft reconfig inbound update\n")
11630
11631 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_out_cmd_vtysh,
11632 "clear ip bgp A.B.C.D out",
11633 "Reset functions\n"
11634 "IP information\n"
11635 "BGP information\n"
11636 "BGP neighbor address to clear\n"
11637 "Soft reconfig outbound update\n")
11638
11639 DEFSH (VTYSH_OSPFD, show_ip_ospf_database_cmd_vtysh,
11640 "show ip ospf database",
11641 "Show running system information\n"
11642 "IP information\n"
11643 "OSPF information\n"
11644 "Database summary\n")
11645
11646 DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_interface_ifname_cmd_vtysh,
11647 "show ipv6 ospf6 interface IFNAME",
11648 "Show running system information\n"
11649 "IPv6 Information\n"
11650 "Open Shortest Path First (OSPF) for IPv6\n"
11651 "Interface infomation\n"
11652 "Interface name(e.g. ep0)\n"
11653 )
11654
11655 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_cmd_vtysh,
11656 "clear ip bgp peer-group WORD",
11657 "Reset functions\n"
11658 "IP information\n"
11659 "BGP information\n"
11660 "Clear all members of peer-group\n"
11661 "BGP peer-group name\n")
11662
11663 DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_val2_cmd_vtysh,
11664 "no neighbor (A.B.C.D|X:X::X:X) " "maximum-prefix <1-4294967295> warning-only",
11665 "Negate a command or set its defaults\n"
11666 "Specify neighbor router\n"
11667 "Neighbor address\nIPv6 address\n"
11668 "Maximum number of prefix accept from this peer\n"
11669 "maximum no. of prefix limit\n"
11670 "Only give warning message when limit is exceeded\n")
11671
11672 DEFSH (VTYSH_BGPD, show_ip_bgp_flap_regexp_cmd_vtysh,
11673 "show ip bgp flap-statistics regexp .LINE",
11674 "Show running system information\n"
11675 "IP information\n"
11676 "BGP information\n"
11677 "Display flap statistics of routes\n"
11678 "Display routes matching the AS path regular expression\n"
11679 "A regular-expression to match the BGP AS paths\n")
11680
11681 DEFSH (VTYSH_BGPD, clear_bgp_as_soft_in_cmd_vtysh,
11682 "clear bgp <1-65535> soft in",
11683 "Reset functions\n"
11684 "BGP information\n"
11685 "Clear peers with the AS number\n"
11686 "Soft reconfig\n"
11687 "Soft reconfig inbound update\n")
11688
11689 DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh,
11690 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
11691 "Show running system information\n"
11692 "IP information\n"
11693 "BGP information\n"
11694 "Address family\n"
11695 "Address Family modifier\n"
11696 "Address Family modifier\n"
11697 "Detailed information on TCP and BGP neighbor connections\n"
11698 "Neighbor to display information about\n"
11699 "Neighbor to display information about\n"
11700 "Display information received from a BGP neighbor\n"
11701 "Display the prefixlist filter\n")
11702
11703 DEFSH (VTYSH_RIPD, rip_version_cmd_vtysh,
11704 "version <1-2>",
11705 "Set routing protocol version\n"
11706 "version\n")
11707
11708 DEFSH (VTYSH_RIPD, ip_rip_send_version_1_cmd_vtysh,
11709 "ip rip send version 1 2",
11710 "IP information\n"
11711 "Routing Information Protocol\n"
11712 "Advertisement transmission\n"
11713 "Version control\n"
11714 "RIP version 1\n"
11715 "RIP version 2\n")
11716
11717 DEFSH (VTYSH_RIPD, no_debug_rip_zebra_cmd_vtysh,
11718 "no debug rip zebra",
11719 "Negate a command or set its defaults\n"
11720 "Debugging functions (see also 'undebug')\n"
11721 "RIP information\n"
11722 "RIP and ZEBRA communication\n")
11723
11724 DEFSH (VTYSH_BGPD, set_aspath_prepend_cmd_vtysh,
11725 "set as-path prepend .<1-65535>",
11726 "Set values in destination routing protocol\n"
11727 "Prepend string for a BGP AS-path attribute\n"
11728 "Prepend to the as-path\n"
11729 "AS number\n")
11730
11731 DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_received_routes_cmd_vtysh,
11732 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) received-routes",
11733 "Show running system information\n"
11734 "BGP information\n"
11735 "Address family\n"
11736 "Detailed information on TCP and BGP neighbor connections\n"
11737 "Neighbor to display information about\n"
11738 "Neighbor to display information about\n"
11739 "Display the received routes from neighbor\n")
11740
11741 DEFSH (VTYSH_RIPNGD, debug_ripng_packet_detail_cmd_vtysh,
11742 "debug ripng packet (recv|send) detail",
11743 "Debugging functions (see also 'undebug')\n"
11744 "RIPng configuration\n"
11745 "Debug option set for ripng packet\n"
11746 "Debug option set for receive packet\n"
11747 "Debug option set for send packet\n"
11748 "Debug option set detaied information\n")
11749
11750 DEFSH (VTYSH_ZEBRA, ip_irdp_minadvertinterval_cmd_vtysh,
11751 "ip irdp minadvertinterval <3-1800>",
11752 "IP information\n"
11753 "ICMP Router discovery on this interface\n"
11754 "Set minimum time between advertisement\n"
11755 "Minimum advertisement interval in seconds\n")
11756
11757 DEFSH (VTYSH_OSPF6D, no_passive_interface_cmd_vtysh,
11758 "no passive-interface IFNAME",
11759 "Negate a command or set its defaults\n"
11760 "Suppress routing updates on an interface\n"
11761 "Interface name(e.g. ep0)\n")
11762
11763 DEFSH (VTYSH_RIPD|VTYSH_OSPFD, no_match_interface_val_cmd_vtysh,
11764 "no match interface WORD",
11765 "Negate a command or set its defaults\n"
11766 "Match values from routing table\n"
11767 "Match first hop interface of route\n"
11768 "Interface name\n")
11769
11770 DEFSH (VTYSH_BGPD, bgp_network_mask_natural_route_map_cmd_vtysh,
11771 "network A.B.C.D route-map WORD",
11772 "Specify a network to announce via BGP\n"
11773 "Network number\n"
11774 "Route-map to modify the attributes\n"
11775 "Name of the route map\n")
11776
11777 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged9_cmd_vtysh,
11778 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med next-hop as-path",
11779 "Specify neighbor router\n"
11780 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11781 "BGP attribute is propagated unchanged to this neighbor\n"
11782 "Med attribute\n"
11783 "Nexthop attribute\n"
11784 "As-path attribute\n")
11785
11786 DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_standard2_cmd_vtysh,
11787 "ip extcommunity-list standard WORD (deny|permit)",
11788 "IP information\n"
11789 "Add a extended community list entry\n"
11790 "Specify standard extcommunity-list\n"
11791 "Extended Community list name\n"
11792 "Specify community to reject\n"
11793 "Specify community to accept\n")
11794
11795 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_out_cmd_vtysh,
11796 "clear bgp ipv6 <1-65535> soft out",
11797 "Reset functions\n"
11798 "BGP information\n"
11799 "Address family\n"
11800 "Clear peers with the AS number\n"
11801 "Soft reconfig\n"
11802 "Soft reconfig outbound update\n")
11803
11804 DEFSH (VTYSH_BGPD, no_ip_community_list_standard_cmd_vtysh,
11805 "no ip community-list <1-99> (deny|permit) .AA:NN",
11806 "Negate a command or set its defaults\n"
11807 "IP information\n"
11808 "Add a community list entry\n"
11809 "Community list number (standard)\n"
11810 "Specify community to reject\n"
11811 "Specify community to accept\n"
11812 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
11813
11814 DEFSH (VTYSH_BGPD, debug_bgp_update_direct_cmd_vtysh,
11815 "debug bgp updates (in|out)",
11816 "Debugging functions (see also 'undebug')\n"
11817 "BGP information\n"
11818 "BGP updates\n"
11819 "Inbound updates\n"
11820 "Outbound updates\n")
11821
11822 DEFSH (VTYSH_OSPFD, show_debugging_ospf_cmd_vtysh,
11823 "show debugging ospf",
11824 "Show running system information\n"
11825 "Debugging functions (see also 'undebug')\n"
11826 "OSPF information\n")
11827
11828 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_cmd_vtysh,
11829 "default-information originate",
11830 "Control distribution of default information\n"
11831 "Distribute a default route\n")
11832
11833 DEFSH (VTYSH_OSPF6D, ospf6_redistribute_cmd_vtysh,
11834 "redistribute (static|kernel|connected|ripng|bgp)",
11835 "Redistribute\n"
11836 "Static route\n"
11837 "Kernel route\n"
11838 "Connected route\n"
11839 "RIPng route\n"
11840 "BGP route\n"
11841 )
11842
11843 DEFSH (VTYSH_OSPFD, ip_ospf_transmit_delay_addr_cmd_vtysh,
11844 "ip ospf transmit-delay <1-65535> A.B.C.D",
11845 "IP Information\n"
11846 "OSPF interface commands\n"
11847 "Link state transmit delay\n"
11848 "Seconds\n"
11849 "Address of interface")
11850
11851 DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community2_exact_cmd_vtysh,
11852 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
11853 "Show running system information\n"
11854 "IPv6 information\n"
11855 "MBGP information\n"
11856 "Display routes matching the communities\n"
11857 "community number\n"
11858 "Do not send outside local AS (well-known community)\n"
11859 "Do not advertise to any peer (well-known community)\n"
11860 "Do not export to next AS (well-known community)\n"
11861 "community number\n"
11862 "Do not send outside local AS (well-known community)\n"
11863 "Do not advertise to any peer (well-known community)\n"
11864 "Do not export to next AS (well-known community)\n"
11865 "Exact match of the communities")
11866
11867 DEFSH (VTYSH_OSPFD, area_export_list_cmd_vtysh,
11868 "area (A.B.C.D|<0-4294967295>) export-list NAME",
11869 "OSPF area parameters\n"
11870 "OSPF area ID in IP address format\n"
11871 "OSPF area ID as a decimal value\n"
11872 "Set the filter for networks announced to other areas\n"
11873 "Name of the access-list\n")
11874
11875 DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_detail_name_cmd_vtysh,
11876 "show ip prefix-list detail WORD",
11877 "Show running system information\n"
11878 "IP information\n"
11879 "Build a prefix list\n"
11880 "Detail of prefix lists\n"
11881 "Name of a prefix list\n")
11882
11883 DEFSH (VTYSH_BGPD, bgp_damp_set3_cmd_vtysh,
11884 "bgp dampening",
11885 "BGP Specific commands\n"
11886 "Enable route-flap dampening\n")
11887
11888 DEFSH (VTYSH_OSPFD, debug_ospf_packet_send_recv_detail_cmd_vtysh,
11889 "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)",
11890 "Debugging functions\n"
11891 "OSPF information\n"
11892 "OSPF packets\n"
11893 "OSPF Hello\n"
11894 "OSPF Database Description\n"
11895 "OSPF Link State Request\n"
11896 "OSPF Link State Update\n"
11897 "OSPF Link State Acknowledgment\n"
11898 "OSPF all packets\n"
11899 "Packet sent\n"
11900 "Packet received\n"
11901 "Detail Information\n")
11902
11903 DEFSH (VTYSH_BGPD, bgp_default_ipv4_unicast_cmd_vtysh,
11904 "bgp default ipv4-unicast",
11905 "BGP specific commands\n"
11906 "Configure BGP defaults\n"
11907 "Activate ipv4-unicast for a peer by default\n")
11908
11909 DEFSH (VTYSH_BGPD, no_neighbor_prefix_list_cmd_vtysh,
11910 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "prefix-list WORD (in|out)",
11911 "Negate a command or set its defaults\n"
11912 "Specify neighbor router\n"
11913 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11914 "Filter updates to/from this neighbor\n"
11915 "Name of a prefix list\n"
11916 "Filter incoming updates\n"
11917 "Filter outgoing updates\n")
11918
11919 DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_rmap_metric_cmd_vtysh,
11920 "no redistribute (connected|kernel|ospf|rip|static) route-map WORD metric <0-4294967295>",
11921 "Negate a command or set its defaults\n"
11922 "Redistribute information from another routing protocol\n"
11923 "Connected\n"
11924 "Kernel routes\n"
11925 "Open Shurtest Path First (OSPF)\n"
11926 "Routing Information Protocol (RIP)\n"
11927 "Static routes\n"
11928 "Route map reference\n"
11929 "Pointer to route-map entries\n"
11930 "Metric for redistributed routes\n"
11931 "Default metric\n")
11932
11933 DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_cmd_vtysh,
11934 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft",
11935 "Reset functions\n"
11936 "IP information\n"
11937 "BGP information\n"
11938 "BGP view\n"
11939 "view name\n"
11940 "Clear all peers\n"
11941 "Address family\n"
11942 "Address Family Modifier\n"
11943 "Address Family Modifier\n"
11944 "Soft reconfig\n")
11945
11946 DEFSH (VTYSH_OSPFD, area_range_cost_cmd_vtysh,
11947 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>",
11948 "OSPF area parameters\n"
11949 "OSPF area ID in IP address format\n"
11950 "OSPF area ID as a decimal value\n"
11951 "Configure OSPF area range for route summarization\n"
11952 "area range prefix\n"
11953 "User specified metric for this range\n"
11954 "Advertised metric for this range\n")
11955
11956 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_cmd_vtysh,
11957 "clear ip bgp *",
11958 "Reset functions\n"
11959 "IP information\n"
11960 "BGP information\n"
11961 "Clear all peers\n")
11962
11963 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_cmd_vtysh,
11964 "clear ip bgp <1-65535>",
11965 "Reset functions\n"
11966 "IP information\n"
11967 "BGP information\n"
11968 "Clear peers with the AS number\n")
11969
11970 DEFSH (VTYSH_BGPD, no_ip_community_list_expanded_cmd_vtysh,
11971 "no ip community-list <100-199> (deny|permit) .LINE",
11972 "Negate a command or set its defaults\n"
11973 "IP information\n"
11974 "Add a community list entry\n"
11975 "Community list number (expanded)\n"
11976 "Specify community to reject\n"
11977 "Specify community to accept\n"
11978 "An ordered list as a regular-expression\n")
11979
11980 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_tags_cmd_vtysh,
11981 "show ip bgp vpnv4 all tags",
11982 "Show running system information\n"
11983 "IP information\n"
11984 "BGP information\n"
11985 "Display VPNv4 NLRI specific information\n"
11986 "Display information about all VPNv4 NLRIs\n"
11987 "Display BGP tags for prefixes\n")
11988
11989 DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged3_cmd_vtysh,
11990 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop (as-path|med)",
11991 "Negate a command or set its defaults\n"
11992 "Specify neighbor router\n"
11993 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11994 "BGP attribute is propagated unchanged to this neighbor\n"
11995 "Nexthop attribute\n"
11996 "As-path attribute\n"
11997 "Med attribute\n")
11998
11999 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_prefix_cmd_vtysh,
12000 "show ip bgp vpnv4 all A.B.C.D/M",
12001 "Show running system information\n"
12002 "IP information\n"
12003 "BGP information\n"
12004 "Display VPNv4 NLRI specific information\n"
12005 "Display information about all VPNv4 NLRIs\n"
12006 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
12007
12008 DEFSH (VTYSH_BGPD, clear_bgp_as_in_prefix_filter_cmd_vtysh,
12009 "clear bgp <1-65535> in prefix-filter",
12010 "Reset functions\n"
12011 "BGP information\n"
12012 "Clear peers with the AS number\n"
12013 "Soft reconfig inbound update\n"
12014 "Push out prefix-list ORF and do inbound soft reconfig\n")
12015
12016 DEFSH (VTYSH_BGPD, match_origin_cmd_vtysh,
12017 "match origin (egp|igp|incomplete)",
12018 "Match values from routing table\n"
12019 "BGP origin code\n"
12020 "remote EGP\n"
12021 "local IGP\n"
12022 "unknown heritage\n")
12023
12024 DEFSH (VTYSH_OSPFD, no_debug_ospf_ism_cmd_vtysh,
12025 "no debug ospf ism",
12026 "Negate a command or set its defaults\n"
12027 "Debugging functions (see also 'undebug')\n"
12028 "OSPF information\n"
12029 "OSPF Interface State Machine")
12030
12031 DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_in_cmd_vtysh,
12032 "clear ip bgp A.B.C.D vpnv4 unicast in",
12033 "Reset functions\n"
12034 "IP information\n"
12035 "BGP information\n"
12036 "BGP neighbor address to clear\n"
12037 "Address family\n"
12038 "Address Family Modifier\n"
12039 "Soft reconfig inbound update\n")
12040
12041 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_in_prefix_filter_cmd_vtysh,
12042 "clear ip bgp * ipv4 (unicast|multicast) in prefix-filter",
12043 "Reset functions\n"
12044 "IP information\n"
12045 "BGP information\n"
12046 "Clear all peers\n"
12047 "Address family\n"
12048 "Address Family modifier\n"
12049 "Address Family modifier\n"
12050 "Soft reconfig inbound update\n"
12051 "Push out prefix-list ORF and do inbound soft reconfig\n")
12052
12053 DEFSH (VTYSH_OSPFD, no_ospf_network_cmd_vtysh,
12054 "no ospf network",
12055 "Negate a command or set its defaults\n"
12056 "OSPF interface commands\n"
12057 "Network type\n")
12058
12059 DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_le_ge_cmd_vtysh,
12060 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
12061 "Negate a command or set its defaults\n"
12062 "IPv6 information\n"
12063 "Build a prefix list\n"
12064 "Name of a prefix list\n"
12065 "Specify packets to reject\n"
12066 "Specify packets to forward\n"
12067 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
12068 "Maximum prefix length to be matched\n"
12069 "Maximum prefix length\n"
12070 "Minimum prefix length to be matched\n"
12071 "Minimum prefix length\n")
12072
12073 DEFSH (VTYSH_BGPD, no_neighbor_remote_as_cmd_vtysh,
12074 "no neighbor (A.B.C.D|X:X::X:X) " "remote-as <1-65535>",
12075 "Negate a command or set its defaults\n"
12076 "Specify neighbor router\n"
12077 "Neighbor address\nIPv6 address\n"
12078 "Specify a BGP neighbor\n"
12079 "AS number\n")
12080
12081 DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_cmd_vtysh,
12082 "show ip ospf neighbor",
12083 "Show running system information\n"
12084 "IP information\n"
12085 "OSPF information\n"
12086 "Neighbor list\n")
12087
12088 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_in_cmd_vtysh,
12089 "clear ip bgp <1-65535> soft in",
12090 "Reset functions\n"
12091 "IP information\n"
12092 "BGP information\n"
12093 "Clear peers with the AS number\n"
12094 "Soft reconfig\n"
12095 "Soft reconfig inbound update\n")
12096
12097 DEFSH (VTYSH_BGPD, neighbor_capability_orf_prefix_cmd_vtysh,
12098 "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability orf prefix-list (both|send|receive)",
12099 "Specify neighbor router\n"
12100 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12101 "Advertise capability to the peer\n"
12102 "Advertise ORF capability to the peer\n"
12103 "Advertise prefixlist ORF capability to this neighbor\n"
12104 "Capability to SEND and RECEIVE the ORF to/from this neighbor\n"
12105 "Capability to RECEIVE the ORF from this neighbor\n"
12106 "Capability to SEND the ORF to this neighbor\n")
12107
12108 DEFSH (VTYSH_BGPD, clear_bgp_as_out_cmd_vtysh,
12109 "clear bgp <1-65535> out",
12110 "Reset functions\n"
12111 "BGP information\n"
12112 "Clear peers with the AS number\n"
12113 "Soft reconfig outbound update\n")
12114
12115 DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_detail_cmd_vtysh,
12116 "show ip ospf neighbor detail",
12117 "Show running system information\n"
12118 "IP information\n"
12119 "OSPF information\n"
12120 "Neighbor list\n"
12121 "detail of all neighbors\n")
12122
12123 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, match_ip_next_hop_prefix_list_cmd_vtysh,
12124 "match ip next-hop prefix-list WORD",
12125 "Match values from routing table\n"
12126 "IP information\n"
12127 "Match next-hop address of route\n"
12128 "Match entries of prefix-lists\n"
12129 "IP prefix-list name\n")
12130
12131 DEFSH (VTYSH_OSPFD, no_ospf_distance_cmd_vtysh,
12132 "no distance <1-255>",
12133 "Negate a command or set its defaults\n"
12134 "Define an administrative distance\n"
12135 "OSPF Administrative distance\n")
12136
12137 DEFSH (VTYSH_BGPD, no_neighbor_interface_cmd_vtysh,
12138 "no neighbor (A.B.C.D|X:X::X:X) " "interface WORD",
12139 "Negate a command or set its defaults\n"
12140 "Specify neighbor router\n"
12141 "Neighbor address\nIPv6 address\n"
12142 "Interface\n"
12143 "Interface name\n")
12144
12145 DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_cmd_vtysh,
12146 "default-information originate always metric-type (1|2)",
12147 "Control distribution of default information\n"
12148 "Distribute a default route\n"
12149 "Always advertise default route\n"
12150 "OSPF metric type for default routes\n"
12151 "Set OSPF External Type 1 metrics\n"
12152 "Set OSPF External Type 2 metrics\n")
12153
12154 DEFSH (VTYSH_RIPNGD, no_ripng_default_metric_val_cmd_vtysh,
12155 "no default-metric <1-16>",
12156 "Negate a command or set its defaults\n"
12157 "Set a metric of redistribute routes\n"
12158 "Default metric\n")
12159
12160 DEFSH (VTYSH_BGPD, show_ip_bgp_route_map_cmd_vtysh,
12161 "show ip bgp route-map WORD",
12162 "Show running system information\n"
12163 "IP information\n"
12164 "BGP information\n"
12165 "Display routes matching the route-map\n"
12166 "A route-map to match on\n")
12167
12168 DEFSH (VTYSH_BGPD, set_originator_id_cmd_vtysh,
12169 "set originator-id A.B.C.D",
12170 "Set values in destination routing protocol\n"
12171 "BGP originator ID attribute\n"
12172 "IP address of originator\n")
12173
12174 DEFSH (VTYSH_RIPD, debug_rip_packet_direct_cmd_vtysh,
12175 "debug rip packet (recv|send)",
12176 "Debugging functions (see also 'undebug')\n"
12177 "RIP information\n"
12178 "RIP packet\n"
12179 "RIP receive packet\n"
12180 "RIP send packet\n")
12181
12182 DEFSH (VTYSH_BGPD, no_aggregate_address_summary_only_cmd_vtysh,
12183 "no aggregate-address A.B.C.D/M summary-only",
12184 "Negate a command or set its defaults\n"
12185 "Configure BGP aggregate entries\n"
12186 "Aggregate prefix\n"
12187 "Filter more specific routes from updates\n")
12188
12189 DEFSH (VTYSH_BGPD, show_ip_bgp_view_route_cmd_vtysh,
12190 "show ip bgp view WORD A.B.C.D",
12191 "Show running system information\n"
12192 "IP information\n"
12193 "BGP information\n"
12194 "BGP view\n"
12195 "BGP view name\n"
12196 "Network in the BGP routing table to display\n")
12197
12198 DEFSH (VTYSH_RIPD, no_ip_rip_receive_version_num_cmd_vtysh,
12199 "no ip rip receive version (1|2)",
12200 "Negate a command or set its defaults\n"
12201 "IP information\n"
12202 "Routing Information Protocol\n"
12203 "Advertisement reception\n"
12204 "Version control\n"
12205 "Version 1\n"
12206 "Version 2\n")
12207
12208 DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_in_cmd_vtysh,
12209 "clear ip bgp * vpnv4 unicast soft in",
12210 "Reset functions\n"
12211 "IP information\n"
12212 "BGP information\n"
12213 "Clear all peers\n"
12214 "Address family\n"
12215 "Address Family Modifier\n"
12216 "Soft reconfig\n"
12217 "Soft reconfig inbound update\n")
12218
12219 DEFSH (VTYSH_RIPD, accept_lifetime_duration_day_month_cmd_vtysh,
12220 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> duration <1-2147483646>",
12221 "Set accept lifetime of the key\n"
12222 "Time to start\n"
12223 "Day of th month to start\n"
12224 "Month of the year to start\n"
12225 "Year to start\n"
12226 "Duration of the key\n"
12227 "Duration seconds\n")
12228
12229 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_cmd_vtysh,
12230 "no match ip address",
12231 "Negate a command or set its defaults\n"
12232 "Match values from routing table\n"
12233 "IP information\n"
12234 "Match address of route\n")
12235
12236 DEFSH (VTYSH_ZEBRA, show_ipv6_route_protocol_cmd_vtysh,
12237 "show ipv6 route (bgp|connected|kernel|ospf6|ripng|static)",
12238 "Show running system information\n"
12239 "IP information\n"
12240 "IP routing table\n"
12241 "Border Gateway Protocol (BGP)\n"
12242 "Connected\n"
12243 "Kernel\n"
12244 "Open Shortest Path First (OSPFv3)\n"
12245 "Routing Information Protocol (RIPng)\n"
12246 "Static routes\n")
12247
12248 DEFSH (VTYSH_ZEBRA, ip_address_label_cmd_vtysh,
12249 "ip address A.B.C.D/M label LINE",
12250 "Interface Internet Protocol config commands\n"
12251 "Set the IP address of an interface\n"
12252 "IP address (e.g. 10.0.0.1/8)\n"
12253 "Label of this address\n"
12254 "Label\n")
12255
12256 DEFSH (VTYSH_BGPD, show_ip_bgp_community4_exact_cmd_vtysh,
12257 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
12258 "Show running system information\n"
12259 "IP information\n"
12260 "BGP information\n"
12261 "Display routes matching the communities\n"
12262 "community number\n"
12263 "Do not send outside local AS (well-known community)\n"
12264 "Do not advertise to any peer (well-known community)\n"
12265 "Do not export to next AS (well-known community)\n"
12266 "community number\n"
12267 "Do not send outside local AS (well-known community)\n"
12268 "Do not advertise to any peer (well-known community)\n"
12269 "Do not export to next AS (well-known community)\n"
12270 "community number\n"
12271 "Do not send outside local AS (well-known community)\n"
12272 "Do not advertise to any peer (well-known community)\n"
12273 "Do not export to next AS (well-known community)\n"
12274 "community number\n"
12275 "Do not send outside local AS (well-known community)\n"
12276 "Do not advertise to any peer (well-known community)\n"
12277 "Do not export to next AS (well-known community)\n"
12278 "Exact match of the communities")
12279
12280 DEFSH (VTYSH_OSPFD, no_ip_ospf_priority_addr_cmd_vtysh,
12281 "no ip ospf priority A.B.C.D",
12282 "Negate a command or set its defaults\n"
12283 "IP Information\n"
12284 "OSPF interface commands\n"
12285 "Router priority\n"
12286 "Address of interface")
12287
12288 DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbors_peer_cmd_vtysh,
12289 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X)",
12290 "Show running system information\n"
12291 "BGP information\n"
12292 "Address family\n"
12293 "Detailed information on TCP and BGP neighbor connections\n"
12294 "Neighbor to display information about\n"
12295 "Neighbor to display information about\n")
12296
12297 DEFSH (VTYSH_OSPFD, auto_cost_reference_bandwidth_cmd_vtysh,
12298 "auto-cost reference-bandwidth <1-4294967>",
12299 "Calculate OSPF interface cost according to bandwidth\n"
12300 "Use reference bandwidth method to assign OSPF cost\n"
12301 "The reference bandwidth in terms of Mbits per second\n")
12302
12303 DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_out_cmd_vtysh,
12304 "clear bgp ipv6 * out",
12305 "Reset functions\n"
12306 "BGP information\n"
12307 "Address family\n"
12308 "Clear all peers\n"
12309 "Soft reconfig outbound update\n")
12310
12311 DEFSH (VTYSH_BGPD, aggregate_address_cmd_vtysh,
12312 "aggregate-address A.B.C.D/M",
12313 "Configure BGP aggregate entries\n"
12314 "Aggregate prefix\n")
12315
12316 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_exact_cmd_vtysh,
12317 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
12318 "Show running system information\n"
12319 "IPv6 information\n"
12320 "BGP information\n"
12321 "Display routes matching the communities\n"
12322 "community number\n"
12323 "Do not send outside local AS (well-known community)\n"
12324 "Do not advertise to any peer (well-known community)\n"
12325 "Do not export to next AS (well-known community)\n"
12326 "Exact match of the communities")
12327
12328 DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_local_cmd_vtysh,
12329 "no set ipv6 next-hop local",
12330 "Negate a command or set its defaults\n"
12331 "Set values in destination routing protocol\n"
12332 "IPv6 information\n"
12333 "IPv6 next-hop address\n"
12334 "IPv6 local address\n")
12335
12336 DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_in_cmd_vtysh,
12337 "clear bgp view WORD * soft in",
12338 "Reset functions\n"
12339 "BGP information\n"
12340 "BGP view\n"
12341 "view name\n"
12342 "Clear all peers\n"
12343 "Soft reconfig\n"
12344 "Soft reconfig inbound update\n")
12345
12346 DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_list_cmd_vtysh,
12347 "show ip bgp prefix-list WORD",
12348 "Show running system information\n"
12349 "IP information\n"
12350 "BGP information\n"
12351 "Display routes conforming to the prefix-list\n"
12352 "IP prefix-list name\n")
12353
12354 DEFSH (VTYSH_BGPD, neighbor_set_peer_group_cmd_vtysh,
12355 "neighbor (A.B.C.D|X:X::X:X) " "peer-group WORD",
12356 "Specify neighbor router\n"
12357 "Neighbor address\nIPv6 address\n"
12358 "Member of the peer-group\n"
12359 "peer-group name\n")
12360
12361 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_any_cmd_vtysh,
12362 "no access-list (<1-99>|<1300-1999>) (deny|permit) any",
12363 "Negate a command or set its defaults\n"
12364 "Add an access list entry\n"
12365 "IP standard access list\n"
12366 "IP standard access list (expanded range)\n"
12367 "Specify packets to reject\n"
12368 "Specify packets to forward\n"
12369 "Any source host\n")
12370
12371 DEFSH (VTYSH_BGPD, no_auto_summary_cmd_vtysh,
12372 "no auto-summary",
12373 "Negate a command or set its defaults\n"
12374 "Enable automatic network number summarization\n")
12375
12376 DEFSH (VTYSH_OSPFD, no_ip_ospf_network_cmd_vtysh,
12377 "no ip ospf network",
12378 "Negate a command or set its defaults\n"
12379 "IP Information\n"
12380 "OSPF interface commands\n"
12381 "Network type\n")
12382
12383 DEFSH (VTYSH_BGPD, neighbor_attr_unchanged3_cmd_vtysh,
12384 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop (as-path|med)",
12385 "Specify neighbor router\n"
12386 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12387 "BGP attribute is propagated unchanged to this neighbor\n"
12388 "Nexthop attribute\n"
12389 "As-path attribute\n"
12390 "Med attribute\n")
12391
12392 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_mask_any_cmd_vtysh,
12393 "access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D any",
12394 "Add an access list entry\n"
12395 "IP extended access list\n"
12396 "IP extended access list (expanded range)\n"
12397 "Specify packets to reject\n"
12398 "Specify packets to forward\n"
12399 "Any Internet Protocol\n"
12400 "Source address\n"
12401 "Source wildcard bits\n"
12402 "Any destination host\n")
12403
12404 DEFSH (VTYSH_BGPD, no_ipv6_aggregate_address_summary_only_cmd_vtysh,
12405 "no aggregate-address X:X::X:X/M summary-only",
12406 "Negate a command or set its defaults\n"
12407 "Configure BGP aggregate entries\n"
12408 "Aggregate prefix\n"
12409 "Filter more specific routes from updates\n")
12410
12411 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_nomask_cmd_vtysh,
12412 "no access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D",
12413 "Negate a command or set its defaults\n"
12414 "Add an access list entry\n"
12415 "IP standard access list\n"
12416 "IP standard access list (expanded range)\n"
12417 "Specify packets to reject\n"
12418 "Specify packets to forward\n"
12419 "Address to match\n")
12420
12421 DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_list_exact_cmd_vtysh,
12422 "show bgp ipv6 community-list WORD exact-match",
12423 "Show running system information\n"
12424 "BGP information\n"
12425 "Address family\n"
12426 "Display routes matching the community-list\n"
12427 "community-list name\n"
12428 "Exact match of the communities\n")
12429
12430 DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_in_cmd_vtysh,
12431 "clear ip bgp <1-65535> vpnv4 unicast in",
12432 "Reset functions\n"
12433 "IP information\n"
12434 "BGP information\n"
12435 "Clear peers with the AS number\n"
12436 "Address family\n"
12437 "Address Family modifier\n"
12438 "Soft reconfig inbound update\n")
12439
12440 DEFSH (VTYSH_OSPFD, ip_ospf_retransmit_interval_cmd_vtysh,
12441 "ip ospf retransmit-interval <3-65535>",
12442 "IP Information\n"
12443 "OSPF interface commands\n"
12444 "Time between retransmitting lost link state advertisements\n"
12445 "Seconds\n")
12446
12447 DEFSH (VTYSH_ZEBRA, no_ip_route_cmd_vtysh,
12448 "no ip route A.B.C.D/M (A.B.C.D|INTERFACE)",
12449 "Negate a command or set its defaults\n"
12450 "IP information\n"
12451 "Establish static routes\n"
12452 "IP destination prefix (e.g. 10.0.0.0/8)\n"
12453 "IP gateway address\n"
12454 "IP gateway interface name\n")
12455
12456 DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_cmd_vtysh,
12457 "show ip bgp vpnv4 all",
12458 "Show running system information\n"
12459 "IP information\n"
12460 "BGP information\n"
12461 "Display VPNv4 NLRI specific information\n"
12462 "Display information about all VPNv4 NLRIs\n")
12463
12464 DEFSH (VTYSH_RIPD, no_key_string_cmd_vtysh,
12465 "no key-string [LINE]",
12466 "Negate a command or set its defaults\n"
12467 "Unset key string\n"
12468 "The key\n")
12469
12470 DEFSH (VTYSH_BGPD, no_neighbor_soft_reconfiguration_cmd_vtysh,
12471 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "soft-reconfiguration inbound",
12472 "Negate a command or set its defaults\n"
12473 "Specify neighbor router\n"
12474 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12475 "Per neighbor soft reconfiguration\n"
12476 "Allow inbound soft reconfiguration for this neighbor\n")
12477
12478 DEFSH (VTYSH_BGPD, no_debug_bgp_events_cmd_vtysh,
12479 "no debug bgp events",
12480 "Negate a command or set its defaults\n"
12481 "Debugging functions (see also 'undebug')\n"
12482 "BGP information\n"
12483 "BGP events\n")
12484
12485 DEFSH (VTYSH_BGPD, no_neighbor_cmd_vtysh,
12486 "no neighbor (A.B.C.D|X:X::X:X|WORD) ",
12487 "Negate a command or set its defaults\n"
12488 "Specify neighbor router\n"
12489 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n")
12490
12491 DEFSH (VTYSH_ZEBRA, ip_irdp_holdtime_cmd_vtysh,
12492 "ip irdp holdtime <0-9000>",
12493 "IP information\n"
12494 "ICMP Router discovery on this interface\n"
12495 "Set holdtime value\n"
12496 "Holdtime value in seconds. Default is 1800 seconds\n")
12497
12498 DEFSH (VTYSH_BGPD, match_community_cmd_vtysh,
12499 "match community (<1-99>|<100-199>|WORD)",
12500 "Match values from routing table\n"
12501 "Match BGP community list\n"
12502 "Community-list number (standard)\n"
12503 "Community-list number (expanded)\n"
12504 "Community-list name\n")
12505
12506 DEFSH (VTYSH_BGPD, show_ip_extcommunity_list_cmd_vtysh,
12507 "show ip extcommunity-list",
12508 "Show running system information\n"
12509 "IP information\n"
12510 "List extended-community list\n")
12511
12512 DEFSH (VTYSH_OSPF6D, no_interface_area_cmd_vtysh,
12513 "no interface IFNAME area A.B.C.D",
12514 "Negate a command or set its defaults\n"
12515 "Disable routing on an IPv6 interface\n"
12516 "Interface name(e.g. ep0)\n")
12517
12518 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_mask_cmd_vtysh,
12519 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D A.B.C.D A.B.C.D",
12520 "Negate a command or set its defaults\n"
12521 "Add an access list entry\n"
12522 "IP extended access list\n"
12523 "IP extended access list (expanded range)\n"
12524 "Specify packets to reject\n"
12525 "Specify packets to forward\n"
12526 "Any Internet Protocol\n"
12527 "A single source host\n"
12528 "Source address\n"
12529 "Destination address\n"
12530 "Destination Wildcard bits\n")
12531
12532 DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_cmd_vtysh,
12533 "access-list WORD (deny|permit) A.B.C.D/M",
12534 "Add an access list entry\n"
12535 "IP zebra access-list name\n"
12536 "Specify packets to reject\n"
12537 "Specify packets to forward\n"
12538 "Prefix to match. e.g. 10.0.0.0/8\n")
12539
12540 DEFSH (VTYSH_OSPFD, no_area_range_cmd_vtysh,
12541 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M",
12542 "Negate a command or set its defaults\n"
12543 "OSPF area parameters\n"
12544 "OSPF area ID in IP address format\n"
12545 "OSPF area ID as a decimal value\n"
12546 "Deconfigure OSPF area range for route summarization\n"
12547 "area range prefix\n")
12548
12549 DEFSH (VTYSH_BGPD, old_ipv6_bgp_network_cmd_vtysh,
12550 "ipv6 bgp network X:X::X:X/M",
12551 "IPv6 information\n"
12552 "BGP information\n"
12553 "Specify a network to announce via BGP\n"
12554 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
12555
12556 DEFSH (VTYSH_BGPD, no_neighbor_filter_list_cmd_vtysh,
12557 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "filter-list WORD (in|out)",
12558 "Negate a command or set its defaults\n"
12559 "Specify neighbor router\n"
12560 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12561 "Establish BGP filters\n"
12562 "AS path access-list name\n"
12563 "Filter incoming routes\n"
12564 "Filter outgoing routes\n")
12565
12566 DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_list_exact_cmd_vtysh,
12567 "show ipv6 bgp community-list WORD exact-match",
12568 "Show running system information\n"
12569 "IPv6 information\n"
12570 "BGP information\n"
12571 "Display routes matching the community-list\n"
12572 "community-list name\n"
12573 "Exact match of the communities\n")
12574
12575 DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_routemap_cmd_vtysh,
12576 "redistribute connected route-map WORD",
12577 "Redistribute information from another routing protocol\n"
12578 "Connected\n"
12579 "Route map reference\n"
12580 "Pointer to route-map entries\n")
12581
12582 DEFSH (VTYSH_BGPD, undebug_bgp_events_cmd_vtysh,
12583 "undebug bgp events",
12584 "Disable debugging functions (see also 'debug')\n"
12585 "BGP information\n"
12586 "BGP events\n")
12587
12588 void
12589 vtysh_init_cmd ()
12590 {
12591 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_tags_cmd_vtysh);
12592 install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_detail_cmd_vtysh);
12593 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbors_cmd_vtysh);
12594 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_cmd_vtysh);
12595 install_element (VIEW_NODE, &show_ip_bgp_neighbors_cmd_vtysh);
12596 install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_all_cmd_vtysh);
12597 install_element (VIEW_NODE, &show_bgp_instance_summary_cmd_vtysh);
12598 install_element (ENABLE_NODE, &clear_bgp_peer_in_prefix_filter_cmd_vtysh);
12599 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
12600 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
12601 install_element (CONFIG_NODE, &no_debug_ospf_nsm_sub_cmd_vtysh);
12602 install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_addr_cmd_vtysh);
12603 install_element (RIPNG_NODE, &ripng_redistribute_static_metric_routemap_cmd_vtysh);
12604 install_element (OSPF_NODE, &no_network_area_cmd_vtysh);
12605 install_element (BGP_NODE, &no_neighbor_version_cmd_vtysh);
12606 install_element (VIEW_NODE, &show_ip_prefix_list_name_seq_cmd_vtysh);
12607 install_element (BGP_IPV4_NODE, &no_neighbor_route_server_client_cmd_vtysh);
12608 install_element (BGP_IPV4_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
12609 install_element (CONFIG_NODE, &no_ip_community_list_name_all_cmd_vtysh);
12610 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_routemap_cmd_vtysh);
12611 install_element (OSPF6_NODE, &interface_area_passive_cmd_vtysh);
12612 install_element (ENABLE_NODE, &debug_ospf_packet_all_cmd_vtysh);
12613 install_element (VIEW_NODE, &show_ipv6_bgp_cmd_vtysh);
12614 install_element (VIEW_NODE, &show_ip_bgp_ipv4_route_map_cmd_vtysh);
12615 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_cmd_vtysh);
12616 install_element (OSPF_NODE, &ospf_distance_ospf_external_cmd_vtysh);
12617 install_element (CONFIG_NODE, &no_debug_ospf_ism_sub_cmd_vtysh);
12618 install_element (CONFIG_NODE, &access_list_standard_nomask_cmd_vtysh);
12619 install_element (RMAP_NODE, &match_aspath_cmd_vtysh);
12620 install_element (ENABLE_NODE, &clear_bgp_peer_in_cmd_vtysh);
12621 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_out_cmd_vtysh);
12622 install_element (ENABLE_NODE, &debug_ospf_nsm_cmd_vtysh);
12623 install_element (BGP_IPV4M_NODE, &no_neighbor_default_originate_cmd_vtysh);
12624 install_element (RMAP_NODE, &no_set_metric_type_cmd_vtysh);
12625 install_element (RIPNG_NODE, &ripng_redistribute_connected_metric_cmd_vtysh);
12626 install_element (CONFIG_NODE, &no_ip_community_list_cmd_vtysh);
12627 install_element (BGP_IPV6_NODE, &no_ipv6_bgp_network_cmd_vtysh);
12628 install_element (ENABLE_NODE, &no_debug_ospf_lsa_cmd_vtysh);
12629 install_element (BGP_IPV4M_NODE, &neighbor_activate_cmd_vtysh);
12630 install_element (BGP_IPV4M_NODE, &no_neighbor_route_server_client_cmd_vtysh);
12631 install_element (VIEW_NODE, &show_ipv6_ospf6_area_route_cmd_vtysh);
12632 install_element (CONFIG_NODE, &access_list_extended_any_host_cmd_vtysh);
12633 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_in_cmd_vtysh);
12634 install_element (ENABLE_NODE, &clear_bgp_external_soft_in_cmd_vtysh);
12635 install_element (VIEW_NODE, &show_bgp_ipv6_prefix_list_cmd_vtysh);
12636 install_element (OSPF_NODE, &ospf_default_information_originate_cmd_vtysh);
12637 install_element (INTERFACE_NODE, &no_ip_rip_authentication_string_cmd_vtysh);
12638 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_ge_le_cmd_vtysh);
12639 install_element (VIEW_NODE, &show_ip_ospf_neighbor_int_detail_cmd_vtysh);
12640 install_element (RMAP_NODE, &set_vpnv4_nexthop_cmd_vtysh);
12641 install_element (BGP_IPV6_NODE, &no_ipv6_aggregate_address_summary_only_cmd_vtysh);
12642 install_element (VIEW_NODE, &show_ipv6_bgp_route_cmd_vtysh);
12643 install_element (ENABLE_NODE, &show_ip_bgp_prefix_longer_cmd_vtysh);
12644 install_element (RMAP_NODE, &no_set_ecommunity_rt_val_cmd_vtysh);
12645 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_in_cmd_vtysh);
12646 install_element (VIEW_NODE, &ipv6_mbgp_neighbor_advertised_route_cmd_vtysh);
12647 install_element (BGP_NODE, &neighbor_timers_cmd_vtysh);
12648 install_element (VIEW_NODE, &show_ipv6_ospf6_neighborlist_cmd_vtysh);
12649 install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_cmd_vtysh);
12650 install_element (CONFIG_NODE, &dump_bgp_routes_interval_cmd_vtysh);
12651 install_element (OSPF6_NODE, &interface_area_cmd_vtysh);
12652 install_element (OSPF_NODE, &ospf_redistribute_source_metric_type_routemap_cmd_vtysh);
12653 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_out_cmd_vtysh);
12654 install_element (ENABLE_NODE, &show_bgp_prefix_longer_cmd_vtysh);
12655 install_element (ENABLE_NODE, &show_zebra_cmd_vtysh);
12656 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
12657 install_element (ENABLE_NODE, &show_bgp_ipv6_regexp_cmd_vtysh);
12658 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_cmd_vtysh);
12659 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_all_cmd_vtysh);
12660 install_element (RMAP_NODE, &no_match_origin_cmd_vtysh);
12661 install_element (ENABLE_NODE, &show_ipv6_route_prefix_cmd_vtysh);
12662 install_element (VIEW_NODE, &show_ip_ospf_route_cmd_vtysh);
12663 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_cmd_vtysh);
12664 install_element (RMAP_NODE, &match_ip_address_cmd_vtysh);
12665 install_element (VIEW_NODE, &show_ip_bgp_paths_cmd_vtysh);
12666 install_element (ZEBRA_NODE, &no_redistribute_ospf6_cmd_vtysh);
12667 install_element (BGP_NODE, &neighbor_timers_connect_cmd_vtysh);
12668 install_element (RMAP_NODE, &no_set_aspath_prepend_val_cmd_vtysh);
12669 install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_longer_cmd_vtysh);
12670 install_element (BGP_IPV4_NODE, &aggregate_address_as_set_summary_cmd_vtysh);
12671 install_element (RIPNG_NODE, &ripng_redistribute_static_cmd_vtysh);
12672 install_element (INTERFACE_NODE, &no_ip_rip_send_version_cmd_vtysh);
12673 install_element (RIPNG_NODE, &default_information_originate_cmd_vtysh);
12674 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
12675 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_filter_list_cmd_vtysh);
12676 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_cmd_vtysh);
12677 install_element (RMAP_NODE, &set_ipv6_nexthop_local_cmd_vtysh);
12678 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_cmd_vtysh);
12679 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_self_cmd_vtysh);
12680 install_element (CONFIG_NODE, &no_ip_as_path_cmd_vtysh);
12681 install_element (ENABLE_NODE, &debug_bgp_normal_cmd_vtysh);
12682 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community4_cmd_vtysh);
12683 install_element (BGP_IPV4M_NODE, &no_bgp_network_cmd_vtysh);
12684 install_element (BGP_IPV4_NODE, &neighbor_unsuppress_map_cmd_vtysh);
12685 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_out_cmd_vtysh);
12686 install_element (ENABLE_NODE, &show_ip_prefix_list_name_cmd_vtysh);
12687 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh);
12688 install_element (VIEW_NODE, &show_ipv6_ospf6_neighbor_cmd_vtysh);
12689 install_element (ENABLE_NODE, &show_ip_bgp_flap_cidr_only_cmd_vtysh);
12690 install_element (RMAP_NODE, &match_metric_cmd_vtysh);
12691 install_element (BGP_IPV4_NODE, &neighbor_prefix_list_cmd_vtysh);
12692 install_element (BGP_IPV4_NODE, &neighbor_allowas_in_cmd_vtysh);
12693 install_element (ENABLE_NODE, &show_ip_route_cmd_vtysh);
12694 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_in_cmd_vtysh);
12695 install_element (ENABLE_NODE, &show_ipv6_route_cmd_vtysh);
12696 install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_addr_cmd_vtysh);
12697 install_element (RMAP_NODE, &no_set_ip_nexthop_val_cmd_vtysh);
12698 install_element (ENABLE_NODE, &show_ipv6_bgp_community3_cmd_vtysh);
12699 install_element (ENABLE_NODE, &show_ip_bgp_attr_info_cmd_vtysh);
12700 install_element (VIEW_NODE, &show_ip_bgp_ipv4_route_cmd_vtysh);
12701 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_in_cmd_vtysh);
12702 install_element (KEYCHAIN_NODE, &no_key_cmd_vtysh);
12703 install_element (VIEW_NODE, &show_ip_bgp_view_prefix_cmd_vtysh);
12704 install_element (ENABLE_NODE, &show_bgp_ipv6_cmd_vtysh);
12705 install_element (CONFIG_NODE, &access_list_extended_host_mask_cmd_vtysh);
12706 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_cmd_vtysh);
12707 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_exact_cmd_vtysh);
12708 install_element (ENABLE_NODE, &show_bgp_community2_cmd_vtysh);
12709 install_element (ENABLE_NODE, &clear_bgp_all_cmd_vtysh);
12710 install_element (ENABLE_NODE, &no_debug_ripng_zebra_cmd_vtysh);
12711 install_element (BGP_IPV4_NODE, &neighbor_route_map_cmd_vtysh);
12712 install_element (ENABLE_NODE, &show_ip_bgp_cmd_vtysh);
12713 install_element (BGP_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
12714 install_element (VIEW_NODE, &show_ip_ospf_cmd_vtysh);
12715 install_element (ENABLE_NODE, &show_ip_prefix_list_name_seq_cmd_vtysh);
12716 install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_cmd_vtysh);
12717 install_element (ENABLE_NODE, &clear_bgp_peer_group_in_cmd_vtysh);
12718 install_element (INTERFACE_NODE, &no_ospf_cost_cmd_vtysh);
12719 install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_longer_cmd_vtysh);
12720 install_element (RMAP_NODE, &no_set_atomic_aggregate_cmd_vtysh);
12721 install_element (VIEW_NODE, &show_bgp_community_list_exact_cmd_vtysh);
12722 install_element (ENABLE_NODE, &clear_ip_bgp_as_out_cmd_vtysh);
12723 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged_cmd_vtysh);
12724 install_element (BGP_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh);
12725 install_element (CONFIG_NODE, &router_zebra_cmd_vtysh);
12726 install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
12727 install_element (RMAP_NODE, &match_ipv6_next_hop_cmd_vtysh);
12728 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh);
12729 install_element (CONFIG_NODE, &no_router_zebra_cmd_vtysh);
12730 install_element (ENABLE_NODE, &show_bgp_summary_cmd_vtysh);
12731 install_element (OSPF_NODE, &neighbor_pollinterval_cmd_vtysh);
12732 install_element (CONFIG_NODE, &no_ip_route_pref_cmd_vtysh);
12733 install_element (ENABLE_NODE, &clear_bgp_all_soft_cmd_vtysh);
12734 install_element (ENABLE_NODE, &clear_ip_prefix_list_cmd_vtysh);
12735 install_element (ENABLE_NODE, &show_bgp_ipv6_community_exact_cmd_vtysh);
12736 install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_cmd_vtysh);
12737 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_in_prefix_filter_cmd_vtysh);
12738 install_element (ENABLE_NODE, &show_bgp_ipv6_community4_cmd_vtysh);
12739 install_element (ENABLE_NODE, &debug_zebra_packet_cmd_vtysh);
12740 install_element (BGP_NODE, &neighbor_local_as_cmd_vtysh);
12741 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_cmd_vtysh);
12742 install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_cmd_vtysh);
12743 install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_list_cmd_vtysh);
12744 install_element (VIEW_NODE, &show_ip_prefix_list_detail_name_cmd_vtysh);
12745 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh);
12746 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
12747 install_element (ENABLE_NODE, &clear_bgp_instance_all_cmd_vtysh);
12748 install_element (BGP_NODE, &neighbor_send_community_cmd_vtysh);
12749 install_element (RMAP_NODE, &no_set_vpnv4_nexthop_val_cmd_vtysh);
12750 install_element (BGP_NODE, &bgp_damp_set3_cmd_vtysh);
12751 install_element (BGP_IPV4_NODE, &neighbor_maximum_prefix_cmd_vtysh);
12752 install_element (BGP_IPV6_NODE, &ipv6_aggregate_address_cmd_vtysh);
12753 install_element (BGP_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
12754 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
12755 install_element (CONFIG_NODE, &access_list_extended_cmd_vtysh);
12756 install_element (BGP_IPV4M_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
12757 install_element (VIEW_NODE, &show_bgp_community_all_cmd_vtysh);
12758 install_element (VIEW_NODE, &show_ipv6_ospf6_cmd_vtysh);
12759 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_id_cmd_vtysh);
12760 install_element (INTERFACE_NODE, &ospf_retransmit_interval_cmd_vtysh);
12761 install_element (BGP_NODE, &bgp_default_ipv4_unicast_cmd_vtysh);
12762 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged_cmd_vtysh);
12763 install_element (ENABLE_NODE, &debug_ripng_packet_cmd_vtysh);
12764 install_element (ENABLE_NODE, &show_ip_prefix_list_cmd_vtysh);
12765 install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_longer_cmd_vtysh);
12766 install_element (BGP_NODE, &no_bgp_always_compare_med_cmd_vtysh);
12767 install_element (ENABLE_NODE, &show_bgp_ipv6_filter_list_cmd_vtysh);
12768 install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_list_cmd_vtysh);
12769 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_summary_cmd_vtysh);
12770 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_out_cmd_vtysh);
12771 install_element (VIEW_NODE, &show_ip_bgp_community3_exact_cmd_vtysh);
12772 install_element (CONFIG_NODE, &no_bgp_multiple_instance_cmd_vtysh);
12773 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh);
12774 install_element (ENABLE_NODE, &clear_ip_bgp_external_cmd_vtysh);
12775 install_element (INTERFACE_NODE, &ipv6_nd_prefix_advertisement_no_val_cmd_vtysh);
12776 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_out_cmd_vtysh);
12777 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_out_cmd_vtysh);
12778 install_element (BGP_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
12779 install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
12780 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
12781 install_element (VIEW_NODE, &show_ipv6_bgp_community2_cmd_vtysh);
12782 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
12783 install_element (BGP_IPV6_NODE, &no_neighbor_route_server_client_cmd_vtysh);
12784 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_in_cmd_vtysh);
12785 install_element (ENABLE_NODE, &undebug_bgp_events_cmd_vtysh);
12786 install_element (OSPF_NODE, &ospf_default_information_originate_type_cmd_vtysh);
12787 install_element (CONFIG_NODE, &no_ipv6_access_list_all_cmd_vtysh);
12788 install_element (OSPF_NODE, &no_ospf_distance_ospf_cmd_vtysh);
12789 install_element (BGP_IPV4_NODE, &bgp_network_mask_cmd_vtysh);
12790 install_element (RMAP_NODE, &match_community_cmd_vtysh);
12791 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_routemap_cmd_vtysh);
12792 install_element (CONFIG_NODE, &bgp_config_type_cmd_vtysh);
12793 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
12794 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_in_cmd_vtysh);
12795 install_element (BGP_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
12796 install_element (CONFIG_NODE, &no_ip_extcommunity_list_all_cmd_vtysh);
12797 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
12798 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh);
12799 install_element (CONFIG_NODE, &no_access_list_remark_cmd_vtysh);
12800 install_element (VIEW_NODE, &show_ip_bgp_ipv4_cidr_only_cmd_vtysh);
12801 install_element (BGP_NODE, &no_bgp_confederation_peers_cmd_vtysh);
12802 install_element (BGP_NODE, &no_neighbor_distribute_list_cmd_vtysh);
12803 install_element (VIEW_NODE, &show_ip_bgp_cidr_only_cmd_vtysh);
12804 install_element (ENABLE_NODE, &show_ipv6_prefix_list_summary_name_cmd_vtysh);
12805 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_ge_cmd_vtysh);
12806 install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_intra_cmd_vtysh);
12807 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community2_exact_cmd_vtysh);
12808 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh);
12809 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_cmd_vtysh);
12810 install_element (VIEW_NODE, &show_ip_bgp_cmd_vtysh);
12811 install_element (ENABLE_NODE, &clear_bgp_all_in_prefix_filter_cmd_vtysh);
12812 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_in_prefix_filter_cmd_vtysh);
12813 install_element (BGP_NODE, &neighbor_attr_unchanged_cmd_vtysh);
12814 install_element (BGP_NODE, &bgp_bestpath_med3_cmd_vtysh);
12815 install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_val_cmd_vtysh);
12816 install_element (BGP_IPV4M_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh);
12817 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_in_prefix_filter_cmd_vtysh);
12818 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_advertised_route_cmd_vtysh);
12819 install_element (OSPF_NODE, &area_authentication_cmd_vtysh);
12820 install_element (OSPF_NODE, &ospf_redistribute_source_type_cmd_vtysh);
12821 install_element (RIPNG_NODE, &no_ripng_timers_cmd_vtysh);
12822 install_element (INTERFACE_NODE, &ip_address_cmd_vtysh);
12823 install_element (ENABLE_NODE, &no_debug_ospf_event_cmd_vtysh);
12824 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_cmd_vtysh);
12825 install_element (CONFIG_NODE, &debug_zebra_packet_detail_cmd_vtysh);
12826 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
12827 install_element (RMAP_NODE, &match_ip_address_prefix_list_cmd_vtysh);
12828 install_element (ENABLE_NODE, &show_ip_bgp_community_cmd_vtysh);
12829 install_element (ENABLE_NODE, &show_ip_bgp_community2_cmd_vtysh);
12830 install_element (VIEW_NODE, &show_ip_ospf_database_type_cmd_vtysh);
12831 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_cmd_vtysh);
12832 install_element (CONFIG_NODE, &no_access_list_standard_nomask_cmd_vtysh);
12833 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_cmd_vtysh);
12834 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_list_exact_cmd_vtysh);
12835 install_element (BGP_IPV4_NODE, &no_neighbor_route_map_cmd_vtysh);
12836 install_element (RMAP_NODE, &no_match_community_val_cmd_vtysh);
12837 install_element (VIEW_NODE, &show_ipv6_ospf6_topology_cmd_vtysh);
12838 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_spf_tree_cmd_vtysh);
12839 install_element (OSPF6_NODE, &interface_area_plist_passive_cmd_vtysh);
12840 install_element (VIEW_NODE, &show_bgp_ipv6_community3_cmd_vtysh);
12841 install_element (BGP_IPV4M_NODE, &aggregate_address_as_set_summary_cmd_vtysh);
12842 install_element (OSPF_NODE, &neighbor_cmd_vtysh);
12843 install_element (BGP_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
12844 install_element (BGP_NODE, &bgp_distance_cmd_vtysh);
12845 install_element (VIEW_NODE, &show_ip_bgp_dampened_paths_cmd_vtysh);
12846 install_element (CONFIG_NODE, &no_ipv6_route_ifname_cmd_vtysh);
12847 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
12848 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_cmd_vtysh);
12849 install_element (BGP_VPNV4_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
12850 install_element (BGP_IPV4_NODE, &bgp_network_cmd_vtysh);
12851 install_element (BGP_NODE, &no_bgp_network_mask_cmd_vtysh);
12852 install_element (ENABLE_NODE, &no_debug_bgp_fsm_cmd_vtysh);
12853 install_element (OSPF_NODE, &no_passive_interface_cmd_vtysh);
12854 install_element (ENABLE_NODE, &debug_ospf_lsa_sub_cmd_vtysh);
12855 install_element (INTERFACE_NODE, &ip_irdp_maxadvertinterval_cmd_vtysh);
12856 install_element (INTERFACE_NODE, &no_ip_rip_receive_version_num_cmd_vtysh);
12857 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_all_cmd_vtysh);
12858 install_element (CONFIG_NODE, &ipv6_route_ifname_cmd_vtysh);
12859 install_element (KEYCHAIN_NODE, &no_key_chain_cmd_vtysh);
12860 install_element (VIEW_NODE, &show_ipv6_bgp_filter_list_cmd_vtysh);
12861 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_cmd_vtysh);
12862 install_element (VIEW_NODE, &show_bgp_ipv6_prefix_cmd_vtysh);
12863 install_element (VIEW_NODE, &show_ip_bgp_view_cmd_vtysh);
12864 install_element (VIEW_NODE, &show_bgp_community4_cmd_vtysh);
12865 install_element (VIEW_NODE, &show_ip_bgp_community_all_cmd_vtysh);
12866 install_element (BGP_NODE, &bgp_client_to_client_reflection_cmd_vtysh);
12867 install_element (INTERFACE_NODE, &ipv6_nd_ra_lifetime_cmd_vtysh);
12868 install_element (BGP_NODE, &neighbor_maximum_prefix_cmd_vtysh);
12869 install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_router_lsid_cmd_vtysh);
12870 install_element (OSPF_NODE, &ospf_redistribute_source_type_routemap_cmd_vtysh);
12871 install_element (BGP_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
12872 install_element (INTERFACE_NODE, &no_ipv6_address_cmd_vtysh);
12873 install_element (BGP_IPV4_NODE, &no_neighbor_allowas_in_cmd_vtysh);
12874 install_element (CONFIG_NODE, &ip_prefix_list_seq_ge_cmd_vtysh);
12875 install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
12876 install_element (INTERFACE_NODE, &ipv6_ospf6_retransmitinterval_cmd_vtysh);
12877 install_element (ENABLE_NODE, &show_ipv6_bgp_community_cmd_vtysh);
12878 install_element (ENABLE_NODE, &show_ip_extcommunity_list_arg_cmd_vtysh);
12879 install_element (BGP_IPV4M_NODE, &neighbor_filter_list_cmd_vtysh);
12880 install_element (BGP_IPV4M_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
12881 install_element (BGP_NODE, &bgp_cluster_id_cmd_vtysh);
12882 install_element (OSPF_NODE, &no_neighbor_priority_pollinterval_cmd_vtysh);
12883 install_element (CONFIG_NODE, &no_debug_bgp_normal_cmd_vtysh);
12884 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_routes_cmd_vtysh);
12885 install_element (VIEW_NODE, &show_ipv6_prefix_list_name_cmd_vtysh);
12886 install_element (VIEW_NODE, &show_ip_bgp_neighbors_peer_cmd_vtysh);
12887 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_out_cmd_vtysh);
12888 install_element (BGP_NODE, &bgp_confederation_peers_cmd_vtysh);
12889 install_element (RMAP_NODE, &set_local_pref_cmd_vtysh);
12890 install_element (BGP_NODE, &neighbor_peer_group_cmd_vtysh);
12891 install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_addr_cmd_vtysh);
12892 install_element (ENABLE_NODE, &debug_bgp_update_direct_cmd_vtysh);
12893 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_cmd_vtysh);
12894 install_element (ENABLE_NODE, &undebug_bgp_fsm_cmd_vtysh);
12895 install_element (VIEW_NODE, &show_bgp_neighbors_peer_cmd_vtysh);
12896 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
12897 install_element (OSPF_NODE, &no_area_import_list_cmd_vtysh);
12898 install_element (ENABLE_NODE, &clear_bgp_peer_soft_out_cmd_vtysh);
12899 install_element (BGP_NODE, &no_neighbor_ebgp_multihop_cmd_vtysh);
12900 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_ifname_cmd_vtysh);
12901 install_element (BGP_NODE, &aggregate_address_mask_cmd_vtysh);
12902 install_element (BGP_NODE, &old_no_ipv6_aggregate_address_summary_only_cmd_vtysh);
12903 install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd_vtysh);
12904 install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_cmd_vtysh);
12905 install_element (RMAP_NODE, &no_rmap_onmatch_next_cmd_vtysh);
12906 install_element (BGP_NODE, &no_neighbor_local_as_cmd_vtysh);
12907 install_element (ENABLE_NODE, &show_ipv6_prefix_list_detail_name_cmd_vtysh);
12908 install_element (ENABLE_NODE, &show_ip_bgp_instance_neighbors_cmd_vtysh);
12909 install_element (OSPF_NODE, &ospf_redistribute_source_metric_cmd_vtysh);
12910 install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_cmd_vtysh);
12911 install_element (RMAP_NODE, &set_community_none_cmd_vtysh);
12912 install_element (ENABLE_NODE, &no_debug_bgp_update_cmd_vtysh);
12913 install_element (BGP_IPV4_NODE, &no_neighbor_default_originate_cmd_vtysh);
12914 install_element (BGP_NODE, &no_bgp_network_route_map_cmd_vtysh);
12915 install_element (VIEW_NODE, &show_ipv6_ospf6_database_cmd_vtysh);
12916 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_in_cmd_vtysh);
12917 install_element (BGP_NODE, &no_bgp_default_local_preference_cmd_vtysh);
12918 install_element (ENABLE_NODE, &no_debug_zebra_packet_cmd_vtysh);
12919 install_element (BGP_NODE, &neighbor_transparent_nexthop_cmd_vtysh);
12920 install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
12921 install_element (INTERFACE_NODE, &ipv6_nd_reachable_time_cmd_vtysh);
12922 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_out_cmd_vtysh);
12923 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_addr_cmd_vtysh);
12924 install_element (BGP_IPV6_NODE, &neighbor_distribute_list_cmd_vtysh);
12925 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_all_cmd_vtysh);
12926 install_element (BGP_IPV4M_NODE, &neighbor_nexthop_self_cmd_vtysh);
12927 install_element (RIPNG_NODE, &ripng_passive_interface_cmd_vtysh);
12928 install_element (CONFIG_NODE, &access_list_extended_any_mask_cmd_vtysh);
12929 install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_in_cmd_vtysh);
12930 install_element (CONFIG_NODE, &ip_extcommunity_list_name_expanded_cmd_vtysh);
12931 install_element (BGP_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
12932 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_le_ge_cmd_vtysh);
12933 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_router_cmd_vtysh);
12934 install_element (CONFIG_NODE, &no_access_list_all_cmd_vtysh);
12935 install_element (ENABLE_NODE, &clear_bgp_external_out_cmd_vtysh);
12936 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_in_cmd_vtysh);
12937 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_infinite_day_month_cmd_vtysh);
12938 install_element (BGP_IPV4_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh);
12939 install_element (CONFIG_NODE, &debug_ripng_zebra_cmd_vtysh);
12940 install_element (CONFIG_NODE, &no_debug_bgp_events_cmd_vtysh);
12941 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_cmd_vtysh);
12942 install_element (BGP_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
12943 install_element (ENABLE_NODE, &no_debug_ripng_packet_cmd_vtysh);
12944 install_element (BGP_NODE, &bgp_network_cmd_vtysh);
12945 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_in_cmd_vtysh);
12946 install_element (BGP_NODE, &neighbor_distribute_list_cmd_vtysh);
12947 install_element (OSPF_NODE, &no_area_vlink_param4_cmd_vtysh);
12948 install_element (BGP_NODE, &neighbor_nexthop_self_cmd_vtysh);
12949 install_element (VIEW_NODE, &show_bgp_prefix_list_cmd_vtysh);
12950 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh);
12951 install_element (INTERFACE_NODE, &no_ip_rip_authentication_string2_cmd_vtysh);
12952 install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_out_cmd_vtysh);
12953 install_element (ENABLE_NODE, &no_debug_bgp_keepalive_cmd_vtysh);
12954 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh);
12955 install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_cmd_vtysh);
12956 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_cmd_vtysh);
12957 install_element (INTERFACE_NODE, &no_ip_ospf_network_cmd_vtysh);
12958 install_element (CONFIG_NODE, &ip_route_pref_cmd_vtysh);
12959 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
12960 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_in_prefix_filter_cmd_vtysh);
12961 install_element (BGP_NODE, &bgp_damp_set_cmd_vtysh);
12962 install_element (CONFIG_NODE, &no_ip_route_mask_pref_cmd_vtysh);
12963 install_element (VIEW_NODE, &show_ipv6_prefix_list_summary_cmd_vtysh);
12964 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
12965 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh);
12966 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_in_cmd_vtysh);
12967 install_element (VIEW_NODE, &show_ip_prefix_list_prefix_longer_cmd_vtysh);
12968 install_element (CONFIG_NODE, &debug_bgp_events_cmd_vtysh);
12969 install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
12970 install_element (RMAP_NODE, &set_origin_cmd_vtysh);
12971 install_element (ENABLE_NODE, &show_debug_ospf6_cmd_vtysh);
12972 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_out_cmd_vtysh);
12973 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
12974 install_element (VIEW_NODE, &show_bgp_ipv6_community2_cmd_vtysh);
12975 install_element (CONFIG_NODE, &ipv6_prefix_list_ge_le_cmd_vtysh);
12976 install_element (RMAP_NODE, &set_community_delete_cmd_vtysh);
12977 install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_cmd_vtysh);
12978 install_element (ENABLE_NODE, &clear_ip_bgp_as_in_cmd_vtysh);
12979 install_element (BGP_NODE, &neighbor_capability_dynamic_cmd_vtysh);
12980 install_element (INTERFACE_NODE, &no_ip_rip_send_version_num_cmd_vtysh);
12981 install_element (ENABLE_NODE, &debug_rip_zebra_cmd_vtysh);
12982 install_element (BGP_NODE, &no_bgp_fast_external_failover_cmd_vtysh);
12983 install_element (KEYCHAIN_KEY_NODE, &no_key_chain_cmd_vtysh);
12984 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh);
12985 install_element (BGP_VPNV4_NODE, &neighbor_prefix_list_cmd_vtysh);
12986 install_element (ENABLE_NODE, &show_ipv6_mbgp_filter_list_cmd_vtysh);
12987 install_element (VIEW_NODE, &show_ip_bgp_neighbor_received_routes_cmd_vtysh);
12988 install_element (BGP_NODE, &aggregate_address_mask_as_set_cmd_vtysh);
12989 install_element (CONFIG_NODE, &ip_prefix_list_description_cmd_vtysh);
12990 install_element (CONFIG_NODE, &no_ipv6_route_pref_cmd_vtysh);
12991 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
12992 install_element (INTERFACE_NODE, &no_ipv6_nd_other_config_flag_cmd_vtysh);
12993 install_element (BGP_NODE, &neighbor_weight_cmd_vtysh);
12994 install_element (OSPF_NODE, &ospf_default_information_originate_type_metric_routemap_cmd_vtysh);
12995 install_element (ENABLE_NODE, &show_ip_bgp_flap_statistics_cmd_vtysh);
12996 install_element (VIEW_NODE, &show_ip_bgp_flap_statistics_cmd_vtysh);
12997 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_routemap_cmd_vtysh);
12998 install_element (INTERFACE_NODE, &no_ip_address_label_cmd_vtysh);
12999 install_element (VIEW_NODE, &show_bgp_ipv6_community2_exact_cmd_vtysh);
13000 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_out_cmd_vtysh);
13001 install_element (VIEW_NODE, &show_ipv6_route_ospf6_external_cmd_vtysh);
13002 install_element (INTERFACE_NODE, &no_ospf_authentication_key_cmd_vtysh);
13003 install_element (ENABLE_NODE, &clear_ip_bgp_as_cmd_vtysh);
13004 install_element (INTERFACE_NODE, &interface_ip_ospf_authentication_cmd_vtysh);
13005 install_element (ZEBRA_NODE, &no_ripng_redistribute_ripng_cmd_vtysh);
13006 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_exact_cmd_vtysh);
13007 install_element (BGP_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
13008 install_element (VIEW_NODE, &show_ip_ospf_neighbor_cmd_vtysh);
13009 install_element (ENABLE_NODE, &show_ipv6_bgp_summary_cmd_vtysh);
13010 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh);
13011 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
13012 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_in_cmd_vtysh);
13013 install_element (ENABLE_NODE, &debug_rip_packet_direct_cmd_vtysh);
13014 install_element (INTERFACE_NODE, &ip_ospf_priority_addr_cmd_vtysh);
13015 install_element (BGP_NODE, &no_neighbor_update_source_cmd_vtysh);
13016 install_element (BGP_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
13017 install_element (ENABLE_NODE, &debug_zebra_packet_direct_cmd_vtysh);
13018 install_element (BGP_IPV4_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
13019 install_element (BGP_IPV6_NODE, &neighbor_set_peer_group_cmd_vtysh);
13020 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
13021 install_element (BGP_NODE, &no_bgp_confederation_identifier_cmd_vtysh);
13022 install_element (ENABLE_NODE, &show_ipv6_route_protocol_cmd_vtysh);
13023 install_element (ENABLE_NODE, &show_ip_bgp_route_cmd_vtysh);
13024 install_element (VIEW_NODE, &show_ip_bgp_view_route_cmd_vtysh);
13025 install_element (CONFIG_NODE, &access_list_extended_host_any_cmd_vtysh);
13026 install_element (RIP_NODE, &rip_default_information_originate_cmd_vtysh);
13027 install_element (BGP_NODE, &bgp_distance_source_access_list_cmd_vtysh);
13028 install_element (ENABLE_NODE, &show_bgp_community_list_exact_cmd_vtysh);
13029 install_element (OSPF6_NODE, &ospf6_redistribute_cmd_vtysh);
13030 install_element (BGP_IPV4_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
13031 install_element (RMAP_NODE, &match_ipv6_address_cmd_vtysh);
13032 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_list_cmd_vtysh);
13033 install_element (INTERFACE_NODE, &ip_irdp_holdtime_cmd_vtysh);
13034 install_element (VIEW_NODE, &show_ipv6_bgp_community3_cmd_vtysh);
13035 install_element (VIEW_NODE, &show_bgp_neighbor_routes_cmd_vtysh);
13036 install_element (ENABLE_NODE, &show_ip_bgp_route_map_cmd_vtysh);
13037 install_element (CONFIG_NODE, &no_ipv6_route_ifname_pref_cmd_vtysh);
13038 install_element (ENABLE_NODE, &show_debugging_bgp_cmd_vtysh);
13039 install_element (RMAP_NODE, &no_match_ipv6_next_hop_cmd_vtysh);
13040 install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd_vtysh);
13041 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_prefix_cmd_vtysh);
13042 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_cmd_vtysh);
13043 install_element (ENABLE_NODE, &no_debug_ospf_nsm_cmd_vtysh);
13044 install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_first_match_cmd_vtysh);
13045 install_element (CONFIG_NODE, &ip_community_list_standard_cmd_vtysh);
13046 install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_out_cmd_vtysh);
13047 install_element (VIEW_NODE, &show_bgp_community2_exact_cmd_vtysh);
13048 install_element (RMAP_NODE, &no_match_ip_next_hop_val_cmd_vtysh);
13049 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
13050 install_element (BGP_IPV4_NODE, &no_neighbor_send_community_cmd_vtysh);
13051 install_element (BGP_NODE, &no_bgp_network_mask_natural_cmd_vtysh);
13052 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_in_prefix_filter_cmd_vtysh);
13053 install_element (ENABLE_NODE, &clear_ip_bgp_peer_cmd_vtysh);
13054 install_element (ENABLE_NODE, &show_ipv6_bgp_community_list_exact_cmd_vtysh);
13055 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh);
13056 install_element (ENABLE_NODE, &no_debug_ospf_zebra_sub_cmd_vtysh);
13057 install_element (BGP_IPV4M_NODE, &bgp_network_route_map_cmd_vtysh);
13058 install_element (ENABLE_NODE, &clear_bgp_peer_soft_in_cmd_vtysh);
13059 install_element (CONFIG_NODE, &ip_community_list_cmd_vtysh);
13060 install_element (RMAP_NODE, &no_set_ip_nexthop_cmd_vtysh);
13061 install_element (OSPF_NODE, &network_area_cmd_vtysh);
13062 install_element (RIP_NODE, &no_rip_version_val_cmd_vtysh);
13063 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_in_cmd_vtysh);
13064 install_element (VIEW_NODE, &show_ip_bgp_flap_regexp_cmd_vtysh);
13065 install_element (RMAP_NODE, &no_match_ip_next_hop_cmd_vtysh);
13066 install_element (INTERFACE_NODE, &no_ipv6_nd_send_ra_cmd_vtysh);
13067 install_element (BGP_NODE, &bgp_damp_set2_cmd_vtysh);
13068 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_spf_node_cmd_vtysh);
13069 install_element (VIEW_NODE, &ipv6_bgp_neighbor_received_routes_cmd_vtysh);
13070 install_element (ENABLE_NODE, &show_bgp_ipv6_community_list_cmd_vtysh);
13071 install_element (ENABLE_NODE, &show_ip_route_prefix_cmd_vtysh);
13072 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh);
13073 install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_first_match_cmd_vtysh);
13074 install_element (BGP_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh);
13075 install_element (VIEW_NODE, &show_ip_bgp_ipv4_summary_cmd_vtysh);
13076 install_element (CONFIG_NODE, &ipv6_prefix_list_le_cmd_vtysh);
13077 install_element (OSPF_NODE, &area_vlink_param3_cmd_vtysh);
13078 install_element (CONFIG_NODE, &debug_rip_zebra_cmd_vtysh);
13079 install_element (BGP_NODE, &bgp_enforce_first_as_cmd_vtysh);
13080 install_element (OSPF_NODE, &no_area_export_list_cmd_vtysh);
13081 install_element (ENABLE_NODE, &show_ip_bgp_community_list_cmd_vtysh);
13082 install_element (BGP_NODE, &no_bgp_router_id_val_cmd_vtysh);
13083 install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_routes_cmd_vtysh);
13084 install_element (BGP_IPV4_NODE, &aggregate_address_mask_cmd_vtysh);
13085 install_element (ENABLE_NODE, &no_debug_bgp_filter_cmd_vtysh);
13086 install_element (CONFIG_NODE, &ip_route_mask_pref_cmd_vtysh);
13087 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh);
13088 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13089 install_element (VIEW_NODE, &show_ip_route_prefix_cmd_vtysh);
13090 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
13091 install_element (RMAP_NODE, &ospf6_routemap_set_metric_type_cmd_vtysh);
13092 install_element (ENABLE_NODE, &undebug_bgp_update_cmd_vtysh);
13093 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_summary_only_cmd_vtysh);
13094 install_element (VIEW_NODE, &show_ipv6_ripng_cmd_vtysh);
13095 install_element (RMAP_NODE, &no_match_ip_address_prefix_list_cmd_vtysh);
13096 install_element (BGP_NODE, &no_neighbor_capability_route_refresh_cmd_vtysh);
13097 install_element (BGP_VPNV4_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13098 install_element (ENABLE_NODE, &show_ip_route_addr_cmd_vtysh);
13099 install_element (BGP_NODE, &bgp_network_import_check_cmd_vtysh);
13100 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_infinite_month_day_cmd_vtysh);
13101 install_element (ENABLE_NODE, &clear_bgp_external_soft_cmd_vtysh);
13102 install_element (ENABLE_NODE, &clear_ipv6_prefix_list_name_cmd_vtysh);
13103 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_in_prefix_filter_cmd_vtysh);
13104 install_element (BGP_IPV6_NODE, &neighbor_nexthop_self_cmd_vtysh);
13105 install_element (VIEW_NODE, &show_ipv6_mbgp_community_all_cmd_vtysh);
13106 install_element (OSPF_NODE, &ospf_redistribute_source_type_metric_cmd_vtysh);
13107 install_element (BGP_NODE, &neighbor_ebgp_multihop_ttl_cmd_vtysh);
13108 install_element (OSPF_NODE, &ospf_redistribute_source_routemap_cmd_vtysh);
13109 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_le_cmd_vtysh);
13110 install_element (RIP_NODE, &rip_network_cmd_vtysh);
13111 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_metric_cmd_vtysh);
13112 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13113 install_element (VIEW_NODE, &show_ip_bgp_community2_exact_cmd_vtysh);
13114 install_element (BGP_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
13115 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_cmd_vtysh);
13116 install_element (OSPF_NODE, &no_ospf_router_id_cmd_vtysh);
13117 install_element (RIP_NODE, &no_rip_default_metric_val_cmd_vtysh);
13118 install_element (RIPNG_NODE, &ripng_route_cmd_vtysh);
13119 install_element (BGP_IPV4M_NODE, &bgp_network_mask_route_map_cmd_vtysh);
13120 install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_router_cmd_vtysh);
13121 install_element (RIP_NODE, &no_rip_distance_source_access_list_cmd_vtysh);
13122 install_element (OSPF_NODE, &ospf_redistribute_source_metric_type_cmd_vtysh);
13123 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_in_cmd_vtysh);
13124 install_element (VIEW_NODE, &show_ipv6_mbgp_community2_cmd_vtysh);
13125 install_element (BGP_IPV4_NODE, &aggregate_address_as_set_cmd_vtysh);
13126 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
13127 install_element (OSPF6_NODE, &interface_area_plist_cmd_vtysh);
13128 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh);
13129 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_damp_cmd_vtysh);
13130 install_element (VIEW_NODE, &show_ipv6_ospf6_route_prefix_cmd_vtysh);
13131 install_element (ENABLE_NODE, &show_ip_community_list_arg_cmd_vtysh);
13132 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_routes_cmd_vtysh);
13133 install_element (ENABLE_NODE, &clear_ipv6_prefix_list_cmd_vtysh);
13134 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_out_cmd_vtysh);
13135 install_element (BGP_VPNV4_NODE, &no_neighbor_filter_list_cmd_vtysh);
13136 install_element (BGP_NODE, &no_neighbor_default_originate_cmd_vtysh);
13137 install_element (INTERFACE_NODE, &no_ospf_hello_interval_cmd_vtysh);
13138 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_in_cmd_vtysh);
13139 install_element (BGP_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
13140 install_element (CONFIG_NODE, &ipv6_route_cmd_vtysh);
13141 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_prefix_cmd_vtysh);
13142 install_element (RIP_NODE, &rip_timers_cmd_vtysh);
13143 install_element (CONFIG_NODE, &no_dump_bgp_routes_cmd_vtysh);
13144 install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_cmd_vtysh);
13145 install_element (CONFIG_NODE, &debug_bgp_update_cmd_vtysh);
13146 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_out_cmd_vtysh);
13147 install_element (OSPF6_NODE, &no_ospf6_redistribute_cmd_vtysh);
13148 install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_expanded_cmd_vtysh);
13149 install_element (ENABLE_NODE, &show_ip_ospf_database_type_adv_router_cmd_vtysh);
13150 install_element (ENABLE_NODE, &show_ip_bgp_community3_exact_cmd_vtysh);
13151 install_element (VIEW_NODE, &show_ipv6_prefix_list_name_seq_cmd_vtysh);
13152 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
13153 install_element (BGP_NODE, &neighbor_activate_cmd_vtysh);
13154 install_element (CONFIG_NODE, &no_access_list_standard_host_cmd_vtysh);
13155 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
13156 install_element (VIEW_NODE, &show_ip_bgp_neighbor_flap_cmd_vtysh);
13157 install_element (INTERFACE_NODE, &ipv6_ospf6_advertise_force_prefix_cmd_vtysh);
13158 install_element (INTERFACE_NODE, &ip_ospf_cost_addr_cmd_vtysh);
13159 install_element (VIEW_NODE, &show_ipv6_bgp_community3_exact_cmd_vtysh);
13160 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
13161 install_element (INTERFACE_NODE, &multicast_cmd_vtysh);
13162 install_element (VIEW_NODE, &show_bgp_ipv6_prefix_longer_cmd_vtysh);
13163 install_element (BGP_NODE, &bgp_deterministic_med_cmd_vtysh);
13164 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_all_cmd_vtysh);
13165 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_metric_rmap_cmd_vtysh);
13166 install_element (INTERFACE_NODE, &no_ospf_message_digest_key_cmd_vtysh);
13167 install_element (OSPF_NODE, &ospf_redistribute_source_type_metric_routemap_cmd_vtysh);
13168 install_element (BGP_IPV4M_NODE, &no_aggregate_address_cmd_vtysh);
13169 install_element (RMAP_NODE, &set_community_cmd_vtysh);
13170 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_ifname_cmd_vtysh);
13171 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13172 install_element (CONFIG_NODE, &debug_ospf_nsm_sub_cmd_vtysh);
13173 install_element (ENABLE_NODE, &show_ip_ospf_interface_cmd_vtysh);
13174 install_element (ENABLE_NODE, &show_ip_bgp_community4_exact_cmd_vtysh);
13175 install_element (BGP_NODE, &no_bgp_default_local_preference_val_cmd_vtysh);
13176 install_element (BGP_IPV4M_NODE, &bgp_network_mask_natural_cmd_vtysh);
13177 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh);
13178 install_element (BGP_NODE, &no_neighbor_activate_cmd_vtysh);
13179 install_element (INTERFACE_NODE, &ospf_priority_cmd_vtysh);
13180 install_element (CONFIG_NODE, &dump_bgp_routes_cmd_vtysh);
13181 install_element (VIEW_NODE, &show_bgp_community3_cmd_vtysh);
13182 install_element (RMAP_NODE, &no_set_metric_cmd_vtysh);
13183 install_element (OSPF_NODE, &ospf_distribute_list_out_cmd_vtysh);
13184 install_element (BGP_NODE, &no_bgp_cluster_id_cmd_vtysh);
13185 install_element (ENABLE_NODE, &no_debug_ospf_packet_all_cmd_vtysh);
13186 install_element (ENABLE_NODE, &show_bgp_ipv6_summary_cmd_vtysh);
13187 install_element (CONFIG_NODE, &debug_ospf_ism_sub_cmd_vtysh);
13188 install_element (RIPNG_NODE, &ripng_redistribute_bgp_metric_cmd_vtysh);
13189 install_element (CONFIG_NODE, &no_debug_rip_packet_direct_cmd_vtysh);
13190 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
13191 install_element (OSPF_NODE, &no_auto_cost_reference_bandwidth_cmd_vtysh);
13192 install_element (RIP_NODE, &no_rip_timers_cmd_vtysh);
13193 install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_cmd_vtysh);
13194 install_element (ENABLE_NODE, &show_ip_bgp_neighbors_peer_cmd_vtysh);
13195 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_int_detail_cmd_vtysh);
13196 install_element (ENABLE_NODE, &debug_bgp_keepalive_cmd_vtysh);
13197 install_element (INTERFACE_NODE, &no_ipv6_nd_ra_interval_cmd_vtysh);
13198 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community4_cmd_vtysh);
13199 install_element (RIP_NODE, &rip_offset_list_ifname_cmd_vtysh);
13200 install_element (RIPNG_NODE, &ripng_redistribute_bgp_metric_routemap_cmd_vtysh);
13201 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
13202 install_element (RMAP_NODE, &rmap_onmatch_next_cmd_vtysh);
13203 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_in_prefix_filter_cmd_vtysh);
13204 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_routemap_cmd_vtysh);
13205 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
13206 install_element (BGP_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
13207 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbors_cmd_vtysh);
13208 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh);
13209 install_element (RIPNG_NODE, &no_ripng_route_cmd_vtysh);
13210 install_element (ENABLE_NODE, &clear_ip_bgp_peer_in_cmd_vtysh);
13211 install_element (ENABLE_NODE, &show_ipv6_access_list_name_cmd_vtysh);
13212 install_element (BGP_IPV6_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
13213 install_element (ENABLE_NODE, &show_bgp_filter_list_cmd_vtysh);
13214 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_in_cmd_vtysh);
13215 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
13216 install_element (VIEW_NODE, &show_ipv6_route_addr_cmd_vtysh);
13217 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
13218 install_element (BGP_NODE, &bgp_distance_source_cmd_vtysh);
13219 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_rmap_metric_cmd_vtysh);
13220 install_element (CONFIG_NODE, &no_ipv6_access_list_cmd_vtysh);
13221 install_element (CONFIG_NODE, &no_ipv6_access_list_any_cmd_vtysh);
13222 install_element (BGP_NODE, &no_aggregate_address_cmd_vtysh);
13223 install_element (CONFIG_NODE, &no_debug_zebra_kernel_cmd_vtysh);
13224 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_route_cmd_vtysh);
13225 install_element (ENABLE_NODE, &show_bgp_neighbor_received_routes_cmd_vtysh);
13226 install_element (CONFIG_NODE, &no_ip_extcommunity_list_standard_cmd_vtysh);
13227 install_element (VIEW_NODE, &show_ipv6_bgp_community_exact_cmd_vtysh);
13228 install_element (BGP_IPV4_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
13229 install_element (BGP_NODE, &no_aggregate_address_as_set_cmd_vtysh);
13230 install_element (VIEW_NODE, &show_ip_bgp_regexp_cmd_vtysh);
13231 install_element (CONFIG_NODE, &no_zebra_interface_cmd_vtysh);
13232 install_element (BGP_IPV4_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh);
13233 install_element (ENABLE_NODE, &show_ip_ospf_database_type_self_cmd_vtysh);
13234 install_element (ENABLE_NODE, &clear_ip_bgp_external_in_cmd_vtysh);
13235 install_element (BGP_IPV6_NODE, &neighbor_send_community_type_cmd_vtysh);
13236 install_element (VIEW_NODE, &ipv6_mbgp_neighbor_routes_cmd_vtysh);
13237 install_element (OSPF_NODE, &no_area_vlink_authtype_md5_cmd_vtysh);
13238 install_element (BGP_NODE, &no_neighbor_filter_list_cmd_vtysh);
13239 install_element (VIEW_NODE, &show_ipv6_route_protocol_cmd_vtysh);
13240 install_element (RMAP_NODE, &no_set_origin_val_cmd_vtysh);
13241 install_element (VIEW_NODE, &show_ip_ospf_database_cmd_vtysh);
13242 install_element (INTERFACE_NODE, &ipv6_nd_managed_config_flag_cmd_vtysh);
13243 install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_cmd_vtysh);
13244 install_element (BGP_IPV4M_NODE, &neighbor_unsuppress_map_cmd_vtysh);
13245 install_element (CONFIG_NODE, &no_debug_ospf_event_cmd_vtysh);
13246 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_out_cmd_vtysh);
13247 install_element (ENABLE_NODE, &show_ipv6_bgp_community2_cmd_vtysh);
13248 install_element (ENABLE_NODE, &clear_bgp_peer_group_cmd_vtysh);
13249 install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_routemap_cmd_vtysh);
13250 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh);
13251 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_out_cmd_vtysh);
13252 install_element (INTERFACE_NODE, &bandwidth_if_cmd_vtysh);
13253 install_element (OSPF_NODE, &ospf_distance_ospf_intra_cmd_vtysh);
13254 install_element (ENABLE_NODE, &clear_bgp_as_cmd_vtysh);
13255 install_element (ENABLE_NODE, &show_ip_bgp_community2_exact_cmd_vtysh);
13256 install_element (OSPF_NODE, &area_vlink_authtype_authkey_cmd_vtysh);
13257 install_element (OSPF_NODE, &area_range_advertise_cost_cmd_vtysh);
13258 install_element (BGP_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
13259 install_element (OSPF_NODE, &no_neighbor_cmd_vtysh);
13260 install_element (CONFIG_NODE, &debug_rip_packet_detail_cmd_vtysh);
13261 install_element (RMAP_NODE, &no_set_aspath_prepend_cmd_vtysh);
13262 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh);
13263 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_ge_le_cmd_vtysh);
13264 install_element (BGP_NODE, &no_aggregate_address_summary_only_cmd_vtysh);
13265 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh);
13266 install_element (BGP_VPNV4_NODE, &neighbor_allowas_in_cmd_vtysh);
13267 install_element (ENABLE_NODE, &show_ip_prefix_list_summary_name_cmd_vtysh);
13268 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_longer_cmd_vtysh);
13269 install_element (OSPF_NODE, &area_stub_cmd_vtysh);
13270 install_element (OSPF_NODE, &area_authentication_message_digest_cmd_vtysh);
13271 install_element (VIEW_NODE, &show_ipv6_prefix_list_detail_name_cmd_vtysh);
13272 install_element (INTERFACE_NODE, &ipv6_ospf6_cost_cmd_vtysh);
13273 install_element (ENABLE_NODE, &undebug_bgp_filter_cmd_vtysh);
13274 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_cmd_vtysh);
13275 install_element (CONFIG_NODE, &debug_ospf_ism_cmd_vtysh);
13276 install_element (RIPNG_NODE, &no_ripng_passive_interface_cmd_vtysh);
13277 install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_cmd_vtysh);
13278 install_element (BGP_IPV4M_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
13279 install_element (BGP_IPV4_NODE, &bgp_network_mask_route_map_cmd_vtysh);
13280 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_in_prefix_filter_cmd_vtysh);
13281 install_element (BGP_IPV6_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
13282 install_element (INTERFACE_NODE, &ospf_cost_cmd_vtysh);
13283 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_day_month_month_day_cmd_vtysh);
13284 install_element (RMAP_NODE, &set_ip_nexthop_cmd_vtysh);
13285 install_element (CONFIG_NODE, &debug_ospf_event_cmd_vtysh);
13286 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_cmd_vtysh);
13287 install_element (BGP_IPV4_NODE, &neighbor_activate_cmd_vtysh);
13288 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_rmap_metric_cmd_vtysh);
13289 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh);
13290 install_element (ENABLE_NODE, &debug_bgp_fsm_cmd_vtysh);
13291 install_element (BGP_NODE, &neighbor_override_capability_cmd_vtysh);
13292 install_element (VIEW_NODE, &show_table_cmd_vtysh);
13293 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_routemap_cmd_vtysh);
13294 install_element (BGP_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
13295 install_element (INTERFACE_NODE, &ip_ospf_cost_cmd_vtysh);
13296 install_element (ENABLE_NODE, &clear_bgp_all_soft_out_cmd_vtysh);
13297 install_element (BGP_IPV4_NODE, &bgp_damp_set_cmd_vtysh);
13298 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_val_cmd_vtysh);
13299 install_element (VIEW_NODE, &show_ip_bgp_community2_cmd_vtysh);
13300 install_element (VIEW_NODE, &show_ipv6_mbgp_community3_exact_cmd_vtysh);
13301 install_element (CONFIG_NODE, &dump_bgp_all_cmd_vtysh);
13302 install_element (CONFIG_NODE, &debug_ripng_packet_detail_cmd_vtysh);
13303 install_element (INTERFACE_NODE, &ospf_transmit_delay_cmd_vtysh);
13304 install_element (ENABLE_NODE, &show_ip_ospf_database_type_cmd_vtysh);
13305 install_element (BGP_NODE, &aggregate_address_as_set_cmd_vtysh);
13306 install_element (BGP_NODE, &no_bgp_distance2_cmd_vtysh);
13307 install_element (OSPF_NODE, &no_area_vlink_param2_cmd_vtysh);
13308 install_element (VIEW_NODE, &show_bgp_ipv6_filter_list_cmd_vtysh);
13309 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
13310 install_element (VIEW_NODE, &show_bgp_community_exact_cmd_vtysh);
13311 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_in_cmd_vtysh);
13312 install_element (OSPF_NODE, &auto_cost_reference_bandwidth_cmd_vtysh);
13313 install_element (CONFIG_NODE, &ip_route_cmd_vtysh);
13314 install_element (INTERFACE_NODE, &ipv6_ospf6_priority_cmd_vtysh);
13315 install_element (CONFIG_NODE, &no_ipv6_prefix_list_description_arg_cmd_vtysh);
13316 install_element (VIEW_NODE, &show_ip_bgp_flap_address_cmd_vtysh);
13317 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_routes_cmd_vtysh);
13318 install_element (CONFIG_NODE, &debug_bgp_filter_cmd_vtysh);
13319 install_element (CONFIG_NODE, &no_ip_prefix_list_le_ge_cmd_vtysh);
13320 install_element (BGP_IPV4M_NODE, &neighbor_route_map_cmd_vtysh);
13321 install_element (ENABLE_NODE, &show_debugging_ripng_cmd_vtysh);
13322 install_element (BGP_IPV4M_NODE, &aggregate_address_cmd_vtysh);
13323 install_element (ENABLE_NODE, &show_ipv6_bgp_community4_cmd_vtysh);
13324 install_element (VIEW_NODE, &show_ip_bgp_community_list_exact_cmd_vtysh);
13325 install_element (BGP_IPV4_NODE, &no_neighbor_filter_list_cmd_vtysh);
13326 install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_cmd_vtysh);
13327 install_element (CONFIG_NODE, &ipv6_prefix_list_sequence_number_cmd_vtysh);
13328 install_element (VIEW_NODE, &ipv6_mbgp_neighbor_received_routes_cmd_vtysh);
13329 install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_first_match_cmd_vtysh);
13330 install_element (VIEW_NODE, &show_ipv6_prefix_list_cmd_vtysh);
13331 install_element (VIEW_NODE, &show_ip_bgp_scan_cmd_vtysh);
13332 install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_cmd_vtysh);
13333 install_element (OSPF_NODE, &no_refresh_timer_val_cmd_vtysh);
13334 install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_cmd_vtysh);
13335 install_element (INTERFACE_NODE, &ipv6_ospf6_instance_cmd_vtysh);
13336 install_element (RMAP_NODE, &no_set_local_pref_cmd_vtysh);
13337 install_element (RMAP_NODE, &no_match_ip_address_prefix_list_val_cmd_vtysh);
13338 install_element (RIP_NODE, &no_rip_distance_cmd_vtysh);
13339 install_element (CONFIG_NODE, &no_access_list_extended_any_host_cmd_vtysh);
13340 install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_cmd_vtysh);
13341 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_month_day_month_day_cmd_vtysh);
13342 install_element (BGP_NODE, &no_neighbor_weight_val_cmd_vtysh);
13343 install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_cmd_vtysh);
13344 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_type_routemap_cmd_vtysh);
13345 install_element (ENABLE_NODE, &show_debugging_zebra_cmd_vtysh);
13346 install_element (BGP_NODE, &bgp_network_backdoor_cmd_vtysh);
13347 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_month_day_day_month_cmd_vtysh);
13348 install_element (BGP_IPV4_NODE, &no_neighbor_distribute_list_cmd_vtysh);
13349 install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_out_cmd_vtysh);
13350 install_element (OSPF_NODE, &ospf_redistribute_source_cmd_vtysh);
13351 install_element (OSPF_NODE, &area_range_cost_cmd_vtysh);
13352 install_element (ENABLE_NODE, &show_ipv6_ospf6_neighbor_routerid_cmd_vtysh);
13353 install_element (ENABLE_NODE, &show_ipv6_mbgp_community4_exact_cmd_vtysh);
13354 install_element (BGP_IPV4M_NODE, &neighbor_remove_private_as_cmd_vtysh);
13355 install_element (ENABLE_NODE, &debug_ospf_zebra_cmd_vtysh);
13356 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_cmd_vtysh);
13357 install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_list_cmd_vtysh);
13358 install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_cmd_vtysh);
13359 install_element (CONFIG_NODE, &no_debug_ospf_ism_cmd_vtysh);
13360 install_element (RMAP_NODE, &ospf6_routemap_no_set_metric_type_cmd_vtysh);
13361 install_element (RIPNG_NODE, &ripng_redistribute_bgp_cmd_vtysh);
13362 install_element (BGP_IPV4_NODE, &neighbor_route_server_client_cmd_vtysh);
13363 install_element (INTERFACE_NODE, &no_ospf_priority_cmd_vtysh);
13364 install_element (CONFIG_NODE, &debug_ospf_lsa_cmd_vtysh);
13365 install_element (ENABLE_NODE, &no_debug_rip_packet_direct_cmd_vtysh);
13366 install_element (CONFIG_NODE, &no_access_list_extended_cmd_vtysh);
13367 install_element (ENABLE_NODE, &show_ip_rip_cmd_vtysh);
13368 install_element (ENABLE_NODE, &show_ip_bgp_flap_regexp_cmd_vtysh);
13369 install_element (BGP_VPNV4_NODE, &neighbor_remove_private_as_cmd_vtysh);
13370 install_element (BGP_NODE, &neighbor_remove_private_as_cmd_vtysh);
13371 install_element (CONFIG_NODE, &no_access_list_standard_cmd_vtysh);
13372 install_element (RIPNG_NODE, &ripng_redistribute_static_metric_cmd_vtysh);
13373 install_element (VIEW_NODE, &show_bgp_ipv6_community_list_exact_cmd_vtysh);
13374 install_element (ZEBRA_NODE, &rip_redistribute_rip_cmd_vtysh);
13375 install_element (INTERFACE_NODE, &no_ip_rip_authentication_key_chain_cmd_vtysh);
13376 install_element (BGP_IPV4_NODE, &neighbor_send_community_cmd_vtysh);
13377 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_cmd_vtysh);
13378 install_element (OSPF_NODE, &area_vlink_authkey_cmd_vtysh);
13379 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_cmd_vtysh);
13380 install_element (CONFIG_NODE, &no_access_list_cmd_vtysh);
13381 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_cmd_vtysh);
13382 install_element (CONFIG_NODE, &access_list_cmd_vtysh);
13383 install_element (CONFIG_NODE, &no_router_bgp_cmd_vtysh);
13384 install_element (RIPNG_NODE, &ripng_timers_cmd_vtysh);
13385 install_element (ENABLE_NODE, &clear_bgp_as_in_cmd_vtysh);
13386 install_element (INTERFACE_NODE, &ospf_dead_interval_cmd_vtysh);
13387 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_self_cmd_vtysh);
13388 install_element (OSPF_NODE, &area_shortcut_cmd_vtysh);
13389 install_element (INTERFACE_NODE, &ip_rip_authentication_key_chain_cmd_vtysh);
13390 install_element (BGP_VPNV4_NODE, &neighbor_maximum_prefix_cmd_vtysh);
13391 install_element (CONFIG_NODE, &no_ip_prefix_list_sequence_number_cmd_vtysh);
13392 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
13393 install_element (CONFIG_NODE, &no_bgp_config_type_cmd_vtysh);
13394 install_element (BGP_NODE, &no_bgp_network_mask_route_map_cmd_vtysh);
13395 install_element (BGP_NODE, &no_neighbor_cmd_vtysh);
13396 install_element (ENABLE_NODE, &show_ipv6_ospf6_neighborlist_cmd_vtysh);
13397 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh);
13398 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_cmd_vtysh);
13399 install_element (ENABLE_NODE, &show_ip_bgp_summary_cmd_vtysh);
13400 install_element (VIEW_NODE, &show_ip_bgp_instance_summary_cmd_vtysh);
13401 install_element (ENABLE_NODE, &clear_bgp_peer_out_cmd_vtysh);
13402 install_element (ENABLE_NODE, &show_bgp_regexp_cmd_vtysh);
13403 install_element (RMAP_NODE, &match_origin_cmd_vtysh);
13404 install_element (ENABLE_NODE, &show_ip_bgp_flap_filter_list_cmd_vtysh);
13405 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_cidr_only_cmd_vtysh);
13406 install_element (ENABLE_NODE, &clear_bgp_as_out_cmd_vtysh);
13407 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
13408 install_element (ENABLE_NODE, &show_table_cmd_vtysh);
13409 install_element (BGP_IPV4_NODE, &neighbor_nexthop_self_cmd_vtysh);
13410 install_element (RIP_NODE, &rip_default_metric_cmd_vtysh);
13411 install_element (BGP_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
13412 install_element (OSPF_NODE, &no_area_vlink_param3_cmd_vtysh);
13413 install_element (ENABLE_NODE, &show_ipv6_mbgp_regexp_cmd_vtysh);
13414 install_element (VIEW_NODE, &show_ipv6_mbgp_regexp_cmd_vtysh);
13415 install_element (OSPF_NODE, &area_vlink_md5_cmd_vtysh);
13416 install_element (INTERFACE_NODE, &no_ip_ospf_priority_addr_cmd_vtysh);
13417 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_regexp_cmd_vtysh);
13418 install_element (BGP_NODE, &neighbor_set_peer_group_cmd_vtysh);
13419 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_cmd_vtysh);
13420 install_element (ENABLE_NODE, &show_ip_bgp_community_list_exact_cmd_vtysh);
13421 install_element (BGP_NODE, &old_ipv6_bgp_network_cmd_vtysh);
13422 install_element (BGP_IPV4M_NODE, &neighbor_default_originate_cmd_vtysh);
13423 install_element (VIEW_NODE, &show_bgp_ipv6_community_list_cmd_vtysh);
13424 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_ge_cmd_vtysh);
13425 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh);
13426 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_list_cmd_vtysh);
13427 install_element (RMAP_NODE, &no_set_local_pref_val_cmd_vtysh);
13428 install_element (OSPF_NODE, &no_neighbor_pollinterval_cmd_vtysh);
13429 install_element (BGP_IPV4_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
13430 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_route_cmd_vtysh);
13431 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
13432 install_element (VIEW_NODE, &show_ip_bgp_ipv4_filter_list_cmd_vtysh);
13433 install_element (CONFIG_NODE, &no_debug_bgp_keepalive_cmd_vtysh);
13434 install_element (RIP_NODE, &rip_distance_cmd_vtysh);
13435 install_element (RMAP_NODE, &no_set_weight_cmd_vtysh);
13436 install_element (ENABLE_NODE, &debug_rip_events_cmd_vtysh);
13437 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh);
13438 install_element (CONFIG_NODE, &no_debug_ospf_lsa_cmd_vtysh);
13439 install_element (BGP_NODE, &old_no_ipv6_aggregate_address_cmd_vtysh);
13440 install_element (CONFIG_NODE, &ipv6_access_list_cmd_vtysh);
13441 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_cmd_vtysh);
13442 install_element (BGP_IPV4_NODE, &aggregate_address_mask_as_set_cmd_vtysh);
13443 install_element (ENABLE_NODE, &show_bgp_ipv6_community2_cmd_vtysh);
13444 install_element (BGP_NODE, &no_bgp_bestpath_aspath_ignore_cmd_vtysh);
13445 install_element (OSPF_NODE, &no_area_vlink_cmd_vtysh);
13446 install_element (ENABLE_NODE, &clear_bgp_as_in_prefix_filter_cmd_vtysh);
13447 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_addr_cmd_vtysh);
13448 install_element (RIPNG_NODE, &no_ripng_network_cmd_vtysh);
13449 install_element (OSPF_NODE, &no_router_id_cmd_vtysh);
13450 install_element (BGP_NODE, &neighbor_local_as_no_prepend_cmd_vtysh);
13451 install_element (VIEW_NODE, &show_ip_bgp_neighbor_advertised_route_cmd_vtysh);
13452 install_element (BGP_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
13453 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
13454 install_element (BGP_IPV6_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
13455 install_element (BGP_NODE, &no_synchronization_cmd_vtysh);
13456 install_element (BGP_NODE, &neighbor_update_source_cmd_vtysh);
13457 install_element (INTERFACE_NODE, &ipv6_address_cmd_vtysh);
13458 install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_cmd_vtysh);
13459 install_element (ENABLE_NODE, &show_bgp_ipv6_community_cmd_vtysh);
13460 install_element (ENABLE_NODE, &show_ip_extcommunity_list_cmd_vtysh);
13461 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_all_cmd_vtysh);
13462 install_element (BGP_IPV4_NODE, &no_bgp_network_route_map_cmd_vtysh);
13463 install_element (VIEW_NODE, &show_ip_bgp_prefix_cmd_vtysh);
13464 install_element (VIEW_NODE, &show_ip_rip_cmd_vtysh);
13465 install_element (CONFIG_NODE, &access_list_standard_host_cmd_vtysh);
13466 install_element (CONFIG_NODE, &ip_prefix_list_sequence_number_cmd_vtysh);
13467 install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_longer_cmd_vtysh);
13468 install_element (BGP_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh);
13469 install_element (RMAP_NODE, &ospf6_routemap_set_forwarding_cmd_vtysh);
13470 install_element (OSPF_NODE, &no_area_range_advertise_cost_cmd_vtysh);
13471 install_element (ENABLE_NODE, &show_ip_bgp_community_exact_cmd_vtysh);
13472 install_element (ENABLE_NODE, &show_bgp_prefix_cmd_vtysh);
13473 install_element (CONFIG_NODE, &ip_prefix_list_le_ge_cmd_vtysh);
13474 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_cmd_vtysh);
13475 install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_addr_cmd_vtysh);
13476 install_element (VIEW_NODE, &show_ipv6_mbgp_community_exact_cmd_vtysh);
13477 install_element (CONFIG_NODE, &no_ipv6_access_list_remark_cmd_vtysh);
13478 install_element (INTERFACE_NODE, &no_ospf_dead_interval_cmd_vtysh);
13479 install_element (INTERFACE_NODE, &ip_irdp_preference_cmd_vtysh);
13480 install_element (BGP_NODE, &aggregate_address_as_set_summary_cmd_vtysh);
13481 install_element (VIEW_NODE, &show_bgp_ipv6_regexp_cmd_vtysh);
13482 install_element (BGP_VPNV4_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
13483 install_element (VIEW_NODE, &show_ipv6_route_prefix_cmd_vtysh);
13484 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_metric_cmd_vtysh);
13485 install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_detail_cmd_vtysh);
13486 install_element (BGP_NODE, &no_neighbor_passive_cmd_vtysh);
13487 install_element (ENABLE_NODE, &show_bgp_community4_cmd_vtysh);
13488 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13489 install_element (VIEW_NODE, &show_ipv6_ospf6_area_route_prefix_cmd_vtysh);
13490 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_metric_cmd_vtysh);
13491 install_element (RMAP_NODE, &no_set_originator_id_cmd_vtysh);
13492 install_element (RIPNG_NODE, &no_ripng_redistribute_static_cmd_vtysh);
13493 install_element (BGP_NODE, &neighbor_capability_route_refresh_cmd_vtysh);
13494 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_metric_routemap_cmd_vtysh);
13495 install_element (BGP_VPNV4_NODE, &neighbor_send_community_cmd_vtysh);
13496 install_element (VIEW_NODE, &show_ipv6_forwarding_cmd_vtysh);
13497 install_element (VIEW_NODE, &show_ip_bgp_prefix_longer_cmd_vtysh);
13498 install_element (RMAP_NODE, &no_rmap_onmatch_goto_cmd_vtysh);
13499 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_routemap_cmd_vtysh);
13500 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_val_cmd_vtysh);
13501 install_element (INTERFACE_NODE, &ip_rip_receive_version_1_cmd_vtysh);
13502 install_element (BGP_NODE, &no_bgp_scan_time_val_cmd_vtysh);
13503 install_element (ENABLE_NODE, &no_debug_ripng_packet_direct_cmd_vtysh);
13504 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_cmd_vtysh);
13505 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
13506 install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_cmd_vtysh);
13507 install_element (INTERFACE_NODE, &no_ip_rip_authentication_mode_cmd_vtysh);
13508 install_element (CONFIG_NODE, &no_ipv6_prefix_list_le_ge_cmd_vtysh);
13509 install_element (ENABLE_NODE, &show_ipv6_bgp_community_exact_cmd_vtysh);
13510 install_element (VIEW_NODE, &show_ipv6_route_ospf6_external_prefix_cmd_vtysh);
13511 install_element (BGP_VPNV4_NODE, &vpnv4_network_cmd_vtysh);
13512 install_element (OSPF_NODE, &ospf_rfc1583_flag_cmd_vtysh);
13513 install_element (OSPF_NODE, &area_vlink_param2_cmd_vtysh);
13514 install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_received_routes_cmd_vtysh);
13515 install_element (CONFIG_NODE, &ip_extcommunity_list_standard2_cmd_vtysh);
13516 install_element (BGP_NODE, &aggregate_address_summary_only_cmd_vtysh);
13517 install_element (VIEW_NODE, &show_ip_prefix_list_summary_name_cmd_vtysh);
13518 install_element (VIEW_NODE, &show_ip_bgp_attr_info_cmd_vtysh);
13519 install_element (RMAP_NODE, &set_originator_id_cmd_vtysh);
13520 install_element (CONFIG_NODE, &no_debug_ripng_packet_direct_cmd_vtysh);
13521 install_element (VIEW_NODE, &show_ip_prefix_list_name_cmd_vtysh);
13522 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_out_cmd_vtysh);
13523 install_element (BGP_NODE, &bgp_cluster_id32_cmd_vtysh);
13524 install_element (RIP_NODE, &no_rip_redistribute_type_routemap_cmd_vtysh);
13525 install_element (BGP_NODE, &no_bgp_client_to_client_reflection_cmd_vtysh);
13526 install_element (RMAP_NODE, &no_match_ip_address_val_cmd_vtysh);
13527 install_element (INTERFACE_NODE, &no_ipv6_ospf6_advertise_prefix_list_cmd_vtysh);
13528 install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_external_cmd_vtysh);
13529 install_element (BGP_IPV6_NODE, &no_neighbor_filter_list_cmd_vtysh);
13530 install_element (BGP_IPV6_NODE, &ipv6_bgp_network_route_map_cmd_vtysh);
13531 install_element (BGP_IPV4_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh);
13532 install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
13533 install_element (CONFIG_NODE, &ipv6_access_list_any_cmd_vtysh);
13534 install_element (OSPF_NODE, &no_area_range_cost_cmd_vtysh);
13535 install_element (OSPF_NODE, &area_vlink_param4_cmd_vtysh);
13536 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
13537 install_element (CONFIG_NODE, &no_ip_forwarding_cmd_vtysh);
13538 install_element (ENABLE_NODE, &show_bgp_community_cmd_vtysh);
13539 install_element (BGP_IPV4M_NODE, &neighbor_send_community_type_cmd_vtysh);
13540 install_element (VIEW_NODE, &show_ip_bgp_community_cmd_vtysh);
13541 install_element (RMAP_NODE, &set_ecommunity_rt_cmd_vtysh);
13542 install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
13543 install_element (VIEW_NODE, &show_ip_bgp_flap_cidr_only_cmd_vtysh);
13544 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_cmd_vtysh);
13545 install_element (INTERFACE_NODE, &ip_rip_authentication_string_cmd_vtysh);
13546 install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_cmd_vtysh);
13547 install_element (OSPF_NODE, &timers_spf_cmd_vtysh);
13548 install_element (CONFIG_NODE, &ip_prefix_list_seq_le_ge_cmd_vtysh);
13549 install_element (BGP_NODE, &no_neighbor_port_cmd_vtysh);
13550 install_element (RMAP_NODE, &no_set_community_val_cmd_vtysh);
13551 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_out_cmd_vtysh);
13552 install_element (CONFIG_NODE, &no_debug_zebra_events_cmd_vtysh);
13553 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_cmd_vtysh);
13554 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_cmd_vtysh);
13555 install_element (CONFIG_NODE, &debug_ospf6_all_cmd_vtysh);
13556 install_element (BGP_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
13557 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_route_map_cmd_vtysh);
13558 install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_in_cmd_vtysh);
13559 install_element (BGP_IPV4M_NODE, &neighbor_prefix_list_cmd_vtysh);
13560 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_cmd_vtysh);
13561 install_element (CONFIG_NODE, &debug_zebra_kernel_cmd_vtysh);
13562 install_element (VIEW_NODE, &show_ip_ospf_neighbor_all_cmd_vtysh);
13563 install_element (INTERFACE_NODE, &ip_irdp_multicast_cmd_vtysh);
13564 install_element (RMAP_NODE, &no_match_metric_cmd_vtysh);
13565 install_element (CONFIG_NODE, &dump_bgp_updates_cmd_vtysh);
13566 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_routemap_cmd_vtysh);
13567 install_element (BGP_NODE, &bgp_always_compare_med_cmd_vtysh);
13568 install_element (INTERFACE_NODE, &no_ipv6_nd_reachable_time_cmd_vtysh);
13569 install_element (INTERFACE_NODE, &no_ip_address_cmd_vtysh);
13570 install_element (RIPNG_NODE, &ripng_redistribute_kernel_cmd_vtysh);
13571 install_element (VIEW_NODE, &show_debug_ospf6_cmd_vtysh);
13572 install_element (CONFIG_NODE, &no_debug_ripng_events_cmd_vtysh);
13573 install_element (OSPF_NODE, &no_area_vlink_authtype_cmd_vtysh);
13574 install_element (BGP_IPV4_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13575 install_element (BGP_NODE, &neighbor_remote_as_cmd_vtysh);
13576 install_element (VIEW_NODE, &show_ip_bgp_community_exact_cmd_vtysh);
13577 install_element (BGP_IPV4_NODE, &neighbor_set_peer_group_cmd_vtysh);
13578 install_element (ENABLE_NODE, &reload_cmd_vtysh);
13579 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_route_cmd_vtysh);
13580 install_element (CONFIG_NODE, &no_access_list_extended_host_host_cmd_vtysh);
13581 install_element (ENABLE_NODE, &show_ipv6_route_ospf6_external_prefix_cmd_vtysh);
13582 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_cmd_vtysh);
13583 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_summary_cmd_vtysh);
13584 install_element (BGP_NODE, &no_neighbor_dont_capability_negotiate_cmd_vtysh);
13585 install_element (INTERFACE_NODE, &ip_rip_receive_version_2_cmd_vtysh);
13586 install_element (INTERFACE_NODE, &ipv6_nd_ra_interval_cmd_vtysh);
13587 install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_router_cmd_vtysh);
13588 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_ge_cmd_vtysh);
13589 install_element (INTERFACE_NODE, &no_ipv6_nd_prefix_advertisement_cmd_vtysh);
13590 install_element (RMAP_NODE, &set_metric_cmd_vtysh);
13591 install_element (OSPF_NODE, &ospf_default_information_originate_always_cmd_vtysh);
13592 install_element (BGP_NODE, &no_bgp_bestpath_compare_router_id_cmd_vtysh);
13593 install_element (VIEW_NODE, &show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh);
13594 install_element (BGP_IPV6_NODE, &no_neighbor_route_map_cmd_vtysh);
13595 install_element (CONFIG_NODE, &debug_ripng_packet_direct_cmd_vtysh);
13596 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_cmd_vtysh);
13597 install_element (INTERFACE_NODE, &ip_ospf_authentication_key_addr_cmd_vtysh);
13598 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh);
13599 install_element (BGP_IPV4M_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13600 install_element (BGP_NODE, &no_bgp_distance_cmd_vtysh);
13601 install_element (BGP_IPV4_NODE, &aggregate_address_summary_as_set_cmd_vtysh);
13602 install_element (CONFIG_NODE, &ip_route_mask_cmd_vtysh);
13603 install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_longer_cmd_vtysh);
13604 install_element (BGP_IPV6_NODE, &neighbor_filter_list_cmd_vtysh);
13605 install_element (INTERFACE_NODE, &ip_irdp_minadvertinterval_cmd_vtysh);
13606 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_cmd_vtysh);
13607 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
13608 install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_addr_cmd_vtysh);
13609 install_element (VIEW_NODE, &show_ipv6_ospf6_neighbor_routerid_cmd_vtysh);
13610 install_element (VIEW_NODE, &show_bgp_community2_cmd_vtysh);
13611 install_element (BGP_IPV6_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
13612 install_element (BGP_NODE, &neighbor_default_originate_cmd_vtysh);
13613 install_element (RIP_NODE, &no_rip_distance_source_cmd_vtysh);
13614 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_in_prefix_filter_cmd_vtysh);
13615 install_element (VIEW_NODE, &show_bgp_filter_list_cmd_vtysh);
13616 install_element (BGP_VPNV4_NODE, &neighbor_route_map_cmd_vtysh);
13617 install_element (CONFIG_NODE, &ip_extcommunity_list_name_standard2_cmd_vtysh);
13618 install_element (CONFIG_NODE, &no_ipv6_prefix_list_ge_cmd_vtysh);
13619 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_in_cmd_vtysh);
13620 install_element (RIPNG_NODE, &ripng_redistribute_kernel_routemap_cmd_vtysh);
13621 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
13622 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_route_cmd_vtysh);
13623 install_element (ENABLE_NODE, &clear_ipv6_prefix_list_name_prefix_cmd_vtysh);
13624 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_out_cmd_vtysh);
13625 install_element (RMAP_NODE, &no_match_ip_next_hop_val_cmd_vtysh);
13626 install_element (ENABLE_NODE, &show_ip_protocols_rip_cmd_vtysh);
13627 install_element (VIEW_NODE, &show_bgp_neighbor_received_prefix_filter_cmd_vtysh);
13628 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_out_cmd_vtysh);
13629 install_element (CONFIG_NODE, &ipv6_prefix_list_description_cmd_vtysh);
13630 install_element (CONFIG_NODE, &no_access_list_standard_any_cmd_vtysh);
13631 install_element (ENABLE_NODE, &show_bgp_instance_ipv6_summary_cmd_vtysh);
13632 install_element (ENABLE_NODE, &show_ip_ospf_cmd_vtysh);
13633 install_element (INTERFACE_NODE, &no_ip_ospf_cost_addr_cmd_vtysh);
13634 install_element (CONFIG_NODE, &debug_bgp_fsm_cmd_vtysh);
13635 install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_out_cmd_vtysh);
13636 install_element (BGP_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
13637 install_element (VIEW_NODE, &show_ipv6_mbgp_community4_cmd_vtysh);
13638 install_element (ENABLE_NODE, &show_ip_prefix_list_detail_cmd_vtysh);
13639 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
13640 install_element (CONFIG_NODE, &no_debug_rip_zebra_cmd_vtysh);
13641 install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_longer_cmd_vtysh);
13642 install_element (RMAP_NODE, &no_set_ecommunity_soo_cmd_vtysh);
13643 install_element (INTERFACE_NODE, &no_ipv6_nd_managed_config_flag_cmd_vtysh);
13644 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_metric_cmd_vtysh);
13645 install_element (BGP_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
13646 install_element (CONFIG_NODE, &ip_prefix_list_seq_cmd_vtysh);
13647 install_element (BGP_NODE, &old_ipv6_aggregate_address_cmd_vtysh);
13648 install_element (CONFIG_NODE, &ipv6_route_pref_cmd_vtysh);
13649 install_element (CONFIG_NODE, &no_ipv6_prefix_list_sequence_number_cmd_vtysh);
13650 install_element (VIEW_NODE, &show_bgp_prefix_longer_cmd_vtysh);
13651 install_element (BGP_NODE, &no_neighbor_advertise_interval_val_cmd_vtysh);
13652 install_element (CONFIG_NODE, &no_access_list_extended_any_mask_cmd_vtysh);
13653 install_element (ENABLE_NODE, &show_ipv6_bgp_community_all_cmd_vtysh);
13654 install_element (VIEW_NODE, &show_ip_ospf_neighbor_id_cmd_vtysh);
13655 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_day_month_day_month_cmd_vtysh);
13656 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_in_cmd_vtysh);
13657 install_element (INTERFACE_NODE, &ip_rip_authentication_mode_cmd_vtysh);
13658 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_le_cmd_vtysh);
13659 install_element (ENABLE_NODE, &debug_zebra_packet_detail_cmd_vtysh);
13660 install_element (CONFIG_NODE, &no_ip_as_path_all_cmd_vtysh);
13661 install_element (ENABLE_NODE, &show_ipv6_bgp_community2_exact_cmd_vtysh);
13662 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_type_cmd_vtysh);
13663 install_element (BGP_NODE, &neighbor_interface_cmd_vtysh);
13664 install_element (ENABLE_NODE, &clear_ip_bgp_peer_out_cmd_vtysh);
13665 install_element (VIEW_NODE, &show_ip_bgp_ipv4_regexp_cmd_vtysh);
13666 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh);
13667 install_element (OSPF_NODE, &ospf_redistribute_source_metric_routemap_cmd_vtysh);
13668 install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_cmd_vtysh);
13669 install_element (ENABLE_NODE, &clear_ip_bgp_all_in_cmd_vtysh);
13670 install_element (ENABLE_NODE, &show_ipv6_access_list_cmd_vtysh);
13671 install_element (BGP_NODE, &no_neighbor_route_server_client_cmd_vtysh);
13672 install_element (BGP_NODE, &neighbor_filter_list_cmd_vtysh);
13673 install_element (CONFIG_NODE, &no_ip_route_cmd_vtysh);
13674 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_in_cmd_vtysh);
13675 install_element (BGP_NODE, &no_bgp_scan_time_cmd_vtysh);
13676 install_element (VIEW_NODE, &show_ipv6_bgp_community_all_cmd_vtysh);
13677 install_element (BGP_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
13678 install_element (BGP_VPNV4_NODE, &neighbor_send_community_type_cmd_vtysh);
13679 install_element (VIEW_NODE, &show_bgp_ipv6_community3_exact_cmd_vtysh);
13680 install_element (ENABLE_NODE, &show_bgp_route_cmd_vtysh);
13681 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_ge_le_cmd_vtysh);
13682 install_element (INTERFACE_NODE, &ip_ospf_priority_cmd_vtysh);
13683 install_element (OSPF_NODE, &no_area_vlink_authkey_cmd_vtysh);
13684 install_element (VIEW_NODE, &show_ipv6_bgp_community_cmd_vtysh);
13685 install_element (BGP_NODE, &no_bgp_distance_source_access_list_cmd_vtysh);
13686 install_element (OSPF_NODE, &area_vlink_param1_cmd_vtysh);
13687 install_element (ENABLE_NODE, &show_debugging_rip_cmd_vtysh);
13688 install_element (VIEW_NODE, &show_ip_route_cmd_vtysh);
13689 install_element (VIEW_NODE, &show_ipv6_ospf6_area_spf_tree_cmd_vtysh);
13690 install_element (RIPNG_NODE, &no_ripng_redistribute_static_routemap_cmd_vtysh);
13691 install_element (CONFIG_NODE, &no_access_list_extended_mask_host_cmd_vtysh);
13692 install_element (RIP_NODE, &no_rip_default_metric_cmd_vtysh);
13693 install_element (INTERFACE_NODE, &no_bandwidth_if_cmd_vtysh);
13694 install_element (VIEW_NODE, &ipv6_bgp_neighbor_advertised_route_cmd_vtysh);
13695 install_element (CONFIG_NODE, &no_debug_bgp_fsm_cmd_vtysh);
13696 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_cmd_vtysh);
13697 install_element (RMAP_NODE, &no_match_interface_cmd_vtysh);
13698 install_element (VIEW_NODE, &show_bgp_ipv6_cmd_vtysh);
13699 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged_cmd_vtysh);
13700 install_element (RIPNG_NODE, &no_ripng_default_metric_cmd_vtysh);
13701 install_element (RIPNG_NODE, &no_ripng_default_metric_val_cmd_vtysh);
13702 install_element (CONFIG_NODE, &no_debug_ospf_lsa_sub_cmd_vtysh);
13703 install_element (ENABLE_NODE, &show_ipv6_bgp_cmd_vtysh);
13704 install_element (ENABLE_NODE, &clear_ip_bgp_all_in_prefix_filter_cmd_vtysh);
13705 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_metric_cmd_vtysh);
13706 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community2_exact_cmd_vtysh);
13707 install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_list_cmd_vtysh);
13708 install_element (BGP_IPV4M_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
13709 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_in_cmd_vtysh);
13710 install_element (BGP_NODE, &no_bgp_network_mask_natural_backdoor_cmd_vtysh);
13711 install_element (INTERFACE_NODE, &no_ip_rip_authentication_key_chain2_cmd_vtysh);
13712 install_element (BGP_NODE, &no_neighbor_timers_cmd_vtysh);
13713 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_out_cmd_vtysh);
13714 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_adv_router_cmd_vtysh);
13715 install_element (CONFIG_NODE, &no_access_list_extended_host_any_cmd_vtysh);
13716 install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_cmd_vtysh);
13717 install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd_vtysh);
13718 install_element (ENABLE_NODE, &show_bgp_community_list_cmd_vtysh);
13719 install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_cmd_vtysh);
13720 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_routemap_cmd_vtysh);
13721 install_element (RMAP_NODE, &ospf6_routemap_no_set_forwarding_cmd_vtysh);
13722 install_element (RMAP_NODE, &set_ipv6_nexthop_global_cmd_vtysh);
13723 install_element (CONFIG_NODE, &no_ipv6_prefix_list_cmd_vtysh);
13724 install_element (BGP_NODE, &bgp_bestpath_compare_router_id_cmd_vtysh);
13725 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
13726 install_element (BGP_IPV4M_NODE, &no_aggregate_address_as_set_cmd_vtysh);
13727 install_element (BGP_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
13728 install_element (INTERFACE_NODE, &shutdown_if_cmd_vtysh);
13729 install_element (RIPNG_NODE, &ripng_redistribute_connected_metric_routemap_cmd_vtysh);
13730 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
13731 install_element (INTERFACE_NODE, &ip_address_secondary_cmd_vtysh);
13732 install_element (ENABLE_NODE, &show_ip_bgp_neighbors_cmd_vtysh);
13733 install_element (ENABLE_NODE, &no_debug_ospf_zebra_cmd_vtysh);
13734 install_element (ENABLE_NODE, &show_ipv6_mbgp_community3_cmd_vtysh);
13735 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_out_cmd_vtysh);
13736 install_element (RIP_NODE, &rip_distance_source_cmd_vtysh);
13737 install_element (OSPF_NODE, &router_id_cmd_vtysh);
13738 install_element (ENABLE_NODE, &no_debug_bgp_all_cmd_vtysh);
13739 install_element (RMAP_NODE, &no_set_community_delete_cmd_vtysh);
13740 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_in_prefix_filter_cmd_vtysh);
13741 install_element (ENABLE_NODE, &show_bgp_route_map_cmd_vtysh);
13742 install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_list_cmd_vtysh);
13743 install_element (BGP_IPV6_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13744 install_element (BGP_IPV6_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
13745 install_element (INTERFACE_NODE, &interface_ip_ospf_authentication_addr_cmd_vtysh);
13746 install_element (BGP_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh);
13747 install_element (RMAP_NODE, &match_ip_address_cmd_vtysh);
13748 install_element (BGP_IPV4M_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh);
13749 install_element (CONFIG_NODE, &access_list_standard_cmd_vtysh);
13750 install_element (VIEW_NODE, &show_ip_ospf_database_type_adv_router_cmd_vtysh);
13751 install_element (BGP_IPV4_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
13752 install_element (VIEW_NODE, &show_bgp_community_list_cmd_vtysh);
13753 install_element (INTERFACE_NODE, &ip_rip_send_version_1_cmd_vtysh);
13754 install_element (VIEW_NODE, &show_bgp_ipv6_neighbors_peer_cmd_vtysh);
13755 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_cmd_vtysh);
13756 install_element (OSPF_NODE, &ospf_distance_cmd_vtysh);
13757 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_out_cmd_vtysh);
13758 install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_addr_cmd_vtysh);
13759 install_element (KEYCHAIN_KEY_NODE, &no_key_cmd_vtysh);
13760 install_element (CONFIG_NODE, &ipv6_access_list_remark_cmd_vtysh);
13761 install_element (VIEW_NODE, &show_ipv6_ospf6_topology_router_cmd_vtysh);
13762 install_element (ENABLE_NODE, &show_ip_bgp_prefix_list_cmd_vtysh);
13763 install_element (CONFIG_NODE, &debug_ospf_nsm_cmd_vtysh);
13764 install_element (VIEW_NODE, &show_ip_bgp_neighbor_damp_cmd_vtysh);
13765 install_element (CONFIG_NODE, &no_ip_community_list_name_expanded_cmd_vtysh);
13766 install_element (ENABLE_NODE, &show_ip_bgp_view_prefix_cmd_vtysh);
13767 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community3_exact_cmd_vtysh);
13768 install_element (VIEW_NODE, &show_bgp_route_map_cmd_vtysh);
13769 install_element (INTERFACE_NODE, &ipv6_ospf6_advertise_prefix_list_cmd_vtysh);
13770 install_element (BGP_IPV4M_NODE, &aggregate_address_summary_as_set_cmd_vtysh);
13771 install_element (BGP_IPV4M_NODE, &neighbor_allowas_in_cmd_vtysh);
13772 install_element (BGP_NODE, &bgp_redistribute_ipv4_rmap_metric_cmd_vtysh);
13773 install_element (CONFIG_NODE, &no_key_chain_cmd_vtysh);
13774 install_element (ENABLE_NODE, &show_ipv6_mbgp_community4_cmd_vtysh);
13775 install_element (ENABLE_NODE, &undebug_bgp_all_cmd_vtysh);
13776 install_element (RMAP_NODE, &no_set_community_cmd_vtysh);
13777 install_element (RMAP_NODE, &no_set_aggregator_as_cmd_vtysh);
13778 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh);
13779 install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_in_cmd_vtysh);
13780 install_element (ENABLE_NODE, &clear_bgp_as_soft_in_cmd_vtysh);
13781 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh);
13782 install_element (OSPF_NODE, &no_refresh_timer_cmd_vtysh);
13783 install_element (VIEW_NODE, &show_ip_bgp_prefix_list_cmd_vtysh);
13784 install_element (BGP_NODE, &bgp_network_mask_natural_cmd_vtysh);
13785 install_element (ENABLE_NODE, &show_bgp_neighbor_received_prefix_filter_cmd_vtysh);
13786 install_element (ENABLE_NODE, &show_ipv6_route_ospf6_external_cmd_vtysh);
13787 install_element (BGP_IPV6_NODE, &neighbor_unsuppress_map_cmd_vtysh);
13788 install_element (BGP_IPV6_NODE, &neighbor_remove_private_as_cmd_vtysh);
13789 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_cmd_vtysh);
13790 install_element (BGP_IPV4M_NODE, &no_neighbor_send_community_cmd_vtysh);
13791 install_element (RIP_NODE, &no_rip_route_cmd_vtysh);
13792 install_element (ENABLE_NODE, &show_ip_forwarding_cmd_vtysh);
13793 install_element (RIP_NODE, &rip_route_cmd_vtysh);
13794 install_element (ENABLE_NODE, &debug_rip_packet_cmd_vtysh);
13795 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
13796 install_element (OSPF_NODE, &neighbor_priority_pollinterval_cmd_vtysh);
13797 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_cmd_vtysh);
13798 install_element (BGP_NODE, &neighbor_port_cmd_vtysh);
13799 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13800 install_element (ENABLE_NODE, &show_ip_prefix_list_detail_name_cmd_vtysh);
13801 install_element (RIPNG_NODE, &ripng_redistribute_static_routemap_cmd_vtysh);
13802 install_element (VIEW_NODE, &show_ip_bgp_ipv4_paths_cmd_vtysh);
13803 install_element (BGP_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh);
13804 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
13805 install_element (CONFIG_NODE, &no_debug_ripng_zebra_cmd_vtysh);
13806 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_route_map_cmd_vtysh);
13807 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community4_exact_cmd_vtysh);
13808 install_element (BGP_NODE, &bgp_damp_unset_cmd_vtysh);
13809 install_element (VIEW_NODE, &show_ipv6_route_cmd_vtysh);
13810 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_route_cmd_vtysh);
13811 install_element (ENABLE_NODE, &clear_bgp_external_soft_out_cmd_vtysh);
13812 install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_cmd_vtysh);
13813 install_element (BGP_IPV4_NODE, &no_bgp_network_cmd_vtysh);
13814 install_element (VIEW_NODE, &show_ipv6_bgp_prefix_cmd_vtysh);
13815 install_element (BGP_NODE, &no_auto_summary_cmd_vtysh);
13816 install_element (ENABLE_NODE, &ipv6_bgp_neighbor_routes_cmd_vtysh);
13817 install_element (RMAP_NODE, &match_ipv6_address_prefix_list_cmd_vtysh);
13818 install_element (BGP_NODE, &no_neighbor_send_community_cmd_vtysh);
13819 install_element (BGP_VPNV4_NODE, &no_neighbor_send_community_cmd_vtysh);
13820 install_element (BGP_IPV4M_NODE, &no_neighbor_filter_list_cmd_vtysh);
13821 install_element (OSPF_NODE, &area_range_advertise_cmd_vtysh);
13822 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_cmd_vtysh);
13823 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community2_cmd_vtysh);
13824 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_in_cmd_vtysh);
13825 install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_addr_cmd_vtysh);
13826 install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_cmd_vtysh);
13827 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_out_cmd_vtysh);
13828 install_element (ENABLE_NODE, &show_ipv6_mbgp_community2_cmd_vtysh);
13829 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_out_cmd_vtysh);
13830 install_element (BGP_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
13831 install_element (CONFIG_NODE, &ip_community_list_expanded_cmd_vtysh);
13832 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh);
13833 install_element (BGP_VPNV4_NODE, &no_neighbor_prefix_list_cmd_vtysh);
13834 install_element (ENABLE_NODE, &no_debug_rip_events_cmd_vtysh);
13835 install_element (ENABLE_NODE, &show_ip_prefix_list_summary_cmd_vtysh);
13836 install_element (INTERFACE_NODE, &interface_ip_ospf_authentication_args_addr_cmd_vtysh);
13837 install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_cmd_vtysh);
13838 install_element (OSPF_NODE, &ospf_default_metric_cmd_vtysh);
13839 install_element (VIEW_NODE, &show_ip_prefix_list_summary_cmd_vtysh);
13840 install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_longer_cmd_vtysh);
13841 install_element (INTERFACE_NODE, &ipv6_nd_send_ra_cmd_vtysh);
13842 install_element (INTERFACE_NODE, &ip_rip_send_version_2_cmd_vtysh);
13843 install_element (ENABLE_NODE, &show_ipv6_mbgp_community2_exact_cmd_vtysh);
13844 install_element (ENABLE_NODE, &show_ip_bgp_community_info_cmd_vtysh);
13845 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_metric_routemap_cmd_vtysh);
13846 install_element (ENABLE_NODE, &show_ipv6_bgp_regexp_cmd_vtysh);
13847 install_element (CONFIG_NODE, &ip_extcommunity_list_name_standard_cmd_vtysh);
13848 install_element (CONFIG_NODE, &no_debug_ospf_nsm_cmd_vtysh);
13849 install_element (BGP_NODE, &no_bgp_confederation_identifier_arg_cmd_vtysh);
13850 install_element (VIEW_NODE, &show_ipv6_mbgp_community2_exact_cmd_vtysh);
13851 install_element (ENABLE_NODE, &show_version_ospf6_cmd_vtysh);
13852 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
13853 install_element (BGP_IPV6_NODE, &no_ipv6_bgp_network_route_map_cmd_vtysh);
13854 install_element (ENABLE_NODE, &clear_bgp_all_in_cmd_vtysh);
13855 install_element (VIEW_NODE, &show_ipv6_bgp_community_list_exact_cmd_vtysh);
13856 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_cmd_vtysh);
13857 install_element (CONFIG_NODE, &debug_rip_packet_direct_cmd_vtysh);
13858 install_element (VIEW_NODE, &show_ip_prefix_list_cmd_vtysh);
13859 install_element (OSPF_NODE, &ospf_default_information_originate_metric_routemap_cmd_vtysh);
13860 install_element (VIEW_NODE, &show_ip_bgp_route_map_cmd_vtysh);
13861 install_element (VIEW_NODE, &show_ipv6_bgp_prefix_longer_cmd_vtysh);
13862 install_element (RIP_NODE, &no_rip_passive_interface_cmd_vtysh);
13863 install_element (CONFIG_NODE, &access_list_extended_mask_any_cmd_vtysh);
13864 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_tags_cmd_vtysh);
13865 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh);
13866 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13867 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_received_routes_cmd_vtysh);
13868 install_element (ENABLE_NODE, &clear_ip_bgp_as_in_prefix_filter_cmd_vtysh);
13869 install_element (OSPF_NODE, &no_ospf_distribute_list_out_cmd_vtysh);
13870 install_element (ENABLE_NODE, &show_interface_cmd_vtysh);
13871 install_element (BGP_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
13872 install_element (VIEW_NODE, &show_ip_extcommunity_list_cmd_vtysh);
13873 install_element (ENABLE_NODE, &ipv6_bgp_neighbor_advertised_route_cmd_vtysh);
13874 install_element (BGP_IPV6_NODE, &neighbor_default_originate_cmd_vtysh);
13875 install_element (OSPF_NODE, &area_vlink_authtype_args_cmd_vtysh);
13876 install_element (VIEW_NODE, &show_ip_bgp_instance_ipv4_summary_cmd_vtysh);
13877 install_element (ENABLE_NODE, &show_bgp_instance_summary_cmd_vtysh);
13878 install_element (CONFIG_NODE, &no_ipv6_prefix_list_prefix_cmd_vtysh);
13879 install_element (OSPF_NODE, &area_vlink_authtype_cmd_vtysh);
13880 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13881 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community2_cmd_vtysh);
13882 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_in_cmd_vtysh);
13883 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_in_cmd_vtysh);
13884 install_element (ENABLE_NODE, &show_ip_community_list_cmd_vtysh);
13885 install_element (VIEW_NODE, &show_bgp_ipv6_community4_cmd_vtysh);
13886 install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_addr_cmd_vtysh);
13887 install_element (CONFIG_NODE, &no_ip_prefix_list_description_cmd_vtysh);
13888 install_element (INTERFACE_NODE, &ip_rip_receive_version_cmd_vtysh);
13889 install_element (BGP_NODE, &neighbor_ebgp_multihop_cmd_vtysh);
13890 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13891 install_element (INTERFACE_NODE, &no_ipv6_nd_suppress_ra_cmd_vtysh);
13892 install_element (OSPF_NODE, &area_filter_list_cmd_vtysh);
13893 install_element (BGP_NODE, &no_neighbor_timers_connect_val_cmd_vtysh);
13894 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh);
13895 install_element (BGP_NODE, &neighbor_unsuppress_map_cmd_vtysh);
13896 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_list_exact_cmd_vtysh);
13897 install_element (VIEW_NODE, &show_interface_cmd_vtysh);
13898 install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_inter_cmd_vtysh);
13899 install_element (BGP_NODE, &neighbor_description_cmd_vtysh);
13900 install_element (CONFIG_NODE, &access_list_remark_cmd_vtysh);
13901 install_element (INTERFACE_NODE, &ipv6_ospf6_hellointerval_cmd_vtysh);
13902 install_element (BGP_IPV4M_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
13903 install_element (CONFIG_NODE, &dump_bgp_all_interval_cmd_vtysh);
13904 install_element (VIEW_NODE, &show_ip_bgp_flap_route_map_cmd_vtysh);
13905 install_element (OSPF_NODE, &no_area_range_subst_cmd_vtysh);
13906 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
13907 install_element (INTERFACE_NODE, &ip_ospf_network_cmd_vtysh);
13908 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh);
13909 install_element (CONFIG_NODE, &debug_zebra_events_cmd_vtysh);
13910 install_element (RMAP_NODE, &no_match_origin_val_cmd_vtysh);
13911 install_element (OSPF_NODE, &area_default_cost_cmd_vtysh);
13912 install_element (KEYCHAIN_KEY_NODE, &key_string_cmd_vtysh);
13913 install_element (VIEW_NODE, &show_ipv6_mbgp_community4_exact_cmd_vtysh);
13914 install_element (BGP_IPV4M_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
13915 install_element (BGP_IPV4M_NODE, &neighbor_route_server_client_cmd_vtysh);
13916 install_element (BGP_NODE, &old_ipv6_aggregate_address_summary_only_cmd_vtysh);
13917 install_element (VIEW_NODE, &show_ipv6_ospf6_area_spf_node_cmd_vtysh);
13918 install_element (BGP_NODE, &neighbor_enforce_multihop_cmd_vtysh);
13919 install_element (RMAP_NODE, &set_weight_cmd_vtysh);
13920 install_element (VIEW_NODE, &show_debugging_ripng_cmd_vtysh);
13921 install_element (OSPF_NODE, &area_import_list_cmd_vtysh);
13922 install_element (CONFIG_NODE, &no_debug_zebra_packet_cmd_vtysh);
13923 install_element (RIPNG_NODE, &no_default_information_originate_cmd_vtysh);
13924 install_element (OSPF_NODE, &no_area_stub_cmd_vtysh);
13925 install_element (CONFIG_NODE, &no_ip_extcommunity_list_expanded_cmd_vtysh);
13926 install_element (BGP_IPV6_NODE, &neighbor_send_community_cmd_vtysh);
13927 install_element (VIEW_NODE, &show_bgp_cmd_vtysh);
13928 install_element (RIPNG_NODE, &ripng_redistribute_bgp_routemap_cmd_vtysh);
13929 install_element (BGP_IPV4M_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
13930 install_element (RIPNG_NODE, &ripng_network_cmd_vtysh);
13931 install_element (CONFIG_NODE, &debug_ripng_events_cmd_vtysh);
13932 install_element (BGP_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh);
13933 install_element (BGP_NODE, &no_neighbor_prefix_list_cmd_vtysh);
13934 install_element (VIEW_NODE, &show_ip_bgp_instance_neighbors_cmd_vtysh);
13935 install_element (BGP_NODE, &bgp_default_local_preference_cmd_vtysh);
13936 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_cmd_vtysh);
13937 install_element (RMAP_NODE, &match_ip_next_hop_cmd_vtysh);
13938 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh);
13939 install_element (ENABLE_NODE, &clear_bgp_peer_soft_cmd_vtysh);
13940 install_element (VIEW_NODE, &show_ip_community_list_cmd_vtysh);
13941 install_element (VIEW_NODE, &show_debugging_zebra_cmd_vtysh);
13942 install_element (VIEW_NODE, &show_bgp_community4_exact_cmd_vtysh);
13943 install_element (BGP_NODE, &aggregate_address_mask_summary_only_cmd_vtysh);
13944 install_element (OSPF_NODE, &area_vlink_authtype_args_md5_cmd_vtysh);
13945 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
13946 install_element (BGP_IPV4_NODE, &neighbor_default_originate_cmd_vtysh);
13947 install_element (ENABLE_NODE, &show_ipv6_bgp_community3_exact_cmd_vtysh);
13948 install_element (ENABLE_NODE, &show_ipv6_ospf6_neighbor_cmd_vtysh);
13949 install_element (ENABLE_NODE, &show_ip_bgp_cidr_only_cmd_vtysh);
13950 install_element (ENABLE_NODE, &show_ip_access_list_name_cmd_vtysh);
13951 install_element (ENABLE_NODE, &show_bgp_ipv6_route_cmd_vtysh);
13952 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
13953 install_element (CONFIG_NODE, &no_debug_ripng_packet_cmd_vtysh);
13954 install_element (OSPF_NODE, &no_area_range_not_advertise_cmd_vtysh);
13955 install_element (OSPF_NODE, &ospf_default_information_originate_routemap_cmd_vtysh);
13956 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
13957 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_cmd_vtysh);
13958 install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_longer_cmd_vtysh);
13959 install_element (VIEW_NODE, &show_bgp_community3_exact_cmd_vtysh);
13960 install_element (VIEW_NODE, &show_ip_prefix_list_prefix_cmd_vtysh);
13961 install_element (BGP_NODE, &no_bgp_default_ipv4_unicast_cmd_vtysh);
13962 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_summary_cmd_vtysh);
13963 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh);
13964 install_element (CONFIG_NODE, &bgp_multiple_instance_cmd_vtysh);
13965 install_element (VIEW_NODE, &show_ipv6_bgp_summary_cmd_vtysh);
13966 install_element (BGP_NODE, &no_neighbor_route_map_cmd_vtysh);
13967 install_element (ENABLE_NODE, &show_ipv6_prefix_list_detail_cmd_vtysh);
13968 install_element (CONFIG_NODE, &no_router_rip_cmd_vtysh);
13969 install_element (RMAP_NODE, &no_match_metric_val_cmd_vtysh);
13970 install_element (RMAP_NODE, &no_set_originator_id_val_cmd_vtysh);
13971 install_element (BGP_NODE, &no_bgp_bestpath_med_cmd_vtysh);
13972 install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_inter_cmd_vtysh);
13973 install_element (VIEW_NODE, &show_bgp_neighbor_received_routes_cmd_vtysh);
13974 install_element (BGP_IPV4_NODE, &aggregate_address_summary_only_cmd_vtysh);
13975 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_le_ge_cmd_vtysh);
13976 install_element (OSPF_NODE, &no_area_vlink_md5_cmd_vtysh);
13977 install_element (BGP_IPV4M_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
13978 install_element (CONFIG_NODE, &ip_prefix_list_le_cmd_vtysh);
13979 install_element (CONFIG_NODE, &dump_bgp_updates_interval_cmd_vtysh);
13980 install_element (OSPF_NODE, &passive_interface_addr_cmd_vtysh);
13981 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_natural_cmd_vtysh);
13982 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_as_set_cmd_vtysh);
13983 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh);
13984 install_element (OSPF_NODE, &no_ospf_default_metric_cmd_vtysh);
13985 install_element (ENABLE_NODE, &clear_ip_bgp_external_in_prefix_filter_cmd_vtysh);
13986 install_element (BGP_IPV4M_NODE, &bgp_network_cmd_vtysh);
13987 install_element (VIEW_NODE, &show_ip_community_list_arg_cmd_vtysh);
13988 install_element (CONFIG_NODE, &ip_as_path_cmd_vtysh);
13989 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_summary_cmd_vtysh);
13990 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_cmd_vtysh);
13991 install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
13992 install_element (VIEW_NODE, &show_ipv6_prefix_list_detail_cmd_vtysh);
13993 install_element (CONFIG_NODE, &no_ip_prefix_list_ge_le_cmd_vtysh);
13994 install_element (CONFIG_NODE, &ipv6_prefix_list_cmd_vtysh);
13995 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_cmd_vtysh);
13996 install_element (BGP_NODE, &bgp_bestpath_med_cmd_vtysh);
13997 install_element (ENABLE_NODE, &show_ip_bgp_view_cmd_vtysh);
13998 install_element (ENABLE_NODE, &show_ip_bgp_community_all_cmd_vtysh);
13999 install_element (BGP_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
14000 install_element (BGP_VPNV4_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
14001 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh);
14002 install_element (RMAP_NODE, &no_match_community_cmd_vtysh);
14003 install_element (ENABLE_NODE, &show_ip_bgp_instance_ipv4_summary_cmd_vtysh);
14004 install_element (RIP_NODE, &no_rip_offset_list_ifname_cmd_vtysh);
14005 install_element (BGP_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh);
14006 install_element (ENABLE_NODE, &debug_ospf_nsm_sub_cmd_vtysh);
14007 install_element (ENABLE_NODE, &show_ip_bgp_community3_cmd_vtysh);
14008 install_element (CONFIG_NODE, &no_access_list_extended_host_mask_cmd_vtysh);
14009 install_element (OSPF_NODE, &no_area_vlink_authtype_authkey_cmd_vtysh);
14010 install_element (VIEW_NODE, &show_bgp_ipv6_route_cmd_vtysh);
14011 install_element (BGP_VPNV4_NODE, &no_neighbor_allowas_in_cmd_vtysh);
14012 install_element (ENABLE_NODE, &undebug_bgp_normal_cmd_vtysh);
14013 install_element (ENABLE_NODE, &show_ip_bgp_scan_cmd_vtysh);
14014 install_element (OSPF_NODE, &ospf_abr_type_cmd_vtysh);
14015 install_element (VIEW_NODE, &show_ipv6_mbgp_filter_list_cmd_vtysh);
14016 install_element (RIP_NODE, &rip_redistribute_type_metric_cmd_vtysh);
14017 install_element (INTERFACE_NODE, &no_ospf_network_cmd_vtysh);
14018 install_element (BGP_IPV4_NODE, &no_neighbor_prefix_list_cmd_vtysh);
14019 install_element (ENABLE_NODE, &debug_ospf_ism_sub_cmd_vtysh);
14020 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh);
14021 install_element (BGP_IPV6_NODE, &neighbor_route_map_cmd_vtysh);
14022 install_element (BGP_NODE, &neighbor_transparent_as_cmd_vtysh);
14023 install_element (BGP_NODE, &bgp_network_route_map_cmd_vtysh);
14024 install_element (CONFIG_NODE, &access_list_any_cmd_vtysh);
14025 install_element (CONFIG_NODE, &no_debug_bgp_update_cmd_vtysh);
14026 install_element (INTERFACE_NODE, &ip_rip_send_version_cmd_vtysh);
14027 install_element (BGP_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
14028 install_element (BGP_NODE, &neighbor_dont_capability_negotiate_cmd_vtysh);
14029 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_cmd_vtysh);
14030 install_element (BGP_IPV4M_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
14031 install_element (INTERFACE_NODE, &ipv6_nd_other_config_flag_cmd_vtysh);
14032 install_element (ENABLE_NODE, &show_bgp_cmd_vtysh);
14033 install_element (ENABLE_NODE, &show_bgp_ipv6_route_map_cmd_vtysh);
14034 install_element (BGP_IPV4_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
14035 install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_advertised_route_cmd_vtysh);
14036 install_element (KEYCHAIN_KEY_NODE, &no_key_string_cmd_vtysh);
14037 install_element (RMAP_NODE, &no_match_ip_address_val_cmd_vtysh);
14038 install_element (RMAP_NODE, &no_set_metric_val_cmd_vtysh);
14039 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
14040 install_element (ENABLE_NODE, &show_bgp_community2_exact_cmd_vtysh);
14041 install_element (INTERFACE_NODE, &ospf_authentication_key_cmd_vtysh);
14042 install_element (RMAP_NODE, &set_aggregator_as_cmd_vtysh);
14043 install_element (BGP_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
14044 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_out_cmd_vtysh);
14045 install_element (CONFIG_NODE, &no_ip_prefix_list_le_cmd_vtysh);
14046 install_element (INTERFACE_NODE, &no_ip_ospf_priority_cmd_vtysh);
14047 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_out_cmd_vtysh);
14048 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_infinite_day_month_cmd_vtysh);
14049 install_element (RIP_NODE, &rip_version_cmd_vtysh);
14050 install_element (BGP_NODE, &no_neighbor_remote_as_cmd_vtysh);
14051 install_element (ENABLE_NODE, &show_debugging_ospf_cmd_vtysh);
14052 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
14053 install_element (ENABLE_NODE, &show_ipv6_mbgp_community3_exact_cmd_vtysh);
14054 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
14055 install_element (BGP_IPV4M_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
14056 install_element (VIEW_NODE, &show_ip_route_addr_cmd_vtysh);
14057 install_element (BGP_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
14058 install_element (BGP_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
14059 install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_in_cmd_vtysh);
14060 install_element (CONFIG_NODE, &ip_prefix_list_cmd_vtysh);
14061 install_element (BGP_IPV4M_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
14062 install_element (ENABLE_NODE, &clear_ip_prefix_list_name_cmd_vtysh);
14063 install_element (VIEW_NODE, &show_bgp_ipv6_route_map_cmd_vtysh);
14064 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_cmd_vtysh);
14065 install_element (BGP_IPV6_NODE, &no_neighbor_distribute_list_cmd_vtysh);
14066 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_prefix_cmd_vtysh);
14067 install_element (ENABLE_NODE, &show_ip_access_list_cmd_vtysh);
14068 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_list_cmd_vtysh);
14069 install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
14070 install_element (BGP_NODE, &no_neighbor_strict_capability_cmd_vtysh);
14071 install_element (ENABLE_NODE, &show_ipv6_ripng_cmd_vtysh);
14072 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_duration_month_day_cmd_vtysh);
14073 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbors_peer_cmd_vtysh);
14074 install_element (VIEW_NODE, &ipv6_bgp_neighbor_routes_cmd_vtysh);
14075 install_element (RIPNG_NODE, &ripng_default_metric_cmd_vtysh);
14076 install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_detail_cmd_vtysh);
14077 install_element (VIEW_NODE, &show_ip_protocols_rip_cmd_vtysh);
14078 install_element (ENABLE_NODE, &show_bgp_community3_cmd_vtysh);
14079 install_element (BGP_NODE, &no_neighbor_peer_group_cmd_vtysh);
14080 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_infinite_month_day_cmd_vtysh);
14081 install_element (ENABLE_NODE, &clear_bgp_as_soft_cmd_vtysh);
14082 install_element (INTERFACE_NODE, &no_rip_split_horizon_cmd_vtysh);
14083 install_element (OSPF_NODE, &area_vlink_authtype_md5_cmd_vtysh);
14084 install_element (BGP_IPV6_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
14085 install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_in_cmd_vtysh);
14086 install_element (BGP_IPV4_NODE, &neighbor_filter_list_cmd_vtysh);
14087 install_element (OSPF_NODE, &passive_interface_cmd_vtysh);
14088 install_element (BGP_IPV4_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
14089 install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_cmd_vtysh);
14090 install_element (BGP_IPV4_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh);
14091 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh);
14092 install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_longer_cmd_vtysh);
14093 install_element (BGP_NODE, &neighbor_advertise_interval_cmd_vtysh);
14094 install_element (CONFIG_NODE, &no_dump_bgp_all_cmd_vtysh);
14095 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_list_cmd_vtysh);
14096 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_in_cmd_vtysh);
14097 install_element (CONFIG_NODE, &no_ip_prefix_list_prefix_cmd_vtysh);
14098 install_element (VIEW_NODE, &show_ip_bgp_community_list_cmd_vtysh);
14099 install_element (VIEW_NODE, &show_ipv6_prefix_list_summary_name_cmd_vtysh);
14100 install_element (VIEW_NODE, &show_ipv6_mbgp_community_cmd_vtysh);
14101 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
14102 install_element (BGP_IPV4_NODE, &aggregate_address_mask_summary_only_cmd_vtysh);
14103 install_element (INTERFACE_NODE, &no_ip_ospf_cost_cmd_vtysh);
14104 install_element (ENABLE_NODE, &show_ip_route_protocol_cmd_vtysh);
14105 install_element (OSPF_NODE, &area_export_list_cmd_vtysh);
14106 install_element (OSPF6_NODE, &router_id_cmd_vtysh);
14107 install_element (CONFIG_NODE, &ipv6_access_list_exact_cmd_vtysh);
14108 install_element (OSPF_NODE, &no_ospf_abr_type_cmd_vtysh);
14109 install_element (RMAP_NODE, &no_match_aspath_val_cmd_vtysh);
14110 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_in_prefix_filter_cmd_vtysh);
14111 install_element (BGP_IPV4M_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh);
14112 install_element (ENABLE_NODE, &show_ip_bgp_dampened_paths_cmd_vtysh);
14113 install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_cmd_vtysh);
14114 install_element (BGP_NODE, &no_neighbor_peer_group_remote_as_cmd_vtysh);
14115 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_metric_rmap_cmd_vtysh);
14116 install_element (OSPF_NODE, &no_area_shortcut_cmd_vtysh);
14117 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh);
14118 install_element (INTERFACE_NODE, &ip_ospf_hello_interval_addr_cmd_vtysh);
14119 install_element (RIP_NODE, &no_rip_redistribute_type_metric_cmd_vtysh);
14120 install_element (VIEW_NODE, &show_ip_bgp_route_cmd_vtysh);
14121 install_element (ENABLE_NODE, &clear_ip_bgp_all_cmd_vtysh);
14122 install_element (ENABLE_NODE, &debug_zebra_kernel_cmd_vtysh);
14123 install_element (ENABLE_NODE, &no_debug_ospf_nsm_sub_cmd_vtysh);
14124 install_element (BGP_NODE, &no_bgp_distance_source_cmd_vtysh);
14125 install_element (CONFIG_NODE, &access_list_extended_host_host_cmd_vtysh);
14126 install_element (CONFIG_NODE, &no_debug_ospf6_all_cmd_vtysh);
14127 install_element (ENABLE_NODE, &show_bgp_neighbors_peer_cmd_vtysh);
14128 install_element (INTERFACE_NODE, &no_interface_ip_ospf_authentication_cmd_vtysh);
14129 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_cmd_vtysh);
14130 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_paths_cmd_vtysh);
14131 install_element (VIEW_NODE, &show_bgp_ipv6_summary_cmd_vtysh);
14132 install_element (ENABLE_NODE, &debug_ripng_packet_detail_cmd_vtysh);
14133 install_element (VIEW_NODE, &show_ip_ospf_database_type_self_cmd_vtysh);
14134 install_element (VIEW_NODE, &show_bgp_summary_cmd_vtysh);
14135 install_element (ENABLE_NODE, &no_debug_ospf_ism_sub_cmd_vtysh);
14136 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_in_cmd_vtysh);
14137 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_out_cmd_vtysh);
14138 install_element (CONFIG_NODE, &ip_community_list_name_standard2_cmd_vtysh);
14139 install_element (VIEW_NODE, &show_bgp_route_cmd_vtysh);
14140 install_element (BGP_NODE, &no_bgp_bestpath_med2_cmd_vtysh);
14141 install_element (BGP_IPV4_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
14142 install_element (ENABLE_NODE, &show_ipv6_mbgp_summary_cmd_vtysh);
14143 install_element (ENABLE_NODE, &show_ipv6_prefix_list_name_cmd_vtysh);
14144 install_element (ZEBRA_NODE, &redistribute_ospf6_cmd_vtysh);
14145 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_cmd_vtysh);
14146 install_element (VIEW_NODE, &show_ip_forwarding_cmd_vtysh);
14147 install_element (BGP_NODE, &no_bgp_deterministic_med_cmd_vtysh);
14148 install_element (ENABLE_NODE, &show_bgp_neighbor_routes_cmd_vtysh);
14149 install_element (ENABLE_NODE, &show_ipv6_prefix_list_summary_cmd_vtysh);
14150 install_element (CONFIG_NODE, &ip_prefix_list_ge_le_cmd_vtysh);
14151 install_element (CONFIG_NODE, &debug_zebra_packet_direct_cmd_vtysh);
14152 install_element (BGP_IPV6_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
14153 install_element (BGP_NODE, &bgp_network_mask_route_map_cmd_vtysh);
14154 install_element (ENABLE_NODE, &debug_rip_packet_detail_cmd_vtysh);
14155 install_element (BGP_NODE, &no_bgp_cluster_id_arg_cmd_vtysh);
14156 install_element (BGP_NODE, &no_neighbor_description_cmd_vtysh);
14157 install_element (CONFIG_NODE, &no_debug_ospf_zebra_cmd_vtysh);
14158 install_element (RMAP_NODE, &match_community_exact_cmd_vtysh);
14159 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh);
14160 install_element (BGP_NODE, &bgp_fast_external_failover_cmd_vtysh);
14161 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_cmd_vtysh);
14162 install_element (CONFIG_NODE, &no_ipv6_prefix_list_description_cmd_vtysh);
14163 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_natural_cmd_vtysh);
14164 install_element (BGP_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh);
14165 install_element (INTERFACE_NODE, &no_ospf_retransmit_interval_cmd_vtysh);
14166 install_element (BGP_NODE, &no_aggregate_address_mask_cmd_vtysh);
14167 install_element (VIEW_NODE, &show_bgp_community_cmd_vtysh);
14168 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community4_exact_cmd_vtysh);
14169 install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_longer_cmd_vtysh);
14170 install_element (BGP_IPV4M_NODE, &neighbor_maximum_prefix_cmd_vtysh);
14171 install_element (OSPF_NODE, &no_ospf_distance_cmd_vtysh);
14172 install_element (INTERFACE_NODE, &ipv6_nd_prefix_advertisement_cmd_vtysh);
14173 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
14174 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_cmd_vtysh);
14175 install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_out_cmd_vtysh);
14176 install_element (VIEW_NODE, &show_ipv6_bgp_community2_exact_cmd_vtysh);
14177 install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
14178 install_element (ENABLE_NODE, &show_ip_route_supernets_cmd_vtysh);
14179 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_rmap_cmd_vtysh);
14180 install_element (INTERFACE_NODE, &ipv6_nd_suppress_ra_cmd_vtysh);
14181 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd_vtysh);
14182 install_element (BGP_NODE, &bgp_router_id_cmd_vtysh);
14183 install_element (RMAP_NODE, &no_set_community_delete_val_cmd_vtysh);
14184 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_metric_rmap_cmd_vtysh);
14185 install_element (OSPF_NODE, &no_area_vlink_param1_cmd_vtysh);
14186 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
14187 install_element (VIEW_NODE, &show_ipv6_mbgp_cmd_vtysh);
14188 install_element (RIPNG_NODE, &ripng_redistribute_connected_cmd_vtysh);
14189 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_summary_cmd_vtysh);
14190 install_element (BGP_IPV4M_NODE, &neighbor_send_community_cmd_vtysh);
14191 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh);
14192 install_element (ENABLE_NODE, &clear_bgp_all_out_cmd_vtysh);
14193 install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_cmd_vtysh);
14194 install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_external_cmd_vtysh);
14195 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_rmap_cmd_vtysh);
14196 install_element (BGP_IPV6_NODE, &neighbor_maximum_prefix_cmd_vtysh);
14197 install_element (OSPF_NODE, &refresh_timer_cmd_vtysh);
14198 install_element (BGP_IPV4_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
14199 install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_list_cmd_vtysh);
14200 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_month_day_month_day_cmd_vtysh);
14201 install_element (CONFIG_NODE, &debug_ospf_zebra_cmd_vtysh);
14202 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_exact_cmd_vtysh);
14203 install_element (CONFIG_NODE, &no_debug_bgp_filter_cmd_vtysh);
14204 install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_cmd_vtysh);
14205 install_element (ENABLE_NODE, &no_debug_rip_zebra_cmd_vtysh);
14206 install_element (ENABLE_NODE, &no_debug_rip_packet_cmd_vtysh);
14207 install_element (VIEW_NODE, &show_version_ospf6_cmd_vtysh);
14208 install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_cmd_vtysh);
14209 install_element (BGP_IPV6_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
14210 install_element (VIEW_NODE, &show_ip_route_supernets_cmd_vtysh);
14211 install_element (RIP_NODE, &rip_redistribute_type_routemap_cmd_vtysh);
14212 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_address_cmd_vtysh);
14213 install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_val_cmd_vtysh);
14214 install_element (RMAP_NODE, &rmap_onmatch_goto_cmd_vtysh);
14215 install_element (VIEW_NODE, &show_ip_bgp_ipv4_cmd_vtysh);
14216 install_element (INTERFACE_NODE, &no_ip_rip_authentication_mode_type_cmd_vtysh);
14217 install_element (VIEW_NODE, &show_ipv6_mbgp_summary_cmd_vtysh);
14218 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
14219 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
14220 install_element (ENABLE_NODE, &show_ip_bgp_view_route_cmd_vtysh);
14221 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_adv_router_cmd_vtysh);
14222 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_routemap_cmd_vtysh);
14223 install_element (ENABLE_NODE, &debug_ospf_ism_cmd_vtysh);
14224 install_element (ENABLE_NODE, &debug_bgp_events_cmd_vtysh);
14225 install_element (ENABLE_NODE, &show_ip_bgp_flap_route_map_cmd_vtysh);
14226 install_element (OSPF_NODE, &no_area_range_advertise_cmd_vtysh);
14227 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
14228 install_element (ENABLE_NODE, &debug_ripng_zebra_cmd_vtysh);
14229 install_element (BGP_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
14230 install_element (BGP_IPV6_NODE, &neighbor_allowas_in_cmd_vtysh);
14231 install_element (VIEW_NODE, &show_ip_bgp_community3_cmd_vtysh);
14232 install_element (BGP_IPV6_NODE, &no_neighbor_prefix_list_cmd_vtysh);
14233 install_element (VIEW_NODE, &show_ip_bgp_community4_cmd_vtysh);
14234 install_element (BGP_IPV4M_NODE, &no_neighbor_send_community_type_cmd_vtysh);
14235 install_element (BGP_IPV4_NODE, &aggregate_address_cmd_vtysh);
14236 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh);
14237 install_element (BGP_IPV6_NODE, &no_neighbor_send_community_type_cmd_vtysh);
14238 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_duration_month_day_cmd_vtysh);
14239 install_element (BGP_VPNV4_NODE, &no_neighbor_route_server_client_cmd_vtysh);
14240 install_element (CONFIG_NODE, &ip_prefix_list_seq_ge_le_cmd_vtysh);
14241 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_prefix_cmd_vtysh);
14242 install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_val_cmd_vtysh);
14243 install_element (OSPF_NODE, &no_area_range_cmd_vtysh);
14244 install_element (VIEW_NODE, &show_ipv6_route_prefix_longer_cmd_vtysh);
14245 install_element (BGP_NODE, &no_neighbor_local_as_val_cmd_vtysh);
14246 install_element (CONFIG_NODE, &no_route_map_all_cmd_vtysh);
14247 install_element (OSPF_NODE, &no_passive_interface_addr_cmd_vtysh);
14248 install_element (ENABLE_NODE, &clear_bgp_as_soft_out_cmd_vtysh);
14249 install_element (BGP_NODE, &bgp_redistribute_ipv4_metric_cmd_vtysh);
14250 install_element (BGP_IPV4_NODE, &no_neighbor_send_community_type_cmd_vtysh);
14251 install_element (ENABLE_NODE, &show_bgp_neighbors_cmd_vtysh);
14252 install_element (ENABLE_NODE, &clear_bgp_peer_cmd_vtysh);
14253 install_element (ENABLE_NODE, &clear_bgp_external_cmd_vtysh);
14254 install_element (VIEW_NODE, &show_ip_bgp_neighbor_routes_cmd_vtysh);
14255 install_element (BGP_VPNV4_NODE, &no_neighbor_activate_cmd_vtysh);
14256 install_element (BGP_NODE, &no_bgp_enforce_first_as_cmd_vtysh);
14257 install_element (CONFIG_NODE, &no_debug_rip_events_cmd_vtysh);
14258 install_element (RIPNG_NODE, &ripng_redistribute_kernel_metric_routemap_cmd_vtysh);
14259 install_element (BGP_NODE, &neighbor_passive_cmd_vtysh);
14260 install_element (ENABLE_NODE, &show_ip_bgp_community4_cmd_vtysh);
14261 install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_val_cmd_vtysh);
14262 install_element (RMAP_NODE, &no_set_ecommunity_rt_cmd_vtysh);
14263 install_element (BGP_IPV6_NODE, &no_neighbor_send_community_cmd_vtysh);
14264 install_element (BGP_IPV4_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
14265 install_element (BGP_NODE, &no_bgp_network_backdoor_cmd_vtysh);
14266 install_element (BGP_NODE, &no_neighbor_enforce_multihop_cmd_vtysh);
14267 install_element (ENABLE_NODE, &clear_ip_prefix_list_name_prefix_cmd_vtysh);
14268 install_element (OSPF6_NODE, &ospf6_redistribute_routemap_cmd_vtysh);
14269 install_element (BGP_IPV4_NODE, &neighbor_send_community_type_cmd_vtysh);
14270 install_element (BGP_IPV4M_NODE, &bgp_network_mask_cmd_vtysh);
14271 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged_cmd_vtysh);
14272 install_element (BGP_IPV4M_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
14273 install_element (INTERFACE_NODE, &ospf_message_digest_key_cmd_vtysh);
14274 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd_vtysh);
14275 install_element (CONFIG_NODE, &no_access_list_exact_cmd_vtysh);
14276 install_element (BGP_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
14277 install_element (BGP_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
14278 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community3_cmd_vtysh);
14279 install_element (VIEW_NODE, &show_bgp_neighbor_advertised_route_cmd_vtysh);
14280 install_element (BGP_NODE, &no_bgp_network_mask_backdoor_cmd_vtysh);
14281 install_element (INTERFACE_NODE, &ip_irdp_cmd_vtysh);
14282 install_element (CONFIG_NODE, &config_table_cmd_vtysh);
14283 install_element (BGP_IPV4_NODE, &no_aggregate_address_as_set_cmd_vtysh);
14284 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
14285 install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh);
14286 install_element (OSPF_NODE, &no_area_filter_list_cmd_vtysh);
14287 install_element (CONFIG_NODE, &no_ipv6_prefix_list_ge_le_cmd_vtysh);
14288 install_element (ENABLE_NODE, &show_ipv6_bgp_community_list_cmd_vtysh);
14289 install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_in_cmd_vtysh);
14290 install_element (CONFIG_NODE, &debug_zebra_packet_cmd_vtysh);
14291 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh);
14292 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh);
14293 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_cmd_vtysh);
14294 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_val_cmd_vtysh);
14295 install_element (BGP_VPNV4_NODE, &no_neighbor_route_map_cmd_vtysh);
14296 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
14297 install_element (VIEW_NODE, &show_ipv6_bgp_prefix_list_cmd_vtysh);
14298 install_element (OSPF6_NODE, &area_range_cmd_vtysh);
14299 install_element (CONFIG_NODE, &debug_rip_events_cmd_vtysh);
14300 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_le_cmd_vtysh);
14301 install_element (VIEW_NODE, &show_bgp_ipv6_community_cmd_vtysh);
14302 install_element (RMAP_NODE, &match_interface_cmd_vtysh);
14303 install_element (RMAP_NODE, &no_match_community_exact_cmd_vtysh);
14304 install_element (BGP_NODE, &neighbor_version_cmd_vtysh);
14305 install_element (ENABLE_NODE, &clear_ip_bgp_peer_in_prefix_filter_cmd_vtysh);
14306 install_element (CONFIG_NODE, &access_list_standard_any_cmd_vtysh);
14307 install_element (ENABLE_NODE, &no_debug_ospf_lsa_sub_cmd_vtysh);
14308 install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_cmd_vtysh);
14309 install_element (CONFIG_NODE, &debug_bgp_keepalive_cmd_vtysh);
14310 install_element (ENABLE_NODE, &show_ip_bgp_instance_neighbors_peer_cmd_vtysh);
14311 install_element (CONFIG_NODE, &access_list_extended_any_any_cmd_vtysh);
14312 install_element (CONFIG_NODE, &debug_ripng_packet_cmd_vtysh);
14313 install_element (BGP_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
14314 install_element (RIP_NODE, &rip_offset_list_cmd_vtysh);
14315 install_element (BGP_NODE, &no_bgp_network_import_check_cmd_vtysh);
14316 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_in_cmd_vtysh);
14317 install_element (BGP_IPV6_NODE, &neighbor_prefix_list_cmd_vtysh);
14318 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_cmd_vtysh);
14319 install_element (OSPF_NODE, &no_area_default_cost_cmd_vtysh);
14320 install_element (CONFIG_NODE, &ipv6_prefix_list_ge_cmd_vtysh);
14321 install_element (ENABLE_NODE, &show_ip_bgp_paths_cmd_vtysh);
14322 install_element (RIP_NODE, &no_rip_offset_list_cmd_vtysh);
14323 install_element (CONFIG_NODE, &no_ipv6_access_list_remark_arg_cmd_vtysh);
14324 install_element (ENABLE_NODE, &no_debug_zebra_kernel_cmd_vtysh);
14325 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_cmd_vtysh);
14326 install_element (ENABLE_NODE, &debug_ospf_lsa_cmd_vtysh);
14327 install_element (OSPF_NODE, &no_ospf_default_metric_val_cmd_vtysh);
14328 install_element (OSPF_NODE, &area_range_not_advertise_cmd_vtysh);
14329 install_element (OSPF_NODE, &ospf_default_information_originate_type_metric_cmd_vtysh);
14330 install_element (ENABLE_NODE, &show_zebra_client_cmd_vtysh);
14331 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
14332 install_element (CONFIG_NODE, &ipv6_prefix_list_le_ge_cmd_vtysh);
14333 install_element (BGP_IPV4M_NODE, &no_aggregate_address_summary_only_cmd_vtysh);
14334 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh);
14335 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_in_cmd_vtysh);
14336 install_element (RMAP_NODE, &no_set_vpnv4_nexthop_cmd_vtysh);
14337 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_out_cmd_vtysh);
14338 install_element (BGP_IPV6_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
14339 install_element (ENABLE_NODE, &clear_bgp_peer_group_out_cmd_vtysh);
14340 install_element (OSPF_NODE, &area_range_cmd_vtysh);
14341 install_element (VIEW_NODE, &show_ipv6_mbgp_community_list_exact_cmd_vtysh);
14342 install_element (OSPF_NODE, &ospf_default_information_originate_metric_type_cmd_vtysh);
14343 install_element (RIP_NODE, &rip_distance_source_access_list_cmd_vtysh);
14344 install_element (CONFIG_NODE, &no_router_bgp_view_cmd_vtysh);
14345 install_element (VIEW_NODE, &show_ipv6_mbgp_community_list_cmd_vtysh);
14346 install_element (ENABLE_NODE, &clear_bgp_all_soft_in_cmd_vtysh);
14347 install_element (BGP_NODE, &neighbor_shutdown_cmd_vtysh);
14348 install_element (OSPF_NODE, &ospf_distance_ospf_inter_cmd_vtysh);
14349 install_element (CONFIG_NODE, &no_ip_community_list_name_standard_cmd_vtysh);
14350 install_element (RIP_NODE, &no_rip_redistribute_type_cmd_vtysh);
14351 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh);
14352 install_element (OSPF_NODE, &no_neighbor_priority_cmd_vtysh);
14353 install_element (CONFIG_NODE, &no_ip_route_mask_cmd_vtysh);
14354 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_in_prefix_filter_cmd_vtysh);
14355 install_element (ENABLE_NODE, &show_ipv6_bgp_community4_exact_cmd_vtysh);
14356 install_element (BGP_NODE, &aggregate_address_cmd_vtysh);
14357 install_element (INTERFACE_NODE, &no_ip_rip_receive_version_cmd_vtysh);
14358 install_element (OSPF_NODE, &ospf_compatible_rfc1583_cmd_vtysh);
14359 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_out_cmd_vtysh);
14360 install_element (INTERFACE_NODE, &ipv6_ospf6_passive_cmd_vtysh);
14361 install_element (BGP_IPV4_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
14362 install_element (BGP_IPV6_NODE, &no_neighbor_default_originate_cmd_vtysh);
14363 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_rmap_metric_cmd_vtysh);
14364 install_element (CONFIG_NODE, &no_access_list_extended_any_any_cmd_vtysh);
14365 install_element (BGP_NODE, &no_neighbor_shutdown_cmd_vtysh);
14366 install_element (VIEW_NODE, &show_bgp_regexp_cmd_vtysh);
14367 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh);
14368 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh);
14369 install_element (VIEW_NODE, &show_ip_route_prefix_longer_cmd_vtysh);
14370 install_element (VIEW_NODE, &show_ipv6_bgp_community4_exact_cmd_vtysh);
14371 install_element (BGP_IPV4M_NODE, &no_neighbor_distribute_list_cmd_vtysh);
14372 install_element (BGP_NODE, &neighbor_route_map_cmd_vtysh);
14373 install_element (RMAP_NODE, &no_set_origin_cmd_vtysh);
14374 install_element (BGP_IPV4_NODE, &bgp_damp_unset2_cmd_vtysh);
14375 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_all_cmd_vtysh);
14376 install_element (CONFIG_NODE, &no_dump_bgp_updates_cmd_vtysh);
14377 install_element (BGP_NODE, &no_bgp_network_cmd_vtysh);
14378 install_element (RMAP_NODE, &no_set_weight_val_cmd_vtysh);
14379 install_element (RMAP_NODE, &no_match_ipv6_address_prefix_list_cmd_vtysh);
14380 install_element (INTERFACE_NODE, &no_multicast_cmd_vtysh);
14381 install_element (VIEW_NODE, &show_ipv6_mbgp_community3_cmd_vtysh);
14382 install_element (CONFIG_NODE, &no_ip_community_list_standard_cmd_vtysh);
14383 install_element (CONFIG_NODE, &no_ip_prefix_list_cmd_vtysh);
14384 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_route_prefix_cmd_vtysh);
14385 install_element (CONFIG_NODE, &debug_ospf_lsa_sub_cmd_vtysh);
14386 install_element (INTERFACE_NODE, &no_bandwidth_if_val_cmd_vtysh);
14387 install_element (BGP_IPV4_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
14388 install_element (BGP_NODE, &neighbor_prefix_list_cmd_vtysh);
14389 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh);
14390 install_element (ENABLE_NODE, &show_ip_ospf_database_cmd_vtysh);
14391 install_element (BGP_IPV4M_NODE, &neighbor_distribute_list_cmd_vtysh);
14392 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
14393 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_cmd_vtysh);
14394 install_element (OSPF_NODE, &area_vlink_authtype_args_authkey_cmd_vtysh);
14395 install_element (VIEW_NODE, &show_ip_bgp_flap_filter_list_cmd_vtysh);
14396 install_element (ENABLE_NODE, &show_bgp_community4_exact_cmd_vtysh);
14397 install_element (OSPF_NODE, &neighbor_priority_cmd_vtysh);
14398 install_element (BGP_NODE, &old_no_ipv6_bgp_network_cmd_vtysh);
14399 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbors_cmd_vtysh);
14400 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_in_prefix_filter_cmd_vtysh);
14401 install_element (CONFIG_NODE, &access_list_exact_cmd_vtysh);
14402 install_element (BGP_IPV4_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh);
14403 install_element (BGP_VPNV4_NODE, &neighbor_filter_list_cmd_vtysh);
14404 install_element (BGP_NODE, &no_neighbor_weight_cmd_vtysh);
14405 install_element (BGP_VPNV4_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
14406 install_element (BGP_NODE, &no_neighbor_timers_connect_cmd_vtysh);
14407 install_element (INTERFACE_NODE, &no_ip_address_secondary_cmd_vtysh);
14408 install_element (BGP_IPV4_NODE, &neighbor_distribute_list_cmd_vtysh);
14409 install_element (BGP_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh);
14410 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_cmd_vtysh);
14411 install_element (RMAP_NODE, &no_set_community_none_cmd_vtysh);
14412 install_element (RIP_NODE, &no_rip_version_cmd_vtysh);
14413 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community3_exact_cmd_vtysh);
14414 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_cmd_vtysh);
14415 install_element (INTERFACE_NODE, &no_interface_ip_ospf_authentication_addr_cmd_vtysh);
14416 install_element (BGP_IPV6_NODE, &no_ipv6_aggregate_address_cmd_vtysh);
14417 install_element (ENABLE_NODE, &show_ip_ospf_route_cmd_vtysh);
14418 install_element (BGP_NODE, &no_neighbor_local_as_val2_cmd_vtysh);
14419 install_element (RMAP_NODE, &no_match_aspath_cmd_vtysh);
14420 install_element (CONFIG_NODE, &debug_bgp_normal_cmd_vtysh);
14421 install_element (BGP_NODE, &bgp_bestpath_med2_cmd_vtysh);
14422 install_element (OSPF_NODE, &no_ospf_redistribute_source_cmd_vtysh);
14423 install_element (INTERFACE_NODE, &no_shutdown_if_cmd_vtysh);
14424 install_element (ENABLE_NODE, &show_ip_bgp_flap_address_cmd_vtysh);
14425 install_element (CONFIG_NODE, &no_debug_ospf_zebra_sub_cmd_vtysh);
14426 install_element (RMAP_NODE, &set_metric_cmd_vtysh);
14427 install_element (VIEW_NODE, &show_bgp_ipv6_neighbors_cmd_vtysh);
14428 install_element (ENABLE_NODE, &show_ipv6_bgp_filter_list_cmd_vtysh);
14429 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
14430 install_element (BGP_IPV4_NODE, &bgp_damp_set3_cmd_vtysh);
14431 install_element (CONFIG_NODE, &debug_bgp_update_direct_cmd_vtysh);
14432 install_element (OSPF_NODE, &ospf_default_information_originate_always_routemap_cmd_vtysh);
14433 install_element (BGP_NODE, &aggregate_address_summary_as_set_cmd_vtysh);
14434 install_element (ENABLE_NODE, &clear_bgp_external_in_prefix_filter_cmd_vtysh);
14435 install_element (CONFIG_NODE, &no_ipv6_access_list_exact_cmd_vtysh);
14436 install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_list_cmd_vtysh);
14437 install_element (BGP_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
14438 install_element (BGP_VPNV4_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
14439 install_element (BGP_IPV4M_NODE, &no_neighbor_route_map_cmd_vtysh);
14440 install_element (RMAP_NODE, &set_atomic_aggregate_cmd_vtysh);
14441 install_element (ENABLE_NODE, &clear_bgp_peer_group_in_prefix_filter_cmd_vtysh);
14442 install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_cmd_vtysh);
14443 install_element (BGP_NODE, &bgp_scan_time_cmd_vtysh);
14444 install_element (BGP_NODE, &no_neighbor_interface_cmd_vtysh);
14445 install_element (ENABLE_NODE, &debug_bgp_update_cmd_vtysh);
14446 install_element (ENABLE_NODE, &show_ip_route_prefix_longer_cmd_vtysh);
14447 install_element (CONFIG_NODE, &ipv6_route_ifname_pref_cmd_vtysh);
14448 install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
14449 install_element (BGP_IPV6_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
14450 install_element (RIP_NODE, &rip_passive_interface_cmd_vtysh);
14451 install_element (ENABLE_NODE, &show_ip_bgp_filter_list_cmd_vtysh);
14452 install_element (ENABLE_NODE, &show_bgp_neighbor_advertised_route_cmd_vtysh);
14453 install_element (ENABLE_NODE, &show_ipv6_prefix_list_name_seq_cmd_vtysh);
14454 install_element (RMAP_NODE, &set_aspath_prepend_cmd_vtysh);
14455 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_cmd_vtysh);
14456 install_element (VIEW_NODE, &show_ipv6_ospf6_topology_router_lsid_cmd_vtysh);
14457 install_element (CONFIG_NODE, &no_ip_community_list_all_cmd_vtysh);
14458 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_received_routes_cmd_vtysh);
14459 install_element (RMAP_NODE, &match_ip_next_hop_prefix_list_cmd_vtysh);
14460 install_element (ENABLE_NODE, &show_ipv6_mbgp_route_cmd_vtysh);
14461 install_element (BGP_IPV6_NODE, &neighbor_activate_cmd_vtysh);
14462 install_element (BGP_NODE, &no_bgp_timers_arg_cmd_vtysh);
14463 install_element (VIEW_NODE, &show_ip_bgp_instance_neighbors_peer_cmd_vtysh);
14464 install_element (BGP_NODE, &no_neighbor_advertise_interval_cmd_vtysh);
14465 install_element (BGP_IPV4_NODE, &no_neighbor_activate_cmd_vtysh);
14466 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_in_cmd_vtysh);
14467 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_cmd_vtysh);
14468 install_element (BGP_VPNV4_NODE, &no_neighbor_send_community_type_cmd_vtysh);
14469 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_cmd_vtysh);
14470 install_element (VIEW_NODE, &show_ipv6_bgp_community4_cmd_vtysh);
14471 install_element (INTERFACE_NODE, &ip_address_label_cmd_vtysh);
14472 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_routemap_cmd_vtysh);
14473 install_element (CONFIG_NODE, &ip_community_list_name_standard_cmd_vtysh);
14474 install_element (CONFIG_NODE, &ip_prefix_list_ge_cmd_vtysh);
14475 install_element (VIEW_NODE, &show_ip_bgp_filter_list_cmd_vtysh);
14476 install_element (ENABLE_NODE, &debug_zebra_events_cmd_vtysh);
14477 install_element (BGP_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
14478 install_element (ENABLE_NODE, &show_ipv6_route_addr_cmd_vtysh);
14479 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
14480 install_element (VIEW_NODE, &show_ip_prefix_list_detail_cmd_vtysh);
14481 install_element (BGP_IPV4_NODE, &no_aggregate_address_summary_only_cmd_vtysh);
14482 install_element (VIEW_NODE, &show_ip_ospf_interface_cmd_vtysh);
14483 install_element (CONFIG_NODE, &ip_community_list_standard2_cmd_vtysh);
14484 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
14485 install_element (OSPF6_NODE, &no_interface_area_cmd_vtysh);
14486 install_element (ENABLE_NODE, &show_ipv6_prefix_list_cmd_vtysh);
14487 install_element (OSPF_NODE, &no_ospf_rfc1583_flag_cmd_vtysh);
14488 install_element (VIEW_NODE, &show_ipv6_mbgp_route_cmd_vtysh);
14489 install_element (ENABLE_NODE, &show_bgp_ipv6_community3_exact_cmd_vtysh);
14490 install_element (BGP_IPV6_NODE, &neighbor_route_server_client_cmd_vtysh);
14491 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_cmd_vtysh);
14492 install_element (BGP_IPV4M_NODE, &no_neighbor_allowas_in_cmd_vtysh);
14493 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_cmd_vtysh);
14494 install_element (BGP_NODE, &bgp_network_mask_backdoor_cmd_vtysh);
14495 install_element (RIPNG_NODE, &no_ripng_aggregate_address_cmd_vtysh);
14496 install_element (ENABLE_NODE, &show_bgp_ipv6_community4_exact_cmd_vtysh);
14497 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
14498 install_element (CONFIG_NODE, &ip_prefix_list_seq_le_cmd_vtysh);
14499 install_element (CONFIG_NODE, &no_ipv6_prefix_list_le_cmd_vtysh);
14500 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_cmd_vtysh);
14501 install_element (BGP_NODE, &no_neighbor_capability_dynamic_cmd_vtysh);
14502 install_element (ENABLE_NODE, &show_ip_bgp_regexp_cmd_vtysh);
14503 install_element (RIPNG_NODE, &ripng_redistribute_connected_routemap_cmd_vtysh);
14504 install_element (INTERFACE_NODE, &no_ospf_transmit_delay_cmd_vtysh);
14505 install_element (RIP_NODE, &no_rip_redistribute_type_metric_routemap_cmd_vtysh);
14506 install_element (ENABLE_NODE, &debug_ripng_events_cmd_vtysh);
14507 install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_cmd_vtysh);
14508 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_route_cmd_vtysh);
14509 install_element (ZEBRA_NODE, &ripng_redistribute_ripng_cmd_vtysh);
14510 install_element (CONFIG_NODE, &access_list_extended_mask_host_cmd_vtysh);
14511 install_element (BGP_IPV6_NODE, &ipv6_aggregate_address_summary_only_cmd_vtysh);
14512 install_element (ZEBRA_NODE, &no_rip_redistribute_rip_cmd_vtysh);
14513 install_element (RIP_NODE, &no_rip_default_information_originate_cmd_vtysh);
14514 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_received_routes_cmd_vtysh);
14515 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_out_cmd_vtysh);
14516 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community3_cmd_vtysh);
14517 install_element (BGP_IPV4M_NODE, &aggregate_address_as_set_cmd_vtysh);
14518 install_element (CONFIG_NODE, &debug_ospf_packet_all_cmd_vtysh);
14519 install_element (VIEW_NODE, &show_bgp_ipv6_community4_exact_cmd_vtysh);
14520 install_element (BGP_NODE, &no_neighbor_allowas_in_cmd_vtysh);
14521 install_element (VIEW_NODE, &show_ip_bgp_summary_cmd_vtysh);
14522 install_element (INTERFACE_NODE, &ospf_hello_interval_cmd_vtysh);
14523 install_element (ENABLE_NODE, &show_bgp_community_all_cmd_vtysh);
14524 install_element (BGP_NODE, &no_bgp_timers_cmd_vtysh);
14525 install_element (BGP_NODE, &no_neighbor_override_capability_cmd_vtysh);
14526 install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
14527 install_element (RIPNG_NODE, &ripng_redistribute_kernel_metric_cmd_vtysh);
14528 install_element (BGP_NODE, &bgp_network_mask_cmd_vtysh);
14529 install_element (BGP_VPNV4_NODE, &neighbor_route_server_client_cmd_vtysh);
14530 install_element (BGP_IPV4M_NODE, &no_bgp_network_route_map_cmd_vtysh);
14531 install_element (RIP_NODE, &no_rip_neighbor_cmd_vtysh);
14532 install_element (VIEW_NODE, &show_ip_route_protocol_cmd_vtysh);
14533 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_address_mask_cmd_vtysh);
14534 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_day_month_month_day_cmd_vtysh);
14535 install_element (ENABLE_NODE, &clear_bgp_external_in_cmd_vtysh);
14536 install_element (BGP_IPV4M_NODE, &aggregate_address_summary_only_cmd_vtysh);
14537 install_element (OSPF_NODE, &area_vlink_cmd_vtysh);
14538 install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_cmd_vtysh);
14539 install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_cmd_vtysh);
14540 install_element (BGP_IPV4M_NODE, &no_neighbor_prefix_list_cmd_vtysh);
14541 install_element (BGP_IPV4_NODE, &bgp_network_mask_natural_cmd_vtysh);
14542 install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_cmd_vtysh);
14543 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_day_month_day_month_cmd_vtysh);
14544 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd_vtysh);
14545 install_element (ENABLE_NODE, &debug_ospf_event_cmd_vtysh);
14546 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_duration_day_month_cmd_vtysh);
14547 install_element (INTERFACE_NODE, &ip_ospf_hello_interval_cmd_vtysh);
14548 install_element (CONFIG_NODE, &no_ip_prefix_list_description_arg_cmd_vtysh);
14549 install_element (ENABLE_NODE, &ipv6_bgp_neighbor_received_routes_cmd_vtysh);
14550 install_element (INTERFACE_NODE, &no_ipv6_ospf6_passive_cmd_vtysh);
14551 install_element (CONFIG_NODE, &no_ip_prefix_list_ge_cmd_vtysh);
14552 install_element (OSPF_NODE, &ospf_default_information_originate_type_routemap_cmd_vtysh);
14553 install_element (OSPF_NODE, &no_ospf_default_information_originate_cmd_vtysh);
14554 install_element (VIEW_NODE, &show_ip_prefix_list_prefix_first_match_cmd_vtysh);
14555 install_element (RMAP_NODE, &match_ip_next_hop_cmd_vtysh);
14556 install_element (VIEW_NODE, &show_bgp_ipv6_community_exact_cmd_vtysh);
14557 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
14558 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_out_cmd_vtysh);
14559 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
14560 install_element (ENABLE_NODE, &undebug_bgp_keepalive_cmd_vtysh);
14561 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_cmd_vtysh);
14562 install_element (ENABLE_NODE, &debug_ospf_zebra_sub_cmd_vtysh);
14563 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_cmd_vtysh);
14564 install_element (RMAP_NODE, &no_match_ipv6_address_cmd_vtysh);
14565 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
14566 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_rmap_cmd_vtysh);
14567 install_element (ENABLE_NODE, &show_ipv6_route_prefix_longer_cmd_vtysh);
14568 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_routemap_cmd_vtysh);
14569 install_element (OSPF_NODE, &ospf_router_id_cmd_vtysh);
14570 install_element (CONFIG_NODE, &no_debug_ospf_packet_all_cmd_vtysh);
14571 install_element (BGP_NODE, &bgp_confederation_identifier_cmd_vtysh);
14572 install_element (BGP_IPV6_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
14573 install_element (BGP_VPNV4_NODE, &neighbor_nexthop_self_cmd_vtysh);
14574 install_element (ENABLE_NODE, &debug_ripng_packet_direct_cmd_vtysh);
14575 install_element (INTERFACE_NODE, &interface_ip_ospf_authentication_args_cmd_vtysh);
14576 install_element (OSPF6_NODE, &passive_interface_cmd_vtysh);
14577 install_element (BGP_NODE, &neighbor_route_server_client_cmd_vtysh);
14578 install_element (CONFIG_NODE, &no_access_list_any_cmd_vtysh);
14579 install_element (BGP_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
14580 install_element (BGP_NODE, &no_neighbor_send_community_type_cmd_vtysh);
14581 install_element (BGP_IPV6_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
14582 install_element (RIPNG_NODE, &ripng_aggregate_address_cmd_vtysh);
14583 install_element (BGP_NODE, &no_neighbor_port_val_cmd_vtysh);
14584 install_element (BGP_VPNV4_NODE, &no_vpnv4_network_cmd_vtysh);
14585 install_element (BGP_NODE, &bgp_redistribute_ipv4_rmap_cmd_vtysh);
14586 install_element (RMAP_NODE, &no_match_ip_address_cmd_vtysh);
14587 install_element (VIEW_NODE, &show_bgp_prefix_cmd_vtysh);
14588 install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_cmd_vtysh);
14589 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_cmd_vtysh);
14590 install_element (RMAP_NODE, &no_set_ecommunity_soo_val_cmd_vtysh);
14591 install_element (BGP_NODE, &no_neighbor_description_val_cmd_vtysh);
14592 install_element (BGP_NODE, &bgp_bestpath_aspath_ignore_cmd_vtysh);
14593 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
14594 install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_cmd_vtysh);
14595 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_month_day_day_month_cmd_vtysh);
14596 install_element (ENABLE_NODE, &show_bgp_community_exact_cmd_vtysh);
14597 install_element (BGP_NODE, &bgp_damp_unset2_cmd_vtysh);
14598 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
14599 install_element (OSPF_NODE, &ospf_default_information_originate_metric_type_routemap_cmd_vtysh);
14600 install_element (CONFIG_NODE, &ip_extcommunity_list_expanded_cmd_vtysh);
14601 install_element (BGP_NODE, &neighbor_send_community_type_cmd_vtysh);
14602 install_element (INTERFACE_NODE, &ospf_network_cmd_vtysh);
14603 install_element (BGP_NODE, &bgp_redistribute_ipv4_cmd_vtysh);
14604 install_element (ENABLE_NODE, &show_bgp_ipv6_community2_exact_cmd_vtysh);
14605 install_element (ENABLE_NODE, &show_ip_bgp_instance_summary_cmd_vtysh);
14606 install_element (CONFIG_NODE, &no_access_list_extended_mask_any_cmd_vtysh);
14607 install_element (VIEW_NODE, &show_bgp_neighbors_cmd_vtysh);
14608 install_element (OSPF_NODE, &no_area_stub_nosum_cmd_vtysh);
14609 install_element (RMAP_NODE, &no_set_aggregator_as_val_cmd_vtysh);
14610 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_in_cmd_vtysh);
14611 install_element (BGP_IPV4_NODE, &bgp_network_route_map_cmd_vtysh);
14612 install_element (ENABLE_NODE, &show_ipv6_mbgp_cmd_vtysh);
14613 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
14614 install_element (ENABLE_NODE, &show_bgp_ipv6_community3_cmd_vtysh);
14615 install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_intra_cmd_vtysh);
14616 install_element (OSPF_NODE, &area_range_subst_cmd_vtysh);
14617 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
14618 install_element (ENABLE_NODE, &show_ip_bgp_prefix_cmd_vtysh);
14619 install_element (ENABLE_NODE, &debug_bgp_filter_cmd_vtysh);
14620 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
14621 install_element (CONFIG_NODE, &no_route_map_cmd_vtysh);
14622 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_flap_cmd_vtysh);
14623 install_element (BGP_IPV4_NODE, &bgp_damp_set2_cmd_vtysh);
14624 install_element (BGP_IPV6_NODE, &ipv6_bgp_network_cmd_vtysh);
14625 install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_detail_cmd_vtysh);
14626 install_element (RIP_NODE, &rip_neighbor_cmd_vtysh);
14627 install_element (BGP_VPNV4_NODE, &no_neighbor_distribute_list_cmd_vtysh);
14628 install_element (CONFIG_NODE, &ip_extcommunity_list_standard_cmd_vtysh);
14629 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
14630 install_element (CONFIG_NODE, &no_ip_community_list_expanded_cmd_vtysh);
14631 install_element (CONFIG_NODE, &no_debug_rip_packet_cmd_vtysh);
14632 install_element (BGP_NODE, &bgp_network_mask_natural_backdoor_cmd_vtysh);
14633 install_element (ENABLE_NODE, &no_debug_bgp_events_cmd_vtysh);
14634 install_element (BGP_IPV6_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
14635 install_element (BGP_VPNV4_NODE, &neighbor_activate_cmd_vtysh);
14636 install_element (BGP_NODE, &neighbor_allowas_in_cmd_vtysh);
14637 install_element (INTERFACE_NODE, &ip_ospf_authentication_key_cmd_vtysh);
14638 install_element (CONFIG_NODE, &no_access_list_remark_arg_cmd_vtysh);
14639 install_element (OSPF_NODE, &ospf_default_information_originate_metric_cmd_vtysh);
14640 install_element (ENABLE_NODE, &clear_ip_bgp_external_out_cmd_vtysh);
14641 install_element (BGP_IPV4M_NODE, &no_neighbor_activate_cmd_vtysh);
14642 install_element (VIEW_NODE, &show_zebra_cmd_vtysh);
14643 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
14644 install_element (VIEW_NODE, &show_ipv6_bgp_community_list_cmd_vtysh);
14645 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_list_exact_cmd_vtysh);
14646 install_element (RIP_NODE, &no_rip_network_cmd_vtysh);
14647 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_cmd_vtysh);
14648 install_element (ENABLE_NODE, &show_bgp_prefix_list_cmd_vtysh);
14649 install_element (OSPF_NODE, &no_ospf_compatible_rfc1583_cmd_vtysh);
14650 install_element (ENABLE_NODE, &no_debug_ospf_ism_cmd_vtysh);
14651 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh);
14652 install_element (BGP_IPV4_NODE, &bgp_damp_unset_cmd_vtysh);
14653 install_element (VIEW_NODE, &show_ip_bgp_community4_exact_cmd_vtysh);
14654 install_element (BGP_IPV6_NODE, &no_neighbor_activate_cmd_vtysh);
14655 install_element (BGP_IPV4M_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
14656 install_element (ENABLE_NODE, &no_debug_bgp_normal_cmd_vtysh);
14657 install_element (BGP_NODE, &no_bgp_bestpath_med3_cmd_vtysh);
14658 install_element (INTERFACE_NODE, &no_ipv6_nd_ra_lifetime_cmd_vtysh);
14659 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_route_map_cmd_vtysh);
14660 install_element (OSPF6_NODE, &no_passive_interface_cmd_vtysh);
14661 install_element (ENABLE_NODE, &show_bgp_ipv6_community_all_cmd_vtysh);
14662 install_element (ENABLE_NODE, &no_debug_zebra_events_cmd_vtysh);
14663 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_cmd_vtysh);
14664 install_element (BGP_NODE, &neighbor_route_reflector_client_cmd_vtysh);
14665 install_element (RMAP_NODE, &set_ecommunity_soo_cmd_vtysh);
14666 install_element (ENABLE_NODE, &clear_ip_bgp_all_out_cmd_vtysh);
14667 install_element (INTERFACE_NODE, &ipv6_ospf6_transmitdelay_cmd_vtysh);
14668 install_element (CONFIG_NODE, &no_ipv6_route_cmd_vtysh);
14669 install_element (RIP_NODE, &rip_redistribute_type_cmd_vtysh);
14670 install_element (CONFIG_NODE, &debug_rip_packet_cmd_vtysh);
14671 install_element (VIEW_NODE, &show_bgp_instance_ipv6_summary_cmd_vtysh);
14672 install_element (VIEW_NODE, &show_ip_extcommunity_list_arg_cmd_vtysh);
14673 install_element (INTERFACE_NODE, &ip_irdp_address_preference_cmd_vtysh);
14674 install_element (ENABLE_NODE, &show_bgp_ipv6_community_list_exact_cmd_vtysh);
14675 install_element (INTERFACE_NODE, &no_ipv6_ospf6_advertise_force_prefix_cmd_vtysh);
14676 install_element (BGP_IPV6_NODE, &no_neighbor_allowas_in_cmd_vtysh);
14677 install_element (BGP_NODE, &no_bgp_router_id_cmd_vtysh);
14678 install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd_vtysh);
14679 install_element (OSPF_NODE, &no_area_authentication_cmd_vtysh);
14680 install_element (CONFIG_NODE, &ip_community_list_name_expanded_cmd_vtysh);
14681 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_in_cmd_vtysh);
14682 install_element (BGP_NODE, &neighbor_strict_capability_cmd_vtysh);
14683 install_element (BGP_NODE, &no_neighbor_ebgp_multihop_ttl_cmd_vtysh);
14684 install_element (BGP_IPV4M_NODE, &neighbor_set_peer_group_cmd_vtysh);
14685 install_element (VIEW_NODE, &show_ip_bgp_community_info_cmd_vtysh);
14686 install_element (CONFIG_NODE, &no_router_ospf_cmd_vtysh);
14687 install_element (VIEW_NODE, &show_bgp_ipv6_community_all_cmd_vtysh);
14688 install_element (ENABLE_NODE, &no_debug_ripng_events_cmd_vtysh);
14689 install_element (OSPF_NODE, &no_timers_spf_cmd_vtysh);
14690 install_element (BGP_IPV4_NODE, &no_aggregate_address_cmd_vtysh);
14691 install_element (VIEW_NODE, &show_ipv6_bgp_regexp_cmd_vtysh);
14692 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_le_ge_cmd_vtysh);
14693 install_element (INTERFACE_NODE, &rip_split_horizon_cmd_vtysh);
14694 install_element (ENABLE_NODE, &show_bgp_community3_exact_cmd_vtysh);
14695 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_val_cmd_vtysh);
14696 install_element (RMAP_NODE, &no_match_interface_val_cmd_vtysh);
14697 install_element (BGP_VPNV4_NODE, &neighbor_distribute_list_cmd_vtysh);
14698 install_element (ENABLE_NODE, &show_ipv6_bgp_route_cmd_vtysh);
14699 install_element (BGP_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
14700 install_element (CONFIG_NODE, &debug_ospf_zebra_sub_cmd_vtysh);
14701 install_element (BGP_NODE, &bgp_redistribute_ipv4_metric_rmap_cmd_vtysh);
14702 install_element (BGP_NODE, &bgp_timers_cmd_vtysh);
14703 install_element (BGP_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh);
14704 install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_out_cmd_vtysh);
14705 install_element (BGP_IPV4_NODE, &neighbor_remove_private_as_cmd_vtysh);
14706 install_element (OSPF_NODE, &area_stub_nosum_cmd_vtysh);
14707 install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_standard_cmd_vtysh);
14708 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_duration_day_month_cmd_vtysh);
14709 install_element (INTERFACE_NODE, &ipv6_ospf6_deadinterval_cmd_vtysh);
14710 }