blob: 60a6b57159a8782b678bac47dffa42ca6d28d883 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001#include <zebra.h>
2#include "command.h"
3#include "vtysh.h"
4
paul569c0f02003-03-02 21:19:26 +00005DEFSH (VTYSH_OSPFD, neighbor_cmd_vtysh,
6 "neighbor A.B.C.D",
paul718e3742002-12-13 20:15:29 +00007 "Specify neighbor router\n"
paul569c0f02003-03-02 21:19:26 +00008 "Neighbor IP address\n")
paul718e3742002-12-13 20:15:29 +00009
paul569c0f02003-03-02 21:19:26 +000010DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_flapping_cmd_vtysh,
11 "show ipv6 ospf6 route flapping",
12 "Show running system information\n"
13 "IPv6 Information\n"
14 "Open Shortest Path First (OSPF) for IPv6\n")
15
16DEFSH (VTYSH_OSPFD, refresh_timer_cmd_vtysh,
17 "refresh timer <10-1800>",
18 "Adjust refresh parameters\n"
19 "Set refresh timer\n"
20 "Timer value in seconds\n")
21
22DEFSH (VTYSH_BGPD, show_ipv6_mbgp_cmd_vtysh,
23 "show ipv6 mbgp",
24 "Show running system information\n"
25 "IP information\n"
26 "MBGP information\n")
27
28DEFSH (VTYSH_BGPD, show_ip_community_list_arg_cmd_vtysh,
29 "show ip community-list (<1-199>|WORD)",
30 "Show running system information\n"
31 "IP information\n"
32 "List community-list\n"
33 "Community-list number\n"
34 "Community-list name\n")
35
36DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_interface_cmd_vtysh,
37 "show ipv6 ospf6 interface",
38 "Show running system information\n"
39 "IPv6 Information\n"
40 "Open Shortest Path First (OSPF) for IPv6\n"
41 "Interface infomation\n"
42 )
43
44DEFSH (VTYSH_BGPD, no_neighbor_distribute_list_cmd_vtysh,
45 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "distribute-list (<1-199>|<1300-2699>|WORD) (in|out)",
46 "Negate a command or set its defaults\n"
47 "Specify neighbor router\n"
48 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
49 "Filter updates to/from this neighbor\n"
50 "IP access-list number\n"
51 "IP access-list number (expanded range)\n"
52 "IP Access-list name\n"
53 "Filter incoming updates\n"
54 "Filter outgoing updates\n")
55
56DEFSH (VTYSH_RIPD, no_rip_offset_list_ifname_cmd_vtysh,
57 "no offset-list WORD (in|out) <0-16> IFNAME",
58 "Negate a command or set its defaults\n"
59 "Modify RIP metric\n"
60 "Access-list name\n"
61 "For incoming updates\n"
62 "For outgoing updates\n"
63 "Metric value\n"
64 "Interface to match\n")
65
66DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_in_cmd_vtysh,
67 "clear ip bgp * ipv4 (unicast|multicast) soft in",
68 "Reset functions\n"
69 "IP information\n"
70 "BGP information\n"
71 "Clear all peers\n"
72 "Address family\n"
73 "Address Family modifier\n"
74 "Address Family modifier\n"
75 "Soft reconfig\n"
76 "Soft reconfig inbound update\n")
77
78DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_cmd_vtysh,
79 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix",
80 "Negate a command or set its defaults\n"
81 "Specify neighbor router\n"
82 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
83 "Maximum number of prefix accept from this peer\n")
84
85DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_longer_cmd_vtysh,
86 "show ipv6 mbgp X:X::X:X/M longer-prefixes",
87 "Show running system information\n"
88 "IPv6 information\n"
89 "MBGP information\n"
90 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
91 "Display route and more specific routes\n")
92
93DEFSH (VTYSH_BGPD, show_ipv6_mbgp_regexp_cmd_vtysh,
94 "show ipv6 mbgp regexp .LINE",
95 "Show running system information\n"
96 "IP information\n"
97 "BGP information\n"
98 "Display routes matching the AS path regular expression\n"
99 "A regular-expression to match the MBGP AS paths\n")
100
101DEFSH (VTYSH_RIPD, accept_lifetime_day_month_day_month_cmd_vtysh,
102 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
103 "Set accept lifetime of the key\n"
104 "Time to start\n"
105 "Day of th month to start\n"
106 "Month of the year to start\n"
107 "Year to start\n"
108 "Time to expire\n"
109 "Day of th month to expire\n"
110 "Month of the year to expire\n"
111 "Year to expire\n")
112
113DEFSH (VTYSH_BGPD, no_set_community_val_cmd_vtysh,
114 "no set community .AA:NN",
paul718e3742002-12-13 20:15:29 +0000115 "Negate a command or set its defaults\n"
116 "Set values in destination routing protocol\n"
paul569c0f02003-03-02 21:19:26 +0000117 "BGP community attribute\n"
118 "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n")
paul718e3742002-12-13 20:15:29 +0000119
paul569c0f02003-03-02 21:19:26 +0000120DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_list_exact_cmd_vtysh,
121 "show ipv6 bgp community-list WORD exact-match",
122 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +0000123 "IPv6 information\n"
paul569c0f02003-03-02 21:19:26 +0000124 "BGP information\n"
125 "Display routes matching the community-list\n"
126 "community-list name\n"
127 "Exact match of the communities\n")
paul718e3742002-12-13 20:15:29 +0000128
paul569c0f02003-03-02 21:19:26 +0000129DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged9_cmd_vtysh,
130 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med next-hop as-path",
131 "Negate a command or set its defaults\n"
132 "Specify neighbor router\n"
133 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
134 "BGP attribute is propagated unchanged to this neighbor\n"
135 "Med attribute\n"
136 "Nexthop attribute\n"
137 "As-path attribute\n")
138
139DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_metric_cmd_vtysh,
140 "redistribute static metric <0-16>",
141 "Redistribute information from another routing protocol\n"
142 "Static routes\n"
143 "Metric\n"
144 "Metric value\n")
145
146DEFSH (VTYSH_OSPFD, no_debug_ospf_zebra_sub_cmd_vtysh,
147 "no debug ospf zebra (interface|redistribute)",
148 "Negate a command or set its defaults\n"
149 "Debugging functions (see also 'undebug')\n"
150 "OSPF information\n"
151 "OSPF Zebra information\n"
152 "Zebra interface\n"
153 "Zebra redistribute\n")
154
155DEFSH (VTYSH_RIPD, no_ip_rip_authentication_string_cmd_vtysh,
156 "no ip rip authentication string",
157 "Negate a command or set its defaults\n"
158 "IP information\n"
159 "Routing Information Protocol\n"
160 "Authentication control\n"
161 "Authentication string\n")
162
163DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_cmd_vtysh,
164 "clear ip bgp view WORD * soft",
165 "Reset functions\n"
166 "IP information\n"
167 "BGP information\n"
168 "BGP view\n"
169 "view name\n"
170 "Clear all peers\n"
171 "Soft reconfig\n")
172
173DEFSH (VTYSH_OSPFD, no_area_vlink_param1_cmd_vtysh,
174 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
175 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
176 "Negate a command or set its defaults\n"
177 "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"
178 "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")
179
180DEFSH (VTYSH_OSPFD, no_capability_opaque_cmd_vtysh,
181 "no capability opaque",
182 "Negate a command or set its defaults\n"
183 "Enable specific OSPF feature\n"
184 "Opaque LSA\n")
185
186DEFSH (VTYSH_BGPD, show_bgp_community3_exact_cmd_vtysh,
187 "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",
188 "Show running system information\n"
189 "BGP information\n"
190 "Display routes matching the communities\n"
191 "community number\n"
192 "Do not send outside local AS (well-known community)\n"
193 "Do not advertise to any peer (well-known community)\n"
194 "Do not export to next AS (well-known community)\n"
195 "community number\n"
196 "Do not send outside local AS (well-known community)\n"
197 "Do not advertise to any peer (well-known community)\n"
198 "Do not export to next AS (well-known community)\n"
199 "community number\n"
200 "Do not send outside local AS (well-known community)\n"
201 "Do not advertise to any peer (well-known community)\n"
202 "Do not export to next AS (well-known community)\n"
203 "Exact match of the communities")
204
205DEFSH (VTYSH_RIPD, send_lifetime_day_month_month_day_cmd_vtysh,
206 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
207 "Set send lifetime of the key\n"
208 "Time to start\n"
209 "Day of th month to start\n"
210 "Month of the year to start\n"
211 "Year to start\n"
212 "Time to expire\n"
213 "Month of the year to expire\n"
214 "Day of th month to expire\n"
215 "Year to expire\n")
216
217DEFSH (VTYSH_BGPD, no_ipv6_bgp_network_route_map_cmd_vtysh,
218 "no network X:X::X:X/M route-map WORD",
219 "Negate a command or set its defaults\n"
220 "Specify a network to announce via BGP\n"
221 "IPv6 prefix <network>/<length>\n"
222 "Route-map to modify the attributes\n"
223 "Name of the route map\n")
224
225DEFSH (VTYSH_ZEBRA, no_ip_route_distance_cmd_vtysh,
226 "no ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0) <1-255>",
227 "Negate a command or set its defaults\n"
228 "IP information\n"
229 "Establish static routes\n"
230 "IP destination prefix (e.g. 10.0.0.0/8)\n"
231 "IP gateway address\n"
232 "IP gateway interface name\n"
233 "Null interface\n"
234 "Distance value for this route\n")
235
236DEFSH (VTYSH_BGPD, no_match_origin_val_cmd_vtysh,
237 "no match origin (egp|igp|incomplete)",
238 "Negate a command or set its defaults\n"
239 "Match values from routing table\n"
240 "BGP origin code\n"
241 "remote EGP\n"
242 "local IGP\n"
243 "unknown heritage\n")
244
245DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh,
246 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) advertised-routes",
247 "Show running system information\n"
248 "BGP information\n"
249 "Address family\n"
250 "Detailed information on TCP and BGP neighbor connections\n"
251 "Neighbor to display information about\n"
252 "Neighbor to display information about\n"
253 "Display the routes advertised to a BGP neighbor\n")
254
255DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPF6D, no_router_zebra_cmd_vtysh,
256 "no router zebra",
257 "Negate a command or set its defaults\n"
258 "Configure routing process\n"
259 "Disable connection to zebra daemon\n")
260
261DEFSH (VTYSH_BGPD, no_router_bgp_cmd_vtysh,
262 "no router bgp <1-65535>",
263 "Negate a command or set its defaults\n"
264 "Enable a routing process\n"
265 "BGP information\n"
266 "AS number\n")
267
268DEFSH (VTYSH_ZEBRA, show_ip_route_cmd_vtysh,
269 "show ip route",
270 "Show running system information\n"
271 "IP information\n"
272 "IP routing table\n")
273
274DEFSH (VTYSH_OSPFD, no_area_range_cost_cmd_vtysh,
275 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>",
276 "Negate a command or set its defaults\n"
277 "OSPF area parameters\n"
278 "OSPF area ID in IP address format\n"
279 "OSPF area ID as a decimal value\n"
280 "Summarize routes matching address/mask (border routers only)\n"
281 "Area range prefix\n"
282 "User specified metric for this range\n"
283 "Advertised metric for this range\n")
284
285DEFSH (VTYSH_BGPD, clear_bgp_all_cmd_vtysh,
286 "clear bgp *",
287 "Reset functions\n"
288 "BGP information\n"
289 "Clear all peers\n")
290
291DEFSH (VTYSH_BGPD, no_neighbor_default_originate_rmap_cmd_vtysh,
292 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate route-map WORD",
293 "Negate a command or set its defaults\n"
294 "Specify neighbor router\n"
295 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
296 "Originate default route to this neighbor\n"
297 "Route-map to specify criteria to originate default\n"
298 "route-map name\n")
299
300DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_summary_cmd_vtysh,
301 "show ip bgp ipv4 (unicast|multicast) summary",
302 "Show running system information\n"
303 "IP information\n"
304 "BGP information\n"
305 "Address family\n"
306 "Address Family modifier\n"
307 "Address Family modifier\n"
308 "Summary of BGP neighbor status\n")
309
310DEFSH (VTYSH_OSPFD, ospf_transmit_delay_cmd_vtysh,
311 "ospf transmit-delay <1-65535>",
312 "OSPF interface commands\n"
313 "Link state transmit delay\n"
314 "Seconds\n")
315
316DEFSH (VTYSH_RIPNGD, no_ripng_default_metric_cmd_vtysh,
317 "no default-metric",
318 "Negate a command or set its defaults\n"
319 "Set a metric of redistribute routes\n"
320 "Default metric\n")
321
322DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_summary_cmd_vtysh,
323 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn summary",
324 "Show running system information\n"
325 "IP information\n"
326 "BGP information\n"
327 "Display VPNv4 NLRI specific information\n"
328 "Display information for a route distinguisher\n"
329 "VPN Route Distinguisher\n"
330 "Summary of BGP neighbor status\n")
331
332DEFSH (VTYSH_OSPFD, no_mpls_te_cmd_vtysh,
333 "no mpls-te",
334 "Negate a command or set its defaults\n"
335 "Configure MPLS-TE parameters\n"
336 "Disable the MPLS-TE functionality\n")
337
338DEFSH (VTYSH_BGPD, show_bgp_neighbor_advertised_route_cmd_vtysh,
339 "show bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
340 "Show running system information\n"
341 "BGP information\n"
342 "Detailed information on TCP and BGP neighbor connections\n"
343 "Neighbor to display information about\n"
344 "Neighbor to display information about\n"
345 "Display the routes advertised to a BGP neighbor\n")
346
347DEFSH (VTYSH_BGPD, no_neighbor_timers_connect_val_cmd_vtysh,
348 "no neighbor (A.B.C.D|X:X::X:X) " "timers connect <0-65535>",
349 "Negate a command or set its defaults\n"
350 "Specify neighbor router\n"
351 "Neighbor address\nIPv6 address\n"
352 "BGP per neighbor timers\n"
353 "BGP connect timer\n"
354 "Connect timer\n")
355
356DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_mask_cmd_vtysh,
357 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any A.B.C.D A.B.C.D",
358 "Negate a command or set its defaults\n"
359 "Add an access list entry\n"
360 "IP extended access list\n"
361 "IP extended access list (expanded range)\n"
362 "Specify packets to reject\n"
363 "Specify packets to forward\n"
364 "Any Internet Protocol\n"
365 "Any source host\n"
366 "Destination address\n"
367 "Destination Wildcard bits\n")
368
369DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_inter_cmd_vtysh,
370 "distance ospf intra-area <1-255> inter-area <1-255>",
371 "Define an administrative distance\n"
372 "OSPF Administrative distance\n"
373 "Intra-area routes\n"
374 "Distance for intra-area routes\n"
375 "Inter-area routes\n"
376 "Distance for inter-area routes\n")
377
378DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_routemap_cmd_vtysh,
379 "redistribute connected route-map WORD",
380 "Redistribute information from another routing protocol\n"
381 "Connected\n"
382 "Route map reference\n"
383 "Pointer to route-map entries\n")
384
385DEFSH (VTYSH_OSPF6D|VTYSH_BGPD, match_ipv6_address_prefix_list_cmd_vtysh,
386 "match ipv6 address prefix-list WORD",
387 "Match values from routing table\n"
388 "IPv6 information\n"
389 "Match address of route\n"
390 "Match entries of prefix-lists\n"
391 "IP prefix-list name\n")
392
393DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_routemap_cmd_vtysh,
394 "no redistribute ospf6 route-map WORD",
395 "Negate a command or set its defaults\n"
396 "Redistribute information from another routing protocol\n"
397 "IPv6 Open Shortest Path First (OSPFv3)\n"
398 "Route map reference\n"
399 "Pointer to route-map entries\n")
400
401DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, rmap_onmatch_goto_cmd_vtysh,
402 "on-match goto <1-65535>",
403 "Exit policy on matches\n"
404 "Goto Clause number\n"
405 "Number\n")
406
407DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_in_cmd_vtysh,
408 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft in",
409 "Reset functions\n"
410 "BGP information\n"
411 "Address family\n"
412 "BGP neighbor address to clear\n"
413 "BGP IPv6 neighbor to clear\n"
414 "Soft reconfig\n"
415 "Soft reconfig inbound update\n")
416
417DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_in_cmd_vtysh,
418 "clear bgp ipv6 (A.B.C.D|X:X::X:X) in",
419 "Reset functions\n"
420 "BGP information\n"
421 "Address family\n"
422 "BGP neighbor address to clear\n"
423 "BGP IPv6 neighbor to clear\n"
424 "Soft reconfig inbound update\n")
425
426DEFSH (VTYSH_BGPD, show_ip_bgp_summary_cmd_vtysh,
427 "show ip bgp summary",
428 "Show running system information\n"
429 "IP information\n"
430 "BGP information\n"
431 "Summary of BGP neighbor status\n")
432
433DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_authkey_cmd_vtysh,
434 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
435 "(authentication|) "
436 "(authentication-key|)",
437 "Negate a command or set its defaults\n"
438 "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"
439 "Enable authentication on this virtual link\n" "dummy string \n"
440 "Authentication password (key)\n" "The OSPF password (key)")
441
442DEFSH (VTYSH_BGPD, no_neighbor_capability_route_refresh_cmd_vtysh,
443 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability route-refresh",
444 "Negate a command or set its defaults\n"
445 "Specify neighbor router\n"
446 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
447 "Advertise capability to the peer\n"
448 "Advertise route-refresh capability to this neighbor\n")
449
450DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_in_cmd_vtysh,
451 "clear bgp ipv6 peer-group WORD soft in",
452 "Reset functions\n"
453 "BGP information\n"
454 "Address family\n"
455 "Clear all members of peer-group\n"
456 "BGP peer-group name\n"
457 "Soft reconfig\n"
458 "Soft reconfig inbound update\n")
459
460DEFSH (VTYSH_BGPD, show_ip_bgp_view_prefix_cmd_vtysh,
461 "show ip bgp view WORD A.B.C.D/M",
462 "Show running system information\n"
463 "IP information\n"
464 "BGP information\n"
465 "BGP view\n"
466 "BGP view name\n"
467 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
468
469DEFSH (VTYSH_BGPD, bgp_deterministic_med_cmd_vtysh,
470 "bgp deterministic-med",
471 "BGP specific commands\n"
472 "Pick the best-MED path among paths advertised from the neighboring AS\n")
473
474DEFSH (VTYSH_BGPD, clear_bgp_peer_group_out_cmd_vtysh,
475 "clear bgp peer-group WORD out",
476 "Reset functions\n"
477 "BGP information\n"
478 "Clear all members of peer-group\n"
479 "BGP peer-group name\n"
480 "Soft reconfig outbound update\n")
481
482DEFSH (VTYSH_OSPFD, ospf_default_metric_cmd_vtysh,
483 "default-metric <0-16777214>",
484 "Set metric of redistributed routes\n"
485 "Default metric\n")
486
487DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_external_inter_cmd_vtysh,
488 "distance ospf intra-area <1-255> external <1-255> inter-area <1-255>",
489 "Define an administrative distance\n"
490 "OSPF Administrative distance\n"
491 "Intra-area routes\n"
492 "Distance for intra-area routes\n"
493 "External routes\n"
494 "Distance for external routes\n"
495 "Inter-area routes\n"
496 "Distance for inter-area routes\n")
497
498DEFSH (VTYSH_BGPD, aggregate_address_summary_only_cmd_vtysh,
499 "aggregate-address A.B.C.D/M summary-only",
500 "Configure BGP aggregate entries\n"
501 "Aggregate prefix\n"
502 "Filter more specific routes from updates\n")
503
504DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_out_cmd_vtysh,
505 "clear ip bgp * vpnv4 unicast soft out",
506 "Reset functions\n"
507 "IP information\n"
508 "BGP information\n"
509 "Clear all peers\n"
510 "Address family\n"
511 "Address Family Modifier\n"
512 "Soft reconfig\n"
513 "Soft reconfig outbound update\n")
514
515DEFSH (VTYSH_BGPD, no_set_origin_val_cmd_vtysh,
516 "no set origin (egp|igp|incomplete)",
517 "Negate a command or set its defaults\n"
518 "Set values in destination routing protocol\n"
519 "BGP origin code\n"
520 "remote EGP\n"
521 "local IGP\n"
522 "unknown heritage\n")
523
524DEFSH (VTYSH_BGPD, bgp_damp_set3_cmd_vtysh,
525 "bgp dampening",
526 "BGP Specific commands\n"
527 "Enable route-flap dampening\n")
528
529DEFSH (VTYSH_RIPD, no_rip_offset_list_cmd_vtysh,
530 "no offset-list WORD (in|out) <0-16>",
531 "Negate a command or set its defaults\n"
532 "Modify RIP metric\n"
533 "Access-list name\n"
534 "For incoming updates\n"
535 "For outgoing updates\n"
536 "Metric value\n")
537
538DEFSH (VTYSH_BGPD, ipv6_bgp_network_route_map_cmd_vtysh,
539 "network X:X::X:X/M route-map WORD",
540 "Specify a network to announce via BGP\n"
541 "IPv6 prefix <network>/<length>\n"
542 "Route-map to modify the attributes\n"
543 "Name of the route map\n")
544
545DEFSH (VTYSH_OSPF6D, show_debug_ospf6_damp_cmd_vtysh,
546 "show debugging ospf6 damp",
547 "Show running system information\n"
548 "Debugging functions (see also 'undebug')\n"
549 "Open Shortest Path First (OSPF) for IPv6\n"
550 "Flap-dampening information\n"
551 )
552
553DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_routemap_cmd_vtysh,
554 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) route-map WORD",
555 "Redistribute information from another routing protocol\n"
556 "Kernel routes\n"
557 "Connected\n"
558 "Static routes\n"
559 "Routing Information Protocol (RIP)\n"
560 "Border Gateway Protocol (BGP)\n"
561 "OSPF exterior metric type for redistributed routes\n"
562 "Set OSPF External Type 1 metrics\n"
563 "Set OSPF External Type 2 metrics\n"
564 "Route map reference\n"
565 "Pointer to route-map entries\n")
566
567DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_all_cmd_vtysh,
568 "no ip extcommunity-list (standard|expanded) WORD",
569 "Negate a command or set its defaults\n"
570 "IP information\n"
571 "Add a extended community list entry\n"
572 "Specify standard extcommunity-list\n"
573 "Specify expanded extcommunity-list\n"
574 "Extended Community list name\n")
575
576DEFSH (VTYSH_RIPNGD, debug_ripng_zebra_cmd_vtysh,
577 "debug ripng zebra",
578 "Debugging functions (see also 'undebug')\n"
579 "RIPng configuration\n"
580 "Debug option set for ripng and zebra communication\n")
581
582DEFSH (VTYSH_BGPD, set_vpnv4_nexthop_cmd_vtysh,
583 "set vpnv4 next-hop A.B.C.D",
584 "Set values in destination routing protocol\n"
585 "VPNv4 information\n"
586 "VPNv4 next-hop address\n"
587 "IP address of next hop\n")
588
589DEFSH (VTYSH_BGPD, no_neighbor_remote_as_cmd_vtysh,
590 "no neighbor (A.B.C.D|X:X::X:X) " "remote-as <1-65535>",
591 "Negate a command or set its defaults\n"
592 "Specify neighbor router\n"
593 "Neighbor address\nIPv6 address\n"
594 "Specify a BGP neighbor\n"
595 "AS number\n")
596
597DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_prefix_cmd_vtysh,
598 "no ipv6 prefix-list WORD (deny|permit) (X:X::X:X/M|any)",
599 "Negate a command or set its defaults\n"
600 "IPv6 information\n"
601 "Build a prefix list\n"
602 "Name of a prefix list\n"
603 "Specify packets to reject\n"
604 "Specify packets to forward\n"
605 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
606 "Any prefix match. Same as \"::0/0 le 128\"\n")
607
608DEFSH (VTYSH_OSPFD, debug_ospf_zebra_cmd_vtysh,
609 "debug ospf zebra",
610 "Debugging functions (see also 'undebug')\n"
611 "OSPF information\n"
612 "OSPF Zebra information\n")
613
614DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_first_match_cmd_vtysh,
615 "show ip prefix-list WORD A.B.C.D/M first-match",
616 "Show running system information\n"
617 "IP information\n"
618 "Build a prefix list\n"
619 "Name of a prefix list\n"
620 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
621 "First matched prefix\n")
622
623DEFSH (VTYSH_BGPD, show_bgp_neighbors_peer_cmd_vtysh,
624 "show bgp neighbors (A.B.C.D|X:X::X:X)",
625 "Show running system information\n"
626 "BGP information\n"
627 "Detailed information on TCP and BGP neighbor connections\n"
628 "Neighbor to display information about\n"
629 "Neighbor to display information about\n")
630
631DEFSH (VTYSH_OSPF6D, ospf6_routemap_no_set_forwarding_cmd_vtysh,
632 "no set forwarding-address X:X::X:X",
633 "Negate a command or set its defaults\n"
634 "Set value\n"
635 "Forwarding Address\n"
636 "IPv6 Address\n")
637
638DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh,
639 "show ip bgp vpnv4 all neighbors",
640 "Show running system information\n"
641 "IP information\n"
642 "BGP information\n"
643 "Display VPNv4 NLRI specific information\n"
644 "Display information about all VPNv4 NLRIs\n"
645 "Detailed information on TCP and BGP neighbor connections\n")
646
647DEFSH (VTYSH_BGPD, neighbor_send_community_cmd_vtysh,
648 "neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community",
649 "Specify neighbor router\n"
650 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
651 "Send Community attribute to this neighbor\n")
652
653DEFSH (VTYSH_BGPD, dump_bgp_updates_cmd_vtysh,
654 "dump bgp updates PATH",
655 "Dump packet\n"
656 "BGP packet dump\n"
657 "Dump BGP updates only\n"
658 "Output filename\n")
659
660DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_in_prefix_filter_cmd_vtysh,
661 "clear ip bgp A.B.C.D in prefix-filter",
paul718e3742002-12-13 20:15:29 +0000662 "Reset functions\n"
663 "IP information\n"
664 "BGP information\n"
665 "BGP neighbor address to clear\n"
paul569c0f02003-03-02 21:19:26 +0000666 "Soft reconfig inbound update\n"
667 "Push out the existing ORF prefix-list\n")
668
669DEFSH (VTYSH_BGPD, show_ip_bgp_community_list_exact_cmd_vtysh,
670 "show ip bgp community-list WORD exact-match",
671 "Show running system information\n"
672 "IP information\n"
673 "BGP information\n"
674 "Display routes matching the community-list\n"
675 "community-list name\n"
676 "Exact match of the communities\n")
677
678DEFSH (VTYSH_RIPD, accept_lifetime_infinite_day_month_cmd_vtysh,
679 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> infinite",
680 "Set accept lifetime of the key\n"
681 "Time to start\n"
682 "Day of th month to start\n"
683 "Month of the year to start\n"
684 "Year to start\n"
685 "Never expires")
686
687DEFSH (VTYSH_OSPFD, mpls_te_cmd_vtysh,
688 "mpls-te",
689 "Configure MPLS-TE parameters\n"
690 "Enable the MPLS-TE functionality\n")
691
692DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_out_cmd_vtysh,
693 "clear bgp ipv6 * soft out",
694 "Reset functions\n"
695 "BGP information\n"
696 "Address family\n"
697 "Clear all peers\n"
698 "Soft reconfig\n"
699 "Soft reconfig outbound update\n")
700
701DEFSH (VTYSH_OSPFD, no_ip_ospf_message_digest_key_cmd_vtysh,
702 "no ip ospf message-digest-key <1-255>",
703 "Negate a command or set its defaults\n"
704 "IP Information\n"
705 "OSPF interface commands\n"
706 "Message digest authentication password (key)\n"
707 "Key ID\n")
708
709DEFSH (VTYSH_ZEBRA, debug_zebra_packet_cmd_vtysh,
710 "debug zebra packet",
711 "Debugging functions (see also 'undebug')\n"
712 "Zebra configuration\n"
713 "Debug option set for zebra packet\n")
714
715DEFSH (VTYSH_BGPD, no_bgp_bestpath_med2_cmd_vtysh,
716 "no bgp bestpath med confed missing-as-worst",
717 "Negate a command or set its defaults\n"
718 "BGP specific commands\n"
719 "Change the default bestpath selection\n"
720 "MED attribute\n"
721 "Compare MED among confederation paths\n"
722 "Treat missing MED as the least preferred one\n")
723
724DEFSH (VTYSH_BGPD, no_bgp_multiple_instance_cmd_vtysh,
725 "no bgp multiple-instance",
726 "Negate a command or set its defaults\n"
727 "BGP information\n"
728 "BGP multiple instance\n")
729
730DEFSH (VTYSH_RIPD, no_rip_distance_cmd_vtysh,
731 "no distance <1-255>",
732 "Negate a command or set its defaults\n"
733 "Administrative distance\n"
734 "Distance value\n")
735
736DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_cmd_vtysh,
737 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft",
738 "Reset functions\n"
739 "IP information\n"
740 "BGP information\n"
741 "Clear peers with the AS number\n"
paul718e3742002-12-13 20:15:29 +0000742 "Address family\n"
743 "Address Family Modifier\n"
paul569c0f02003-03-02 21:19:26 +0000744 "Address Family Modifier\n"
745 "Soft reconfig\n")
746
747DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_val_cmd_vtysh,
748 "no redistribute kernel metric <0-16>",
749 "Negate a command or set its defaults\n"
750 "Redistribute information from another routing protocol\n"
751 "Kernel routes\n"
752 "Metric\n"
753 "Metric value\n")
754
755DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_route_map_all_cmd_vtysh,
756 "no route-map WORD",
757 "Negate a command or set its defaults\n"
758 "Create route-map or enter route-map command mode\n"
759 "Route map tag\n")
760
761DEFSH (VTYSH_BGPD, bgp_distance_source_access_list_cmd_vtysh,
762 "distance <1-255> A.B.C.D/M WORD",
763 "Define an administrative distance\n"
764 "Administrative distance\n"
765 "IP source prefix\n"
766 "Access list name\n")
767
768DEFSH (VTYSH_BGPD, show_ip_bgp_community3_cmd_vtysh,
769 "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)",
770 "Show running system information\n"
771 "IP information\n"
772 "BGP information\n"
773 "Display routes matching the communities\n"
774 "community number\n"
775 "Do not send outside local AS (well-known community)\n"
776 "Do not advertise to any peer (well-known community)\n"
777 "Do not export to next AS (well-known community)\n"
778 "community number\n"
779 "Do not send outside local AS (well-known community)\n"
780 "Do not advertise to any peer (well-known community)\n"
781 "Do not export to next AS (well-known community)\n"
782 "community number\n"
783 "Do not send outside local AS (well-known community)\n"
784 "Do not advertise to any peer (well-known community)\n"
785 "Do not export to next AS (well-known community)\n")
786
787DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_sequence_number_cmd_vtysh,
788 "no ip prefix-list sequence-number",
789 "Negate a command or set its defaults\n"
790 "IP information\n"
791 "Build a prefix list\n"
792 "Include/exclude sequence numbers in NVGEN\n")
793
794DEFSH (VTYSH_BGPD, clear_bgp_peer_group_cmd_vtysh,
795 "clear bgp peer-group WORD",
796 "Reset functions\n"
797 "BGP information\n"
798 "Clear all members of peer-group\n"
799 "BGP peer-group name\n")
800
801DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_type_routemap_cmd_vtysh,
802 "default-information originate metric <0-16777214> metric-type (1|2) route-map WORD",
803 "Control distribution of default information\n"
804 "Distribute a default route\n"
805 "OSPF default metric\n"
806 "OSPF metric\n"
807 "OSPF metric type for default routes\n"
808 "Set OSPF External Type 1 metrics\n"
809 "Set OSPF External Type 2 metrics\n"
810 "Route map reference\n"
811 "Pointer to route-map entries\n")
812
813DEFSH (VTYSH_OSPFD, show_ip_ospf_database_cmd_vtysh,
814 "show ip ospf database",
815 "Show running system information\n"
816 "IP information\n"
817 "OSPF information\n"
818 "Database summary\n")
819
820DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh,
821 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
822 "Show running system information\n"
823 "IP information\n"
824 "BGP information\n"
825 "Address family\n"
826 "Address Family modifier\n"
827 "Address Family modifier\n"
828 "Detailed information on TCP and BGP neighbor connections\n"
829 "Neighbor to display information about\n"
830 "Neighbor to display information about\n"
831 "Display information received from a BGP neighbor\n"
832 "Display the prefixlist filter\n")
833
834DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_le_cmd_vtysh,
835 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128>",
836 "IPv6 information\n"
837 "Build a prefix list\n"
838 "Name of a prefix list\n"
839 "sequence number of an entry\n"
840 "Sequence number\n"
841 "Specify packets to reject\n"
842 "Specify packets to forward\n"
843 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
844 "Maximum prefix length to be matched\n"
845 "Maximum prefix length\n")
846
847DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_routemap_cmd_vtysh,
848 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> route-map WORD",
849 "Redistribute information from another routing protocol\n"
850 "Kernel routes\n"
851 "Connected\n"
852 "Static routes\n"
853 "Routing Information Protocol (RIP)\n"
854 "Border Gateway Protocol (BGP)\n"
855 "Metric for redistributed routes\n"
856 "OSPF default metric\n"
857 "Route map reference\n"
858 "Pointer to route-map entries\n")
859
860DEFSH (VTYSH_BGPD, neighbor_maximum_prefix_cmd_vtysh,
861 "neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295>",
862 "Specify neighbor router\n"
863 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
864 "Maximum number of prefix accept from this peer\n"
865 "maximum no. of prefix limit\n")
866
867DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_in_cmd_vtysh,
868 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft in",
869 "Reset functions\n"
870 "IP information\n"
871 "BGP information\n"
872 "BGP view\n"
873 "view name\n"
874 "Clear all peers\n"
875 "Address family\n"
876 "Address Family modifier\n"
877 "Address Family modifier\n"
paul718e3742002-12-13 20:15:29 +0000878 "Soft reconfig\n"
paul569c0f02003-03-02 21:19:26 +0000879 "Soft reconfig inbound update\n")
880
881DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_all_cmd_vtysh,
882 "show ip bgp ipv4 (unicast|multicast) community",
883 "Show running system information\n"
884 "IP information\n"
885 "BGP information\n"
886 "Address family\n"
887 "Address Family modifier\n"
888 "Address Family modifier\n"
889 "Display routes matching the communities\n")
890
891DEFSH (VTYSH_OSPFD, area_vlink_param2_cmd_vtysh,
892 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
893 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
894 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
895 "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"
896 "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"
897 "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")
898
899DEFSH (VTYSH_BGPD, clear_bgp_as_soft_cmd_vtysh,
900 "clear bgp <1-65535> soft",
901 "Reset functions\n"
902 "BGP information\n"
903 "Clear peers with the AS number\n"
904 "Soft reconfig\n")
905
906DEFSH (VTYSH_OSPFD, ip_ospf_cost_cmd_vtysh,
907 "ip ospf cost <1-65535>",
908 "IP Information\n"
909 "OSPF interface commands\n"
910 "Interface cost\n"
911 "Cost")
912
913DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_cmd_vtysh,
914 "redistribute connected",
915 "Redistribute information from another routing protocol\n"
916 "Connected\n")
917
918DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_out_cmd_vtysh,
919 "clear ip bgp * ipv4 (unicast|multicast) out",
920 "Reset functions\n"
921 "IP information\n"
922 "BGP information\n"
923 "Clear all peers\n"
924 "Address family\n"
925 "Address Family modifier\n"
926 "Address Family modifier\n"
paul718e3742002-12-13 20:15:29 +0000927 "Soft reconfig outbound update\n")
928
929DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_any_cmd_vtysh,
930 "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D any",
931 "Add an access list entry\n"
932 "IP extended access list\n"
933 "IP extended access list (expanded range)\n"
934 "Specify packets to reject\n"
935 "Specify packets to forward\n"
936 "Any Internet Protocol\n"
937 "A single source host\n"
938 "Source address\n"
939 "Any destination host\n")
940
paul569c0f02003-03-02 21:19:26 +0000941DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_cmd_vtysh,
942 "no redistribute static metric",
943 "Negate a command or set its defaults\n"
944 "Redistribute information from another routing protocol\n"
945 "Static routes\n"
946 "Metric\n")
947
948DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_longer_cmd_vtysh,
949 "show ipv6 bgp X:X::X:X/M longer-prefixes",
950 "Show running system information\n"
951 "IPv6 information\n"
952 "BGP information\n"
953 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
954 "Display route and more specific routes\n")
955
956DEFSH (VTYSH_BGPD, no_bgp_distance_source_access_list_cmd_vtysh,
957 "no distance <1-255> A.B.C.D/M WORD",
958 "Negate a command or set its defaults\n"
959 "Define an administrative distance\n"
960 "Administrative distance\n"
961 "IP source prefix\n"
962 "Access list name\n")
963
964DEFSH (VTYSH_OSPFD, ospf_opaque_capable_cmd_vtysh,
965 "ospf opaque-lsa",
966 "OSPF specific commands\n"
967 "Enable the Opaque-LSA capability (rfc2370)\n")
968
969DEFSH (VTYSH_BGPD, neighbor_update_source_cmd_vtysh,
970 "neighbor (A.B.C.D|X:X::X:X|WORD) " "update-source WORD",
971 "Specify neighbor router\n"
972 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
973 "Source of routing updates\n"
974 "Interface name\n")
975
976DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_sequence_number_cmd_vtysh,
977 "no ipv6 prefix-list sequence-number",
978 "Negate a command or set its defaults\n"
979 "IPv6 information\n"
980 "Build a prefix list\n"
981 "Include/exclude sequence numbers in NVGEN\n")
982
983DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_metric_rmap_cmd_vtysh,
984 "no redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295> route-map WORD",
985 "Negate a command or set its defaults\n"
986 "Redistribute information from another routing protocol\n"
987 "Connected\n"
988 "Kernel routes\n"
989 "Open Shurtest Path First (OSPFv3)\n"
990 "Routing Information Protocol (RIPng)\n"
991 "Static routes\n"
992 "Metric for redistributed routes\n"
993 "Default metric\n"
994 "Route map reference\n"
995 "Pointer to route-map entries\n")
996
997DEFSH (VTYSH_BGPD, ipv6_aggregate_address_cmd_vtysh,
998 "aggregate-address X:X::X:X/M",
999 "Configure BGP aggregate entries\n"
1000 "Aggregate prefix\n")
1001
1002DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_out_cmd_vtysh,
1003 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft out",
1004 "Reset functions\n"
1005 "IP information\n"
1006 "BGP information\n"
1007 "BGP neighbor address to clear\n"
1008 "Address family\n"
1009 "Address Family modifier\n"
1010 "Address Family modifier\n"
1011 "Soft reconfig\n"
1012 "Soft reconfig outbound update\n")
1013
1014DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_cmd_vtysh,
1015 "clear ip bgp * vpnv4 unicast soft",
1016 "Reset functions\n"
1017 "IP information\n"
1018 "BGP information\n"
1019 "Clear all peers\n"
1020 "Address family\n"
1021 "Address Family Modifier\n"
1022 "Soft reconfig\n")
1023
1024DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_advertise_force_prefix_cmd_vtysh,
1025 "no ipv6 ospf6 advertise force-prefix",
1026 "Negate a command or set its defaults\n"
1027 "IPv6 Information\n"
1028 "Open Shortest Path First (OSPF) for IPv6\n"
1029 "Advertising options\n"
1030 "Force to advertise prefix, applicable if Loopback or P-to-P\n"
1031 )
1032
1033DEFSH (VTYSH_BGPD, no_neighbor_ebgp_multihop_ttl_cmd_vtysh,
1034 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop <1-255>",
1035 "Negate a command or set its defaults\n"
1036 "Specify neighbor router\n"
1037 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1038 "Allow EBGP neighbors not on directly connected networks\n"
1039 "maximum hop count\n")
1040
1041DEFSH (VTYSH_OSPFD, ospf_default_information_originate_routemap_cmd_vtysh,
1042 "default-information originate route-map WORD",
1043 "Control distribution of default information\n"
1044 "Distribute a default route\n"
1045 "Route map reference\n"
1046 "Pointer to route-map entries\n")
1047
1048DEFSH (VTYSH_BGPD, no_neighbor_interface_cmd_vtysh,
1049 "no neighbor (A.B.C.D|X:X::X:X) " "interface WORD",
1050 "Negate a command or set its defaults\n"
1051 "Specify neighbor router\n"
1052 "Neighbor address\nIPv6 address\n"
1053 "Interface\n"
1054 "Interface name\n")
1055
1056DEFSH (VTYSH_RIPD, no_rip_distance_source_access_list_cmd_vtysh,
1057 "no distance <1-255> A.B.C.D/M WORD",
1058 "Negate a command or set its defaults\n"
1059 "Administrative distance\n"
1060 "Distance value\n"
1061 "IP source prefix\n"
1062 "Access list name\n")
1063
1064DEFSH (VTYSH_BGPD, show_ip_bgp_flap_cidr_only_cmd_vtysh,
1065 "show ip bgp flap-statistics cidr-only",
1066 "Show running system information\n"
1067 "IP information\n"
1068 "BGP information\n"
1069 "Display flap statistics of routes\n"
1070 "Display only routes with non-natural netmasks\n")
1071
1072DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_summary_cmd_vtysh,
1073 "show ip bgp vpnv4 all summary",
1074 "Show running system information\n"
1075 "IP information\n"
1076 "BGP information\n"
1077 "Display VPNv4 NLRI specific information\n"
1078 "Display information about all VPNv4 NLRIs\n"
1079 "Summary of BGP neighbor status\n")
1080
1081DEFSH (VTYSH_ZEBRA, no_ipv6_address_cmd_vtysh,
1082 "no ipv6 address X:X::X:X/M",
1083 "Negate a command or set its defaults\n"
1084 "Interface Internet Protocol config commands\n"
1085 "Set the IP address of an interface\n"
1086 "IPv6 address (e.g. 3ffe:506::1/48)\n")
1087
1088DEFSH (VTYSH_BGPD, clear_bgp_external_soft_cmd_vtysh,
1089 "clear bgp external soft",
1090 "Reset functions\n"
1091 "BGP information\n"
1092 "Clear all external peers\n"
1093 "Soft reconfig\n")
1094
1095DEFSH (VTYSH_OSPFD, area_nssa_cmd_vtysh,
1096 "area (A.B.C.D|<0-4294967295>) nssa",
1097 "OSPF area parameters\n"
1098 "OSPF area ID in IP address format\n"
1099 "OSPF area ID as a decimal value\n"
1100 "Configure OSPF area as nssa\n")
1101
1102DEFSH (VTYSH_BGPD, no_neighbor_shutdown_cmd_vtysh,
1103 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "shutdown",
1104 "Negate a command or set its defaults\n"
1105 "Specify neighbor router\n"
1106 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1107 "Administratively shut down this neighbor\n")
1108
1109DEFSH (VTYSH_BGPD, show_bgp_prefix_list_cmd_vtysh,
1110 "show bgp prefix-list WORD",
1111 "Show running system information\n"
1112 "BGP information\n"
1113 "Display routes conforming to the prefix-list\n"
1114 "IPv6 prefix-list name\n")
1115
1116DEFSH (VTYSH_RIPD, rip_split_horizon_cmd_vtysh,
1117 "ip split-horizon",
1118 "IP information\n"
1119 "Perform split horizon\n")
1120
1121DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_summary_cmd_vtysh,
1122 "show ipv6 prefix-list summary",
1123 "Show running system information\n"
1124 "IPv6 information\n"
1125 "Build a prefix list\n"
1126 "Summary of prefix lists\n")
1127
1128DEFSH (VTYSH_BGPD, set_community_none_cmd_vtysh,
1129 "set community none",
1130 "Set values in destination routing protocol\n"
1131 "BGP community attribute\n"
1132 "No community attribute\n")
1133
1134DEFSH (VTYSH_BGPD, neighbor_attr_unchanged6_cmd_vtysh,
1135 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path med next-hop",
1136 "Specify neighbor router\n"
1137 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1138 "BGP attribute is propagated unchanged to this neighbor\n"
1139 "As-path attribute\n"
1140 "Med attribute\n"
1141 "Nexthop attribute\n")
1142
1143DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_md5_cmd_vtysh,
1144 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1145 "(authentication|) (message-digest|null) "
1146 "(message-digest-key|) <1-255> md5 KEY",
1147 "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"
1148 "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n"
1149 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
1150
1151DEFSH (VTYSH_RIPD, ip_rip_receive_version_cmd_vtysh,
1152 "ip rip receive version (1|2)",
1153 "IP information\n"
1154 "Routing Information Protocol\n"
1155 "Advertisement reception\n"
1156 "Version control\n"
1157 "RIP version 1\n"
1158 "RIP version 2\n")
1159
1160DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_metric_routemap_cmd_vtysh,
1161 "redistribute kernel metric <0-16> route-map WORD",
1162 "Redistribute information from another routing protocol\n"
1163 "Kernel routes\n"
1164 "Metric\n"
1165 "Metric value\n"
1166 "Route map reference\n"
1167 "Pointer to route-map entries\n")
1168
1169DEFSH (VTYSH_BGPD, no_aggregate_address_as_set_cmd_vtysh,
1170 "no aggregate-address A.B.C.D/M as-set",
1171 "Negate a command or set its defaults\n"
1172 "Configure BGP aggregate entries\n"
1173 "Aggregate prefix\n"
1174 "Generate AS set path information\n")
1175
1176DEFSH (VTYSH_ZEBRA, no_linkdetect_cmd_vtysh,
1177 "no link-detect",
1178 "Negate a command or set its defaults\n"
1179 "Disable link detection on interface\n")
1180
1181DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_out_cmd_vtysh,
1182 "clear bgp ipv6 * out",
1183 "Reset functions\n"
1184 "BGP information\n"
1185 "Address family\n"
1186 "Clear all peers\n"
1187 "Soft reconfig outbound update\n")
1188
1189DEFSH (VTYSH_OSPFD, show_debugging_ospf_cmd_vtysh,
1190 "show debugging ospf",
1191 "Show running system information\n"
1192 "Debugging functions (see also 'undebug')\n"
1193 "OSPF information\n")
1194
1195DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_all_cmd_vtysh,
1196 "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD)",
1197 "Negate a command or set its defaults\n"
1198 "Add an access list entry\n"
1199 "IP standard access list\n"
1200 "IP extended access list\n"
1201 "IP standard access list (expanded range)\n"
1202 "IP extended access list (expanded range)\n"
1203 "IP zebra access-list name\n")
1204
1205DEFSH (VTYSH_BGPD, bgp_config_type_cmd_vtysh,
1206 "bgp config-type (cisco|zebra)",
1207 "BGP information\n"
1208 "Configuration type\n"
1209 "cisco\n"
1210 "zebra\n")
1211
1212DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_int_detail_cmd_vtysh,
1213 "show ip ospf neighbor A.B.C.D detail",
1214 "Show running system information\n"
1215 "IP information\n"
1216 "OSPF information\n"
1217 "Neighbor list\n"
1218 "Interface address\n"
1219 "detail of all neighbors")
1220
1221DEFSH (VTYSH_BGPD, neighbor_attr_unchanged10_cmd_vtysh,
1222 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med as-path next-hop",
1223 "Specify neighbor router\n"
1224 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1225 "BGP attribute is propagated unchanged to this neighbor\n"
1226 "Med attribute\n"
1227 "As-path attribute\n"
1228 "Nexthop attribute\n")
1229
1230DEFSH (VTYSH_BGPD, no_bgp_network_backdoor_cmd_vtysh,
1231 "no network A.B.C.D/M backdoor",
1232 "Negate a command or set its defaults\n"
1233 "Specify a network to announce via BGP\n"
1234 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
1235 "Specify a BGP backdoor route\n")
1236
1237DEFSH (VTYSH_RIPNGD, no_debug_ripng_events_cmd_vtysh,
1238 "no debug ripng events",
1239 "Negate a command or set its defaults\n"
1240 "Debugging functions (see also 'undebug')\n"
1241 "RIPng configuration\n"
1242 "Debug option set for ripng events\n")
1243
1244DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_in_cmd_vtysh,
1245 "clear ip bgp <1-65535> ipv4 (unicast|multicast) in",
1246 "Reset functions\n"
1247 "IP information\n"
1248 "BGP information\n"
1249 "Clear peers with the AS number\n"
1250 "Address family\n"
1251 "Address Family modifier\n"
1252 "Address Family modifier\n"
1253 "Soft reconfig inbound update\n")
1254
1255DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_routemap_cmd_vtysh,
1256 "redistribute bgp route-map WORD",
1257 "Redistribute information from another routing protocol\n"
1258 "Border Gateway Protocol (BGP)\n"
1259 "Route map reference\n"
1260 "Pointer to route-map entries\n")
1261
1262DEFSH (VTYSH_BGPD, aggregate_address_mask_summary_only_cmd_vtysh,
1263 "aggregate-address A.B.C.D A.B.C.D summary-only",
1264 "Configure BGP aggregate entries\n"
1265 "Aggregate address\n"
1266 "Aggregate mask\n"
1267 "Filter more specific routes from updates\n")
1268
1269DEFSH (VTYSH_BGPD, show_ip_bgp_community_all_cmd_vtysh,
1270 "show ip bgp community",
1271 "Show running system information\n"
1272 "IP information\n"
1273 "BGP information\n"
1274 "Display routes matching the communities\n")
1275
1276DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged8_cmd_vtysh,
1277 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop as-path med",
1278 "Negate a command or set its defaults\n"
1279 "Specify neighbor router\n"
1280 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1281 "BGP attribute is propagated unchanged to this neighbor\n"
1282 "Nexthop attribute\n"
1283 "As-path attribute\n"
1284 "Med attribute\n")
1285
1286DEFSH (VTYSH_RIPNGD, ripng_default_metric_cmd_vtysh,
1287 "default-metric <1-16>",
1288 "Set a metric of redistribute routes\n"
1289 "Default metric\n")
1290
1291DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_cmd_vtysh,
1292 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*|HEX|dump|detail)",
1293 "Show running system information\n"
1294 "IPv6 Information\n"
1295 "Open Shortest Path First (OSPF) for IPv6\n"
1296 "LSA Database\n"
1297 "Router-LSA\n"
1298 "Network-LSA\n"
1299 "AS-External-LSA\n"
1300 "Intra-Area-Prefix-LSA\n"
1301 "Inter-Area-Router-LSA\n"
1302 "Inter-Area-Prefix-LSA\n"
1303 "Link-LSA\n"
1304 "All LS Type\n"
1305 "Specify LS Type by Hex\n"
1306 "Dump raw LSA data in Hex\n"
1307 "show detail of LSAs\n"
1308 )
1309
1310DEFSH (VTYSH_BGPD, no_aggregate_address_cmd_vtysh,
1311 "no aggregate-address A.B.C.D/M",
1312 "Negate a command or set its defaults\n"
1313 "Configure BGP aggregate entries\n"
1314 "Aggregate prefix\n")
1315
1316DEFSH (VTYSH_BGPD, no_neighbor_allowas_in_cmd_vtysh,
1317 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in",
1318 "Negate a command or set its defaults\n"
1319 "Specify neighbor router\n"
1320 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1321 "allow local ASN appears in aspath attribute\n")
1322
1323DEFSH (VTYSH_BGPD, aggregate_address_mask_as_set_cmd_vtysh,
1324 "aggregate-address A.B.C.D A.B.C.D as-set",
1325 "Configure BGP aggregate entries\n"
1326 "Aggregate address\n"
1327 "Aggregate mask\n"
1328 "Generate AS set path information\n")
1329
1330DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_cmd_vtysh,
1331 "no redistribute bgp metric",
1332 "Negate a command or set its defaults\n"
1333 "Redistribute information from another routing protocol\n"
1334 "Border Gateway Protocol (BGP)\n"
1335 "Metric\n")
1336
1337DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_cmd_vtysh,
1338 "no redistribute kernel",
1339 "Negate a command or set its defaults\n"
1340 "Redistribute information from another routing protocol\n"
1341 "Kernel routes\n")
1342
1343DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_in_cmd_vtysh,
1344 "clear ip bgp * vpnv4 unicast soft in",
1345 "Reset functions\n"
1346 "IP information\n"
1347 "BGP information\n"
1348 "Clear all peers\n"
1349 "Address family\n"
1350 "Address Family Modifier\n"
1351 "Soft reconfig\n"
1352 "Soft reconfig inbound update\n")
1353
1354DEFSH (VTYSH_RIPD, rip_redistribute_type_routemap_cmd_vtysh,
1355 "redistribute (kernel|connected|static|ospf|bgp) route-map WORD",
1356 "Redistribute information from another routing protocol\n"
1357 "Kernel routes\n"
1358 "Connected\n"
1359 "Static routes\n"
1360 "Open Shortest Path First (OSPF)\n"
1361 "Border Gateway Protocol (BGP)\n"
1362 "Route map reference\n"
1363 "Pointer to route-map entries\n")
1364
1365DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_type_cmd_vtysh,
1366 "default-information originate always metric <0-16777214> metric-type (1|2)",
1367 "Control distribution of default information\n"
1368 "Distribute a default route\n"
1369 "Always advertise default route\n"
1370 "OSPF default metric\n"
1371 "OSPF metric\n"
1372 "OSPF metric type for default routes\n"
1373 "Set OSPF External Type 1 metrics\n"
1374 "Set OSPF External Type 2 metrics\n")
1375
1376DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_cmd_vtysh,
1377 "ip prefix-list WORD seq <1-4294967295> (deny|permit) (A.B.C.D/M|any)",
paul718e3742002-12-13 20:15:29 +00001378 "IP information\n"
1379 "Build a prefix list\n"
1380 "Name of a prefix list\n"
paul569c0f02003-03-02 21:19:26 +00001381 "sequence number of an entry\n"
1382 "Sequence number\n"
1383 "Specify packets to reject\n"
1384 "Specify packets to forward\n"
1385 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
1386 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
paul718e3742002-12-13 20:15:29 +00001387
paul569c0f02003-03-02 21:19:26 +00001388DEFSH (VTYSH_OSPFD, no_ospf_network_cmd_vtysh,
1389 "no ospf network",
1390 "Negate a command or set its defaults\n"
1391 "OSPF interface commands\n"
1392 "Network type\n")
1393
1394DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_prefix_cmd_vtysh,
1395 "no ip prefix-list WORD (deny|permit) (A.B.C.D/M|any)",
paul718e3742002-12-13 20:15:29 +00001396 "Negate a command or set its defaults\n"
1397 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00001398 "Build a prefix list\n"
1399 "Name of a prefix list\n"
1400 "Specify packets to reject\n"
1401 "Specify packets to forward\n"
1402 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
1403 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
1404
1405DEFSH (VTYSH_BGPD, set_community_delete_cmd_vtysh,
1406 "set comm-list (<1-99>|<100-199>|WORD) delete",
1407 "Set values in destination routing protocol\n"
1408 "set BGP community list (for deletion)\n"
1409 "Community-list number (standard)\n"
1410 "Communitly-list number (expanded)\n"
1411 "Community-list name\n"
1412 "Delete matching communities\n")
1413
1414DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_out_cmd_vtysh,
1415 "clear ip bgp external soft out",
1416 "Reset functions\n"
1417 "IP information\n"
1418 "BGP information\n"
1419 "Clear all external peers\n"
1420 "Soft reconfig\n"
1421 "Soft reconfig outbound update\n")
1422
1423DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighbor_cmd_vtysh,
1424 "show ipv6 ospf6 neighbor",
1425 "Show running system information\n"
1426 "IPv6 Information\n"
1427 "Open Shortest Path First (OSPF) for IPv6\n"
1428 "Neighbor list\n"
1429 )
1430
1431DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh,
1432 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*|HEX) (A.B.C.D|*) (A.B.C.D|*|dump|detail)",
1433 "Show running system information\n"
1434 "IPv6 Information\n"
1435 "Open Shortest Path First (OSPF) for IPv6\n"
1436 "LSA Database\n"
1437 "Router-LSA\n"
1438 "Network-LSA\n"
1439 "AS-External-LSA\n"
1440 "Intra-Area-Prefix-LSA\n"
1441 "Inter-Area-Router-LSA\n"
1442 "Inter-Area-Prefix-LSA\n"
1443 "Link-LSA\n"
1444 "All LS Type\n"
1445 "Specify LS Type by Hex\n"
1446 "Link State ID\n"
1447 "All Link State ID\n"
1448 "Advertising Router\n"
1449 "All Advertising Router\n"
1450 "Dump raw LSA data in Hex\n"
1451 "show detail of LSAs\n"
1452 )
1453
1454DEFSH (VTYSH_RIPD, rip_passive_interface_cmd_vtysh,
1455 "passive-interface IFNAME",
1456 "Suppress routing updates on an interface\n"
1457 "Interface name\n")
1458
1459DEFSH (VTYSH_BGPD, no_neighbor_capability_orf_prefix_cmd_vtysh,
1460 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability orf prefix-list (both|send|receive)",
1461 "Negate a command or set its defaults\n"
1462 "Specify neighbor router\n"
1463 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1464 "Advertise capability to the peer\n"
1465 "Advertise ORF capability to the peer\n"
1466 "Advertise prefixlist ORF capability to this neighbor\n"
1467 "Capability to SEND and RECEIVE the ORF to/from this neighbor\n"
1468 "Capability to RECEIVE the ORF from this neighbor\n"
1469 "Capability to SEND the ORF to this neighbor\n")
1470
1471DEFSH (VTYSH_ZEBRA, ip_irdp_cmd_vtysh,
1472 "ip irdp",
1473 "IP information\n"
1474 "ICMP Router discovery on this interface\n")
1475
1476DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_cmd_vtysh,
1477 "redistribute bgp",
1478 "Redistribute information from another routing protocol\n"
1479 "Border Gateway Protocol (BGP)\n")
1480
1481DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_interface_ifname_cmd_vtysh,
1482 "show ipv6 ospf6 interface IFNAME",
1483 "Show running system information\n"
1484 "IPv6 Information\n"
1485 "Open Shortest Path First (OSPF) for IPv6\n"
1486 "Interface infomation\n"
1487 "Interface name(e.g. ep0)\n"
1488 )
paul718e3742002-12-13 20:15:29 +00001489
1490DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_inter_external_cmd_vtysh,
1491 "distance ospf intra-area <1-255> inter-area <1-255> external <1-255>",
1492 "Define an administrative distance\n"
1493 "OSPF Administrative distance\n"
1494 "Intra-area routes\n"
1495 "Distance for intra-area routes\n"
1496 "Inter-area routes\n"
1497 "Distance for inter-area routes\n"
1498 "External routes\n"
1499 "Distance for external routes\n")
1500
paul569c0f02003-03-02 21:19:26 +00001501DEFSH (VTYSH_BGPD, clear_bgp_all_out_cmd_vtysh,
1502 "clear bgp * out",
paul718e3742002-12-13 20:15:29 +00001503 "Reset functions\n"
1504 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00001505 "Clear all peers\n"
paul718e3742002-12-13 20:15:29 +00001506 "Soft reconfig outbound update\n")
1507
paul569c0f02003-03-02 21:19:26 +00001508DEFSH (VTYSH_OSPFD, area_stub_no_summary_cmd_vtysh,
1509 "area (A.B.C.D|<0-4294967295>) stub no-summary",
1510 "OSPF stub parameters\n"
1511 "OSPF area ID in IP address format\n"
1512 "OSPF area ID as a decimal value\n"
1513 "Configure OSPF area as stub\n"
1514 "Do not inject inter-area routes into stub\n")
1515
1516DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_metric_cmd_vtysh,
1517 "redistribute ospf6 metric <0-16>",
1518 "Redistribute information from another routing protocol\n"
1519 "IPv6 Open Shortest Path First (OSPFv3)\n"
1520 "Metric\n"
1521 "Metric value\n")
1522
1523DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_le_ge_cmd_vtysh,
1524 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
1525 "Negate a command or set its defaults\n"
1526 "IPv6 information\n"
paul718e3742002-12-13 20:15:29 +00001527 "Build a prefix list\n"
1528 "Name of a prefix list\n"
1529 "sequence number of an entry\n"
1530 "Sequence number\n"
1531 "Specify packets to reject\n"
1532 "Specify packets to forward\n"
paul569c0f02003-03-02 21:19:26 +00001533 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
paul718e3742002-12-13 20:15:29 +00001534 "Maximum prefix length to be matched\n"
paul569c0f02003-03-02 21:19:26 +00001535 "Maximum prefix length\n"
1536 "Minimum prefix length to be matched\n"
1537 "Minimum prefix length\n")
paul718e3742002-12-13 20:15:29 +00001538
paul569c0f02003-03-02 21:19:26 +00001539DEFSH (VTYSH_RIPNGD, default_information_originate_cmd_vtysh,
1540 "default-information originate",
1541 "Default route information\n"
1542 "Distribute default route\n")
paul718e3742002-12-13 20:15:29 +00001543
paul569c0f02003-03-02 21:19:26 +00001544DEFSH (VTYSH_OSPFD, debug_ospf_lsa_sub_cmd_vtysh,
1545 "debug ospf lsa (generate|flooding|install|refresh)",
1546 "Debugging functions (see also 'undebug')\n"
1547 "OSPF information\n"
1548 "OSPF Link State Advertisement\n"
1549 "LSA Generation\n"
1550 "LSA Flooding\n"
1551 "LSA Install/Delete\n"
1552 "LSA Refresh\n")
1553
1554DEFSH (VTYSH_RIPD, send_lifetime_day_month_day_month_cmd_vtysh,
1555 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
1556 "Set send lifetime of the key\n"
1557 "Time to start\n"
1558 "Day of th month to start\n"
1559 "Month of the year to start\n"
1560 "Year to start\n"
1561 "Time to expire\n"
1562 "Day of th month to expire\n"
1563 "Month of the year to expire\n"
1564 "Year to expire\n")
1565
1566DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_routemap_cmd_vtysh,
1567 "no redistribute bgp metric <0-16> route-map WORD",
1568 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00001569 "Redistribute information from another routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00001570 "Border Gateway Protocol (BGP)\n"
paul718e3742002-12-13 20:15:29 +00001571 "Metric\n"
1572 "Metric value\n"
1573 "Route map reference\n"
1574 "Pointer to route-map entries\n")
1575
paul569c0f02003-03-02 21:19:26 +00001576DEFSH (VTYSH_OSPFD, area_range_cost_cmd_vtysh,
1577 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>",
paul718e3742002-12-13 20:15:29 +00001578 "OSPF area parameters\n"
1579 "OSPF area ID in IP address format\n"
1580 "OSPF area ID as a decimal value\n"
paul569c0f02003-03-02 21:19:26 +00001581 "Summarize routes matching address/mask (border routers only)\n"
1582 "Area range prefix\n"
1583 "User specified metric for this range\n"
1584 "Advertised metric for this range\n")
paul718e3742002-12-13 20:15:29 +00001585
paul569c0f02003-03-02 21:19:26 +00001586DEFSH (VTYSH_BGPD, no_ipv6_aggregate_address_cmd_vtysh,
1587 "no aggregate-address X:X::X:X/M",
1588 "Negate a command or set its defaults\n"
1589 "Configure BGP aggregate entries\n"
1590 "Aggregate prefix\n")
1591
1592DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_ge_cmd_vtysh,
1593 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128>",
1594 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00001595 "IPv6 information\n"
1596 "Build a prefix list\n"
1597 "Name of a prefix list\n"
1598 "sequence number of an entry\n"
1599 "Sequence number\n"
1600 "Specify packets to reject\n"
1601 "Specify packets to forward\n"
1602 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
1603 "Minimum prefix length to be matched\n"
1604 "Minimum prefix length\n")
1605
paul569c0f02003-03-02 21:19:26 +00001606DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_route_cmd_vtysh,
1607 "show ip bgp vpnv4 all A.B.C.D",
1608 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00001609 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00001610 "BGP information\n"
1611 "Display VPNv4 NLRI specific information\n"
1612 "Display information about all VPNv4 NLRIs\n"
1613 "Network in the BGP routing table to display\n")
paul718e3742002-12-13 20:15:29 +00001614
paul569c0f02003-03-02 21:19:26 +00001615DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_in_cmd_vtysh,
1616 "clear bgp view WORD * soft in",
paul718e3742002-12-13 20:15:29 +00001617 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +00001618 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00001619 "BGP view\n"
1620 "view name\n"
paul718e3742002-12-13 20:15:29 +00001621 "Clear all peers\n"
1622 "Soft reconfig\n"
1623 "Soft reconfig inbound update\n")
1624
paul569c0f02003-03-02 21:19:26 +00001625DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_in_cmd_vtysh,
1626 "clear ip bgp external ipv4 (unicast|multicast) soft in",
1627 "Reset functions\n"
1628 "IP information\n"
1629 "BGP information\n"
1630 "Clear all external peers\n"
1631 "Address family\n"
1632 "Address Family modifier\n"
1633 "Address Family modifier\n"
1634 "Soft reconfig\n"
1635 "Soft reconfig inbound update\n")
1636
1637DEFSH (VTYSH_BGPD, aggregate_address_mask_as_set_summary_cmd_vtysh,
1638 "aggregate-address A.B.C.D A.B.C.D as-set summary-only",
1639 "Configure BGP aggregate entries\n"
1640 "Aggregate address\n"
1641 "Aggregate mask\n"
1642 "Generate AS set path information\n"
1643 "Filter more specific routes from updates\n")
1644
1645DEFSH (VTYSH_OSPFD, ip_ospf_hello_interval_cmd_vtysh,
1646 "ip ospf hello-interval <1-65535>",
1647 "IP Information\n"
1648 "OSPF interface commands\n"
1649 "Time between HELLO packets\n"
1650 "Seconds\n")
1651
1652DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_metric_cmd_vtysh,
1653 "redistribute kernel metric <0-16>",
1654 "Redistribute information from another routing protocol\n"
1655 "Kernel routes\n"
1656 "Metric\n"
1657 "Metric value\n")
1658
1659DEFSH (VTYSH_BGPD, no_set_local_pref_cmd_vtysh,
1660 "no set local-preference",
1661 "Negate a command or set its defaults\n"
1662 "Set values in destination routing protocol\n"
1663 "BGP local preference path attribute\n")
1664
1665DEFSH (VTYSH_BGPD, no_bgp_client_to_client_reflection_cmd_vtysh,
1666 "no bgp client-to-client reflection",
1667 "Negate a command or set its defaults\n"
1668 "BGP specific commands\n"
1669 "Configure client to client route reflection\n"
1670 "reflection of routes allowed\n")
1671
1672DEFSH (VTYSH_BGPD, show_bgp_community4_exact_cmd_vtysh,
1673 "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",
1674 "Show running system information\n"
1675 "BGP information\n"
1676 "Display routes matching the communities\n"
1677 "community number\n"
1678 "Do not send outside local AS (well-known community)\n"
1679 "Do not advertise to any peer (well-known community)\n"
1680 "Do not export to next AS (well-known community)\n"
1681 "community number\n"
1682 "Do not send outside local AS (well-known community)\n"
1683 "Do not advertise to any peer (well-known community)\n"
1684 "Do not export to next AS (well-known community)\n"
1685 "community number\n"
1686 "Do not send outside local AS (well-known community)\n"
1687 "Do not advertise to any peer (well-known community)\n"
1688 "Do not export to next AS (well-known community)\n"
1689 "community number\n"
1690 "Do not send outside local AS (well-known community)\n"
1691 "Do not advertise to any peer (well-known community)\n"
1692 "Do not export to next AS (well-known community)\n"
1693 "Exact match of the communities")
1694
1695DEFSH (VTYSH_OSPF6D, no_interface_area_cmd_vtysh,
1696 "no interface IFNAME area A.B.C.D",
1697 "Negate a command or set its defaults\n"
1698 "Disable routing on an IPv6 interface\n"
1699 "Interface name(e.g. ep0)\n")
1700
1701DEFSH (VTYSH_BGPD, neighbor_remote_as_cmd_vtysh,
1702 "neighbor (A.B.C.D|X:X::X:X|WORD) " "remote-as <1-65535>",
1703 "Specify neighbor router\n"
1704 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1705 "Specify a BGP neighbor\n"
1706 "AS number\n")
1707
1708DEFSH (VTYSH_OSPFD, debug_ospf_ism_cmd_vtysh,
1709 "debug ospf ism",
1710 "Debugging functions (see also 'undebug')\n"
1711 "OSPF information\n"
1712 "OSPF Interface State Machine\n")
1713
1714DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_out_cmd_vtysh,
1715 "clear ip bgp peer-group WORD out",
1716 "Reset functions\n"
1717 "IP information\n"
1718 "BGP information\n"
1719 "Clear all members of peer-group\n"
1720 "BGP peer-group name\n"
1721 "Soft reconfig outbound update\n")
1722
1723DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_cmd_vtysh,
1724 "no match ip address",
1725 "Negate a command or set its defaults\n"
1726 "Match values from routing table\n"
1727 "IP information\n"
1728 "Match address of route\n")
1729
1730DEFSH (VTYSH_OSPFD, no_ip_ospf_dead_interval_cmd_vtysh,
1731 "no ip ospf dead-interval",
1732 "Negate a command or set its defaults\n"
1733 "IP Information\n"
1734 "OSPF interface commands\n"
1735 "Interval after which a neighbor is declared dead\n")
1736
1737DEFSH (VTYSH_OSPFD, area_authentication_message_digest_cmd_vtysh,
1738 "area (A.B.C.D|<0-4294967295>) authentication message-digest",
1739 "OSPF area parameters\n"
1740 "Enable authentication\n"
1741 "Use message-digest authentication\n")
1742
1743DEFSH (VTYSH_RIPD, no_rip_redistribute_type_metric_routemap_cmd_vtysh,
1744 "no redistribute (kernel|connected|static|ospf|bgp) metric <0-16> route-map WORD",
paul718e3742002-12-13 20:15:29 +00001745 "Negate a command or set its defaults\n"
1746 "Redistribute information from another routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00001747 "Kernel routes\n"
1748 "Connected\n"
1749 "Static routes\n"
1750 "Open Shortest Path First (OSPF)\n"
1751 "Border Gateway Protocol (BGP)\n"
paul718e3742002-12-13 20:15:29 +00001752 "Metric\n"
1753 "Metric value\n"
1754 "Route map reference\n"
1755 "Pointer to route-map entries\n")
1756
paul569c0f02003-03-02 21:19:26 +00001757DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_all_cmd_vtysh,
1758 "show ip ospf neighbor all",
paul718e3742002-12-13 20:15:29 +00001759 "Show running system information\n"
1760 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00001761 "OSPF information\n"
1762 "Neighbor list\n"
1763 "include down status neighbor\n")
paul718e3742002-12-13 20:15:29 +00001764
paul569c0f02003-03-02 21:19:26 +00001765DEFSH (VTYSH_OSPFD, neighbor_priority_poll_interval_cmd_vtysh,
1766 "neighbor A.B.C.D priority <0-255> poll-interval <1-65535>",
1767 "Specify neighbor router\n"
1768 "Neighbor IP address\n"
1769 "Neighbor Priority\n"
1770 "Priority\n"
1771 "Dead Neighbor Polling interval\n"
1772 "Seconds\n")
paul718e3742002-12-13 20:15:29 +00001773
paul569c0f02003-03-02 21:19:26 +00001774DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_le_cmd_vtysh,
1775 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128>",
paul718e3742002-12-13 20:15:29 +00001776 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00001777 "IPv6 information\n"
1778 "Build a prefix list\n"
1779 "Name of a prefix list\n"
1780 "sequence number of an entry\n"
1781 "Sequence number\n"
1782 "Specify packets to reject\n"
1783 "Specify packets to forward\n"
1784 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
1785 "Maximum prefix length to be matched\n"
1786 "Maximum prefix length\n")
1787
1788DEFSH (VTYSH_BGPD, neighbor_filter_list_cmd_vtysh,
1789 "neighbor (A.B.C.D|X:X::X:X|WORD) " "filter-list WORD (in|out)",
1790 "Specify neighbor router\n"
1791 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1792 "Establish BGP filters\n"
1793 "AS path access-list name\n"
1794 "Filter incoming routes\n"
1795 "Filter outgoing routes\n")
1796
1797DEFSH (VTYSH_ZEBRA, no_ip_address_secondary_cmd_vtysh,
1798 "no ip address A.B.C.D/M secondary",
1799 "Negate a command or set its defaults\n"
1800 "Interface Internet Protocol config commands\n"
1801 "Set the IP address of an interface\n"
1802 "IP address (e.g. 10.0.0.1/8)\n"
1803 "Secondary IP address\n")
1804
1805DEFSH (VTYSH_BGPD, show_ip_bgp_attr_info_cmd_vtysh,
1806 "show ip bgp attribute-info",
1807 "Show running system information\n"
1808 "IP information\n"
1809 "BGP information\n"
1810 "List all bgp attribute information\n")
1811
1812DEFSH (VTYSH_BGPD, neighbor_strict_capability_cmd_vtysh,
1813 "neighbor (A.B.C.D|X:X::X:X) " "strict-capability-match",
paul718e3742002-12-13 20:15:29 +00001814 "Specify neighbor router\n"
1815 "Neighbor address\nIPv6 address\n"
1816 "Strict capability negotiation match\n")
1817
paul569c0f02003-03-02 21:19:26 +00001818DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_metric_routemap_cmd_vtysh,
1819 "default-information originate always metric-type (1|2) metric <0-16777214> route-map WORD",
1820 "Control distribution of default information\n"
1821 "Distribute a default route\n"
1822 "Always advertise default route\n"
1823 "OSPF metric type for default routes\n"
1824 "Set OSPF External Type 1 metrics\n"
1825 "Set OSPF External Type 2 metrics\n"
1826 "OSPF default metric\n"
1827 "OSPF metric\n"
1828 "Route map reference\n"
1829 "Pointer to route-map entries\n")
1830
1831DEFSH (VTYSH_OSPFD, area_range_advertise_cost_cmd_vtysh,
1832 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>",
1833 "OSPF area parameters\n"
1834 "OSPF area ID in IP address format\n"
1835 "OSPF area ID as a decimal value\n"
1836 "Summarize routes matching address/mask (border routers only)\n"
1837 "Area range prefix\n"
1838 "Advertise this range (default)\n"
1839 "User specified metric for this range\n"
1840 "Advertised metric for this range\n")
1841
1842DEFSH (VTYSH_OSPFD, no_ospf_distance_ospf_cmd_vtysh,
1843 "no distance ospf",
1844 "Negate a command or set its defaults\n"
1845 "Define an administrative distance\n"
1846 "OSPF Administrative distance\n"
1847 "OSPF Distance\n")
1848
1849DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_cmd_vtysh,
1850 "show ip bgp A.B.C.D/M",
1851 "Show running system information\n"
1852 "IP information\n"
1853 "BGP information\n"
1854 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
1855
1856DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_metric_routemap_cmd_vtysh,
1857 "redistribute static metric <0-16> route-map WORD",
1858 "Redistribute information from another routing protocol\n"
1859 "Static routes\n"
1860 "Metric\n"
1861 "Metric value\n"
1862 "Route map reference\n"
1863 "Pointer to route-map entries\n")
1864
1865DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_cmd_vtysh,
1866 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1867 "(authentication|)",
1868 "Negate a command or set its defaults\n"
1869 "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"
1870 "Enable authentication on this virtual link\n" "dummy string \n")
1871
1872DEFSH (VTYSH_BGPD, show_bgp_ipv6_community2_exact_cmd_vtysh,
1873 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
1874 "Show running system information\n"
1875 "BGP information\n"
1876 "Address family\n"
1877 "Display routes matching the communities\n"
1878 "community number\n"
1879 "Do not send outside local AS (well-known community)\n"
1880 "Do not advertise to any peer (well-known community)\n"
1881 "Do not export to next AS (well-known community)\n"
1882 "community number\n"
1883 "Do not send outside local AS (well-known community)\n"
1884 "Do not advertise to any peer (well-known community)\n"
1885 "Do not export to next AS (well-known community)\n"
1886 "Exact match of the communities")
1887
1888DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighbor_routerid_cmd_vtysh,
1889 "show ipv6 ospf6 neighbor A.B.C.D",
1890 "Show running system information\n"
1891 "IPv6 Information\n"
1892 "Open Shortest Path First (OSPF) for IPv6\n"
1893 "Neighbor list\n"
1894 "OSPF6 neighbor Router ID in IP address format\n"
1895 )
1896
1897DEFSH (VTYSH_OSPFD, area_shortcut_cmd_vtysh,
1898 "area (A.B.C.D|<0-4294967295>) shortcut (default|enable|disable)",
1899 "OSPF area parameters\n"
1900 "OSPF area ID in IP address format\n"
1901 "OSPF area ID as a decimal value\n"
1902 "Configure the area's shortcutting mode\n"
1903 "Set default shortcutting behavior\n"
1904 "Enable shortcutting through the area\n"
1905 "Disable shortcutting through the area\n")
1906
1907DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_routemap_cmd_vtysh,
1908 "default-information originate always metric-type (1|2) route-map WORD",
1909 "Control distribution of default information\n"
1910 "Distribute a default route\n"
1911 "Always advertise default route\n"
1912 "OSPF metric type for default routes\n"
1913 "Set OSPF External Type 1 metrics\n"
1914 "Set OSPF External Type 2 metrics\n"
1915 "Route map reference\n"
1916 "Pointer to route-map entries\n")
1917
1918DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_prefix_cmd_vtysh,
1919 "clear ip bgp dampening A.B.C.D/M",
1920 "Reset functions\n"
1921 "IP information\n"
1922 "BGP information\n"
1923 "Clear route flap dampening information\n"
1924 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
1925
1926DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_cmd_vtysh,
1927 "show ip bgp ipv4 (unicast|multicast)",
1928 "Show running system information\n"
1929 "IP information\n"
1930 "BGP information\n"
1931 "Address family\n"
1932 "Address Family modifier\n"
1933 "Address Family modifier\n")
1934
1935DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_longer_cmd_vtysh,
1936 "show ipv6 prefix-list WORD X:X::X:X/M longer",
1937 "Show running system information\n"
1938 "IPv6 information\n"
1939 "Build a prefix list\n"
1940 "Name of a prefix list\n"
1941 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
1942 "Lookup longer prefix\n")
1943
1944DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_list_cmd_vtysh,
1945 "show ip bgp prefix-list WORD",
1946 "Show running system information\n"
1947 "IP information\n"
1948 "BGP information\n"
1949 "Display routes conforming to the prefix-list\n"
1950 "IP prefix-list name\n")
1951
1952DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_val2_cmd_vtysh,
1953 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295> warning-only",
1954 "Negate a command or set its defaults\n"
1955 "Specify neighbor router\n"
1956 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
1957 "Maximum number of prefix accept from this peer\n"
1958 "maximum no. of prefix limit\n"
1959 "Only give warning message when limit is exceeded\n")
1960
1961DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_val_cmd_vtysh,
1962 "no redistribute ospf6 metric <0-16>",
1963 "Negate a command or set its defaults\n"
1964 "Redistribute information from another routing protocol\n"
1965 "IPv6 Open Shortest Path First (OSPFv3)\n"
1966 "Metric\n"
1967 "Metric value\n")
1968
1969DEFSH (VTYSH_BGPD, show_bgp_instance_summary_cmd_vtysh,
1970 "show bgp view WORD summary",
1971 "Show running system information\n"
1972 "BGP information\n"
1973 "BGP view\n"
1974 "View name\n"
1975 "Summary of BGP neighbor status\n")
1976
1977DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_name_cmd_vtysh,
1978 "show ip prefix-list WORD",
1979 "Show running system information\n"
1980 "IP information\n"
1981 "Build a prefix list\n"
1982 "Name of a prefix list\n")
1983
1984DEFSH (VTYSH_BGPD, debug_bgp_fsm_cmd_vtysh,
1985 "debug bgp fsm",
1986 "Debugging functions (see also 'undebug')\n"
1987 "BGP information\n"
1988 "BGP Finite State Machine\n")
1989
1990DEFSH (VTYSH_RIPD, send_lifetime_month_day_day_month_cmd_vtysh,
1991 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
1992 "Set send lifetime of the key\n"
1993 "Time to start\n"
1994 "Month of the year to start\n"
1995 "Day of th month to start\n"
1996 "Year to start\n"
1997 "Time to expire\n"
1998 "Day of th month to expire\n"
1999 "Month of the year to expire\n"
2000 "Year to expire\n")
2001
2002DEFSH (VTYSH_BGPD, no_aggregate_address_mask_as_set_summary_cmd_vtysh,
2003 "no aggregate-address A.B.C.D A.B.C.D as-set summary-only",
2004 "Negate a command or set its defaults\n"
2005 "Configure BGP aggregate entries\n"
2006 "Aggregate address\n"
2007 "Aggregate mask\n"
2008 "Generate AS set path information\n"
2009 "Filter more specific routes from updates\n")
2010
2011DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_intra_inter_cmd_vtysh,
2012 "distance ospf external <1-255> intra-area <1-255> inter-area <1-255>",
2013 "Define an administrative distance\n"
2014 "OSPF Administrative distance\n"
2015 "External routes\n"
2016 "Distance for external routes\n"
2017 "Intra-area routes\n"
2018 "Distance for intra-area routes\n"
2019 "Inter-area routes\n"
2020 "Distance for inter-area routes\n")
2021
2022DEFSH (VTYSH_RIPD, accept_lifetime_day_month_month_day_cmd_vtysh,
2023 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
2024 "Set accept lifetime of the key\n"
2025 "Time to start\n"
2026 "Day of th month to start\n"
2027 "Month of the year to start\n"
2028 "Year to start\n"
2029 "Time to expire\n"
2030 "Month of the year to expire\n"
2031 "Day of th month to expire\n"
2032 "Year to expire\n")
2033
2034DEFSH (VTYSH_BGPD, no_neighbor_advertise_interval_cmd_vtysh,
2035 "no neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval",
2036 "Negate a command or set its defaults\n"
2037 "Specify neighbor router\n"
2038 "Neighbor address\nIPv6 address\n"
2039 "Minimum interval between sending BGP routing updates\n")
2040
2041DEFSH (VTYSH_BGPD, neighbor_soft_reconfiguration_cmd_vtysh,
2042 "neighbor (A.B.C.D|X:X::X:X|WORD) " "soft-reconfiguration inbound",
2043 "Specify neighbor router\n"
2044 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2045 "Per neighbor soft reconfiguration\n"
2046 "Allow inbound soft reconfiguration for this neighbor\n")
2047
2048DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_cmd_vtysh,
2049 "default-information originate always",
2050 "Control distribution of default information\n"
2051 "Distribute a default route\n"
2052 "Always advertise default route\n")
2053
2054DEFSH (VTYSH_BGPD, no_bgp_scan_time_cmd_vtysh,
2055 "no bgp scan-time",
2056 "Negate a command or set its defaults\n"
2057 "BGP specific commands\n"
2058 "Configure background scanner interval\n")
2059
2060DEFSH (VTYSH_BGPD, undebug_bgp_normal_cmd_vtysh,
2061 "undebug bgp",
2062 "Disable debugging functions (see also 'debug')\n"
2063 "BGP information\n")
2064
2065DEFSH (VTYSH_BGPD, no_neighbor_description_cmd_vtysh,
2066 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "description",
2067 "Negate a command or set its defaults\n"
2068 "Specify neighbor router\n"
2069 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2070 "Neighbor specific description\n")
2071
2072DEFSH (VTYSH_BGPD, aggregate_address_mask_cmd_vtysh,
2073 "aggregate-address A.B.C.D A.B.C.D",
2074 "Configure BGP aggregate entries\n"
2075 "Aggregate address\n"
2076 "Aggregate mask\n")
2077
2078DEFSH (VTYSH_BGPD, ip_community_list_expanded_cmd_vtysh,
2079 "ip community-list <100-199> (deny|permit) .LINE",
2080 "IP information\n"
2081 "Add a community list entry\n"
2082 "Community list number (expanded)\n"
2083 "Specify community to reject\n"
2084 "Specify community to accept\n"
2085 "An ordered list as a regular-expression\n")
2086
2087DEFSH (VTYSH_BGPD, clear_bgp_external_soft_out_cmd_vtysh,
2088 "clear bgp external soft out",
2089 "Reset functions\n"
2090 "BGP information\n"
2091 "Clear all external peers\n"
2092 "Soft reconfig\n"
2093 "Soft reconfig outbound update\n")
2094
2095DEFSH (VTYSH_ZEBRA, config_table_cmd_vtysh,
2096 "table TABLENO",
2097 "Configure target kernel routing table\n"
2098 "TABLE integer\n")
2099
2100DEFSH (VTYSH_RIPNGD, ripng_aggregate_address_cmd_vtysh,
2101 "aggregate-address X:X::X:X/M",
2102 "Set aggregate RIPng route announcement\n"
2103 "Aggregate network\n")
2104
2105DEFSH (VTYSH_BGPD, show_ip_bgp_flap_route_map_cmd_vtysh,
2106 "show ip bgp flap-statistics route-map WORD",
2107 "Show running system information\n"
2108 "IP information\n"
2109 "BGP information\n"
2110 "Display flap statistics of routes\n"
2111 "Display routes matching the route-map\n"
2112 "A route-map to match on\n")
2113
2114DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_cmd_vtysh,
2115 "show ipv6 ospf6 route",
2116 "Show running system information\n"
2117 "IPv6 Information\n"
2118 "Open Shortest Path First (OSPF) for IPv6\n"
2119 "Routing table\n"
2120 )
2121
2122DEFSH (VTYSH_OSPF6D, redistribute_ospf6_cmd_vtysh,
2123 "redistribute ospf6",
2124 "Redistribute control\n"
2125 "OSPF6 route\n")
2126
2127DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, match_ip_next_hop_prefix_list_cmd_vtysh,
2128 "match ip next-hop prefix-list WORD",
2129 "Match values from routing table\n"
2130 "IP information\n"
2131 "Match next-hop address of route\n"
2132 "Match entries of prefix-lists\n"
2133 "IP prefix-list name\n")
2134
2135DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_detail_name_cmd_vtysh,
2136 "show ipv6 prefix-list detail WORD",
2137 "Show running system information\n"
2138 "IPv6 information\n"
2139 "Build a prefix list\n"
2140 "Detail of prefix lists\n"
2141 "Name of a prefix list\n")
2142
2143DEFSH (VTYSH_BGPD, clear_bgp_peer_in_cmd_vtysh,
2144 "clear bgp (A.B.C.D|X:X::X:X) in",
2145 "Reset functions\n"
2146 "BGP information\n"
2147 "BGP neighbor address to clear\n"
2148 "BGP IPv6 neighbor to clear\n"
2149 "Soft reconfig inbound update\n")
2150
2151DEFSH (VTYSH_BGPD, neighbor_attr_unchanged4_cmd_vtysh,
2152 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med (as-path|next-hop)",
2153 "Specify neighbor router\n"
2154 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2155 "BGP attribute is propagated unchanged to this neighbor\n"
2156 "Med attribute\n"
2157 "As-path attribute\n"
2158 "Nexthop attribute\n")
2159
2160DEFSH (VTYSH_BGPD, neighbor_default_originate_rmap_cmd_vtysh,
2161 "neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate route-map WORD",
2162 "Specify neighbor router\n"
2163 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2164 "Originate default route to this neighbor\n"
2165 "Route-map to specify criteria to originate default\n"
2166 "route-map name\n")
2167
2168DEFSH (VTYSH_BGPD, clear_ip_bgp_all_in_cmd_vtysh,
2169 "clear ip bgp * in",
2170 "Reset functions\n"
2171 "IP information\n"
2172 "BGP information\n"
2173 "Clear all peers\n"
2174 "Soft reconfig inbound update\n")
2175
2176DEFSH (VTYSH_OSPF6D, interface_area_plist_passive_cmd_vtysh,
2177 "interface IFNAME area A.B.C.D prefix-list WORD passive",
2178 "Enable routing on an IPv6 interface\n"
2179 "Interface name(e.g. ep0)\n"
2180 "Set the OSPF6 area ID\n"
2181 "OSPF6 area ID in IPv4 address notation\n"
2182 "Advertise I/F Address only match entries of prefix-list\n"
2183 "IPv6 prefix-list name\n"
2184 "IPv6 prefix-list name\n"
2185 "Suppress routing updates on an interface\n"
2186 )
2187
2188DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, match_ip_address_prefix_list_cmd_vtysh,
2189 "match ip address prefix-list WORD",
2190 "Match values from routing table\n"
2191 "IP information\n"
2192 "Match address of route\n"
2193 "Match entries of prefix-lists\n"
2194 "IP prefix-list name\n")
2195
2196DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_summary_cmd_vtysh,
2197 "show ip prefix-list summary",
2198 "Show running system information\n"
2199 "IP information\n"
2200 "Build a prefix list\n"
2201 "Summary of prefix lists\n")
2202
2203DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_longer_cmd_vtysh,
2204 "show ip bgp A.B.C.D/M longer-prefixes",
2205 "Show running system information\n"
2206 "IP information\n"
2207 "BGP information\n"
2208 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
2209 "Display route and more specific routes\n")
2210
2211DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ip_access_list_cmd_vtysh,
2212 "show ip access-list",
2213 "Show running system information\n"
2214 "IP information\n"
2215 "List IP access lists\n")
2216
2217DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_match_metric_cmd_vtysh,
2218 "no match metric",
2219 "Negate a command or set its defaults\n"
2220 "Match values from routing table\n"
2221 "Match metric of route\n")
2222
2223DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged2_cmd_vtysh,
2224 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path (next-hop|med)",
2225 "Negate a command or set its defaults\n"
2226 "Specify neighbor router\n"
2227 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2228 "BGP attribute is propagated unchanged to this neighbor\n"
2229 "As-path attribute\n"
2230 "Nexthop attribute\n"
2231 "Med attribute\n")
2232
2233DEFSH (VTYSH_RIPD|VTYSH_BGPD, set_ip_nexthop_cmd_vtysh,
2234 "set ip next-hop A.B.C.D",
2235 "Set values in destination routing protocol\n"
2236 "IP information\n"
2237 "Next hop address\n"
2238 "IP address of next hop\n")
2239
2240DEFSH (VTYSH_BGPD, bgp_bestpath_med3_cmd_vtysh,
2241 "bgp bestpath med missing-as-worst confed",
2242 "BGP specific commands\n"
2243 "Change the default bestpath selection\n"
2244 "MED attribute\n"
2245 "Treat missing MED as the least preferred one\n"
2246 "Compare MED among confederation paths\n")
2247
2248DEFSH (VTYSH_BGPD, dump_bgp_updates_interval_cmd_vtysh,
2249 "dump bgp updates PATH INTERVAL",
2250 "Dump packet\n"
2251 "BGP packet dump\n"
2252 "Dump BGP updates only\n"
2253 "Output filename\n"
2254 "Interval of output\n")
2255
2256DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_address_mask_cmd_vtysh,
2257 "clear ip bgp dampening A.B.C.D A.B.C.D",
2258 "Reset functions\n"
2259 "IP information\n"
2260 "BGP information\n"
2261 "Clear route flap dampening information\n"
2262 "Network to clear damping information\n"
2263 "Network mask\n")
2264
2265DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_rmap_metric_cmd_vtysh,
2266 "no redistribute (connected|kernel|ospf|rip|static) route-map WORD metric <0-4294967295>",
2267 "Negate a command or set its defaults\n"
2268 "Redistribute information from another routing protocol\n"
2269 "Connected\n"
2270 "Kernel routes\n"
2271 "Open Shurtest Path First (OSPF)\n"
2272 "Routing Information Protocol (RIP)\n"
2273 "Static routes\n"
2274 "Route map reference\n"
2275 "Pointer to route-map entries\n"
2276 "Metric for redistributed routes\n"
2277 "Default metric\n")
2278
2279DEFSH (VTYSH_ZEBRA, linkdetect_cmd_vtysh,
2280 "link-detect",
2281 "Enable link detection on interface\n")
2282
paul718e3742002-12-13 20:15:29 +00002283DEFSH (VTYSH_BGPD, show_bgp_ipv6_community2_cmd_vtysh,
2284 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
2285 "Show running system information\n"
2286 "BGP information\n"
2287 "Address family\n"
2288 "Display routes matching the communities\n"
2289 "community number\n"
2290 "Do not send outside local AS (well-known community)\n"
2291 "Do not advertise to any peer (well-known community)\n"
2292 "Do not export to next AS (well-known community)\n"
2293 "community number\n"
2294 "Do not send outside local AS (well-known community)\n"
2295 "Do not advertise to any peer (well-known community)\n"
2296 "Do not export to next AS (well-known community)\n")
2297
paul569c0f02003-03-02 21:19:26 +00002298DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh,
2299 "show ip bgp vpnv4 all neighbors A.B.C.D advertised-routes",
2300 "Show running system information\n"
2301 "IP information\n"
2302 "BGP information\n"
2303 "Display VPNv4 NLRI specific information\n"
2304 "Display information about all VPNv4 NLRIs\n"
2305 "Detailed information on TCP and BGP neighbor connections\n"
2306 "Neighbor to display information about\n"
2307 "Display the routes advertised to a BGP neighbor\n")
2308
2309DEFSH (VTYSH_RIPD, no_match_ip_next_hop_val_cmd_vtysh,
2310 "no match ip next-hop WORD",
2311 "Negate a command or set its defaults\n"
2312 "Match values from routing table\n"
2313 "IP information\n"
2314 "Match next-hop address of route\n"
2315 "IP access-list name\n")
2316
2317DEFSH (VTYSH_BGPD, no_bgp_default_local_preference_cmd_vtysh,
2318 "no bgp default local-preference",
2319 "Negate a command or set its defaults\n"
2320 "BGP specific commands\n"
2321 "Configure BGP defaults\n"
2322 "local preference (higher=more preferred)\n")
2323
2324DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_cmd_vtysh,
2325 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*|HEX) (A.B.C.D|*|dump|detail)",
2326 "Show running system information\n"
2327 "IPv6 Information\n"
2328 "Open Shortest Path First (OSPF) for IPv6\n"
2329 "LSA Database\n"
2330 "Router-LSA\n"
2331 "Network-LSA\n"
2332 "AS-External-LSA\n"
2333 "Intra-Area-Prefix-LSA\n"
2334 "Inter-Area-Router-LSA\n"
2335 "Inter-Area-Prefix-LSA\n"
2336 "Link-LSA\n"
2337 "All LS Type\n"
2338 "Specify LS Type by Hex\n"
2339 "Link State ID\n"
2340 "All Link State ID\n"
2341 "Dump raw LSA data in Hex\n"
2342 "show detail of LSAs\n"
2343 )
2344
2345DEFSH (VTYSH_OSPFD, debug_ospf_zebra_sub_cmd_vtysh,
2346 "debug ospf zebra (interface|redistribute)",
2347 "Debugging functions (see also 'undebug')\n"
2348 "OSPF information\n"
2349 "OSPF Zebra information\n"
2350 "Zebra interface\n"
2351 "Zebra redistribute\n")
2352
2353DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_cmd_vtysh,
2354 "no ipv6 prefix-list WORD",
2355 "Negate a command or set its defaults\n"
2356 "IPv6 information\n"
2357 "Build a prefix list\n"
2358 "Name of a prefix list\n")
2359
2360DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_metric_rmap_cmd_vtysh,
2361 "redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295> route-map WORD",
2362 "Redistribute information from another routing protocol\n"
2363 "Connected\n"
2364 "Kernel routes\n"
2365 "Open Shurtest Path First (OSPFv3)\n"
2366 "Routing Information Protocol (RIPng)\n"
2367 "Static routes\n"
2368 "Metric for redistributed routes\n"
2369 "Default metric\n"
2370 "Route map reference\n"
2371 "Pointer to route-map entries\n")
2372
2373DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_tags_cmd_vtysh,
2374 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn tags",
2375 "Show running system information\n"
2376 "IP information\n"
2377 "BGP information\n"
2378 "Display VPNv4 NLRI specific information\n"
2379 "Display information for a route distinguisher\n"
2380 "VPN Route Distinguisher\n"
2381 "Display BGP tags for prefixes\n")
2382
2383DEFSH (VTYSH_RIPD, send_lifetime_month_day_month_day_cmd_vtysh,
2384 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
2385 "Set send lifetime of the key\n"
2386 "Time to start\n"
2387 "Month of the year to start\n"
2388 "Day of th month to start\n"
2389 "Year to start\n"
2390 "Time to expire\n"
2391 "Month of the year to expire\n"
2392 "Day of th month to expire\n"
2393 "Year to expire\n")
2394
2395DEFSH (VTYSH_BGPD, show_bgp_neighbors_cmd_vtysh,
2396 "show bgp neighbors",
2397 "Show running system information\n"
2398 "BGP information\n"
2399 "Detailed information on TCP and BGP neighbor connections\n")
2400
2401DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_backdoor_cmd_vtysh,
2402 "no network A.B.C.D backdoor",
2403 "Negate a command or set its defaults\n"
2404 "Specify a network to announce via BGP\n"
2405 "Network number\n"
2406 "Specify a BGP backdoor route\n")
2407
2408DEFSH (VTYSH_OSPF6D, ospf6_routemap_set_forwarding_cmd_vtysh,
2409 "set forwarding-address X:X::X:X",
2410 "Set value\n"
2411 "Forwarding Address\n"
2412 "IPv6 Address\n")
2413
2414DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_list_cmd_vtysh,
2415 "show ipv6 bgp community-list WORD",
2416 "Show running system information\n"
2417 "IPv6 information\n"
2418 "BGP information\n"
2419 "Display routes matching the community-list\n"
2420 "community-list name\n")
2421
2422DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_any_cmd_vtysh,
2423 "access-list (<100-199>|<2000-2699>) (deny|permit) ip any any",
2424 "Add an access list entry\n"
2425 "IP extended access list\n"
2426 "IP extended access list (expanded range)\n"
2427 "Specify packets to reject\n"
2428 "Specify packets to forward\n"
2429 "Any Internet Protocol\n"
2430 "Any source host\n"
2431 "Any destination host\n")
2432
2433DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_out_cmd_vtysh,
2434 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft out",
2435 "Reset functions\n"
2436 "IP information\n"
2437 "BGP information\n"
2438 "Clear peers with the AS number\n"
2439 "Address family\n"
2440 "Address Family modifier\n"
2441 "Address Family modifier\n"
2442 "Soft reconfig\n"
2443 "Soft reconfig outbound update\n")
2444
2445DEFSH (VTYSH_OSPFD, no_area_authentication_cmd_vtysh,
2446 "no area (A.B.C.D|<0-4294967295>) authentication",
2447 "Negate a command or set its defaults\n"
2448 "OSPF area parameters\n"
2449 "OSPF area ID in IP address format\n"
2450 "OSPF area ID as a decimal value\n"
2451 "Enable authentication\n")
2452
2453DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_val_cmd_vtysh,
2454 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295>",
2455 "Negate a command or set its defaults\n"
2456 "Specify neighbor router\n"
2457 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2458 "Maximum number of prefix accept from this peer\n"
2459 "maximum no. of prefix limit\n")
2460
2461DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_in_prefix_filter_cmd_vtysh,
2462 "clear bgp ipv6 peer-group WORD in prefix-filter",
2463 "Reset functions\n"
2464 "BGP information\n"
2465 "Address family\n"
2466 "Clear all members of peer-group\n"
2467 "BGP peer-group name\n"
2468 "Soft reconfig inbound update\n"
2469 "Push out prefix-list ORF and do inbound soft reconfig\n")
2470
2471DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_description_arg_cmd_vtysh,
2472 "no ipv6 prefix-list WORD description .LINE",
2473 "Negate a command or set its defaults\n"
2474 "IPv6 information\n"
2475 "Build a prefix list\n"
2476 "Name of a prefix list\n"
2477 "Prefix-list specific description\n"
2478 "Up to 80 characters describing this prefix-list\n")
2479
2480DEFSH (VTYSH_OSPFD, neighbor_poll_interval_priority_cmd_vtysh,
2481 "neighbor A.B.C.D poll-interval <1-65535> priority <0-255>",
2482 "Specify neighbor router\n"
2483 "Neighbor address\n"
2484 "OSPF dead-router polling interval\n"
2485 "Seconds\n"
2486 "OSPF priority of non-broadcast neighbor\n"
2487 "Priority\n")
2488
2489DEFSH (VTYSH_BGPD, no_bgp_network_mask_backdoor_cmd_vtysh,
2490 "no network A.B.C.D mask A.B.C.D backdoor",
2491 "Negate a command or set its defaults\n"
2492 "Specify a network to announce via BGP\n"
2493 "Network number\n"
2494 "Network mask\n"
2495 "Network mask\n"
2496 "Specify a BGP backdoor route\n")
2497
2498DEFSH (VTYSH_RIPNGD, no_default_information_originate_cmd_vtysh,
2499 "no default-information originate",
2500 "Negate a command or set its defaults\n"
2501 "Default route information\n"
2502 "Distribute default route\n")
2503
2504DEFSH (VTYSH_BGPD, no_neighbor_send_community_type_cmd_vtysh,
2505 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community (both|extended|standard)",
2506 "Negate a command or set its defaults\n"
2507 "Specify neighbor router\n"
2508 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2509 "Send Community attribute to this neighbor\n"
2510 "Send Standard and Extended Community attributes\n"
2511 "Send Extended Community attributes\n"
2512 "Send Standard Community attributes\n")
2513
2514DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_expanded_cmd_vtysh,
2515 "no ip extcommunity-list expanded WORD (deny|permit) .LINE",
2516 "Negate a command or set its defaults\n"
2517 "IP information\n"
2518 "Add a extended community list entry\n"
2519 "Specify expanded extcommunity-list\n"
2520 "Community list name\n"
2521 "Specify community to reject\n"
2522 "Specify community to accept\n"
2523 "An ordered list as a regular-expression\n")
2524
2525DEFSH (VTYSH_BGPD, no_bgp_bestpath_aspath_ignore_cmd_vtysh,
2526 "no bgp bestpath as-path ignore",
2527 "Negate a command or set its defaults\n"
2528 "BGP specific commands\n"
2529 "Change the default bestpath selection\n"
2530 "AS-path attribute\n"
2531 "Ignore as-path length in selecting a route\n")
2532
2533DEFSH (VTYSH_ZEBRA, show_ip_route_prefix_cmd_vtysh,
2534 "show ip route A.B.C.D/M",
2535 "Show running system information\n"
2536 "IP information\n"
2537 "IP routing table\n"
2538 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
2539
2540DEFSH (VTYSH_OSPFD, mpls_te_on_cmd_vtysh,
2541 "mpls-te on",
2542 "Configure MPLS-TE parameters\n"
2543 "Enable the MPLS-TE functionality\n")
2544
2545DEFSH (VTYSH_BGPD, undebug_bgp_update_cmd_vtysh,
2546 "undebug bgp updates",
2547 "Disable debugging functions (see also 'debug')\n"
2548 "BGP information\n"
2549 "BGP updates\n")
2550
2551DEFSH (VTYSH_BGPD, no_set_vpnv4_nexthop_val_cmd_vtysh,
2552 "no set vpnv4 next-hop A.B.C.D",
paul718e3742002-12-13 20:15:29 +00002553 "Negate a command or set its defaults\n"
2554 "Set values in destination routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00002555 "VPNv4 information\n"
2556 "VPNv4 next-hop address\n"
2557 "IP address of next hop\n")
paul718e3742002-12-13 20:15:29 +00002558
paul569c0f02003-03-02 21:19:26 +00002559DEFSH (VTYSH_OSPFD, no_ospf_rfc1583_flag_cmd_vtysh,
2560 "no ospf rfc1583compatibility",
2561 "Negate a command or set its defaults\n"
2562 "OSPF specific commands\n"
2563 "Disable the RFC1583Compatibility flag\n")
2564
2565DEFSH (VTYSH_BGPD, show_ip_community_list_cmd_vtysh,
2566 "show ip community-list",
2567 "Show running system information\n"
2568 "IP information\n"
2569 "List community-list\n")
2570
2571DEFSH (VTYSH_BGPD, set_weight_cmd_vtysh,
2572 "set weight <0-4294967295>",
2573 "Set values in destination routing protocol\n"
2574 "BGP weight for routing table\n"
2575 "Weight value\n")
2576
2577DEFSH (VTYSH_OSPFD, ip_ospf_transmit_delay_addr_cmd_vtysh,
2578 "ip ospf transmit-delay <1-65535> A.B.C.D",
2579 "IP Information\n"
2580 "OSPF interface commands\n"
2581 "Link state transmit delay\n"
2582 "Seconds\n"
2583 "Address of interface")
2584
2585DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighborlist_cmd_vtysh,
2586 "show ipv6 ospf6 (summary-list|request-list|retrans-list|dbdesc-list)",
2587 "Show running system information\n"
2588 "IPv6 Information\n"
2589 "Open Shortest Path First (OSPF) for IPv6\n"
2590 "Link State summary list\n"
2591 "Link State request list\n"
2592 "Link State retransmission list\n"
2593 "Link State Description list (Used to retrans DbDesc)\n"
2594 )
2595
2596DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_rmap_cmd_vtysh,
2597 "no redistribute (connected|kernel|ospf|rip|static) route-map WORD",
2598 "Negate a command or set its defaults\n"
2599 "Redistribute information from another routing protocol\n"
2600 "Connected\n"
2601 "Kernel routes\n"
2602 "Open Shurtest Path First (OSPF)\n"
2603 "Routing Information Protocol (RIP)\n"
2604 "Static routes\n"
2605 "Route map reference\n"
2606 "Pointer to route-map entries\n")
2607
2608DEFSH (VTYSH_OSPFD, no_area_vlink_md5_cmd_vtysh,
2609 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
2610 "(message-digest-key|) <1-255>",
2611 "Negate a command or set its defaults\n"
2612 "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"
2613 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
2614
2615DEFSH (VTYSH_BGPD, neighbor_version_cmd_vtysh,
2616 "neighbor (A.B.C.D|X:X::X:X) " "version (4|4-)",
2617 "Specify neighbor router\n"
2618 "Neighbor address\nIPv6 address\n"
2619 "Neighbor's BGP version\n"
2620 "Border Gateway Protocol 4\n"
2621 "Multiprotocol Extensions for BGP-4(Old Draft)\n")
2622
2623DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_cmd_vtysh,
2624 "default-information originate always metric-type (1|2)",
2625 "Control distribution of default information\n"
2626 "Distribute a default route\n"
2627 "Always advertise default route\n"
2628 "OSPF metric type for default routes\n"
2629 "Set OSPF External Type 1 metrics\n"
2630 "Set OSPF External Type 2 metrics\n")
2631
2632DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_in_prefix_filter_cmd_vtysh,
2633 "clear bgp ipv6 external in prefix-filter",
2634 "Reset functions\n"
2635 "BGP information\n"
2636 "Address family\n"
2637 "Clear all external peers\n"
2638 "Soft reconfig inbound update\n"
2639 "Push out prefix-list ORF and do inbound soft reconfig\n")
2640
2641DEFSH (VTYSH_BGPD, neighbor_transparent_nexthop_cmd_vtysh,
2642 "neighbor (A.B.C.D|X:X::X:X) " "transparent-nexthop",
2643 "Specify neighbor router\n"
2644 "Neighbor address\nIPv6 address\n"
2645 "Do not change nexthop even peer is EBGP peer\n")
2646
2647DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_send_recv_cmd_vtysh,
2648 "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)",
2649 "Negate a command or set its defaults\n"
2650 "Debugging functions\n"
2651 "OSPF information\n"
2652 "OSPF packets\n"
2653 "OSPF Hello\n"
2654 "OSPF Database Description\n"
2655 "OSPF Link State Request\n"
2656 "OSPF Link State Update\n"
2657 "OSPF Link State Acknowledgment\n"
2658 "OSPF all packets\n"
2659 "Packet sent\n"
2660 "Packet received\n"
2661 "Detail Information\n")
2662
2663DEFSH (VTYSH_BGPD, undebug_bgp_filter_cmd_vtysh,
2664 "undebug bgp filters",
2665 "Disable debugging functions (see also 'debug')\n"
2666 "BGP information\n"
2667 "BGP filters\n")
2668
2669DEFSH (VTYSH_RIPD, accept_lifetime_duration_month_day_cmd_vtysh,
2670 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> duration <1-2147483646>",
2671 "Set accept lifetime of the key\n"
2672 "Time to start\n"
2673 "Month of the year to start\n"
2674 "Day of th month to start\n"
2675 "Year to start\n"
2676 "Duration of the key\n"
2677 "Duration seconds\n")
2678
2679DEFSH (VTYSH_OSPFD, no_ospf_router_id_cmd_vtysh,
2680 "no ospf router-id",
2681 "Negate a command or set its defaults\n"
2682 "OSPF specific commands\n"
2683 "router-id for the OSPF process\n")
2684
2685DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_exact_cmd_vtysh,
2686 "no access-list WORD (deny|permit) A.B.C.D/M exact-match",
2687 "Negate a command or set its defaults\n"
2688 "Add an access list entry\n"
2689 "IP zebra access-list name\n"
2690 "Specify packets to reject\n"
2691 "Specify packets to forward\n"
2692 "Prefix to match. e.g. 10.0.0.0/8\n"
2693 "Exact match of the prefixes\n")
2694
2695DEFSH (VTYSH_ZEBRA, debug_zebra_kernel_cmd_vtysh,
2696 "debug zebra kernel",
2697 "Debugging functions (see also 'undebug')\n"
2698 "Zebra configuration\n"
2699 "Debug option set for zebra between kernel interface\n")
2700
2701DEFSH (VTYSH_OSPFD, show_ip_ospf_cmd_vtysh,
2702 "show ip ospf",
2703 "Show running system information\n"
2704 "IP information\n"
2705 "OSPF information\n")
2706
2707DEFSH (VTYSH_BGPD, neighbor_unsuppress_map_cmd_vtysh,
2708 "neighbor (A.B.C.D|X:X::X:X|WORD) " "unsuppress-map WORD",
2709 "Specify neighbor router\n"
2710 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2711 "Route-map to selectively unsuppress suppressed routes\n"
2712 "Name of route map\n")
2713
2714DEFSH (VTYSH_OSPFD, ospf_retransmit_interval_cmd_vtysh,
2715 "ospf retransmit-interval <3-65535>",
2716 "OSPF interface commands\n"
2717 "Time between retransmitting lost link state advertisements\n"
2718 "Seconds\n")
2719
2720DEFSH (VTYSH_RIPD, no_rip_default_information_originate_cmd_vtysh,
2721 "no default-information originate",
2722 "Negate a command or set its defaults\n"
2723 "Control distribution of default route\n"
2724 "Distribute a default route\n")
2725
2726DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_cmd_vtysh,
2727 "no redistribute static",
2728 "Negate a command or set its defaults\n"
2729 "Redistribute information from another routing protocol\n"
2730 "Static routes\n")
2731
2732DEFSH (VTYSH_BGPD, no_dump_bgp_all_cmd_vtysh,
2733 "no dump bgp all [PATH] [INTERVAL]",
2734 "Negate a command or set its defaults\n"
2735 "Dump packet\n"
2736 "BGP packet dump\n"
2737 "Dump all BGP packets\n")
2738
2739DEFSH (VTYSH_BGPD, neighbor_advertise_interval_cmd_vtysh,
2740 "neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval <0-600>",
2741 "Specify neighbor router\n"
2742 "Neighbor address\nIPv6 address\n"
2743 "Minimum interval between sending BGP routing updates\n"
2744 "time in seconds\n")
2745
2746DEFSH (VTYSH_OSPFD, show_ip_ospf_interface_cmd_vtysh,
2747 "show ip ospf interface [INTERFACE]",
2748 "Show running system information\n"
2749 "IP information\n"
2750 "OSPF information\n"
2751 "Interface information\n"
2752 "Interface name\n")
2753
2754DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_cmd_vtysh,
2755 "access-list WORD (deny|permit) A.B.C.D/M",
2756 "Add an access list entry\n"
2757 "IP zebra access-list name\n"
2758 "Specify packets to reject\n"
2759 "Specify packets to forward\n"
2760 "Prefix to match. e.g. 10.0.0.0/8\n")
2761
2762DEFSH (VTYSH_RIPD, rip_distance_cmd_vtysh,
2763 "distance <1-255>",
2764 "Administrative distance\n"
2765 "Distance value\n")
2766
2767DEFSH (VTYSH_BGPD, clear_ip_bgp_all_in_prefix_filter_cmd_vtysh,
2768 "clear ip bgp * in prefix-filter",
paul718e3742002-12-13 20:15:29 +00002769 "Reset functions\n"
2770 "IP information\n"
2771 "BGP information\n"
2772 "Clear all peers\n"
paul569c0f02003-03-02 21:19:26 +00002773 "Soft reconfig inbound update\n"
2774 "Push out prefix-list ORF and do inbound soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00002775
paul569c0f02003-03-02 21:19:26 +00002776DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_detail_cmd_vtysh,
2777 "show ipv6 prefix-list detail",
2778 "Show running system information\n"
2779 "IPv6 information\n"
2780 "Build a prefix list\n"
2781 "Detail of prefix lists\n")
paul718e3742002-12-13 20:15:29 +00002782
paul569c0f02003-03-02 21:19:26 +00002783DEFSH (VTYSH_BGPD, neighbor_dont_capability_negotiate_cmd_vtysh,
2784 "neighbor (A.B.C.D|X:X::X:X|WORD) " "dont-capability-negotiate",
paul718e3742002-12-13 20:15:29 +00002785 "Specify neighbor router\n"
2786 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
paul569c0f02003-03-02 21:19:26 +00002787 "Do not perform capability negotiation\n")
paul718e3742002-12-13 20:15:29 +00002788
paul569c0f02003-03-02 21:19:26 +00002789DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_cmd_vtysh,
2790 "no ip prefix-list WORD",
2791 "Negate a command or set its defaults\n"
2792 "IP information\n"
2793 "Build a prefix list\n"
2794 "Name of a prefix list\n")
2795
2796DEFSH (VTYSH_BGPD, no_bgp_default_ipv4_unicast_cmd_vtysh,
2797 "no bgp default ipv4-unicast",
2798 "Negate a command or set its defaults\n"
2799 "BGP specific commands\n"
2800 "Configure BGP defaults\n"
2801 "Activate ipv4-unicast for a peer by default\n")
2802
2803DEFSH (VTYSH_BGPD, show_bgp_ipv6_route_cmd_vtysh,
2804 "show bgp ipv6 X:X::X:X",
paul718e3742002-12-13 20:15:29 +00002805 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00002806 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00002807 "Address family\n"
2808 "Network in the BGP routing table to display\n")
paul718e3742002-12-13 20:15:29 +00002809
paul569c0f02003-03-02 21:19:26 +00002810DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_expanded_cmd_vtysh,
2811 "no ip extcommunity-list <100-199> (deny|permit) .LINE",
paul718e3742002-12-13 20:15:29 +00002812 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00002813 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00002814 "Add a extended community list entry\n"
2815 "Extended Community list number (expanded)\n"
2816 "Specify community to reject\n"
2817 "Specify community to accept\n"
2818 "An ordered list as a regular-expression\n")
paul718e3742002-12-13 20:15:29 +00002819
paul569c0f02003-03-02 21:19:26 +00002820DEFSH (VTYSH_RIPD, accept_lifetime_month_day_month_day_cmd_vtysh,
2821 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>",
2822 "Set accept lifetime of the key\n"
2823 "Time to start\n"
2824 "Month of the year to start\n"
2825 "Day of th month to start\n"
2826 "Year to start\n"
2827 "Time to expire\n"
2828 "Month of the year to expire\n"
2829 "Day of th month to expire\n"
2830 "Year to expire\n")
2831
2832DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_ge_cmd_vtysh,
2833 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128>",
paul718e3742002-12-13 20:15:29 +00002834 "IPv6 information\n"
2835 "Build a prefix list\n"
2836 "Name of a prefix list\n"
paul569c0f02003-03-02 21:19:26 +00002837 "sequence number of an entry\n"
2838 "Sequence number\n"
paul718e3742002-12-13 20:15:29 +00002839 "Specify packets to reject\n"
2840 "Specify packets to forward\n"
2841 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
2842 "Minimum prefix length to be matched\n"
paul569c0f02003-03-02 21:19:26 +00002843 "Minimum prefix length\n")
paul718e3742002-12-13 20:15:29 +00002844
2845DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_list_exact_cmd_vtysh,
2846 "show ipv6 mbgp community-list WORD exact-match",
2847 "Show running system information\n"
2848 "IPv6 information\n"
2849 "MBGP information\n"
2850 "Display routes matching the community-list\n"
2851 "community-list name\n"
2852 "Exact match of the communities\n")
2853
paul569c0f02003-03-02 21:19:26 +00002854DEFSH (VTYSH_OSPFD, no_ospf_default_information_originate_cmd_vtysh,
2855 "no default-information originate",
2856 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00002857 "Control distribution of default information\n"
paul569c0f02003-03-02 21:19:26 +00002858 "Distribute a default route\n")
paul718e3742002-12-13 20:15:29 +00002859
paul569c0f02003-03-02 21:19:26 +00002860DEFSH (VTYSH_BGPD, match_ipv6_address_cmd_vtysh,
2861 "match ipv6 address WORD",
2862 "Match values from routing table\n"
2863 "IPv6 information\n"
2864 "Match IPv6 address of route\n"
2865 "IPv6 access-list name\n")
2866
2867DEFSH (VTYSH_BGPD, no_neighbor_activate_cmd_vtysh,
2868 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "activate",
2869 "Negate a command or set its defaults\n"
2870 "Specify neighbor router\n"
2871 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2872 "Enable the Address Family for this Neighbor\n")
2873
2874DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_nomask_cmd_vtysh,
2875 "access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D",
2876 "Add an access list entry\n"
2877 "IP standard access list\n"
2878 "IP standard access list (expanded range)\n"
2879 "Specify packets to reject\n"
2880 "Specify packets to forward\n"
2881 "Address to match\n")
2882
2883DEFSH (VTYSH_OSPFD, show_ip_ospf_border_routers_cmd_vtysh,
2884 "show ip ospf border-routers",
2885 "Show running system information\n"
2886 "IP information\n"
2887 "show all the ABR's and ASBR's\n"
2888 "for this area\n")
2889
2890DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_in_cmd_vtysh,
2891 "clear bgp ipv6 <1-65535> in",
paul718e3742002-12-13 20:15:29 +00002892 "Reset functions\n"
2893 "BGP information\n"
2894 "Address family\n"
paul569c0f02003-03-02 21:19:26 +00002895 "Clear peers with the AS number\n"
2896 "Soft reconfig inbound update\n")
paul718e3742002-12-13 20:15:29 +00002897
paul569c0f02003-03-02 21:19:26 +00002898DEFSH (VTYSH_RIPD, no_rip_timers_cmd_vtysh,
2899 "no timers basic",
paul718e3742002-12-13 20:15:29 +00002900 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00002901 "Adjust routing timers\n"
2902 "Basic routing protocol update timers\n")
paul718e3742002-12-13 20:15:29 +00002903
paul569c0f02003-03-02 21:19:26 +00002904DEFSH (VTYSH_BGPD, no_set_community_cmd_vtysh,
2905 "no set community",
2906 "Negate a command or set its defaults\n"
2907 "Set values in destination routing protocol\n"
2908 "BGP community attribute\n")
2909
2910DEFSH (VTYSH_OSPFD, ospf_distance_cmd_vtysh,
2911 "distance <1-255>",
2912 "Define an administrative distance\n"
2913 "OSPF Administrative distance\n")
2914
2915DEFSH (VTYSH_BGPD, no_ipv6_bgp_network_cmd_vtysh,
2916 "no network X:X::X:X/M",
2917 "Negate a command or set its defaults\n"
2918 "Specify a network to announce via BGP\n"
2919 "IPv6 prefix <network>/<length>\n")
2920
2921DEFSH (VTYSH_BGPD, no_neighbor_passive_cmd_vtysh,
2922 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "passive",
2923 "Negate a command or set its defaults\n"
2924 "Specify neighbor router\n"
2925 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
2926 "Don't send open messages to this neighbor\n")
2927
2928DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_out_cmd_vtysh,
2929 "clear ip bgp A.B.C.D vpnv4 unicast out",
2930 "Reset functions\n"
2931 "IP information\n"
paul718e3742002-12-13 20:15:29 +00002932 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00002933 "BGP neighbor address to clear\n"
2934 "Address family\n"
2935 "Address Family Modifier\n"
2936 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00002937
paul569c0f02003-03-02 21:19:26 +00002938DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_remark_cmd_vtysh,
2939 "access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark .LINE",
2940 "Add an access list entry\n"
2941 "IP standard access list\n"
2942 "IP extended access list\n"
2943 "IP standard access list (expanded range)\n"
2944 "IP extended access list (expanded range)\n"
2945 "IP zebra access-list\n"
2946 "Access list entry comment\n"
2947 "Comment up to 100 characters\n")
paul718e3742002-12-13 20:15:29 +00002948
paul569c0f02003-03-02 21:19:26 +00002949DEFSH (VTYSH_RIPNGD, show_ipv6_ripng_cmd_vtysh,
2950 "show ipv6 ripng",
paul718e3742002-12-13 20:15:29 +00002951 "Show running system information\n"
2952 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00002953 "Show RIPng routes\n")
2954
2955DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_out_cmd_vtysh,
2956 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft out",
2957 "Reset functions\n"
2958 "BGP information\n"
2959 "Address family\n"
2960 "BGP neighbor address to clear\n"
2961 "BGP IPv6 neighbor to clear\n"
2962 "Soft reconfig\n"
2963 "Soft reconfig outbound update\n")
2964
2965DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh,
2966 "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*|HEX) (A.B.C.D|*) (A.B.C.D|*) (dump|detail|)",
2967 "Show running system information\n"
2968 "IPv6 Information\n"
2969 "Open Shortest Path First (OSPF) for IPv6\n"
2970 "LSA Database\n"
2971 "Router-LSA\n"
2972 "Network-LSA\n"
2973 "AS-External-LSA\n"
2974 "Intra-Area-Prefix-LSA\n"
2975 "Inter-Area-Router-LSA\n"
2976 "Inter-Area-Prefix-LSA\n"
2977 "Link-LSA\n"
2978 "All LS Type\n"
2979 "Specify LS Type by Hex\n"
2980 "Link State ID\n"
2981 "All Link State ID\n"
2982 "Advertising Router\n"
2983 "All Advertising Router\n"
2984 "Dump raw LSA data in Hex\n"
2985 "show detail of LSAs\n"
2986 )
2987
2988DEFSH (VTYSH_OSPFD, no_set_metric_type_cmd_vtysh,
2989 "no set metric-type",
2990 "Negate a command or set its defaults\n"
2991 "Set values in destination routing protocol\n"
2992 "Type of metric for destination routing protocol\n")
2993
2994DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_cmd_vtysh,
2995 "no redistribute (connected|kernel|ospf|rip|static)",
2996 "Negate a command or set its defaults\n"
2997 "Redistribute information from another routing protocol\n"
2998 "Connected\n"
2999 "Kernel routes\n"
3000 "Open Shurtest Path First (OSPF)\n"
3001 "Routing Information Protocol (RIP)\n"
3002 "Static routes\n")
3003
3004DEFSH (VTYSH_BGPD, no_match_ipv6_next_hop_cmd_vtysh,
3005 "no match ipv6 next-hop X:X::X:X",
3006 "Negate a command or set its defaults\n"
3007 "Match values from routing table\n"
3008 "IPv6 information\n"
3009 "Match IPv6 next-hop address of route\n"
3010 "IPv6 address of next hop\n")
3011
3012DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_set_ip_nexthop_val_cmd_vtysh,
3013 "no set ip next-hop A.B.C.D",
3014 "Negate a command or set its defaults\n"
3015 "Set values in destination routing protocol\n"
3016 "IP information\n"
3017 "Next hop address\n"
3018 "IP address of next hop\n")
3019
3020DEFSH (VTYSH_OSPF6D, show_debug_ospf6_cmd_vtysh,
3021 "show debugging ospf6",
3022 "Show running system information\n"
3023 "Debugging functions (see also 'undebug')\n"
3024 "Open Shortest Path First (OSPF) for IPv6\n")
3025
3026DEFSH (VTYSH_BGPD, no_ip_community_list_standard_cmd_vtysh,
3027 "no ip community-list <1-99> (deny|permit) .AA:NN",
3028 "Negate a command or set its defaults\n"
3029 "IP information\n"
3030 "Add a community list entry\n"
3031 "Community list number (standard)\n"
3032 "Specify community to reject\n"
3033 "Specify community to accept\n"
3034 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
3035
3036DEFSH (VTYSH_RIPD, send_lifetime_duration_month_day_cmd_vtysh,
3037 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> duration <1-2147483646>",
3038 "Set send lifetime of the key\n"
3039 "Time to start\n"
3040 "Month of the year to start\n"
3041 "Day of th month to start\n"
3042 "Year to start\n"
3043 "Duration of the key\n"
3044 "Duration seconds\n")
3045
3046DEFSH (VTYSH_BGPD, show_ipv6_bgp_community4_cmd_vtysh,
3047 "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)",
3048 "Show running system information\n"
3049 "IPv6 information\n"
paul718e3742002-12-13 20:15:29 +00003050 "BGP information\n"
3051 "Display routes matching the communities\n"
3052 "community number\n"
3053 "Do not send outside local AS (well-known community)\n"
3054 "Do not advertise to any peer (well-known community)\n"
3055 "Do not export to next AS (well-known community)\n"
3056 "community number\n"
3057 "Do not send outside local AS (well-known community)\n"
3058 "Do not advertise to any peer (well-known community)\n"
3059 "Do not export to next AS (well-known community)\n"
3060 "community number\n"
3061 "Do not send outside local AS (well-known community)\n"
3062 "Do not advertise to any peer (well-known community)\n"
3063 "Do not export to next AS (well-known community)\n"
3064 "community number\n"
3065 "Do not send outside local AS (well-known community)\n"
3066 "Do not advertise to any peer (well-known community)\n"
3067 "Do not export to next AS (well-known community)\n")
3068
paul569c0f02003-03-02 21:19:26 +00003069DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_longer_cmd_vtysh,
3070 "show ip prefix-list WORD A.B.C.D/M longer",
3071 "Show running system information\n"
3072 "IP information\n"
3073 "Build a prefix list\n"
3074 "Name of a prefix list\n"
3075 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3076 "Lookup longer prefix\n")
3077
3078DEFSH (VTYSH_BGPD, bgp_network_mask_cmd_vtysh,
3079 "network A.B.C.D mask A.B.C.D",
3080 "Specify a network to announce via BGP\n"
3081 "Network number\n"
3082 "Network mask\n"
3083 "Network mask\n")
3084
3085DEFSH (VTYSH_OSPFD, no_ip_ospf_cost_cmd_vtysh,
3086 "no ip ospf cost",
paul718e3742002-12-13 20:15:29 +00003087 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00003088 "IP Information\n"
3089 "OSPF interface commands\n"
3090 "Interface cost\n")
3091
3092DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_detail_name_cmd_vtysh,
3093 "show ip prefix-list detail WORD",
3094 "Show running system information\n"
3095 "IP information\n"
3096 "Build a prefix list\n"
3097 "Detail of prefix lists\n"
3098 "Name of a prefix list\n")
3099
3100DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_detail_all_cmd_vtysh,
3101 "show ip ospf neighbor detail all",
3102 "Show running system information\n"
3103 "IP information\n"
3104 "OSPF information\n"
3105 "Neighbor list\n"
3106 "detail of all neighbors\n"
3107 "include down status neighbor\n")
3108
3109DEFSH (VTYSH_OSPFD, debug_ospf_packet_send_recv_detail_cmd_vtysh,
3110 "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)",
3111 "Debugging functions\n"
3112 "OSPF information\n"
3113 "OSPF packets\n"
3114 "OSPF Hello\n"
3115 "OSPF Database Description\n"
3116 "OSPF Link State Request\n"
3117 "OSPF Link State Update\n"
3118 "OSPF Link State Acknowledgment\n"
3119 "OSPF all packets\n"
3120 "Packet sent\n"
3121 "Packet received\n"
3122 "Detail Information\n")
3123
3124DEFSH (VTYSH_BGPD, bgp_network_backdoor_cmd_vtysh,
3125 "network A.B.C.D/M backdoor",
3126 "Specify a network to announce via BGP\n"
3127 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3128 "Specify a BGP backdoor route\n")
3129
3130DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_metric_cmd_vtysh,
3131 "no redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295>",
3132 "Negate a command or set its defaults\n"
3133 "Redistribute information from another routing protocol\n"
3134 "Connected\n"
3135 "Kernel routes\n"
3136 "Open Shurtest Path First (OSPFv3)\n"
3137 "Routing Information Protocol (RIPng)\n"
3138 "Static routes\n"
3139 "Metric for redistributed routes\n"
3140 "Default metric\n")
3141
3142DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_cmd_vtysh,
3143 "clear ip bgp view WORD *",
3144 "Reset functions\n"
3145 "IP information\n"
3146 "BGP information\n"
3147 "BGP view\n"
3148 "view name\n"
3149 "Clear all peers\n")
3150
3151DEFSH (VTYSH_BGPD, no_match_ecommunity_val_cmd_vtysh,
3152 "no match extcommunity (<1-99>|<100-199>|WORD)",
3153 "Negate a command or set its defaults\n"
3154 "Match values from routing table\n"
3155 "Match BGP/VPN extended community list\n"
3156 "Extended community-list number (standard)\n"
3157 "Extended community-list number (expanded)\n"
3158 "Extended community-list name\n")
3159
3160DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_local_cmd_vtysh,
3161 "no set ipv6 next-hop local",
3162 "Negate a command or set its defaults\n"
3163 "Set values in destination routing protocol\n"
3164 "IPv6 information\n"
3165 "IPv6 next-hop address\n"
3166 "IPv6 local address\n")
3167
3168DEFSH (VTYSH_OSPFD, show_ip_ospf_route_cmd_vtysh,
3169 "show ip ospf route",
3170 "Show running system information\n"
3171 "IP information\n"
3172 "OSPF information\n"
3173 "OSPF routing table\n")
3174
3175DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_longer_cmd_vtysh,
3176 "show ip bgp flap-statistics A.B.C.D/M longer-prefixes",
3177 "Show running system information\n"
3178 "IP information\n"
3179 "BGP information\n"
3180 "Display flap statistics of routes\n"
3181 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3182 "Display route and more specific routes\n")
3183
3184DEFSH (VTYSH_BGPD, no_set_weight_cmd_vtysh,
3185 "no set weight",
3186 "Negate a command or set its defaults\n"
3187 "Set values in destination routing protocol\n"
3188 "BGP weight for routing table\n")
3189
3190DEFSH (VTYSH_BGPD, neighbor_distribute_list_cmd_vtysh,
3191 "neighbor (A.B.C.D|X:X::X:X|WORD) " "distribute-list (<1-199>|<1300-2699>|WORD) (in|out)",
3192 "Specify neighbor router\n"
3193 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3194 "Filter updates to/from this neighbor\n"
3195 "IP access-list number\n"
3196 "IP access-list number (expanded range)\n"
3197 "IP Access-list name\n"
3198 "Filter incoming updates\n"
3199 "Filter outgoing updates\n")
3200
3201DEFSH (VTYSH_BGPD, no_match_community_cmd_vtysh,
3202 "no match community",
3203 "Negate a command or set its defaults\n"
3204 "Match values from routing table\n"
3205 "Match BGP community list\n")
3206
3207DEFSH (VTYSH_BGPD, no_set_aggregator_as_cmd_vtysh,
3208 "no set aggregator as",
3209 "Negate a command or set its defaults\n"
3210 "Set values in destination routing protocol\n"
3211 "BGP aggregator attribute\n"
3212 "AS number of aggregator\n")
3213
3214DEFSH (VTYSH_BGPD, bgp_damp_set2_cmd_vtysh,
3215 "bgp dampening <1-45>",
3216 "BGP Specific commands\n"
3217 "Enable route-flap dampening\n"
3218 "Half-life time for the penalty\n")
3219
3220DEFSH (VTYSH_OSPF6D, debug_ospf6_all_cmd_vtysh,
3221 "debug ospf6 all",
3222 "Debugging functions (see also 'undebug')\n"
3223 "Open Shortest Path First (OSPF) for IPv6\n"
3224 "Turn on ALL OSPFv3 debugging\n")
3225
3226DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_received_routes_cmd_vtysh,
3227 "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) received-routes",
3228 "Show running system information\n"
3229 "IPv6 information\n"
3230 "MBGP information\n"
3231 "Detailed information on TCP and BGP neighbor connections\n"
3232 "Neighbor to display information about\n"
3233 "Neighbor to display information about\n"
3234 "Display the received routes from neighbor\n")
3235
3236DEFSH (VTYSH_BGPD, show_ip_bgp_flap_statistics_cmd_vtysh,
3237 "show ip bgp flap-statistics",
3238 "Show running system information\n"
3239 "IP information\n"
3240 "BGP information\n"
3241 "Display flap statistics of routes\n")
3242
3243DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_cmd_vtysh,
3244 "clear ip bgp A.B.C.D vpnv4 unicast soft",
3245 "Reset functions\n"
3246 "IP information\n"
3247 "BGP information\n"
3248 "BGP neighbor address to clear\n"
3249 "Address family\n"
3250 "Address Family Modifier\n"
3251 "Soft reconfig\n")
3252
3253DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community3_exact_cmd_vtysh,
3254 "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",
3255 "Show running system information\n"
3256 "IPv6 information\n"
3257 "MBGP information\n"
3258 "Display routes matching the communities\n"
3259 "community number\n"
3260 "Do not send outside local AS (well-known community)\n"
3261 "Do not advertise to any peer (well-known community)\n"
3262 "Do not export to next AS (well-known community)\n"
3263 "community number\n"
3264 "Do not send outside local AS (well-known community)\n"
3265 "Do not advertise to any peer (well-known community)\n"
3266 "Do not export to next AS (well-known community)\n"
3267 "community number\n"
3268 "Do not send outside local AS (well-known community)\n"
3269 "Do not advertise to any peer (well-known community)\n"
3270 "Do not export to next AS (well-known community)\n"
3271 "Exact match of the communities")
3272
3273DEFSH (VTYSH_RIPNGD, debug_ripng_packet_cmd_vtysh,
3274 "debug ripng packet",
3275 "Debugging functions (see also 'undebug')\n"
3276 "RIPng configuration\n"
3277 "Debug option set for ripng packet\n")
3278
3279DEFSH (VTYSH_RIPNGD, no_ripng_timers_cmd_vtysh,
3280 "no timers basic",
3281 "Negate a command or set its defaults\n"
3282 "RIPng timers setup\n"
3283 "Basic timer\n")
3284
3285DEFSH (VTYSH_RIPNGD, ripng_route_cmd_vtysh,
3286 "route IPV6ADDR",
3287 "Static route setup\n"
3288 "Set static RIPng route announcement\n")
3289
3290DEFSH (VTYSH_OSPF6D, ipv6_ospf6_advertise_force_prefix_cmd_vtysh,
3291 "ipv6 ospf6 advertise force-prefix",
3292 "IPv6 Information\n"
3293 "Open Shortest Path First (OSPF) for IPv6\n"
3294 "Advertising options\n"
3295 "Force advertising prefix, applicable if Loopback or P-to-P\n"
3296 )
3297
3298DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_out_cmd_vtysh,
3299 "clear ip bgp A.B.C.D out",
3300 "Reset functions\n"
3301 "IP information\n"
3302 "BGP information\n"
3303 "BGP neighbor address to clear\n"
3304 "Soft reconfig outbound update\n")
3305
3306DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_inter_intra_cmd_vtysh,
3307 "distance ospf external <1-255> inter-area <1-255> intra-area <1-255>",
3308 "Define an administrative distance\n"
3309 "OSPF Administrative distance\n"
3310 "External routes\n"
3311 "Distance for external routes\n"
3312 "Inter-area routes\n"
3313 "Distance for inter-area routes\n"
3314 "Intra-area routes\n"
3315 "Distance for intra-area routes\n")
3316
3317DEFSH (VTYSH_OSPFD, ip_ospf_hello_interval_addr_cmd_vtysh,
3318 "ip ospf hello-interval <1-65535> A.B.C.D",
3319 "IP Information\n"
3320 "OSPF interface commands\n"
3321 "Time between HELLO packets\n"
3322 "Seconds\n"
3323 "Address of interface")
3324
3325DEFSH (VTYSH_BGPD, show_bgp_ipv6_filter_list_cmd_vtysh,
3326 "show bgp ipv6 filter-list WORD",
3327 "Show running system information\n"
3328 "BGP information\n"
3329 "Address family\n"
3330 "Display routes conforming to the filter-list\n"
3331 "Regular expression access list name\n")
3332
3333DEFSH (VTYSH_BGPD, debug_bgp_update_cmd_vtysh,
3334 "debug bgp updates",
3335 "Debugging functions (see also 'undebug')\n"
3336 "BGP information\n"
3337 "BGP updates\n")
3338
3339DEFSH (VTYSH_BGPD, show_bgp_cmd_vtysh,
3340 "show bgp",
3341 "Show running system information\n"
3342 "BGP information\n")
3343
3344DEFSH (VTYSH_BGPD, show_bgp_filter_list_cmd_vtysh,
3345 "show bgp filter-list WORD",
3346 "Show running system information\n"
3347 "BGP information\n"
3348 "Display routes conforming to the filter-list\n"
3349 "Regular expression access list name\n")
3350
3351DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_cmd_vtysh,
3352 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export)",
3353 "Show running system information\n"
3354 "IPv6 information\n"
3355 "BGP information\n"
3356 "Display routes matching the communities\n"
3357 "community number\n"
3358 "Do not send outside local AS (well-known community)\n"
3359 "Do not advertise to any peer (well-known community)\n"
3360 "Do not export to next AS (well-known community)\n")
3361
3362DEFSH (VTYSH_BGPD, clear_bgp_peer_cmd_vtysh,
3363 "clear bgp (A.B.C.D|X:X::X:X)",
3364 "Reset functions\n"
3365 "BGP information\n"
3366 "BGP neighbor address to clear\n"
3367 "BGP IPv6 neighbor to clear\n")
3368
3369DEFSH (VTYSH_BGPD, show_bgp_neighbor_received_routes_cmd_vtysh,
3370 "show bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
3371 "Show running system information\n"
3372 "BGP information\n"
3373 "Detailed information on TCP and BGP neighbor connections\n"
3374 "Neighbor to display information about\n"
3375 "Neighbor to display information about\n"
3376 "Display the received routes from neighbor\n")
3377
3378DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_ge_cmd_vtysh,
3379 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32>",
3380 "IP information\n"
3381 "Build a prefix list\n"
3382 "Name of a prefix list\n"
3383 "sequence number of an entry\n"
3384 "Sequence number\n"
3385 "Specify packets to reject\n"
3386 "Specify packets to forward\n"
3387 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3388 "Minimum prefix length to be matched\n"
3389 "Minimum prefix length\n")
3390
3391DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_out_cmd_vtysh,
3392 "clear ip bgp A.B.C.D soft out",
3393 "Reset functions\n"
3394 "IP information\n"
3395 "BGP information\n"
3396 "BGP neighbor address to clear\n"
3397 "Soft reconfig\n"
3398 "Soft reconfig outbound update\n")
3399
3400DEFSH (VTYSH_ZEBRA, ip_irdp_multicast_cmd_vtysh,
3401 "ip irdp multicast",
3402 "IP information\n"
3403 "ICMP Router discovery on this interface\n"
3404 "Send IRDP advertisement to the multicast address\n")
3405
3406DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_prefix_list_val_cmd_vtysh,
3407 "no match ip address prefix-list WORD",
3408 "Negate a command or set its defaults\n"
3409 "Match values from routing table\n"
3410 "IP information\n"
3411 "Match address of route\n"
3412 "Match entries of prefix-lists\n"
3413 "IP prefix-list name\n")
3414
3415DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_router_lsid_cmd_vtysh,
3416 "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>) (A.B.C.D|<0-4294967295>)",
3417 "Show running system information\n"
3418 "IPv6 Information\n"
3419 "Open Shortest Path First (OSPF) for IPv6\n"
3420 "Inter Area topology information\n"
3421 "Specify Router-ID\n"
3422 "Specify Router-ID\n"
3423 "Specify Link State ID\n"
3424 "Specify Link State ID\n"
3425 )
3426
3427DEFSH (VTYSH_RIPD, ip_rip_authentication_string_cmd_vtysh,
3428 "ip rip authentication string LINE",
3429 "IP information\n"
3430 "Routing Information Protocol\n"
3431 "Authentication control\n"
3432 "Authentication string\n"
3433 "Authentication string\n")
3434
3435DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_cmd_vtysh,
3436 "clear bgp peer-group WORD soft",
3437 "Reset functions\n"
3438 "BGP information\n"
3439 "Clear all members of peer-group\n"
3440 "BGP peer-group name\n"
3441 "Soft reconfig\n")
3442
3443DEFSH (VTYSH_BGPD, bgp_timers_cmd_vtysh,
3444 "timers bgp <0-65535> <0-65535>",
3445 "Adjust routing timers\n"
3446 "BGP timers\n"
3447 "Keepalive interval\n"
3448 "Holdtime\n")
3449
3450DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_routemap_cmd_vtysh,
3451 "no redistribute ospf6 metric <0-16> route-map WORD",
3452 "Negate a command or set its defaults\n"
3453 "Redistribute information from another routing protocol\n"
3454 "IPv6 Open Shortest Path First (OSPFv3)\n"
3455 "Metric\n"
3456 "Metric value\n"
3457 "Route map reference\n"
3458 "Pointer to route-map entries\n")
3459
3460DEFSH (VTYSH_BGPD, set_metric_cmd_vtysh,
3461 "set metric (<0-4294967295>|<+/-metric>)",
3462 "Set values in destination routing protocol\n"
3463 "Metric value for destination routing protocol\n"
3464 "Metric value\n"
3465 "Add or subtract metric\n")
3466
3467DEFSH (VTYSH_OSPFD, debug_ospf_nsm_sub_cmd_vtysh,
3468 "debug ospf nsm (status|events|timers)",
3469 "Debugging functions (see also 'undebug')\n"
3470 "OSPF information\n"
3471 "OSPF Neighbor State Machine\n"
3472 "NSM Status Information\n"
3473 "NSM Event Information\n"
3474 "NSM Timer Information\n")
3475
3476DEFSH (VTYSH_OSPFD, auto_cost_reference_bandwidth_cmd_vtysh,
3477 "auto-cost reference-bandwidth <1-4294967>",
3478 "Calculate OSPF interface cost according to bandwidth\n"
3479 "Use reference bandwidth method to assign OSPF cost\n"
3480 "The reference bandwidth in terms of Mbits per second\n")
3481
3482DEFSH (VTYSH_OSPFD, no_refresh_timer_cmd_vtysh,
3483 "no refresh timer",
3484 "Adjust refresh parameters\n"
3485 "Unset refresh timer\n")
3486
3487DEFSH (VTYSH_BGPD, no_ip_as_path_all_cmd_vtysh,
3488 "no ip as-path access-list WORD",
3489 "Negate a command or set its defaults\n"
3490 "IP information\n"
3491 "BGP autonomous system path filter\n"
3492 "Specify an access list name\n"
3493 "Regular expression access list name\n")
3494
3495DEFSH (VTYSH_OSPF6D, flap_damping_route_cmd_vtysh,
3496 "flap-damping route <0-4294967295> <0-4294967295> "
3497 "<0-4294967295> <0-4294967295>",
3498 "enable flap dampening\n"
3499 "enable route flap dampening\n"
3500 "half-life in second\n"
3501 "reuse value\n"
3502 "suppress value\n"
3503 "t-hold in second (maximum time that the target can be damped)\n"
3504 )
3505
3506DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_prefix_cmd_vtysh,
3507 "show ipv6 ospf6 route (X::X|detail)",
3508 "Show running system information\n"
3509 "IPv6 Information\n"
3510 "Open Shortest Path First (OSPF) for IPv6\n"
3511 "Routing table\n"
3512 "match IPv6 prefix\n"
3513 )
3514
3515DEFSH (VTYSH_BGPD, match_origin_cmd_vtysh,
3516 "match origin (egp|igp|incomplete)",
3517 "Match values from routing table\n"
3518 "BGP origin code\n"
3519 "remote EGP\n"
3520 "local IGP\n"
3521 "unknown heritage\n")
3522
3523DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_cmd_vtysh,
3524 "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",
3525 "Negate a command or set its defaults\n"
3526 "Add an access list entry\n"
3527 "IP extended access list\n"
3528 "IP extended access list (expanded range)\n"
3529 "Specify packets to reject\n"
3530 "Specify packets to forward\n"
3531 "Any Internet Protocol\n"
3532 "Source address\n"
3533 "Source wildcard bits\n"
3534 "Destination address\n"
3535 "Destination Wildcard bits\n")
3536
3537DEFSH (VTYSH_BGPD, no_neighbor_timers_connect_cmd_vtysh,
3538 "no neighbor (A.B.C.D|X:X::X:X) " "timers connect",
3539 "Negate a command or set its defaults\n"
3540 "Specify neighbor router\n"
3541 "Neighbor address\nIPv6 address\n"
3542 "BGP per neighbor timers\n"
3543 "BGP connect timer\n")
3544
3545DEFSH (VTYSH_BGPD, set_aspath_prepend_cmd_vtysh,
3546 "set as-path prepend .<1-65535>",
3547 "Set values in destination routing protocol\n"
3548 "Prepend string for a BGP AS-path attribute\n"
3549 "Prepend to the as-path\n"
3550 "AS number\n")
3551
3552DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_in_cmd_vtysh,
3553 "clear ip bgp external ipv4 (unicast|multicast) in",
3554 "Reset functions\n"
3555 "IP information\n"
3556 "BGP information\n"
3557 "Clear all external peers\n"
3558 "Address family\n"
3559 "Address Family modifier\n"
3560 "Address Family modifier\n"
3561 "Soft reconfig inbound update\n")
3562
3563DEFSH (VTYSH_BGPD, show_ip_bgp_regexp_cmd_vtysh,
3564 "show ip bgp regexp .LINE",
3565 "Show running system information\n"
3566 "IP information\n"
3567 "BGP information\n"
3568 "Display routes matching the AS path regular expression\n"
3569 "A regular-expression to match the BGP AS paths\n")
3570
3571DEFSH (VTYSH_OSPF6D, reload_cmd_vtysh,
3572 "reload",
3573 "Reloads\n")
3574
3575DEFSH (VTYSH_BGPD, no_neighbor_weight_cmd_vtysh,
3576 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "weight",
3577 "Negate a command or set its defaults\n"
3578 "Specify neighbor router\n"
3579 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3580 "Set default weight for routes from this neighbor\n")
3581
3582DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_rmap_cmd_vtysh,
3583 "redistribute (connected|kernel|ospf|rip|static) route-map WORD",
3584 "Redistribute information from another routing protocol\n"
3585 "Connected\n"
3586 "Kernel routes\n"
3587 "Open Shurtest Path First (OSPF)\n"
3588 "Routing Information Protocol (RIP)\n"
3589 "Static routes\n"
3590 "Route map reference\n"
3591 "Pointer to route-map entries\n")
3592
3593DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_in_cmd_vtysh,
3594 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in",
3595 "Reset functions\n"
3596 "IP information\n"
3597 "BGP information\n"
3598 "Clear all members of peer-group\n"
3599 "BGP peer-group name\n"
3600 "Address family\n"
3601 "Address Family modifier\n"
3602 "Address Family modifier\n"
3603 "Soft reconfig inbound update\n")
3604
3605DEFSH (VTYSH_BGPD, dump_bgp_routes_interval_cmd_vtysh,
3606 "dump bgp routes-mrt PATH INTERVAL",
3607 "Dump packet\n"
3608 "BGP packet dump\n"
3609 "Dump whole BGP routing table\n"
3610 "Output filename\n"
3611 "Interval of output\n")
3612
3613DEFSH (VTYSH_ZEBRA, ipv6_route_pref_cmd_vtysh,
3614 "ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE) <1-255>",
3615 "IP information\n"
3616 "Establish static routes\n"
3617 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
3618 "IPv6 gateway address\n"
3619 "IPv6 gateway interface name\n"
3620 "Distance value for this prefix\n")
3621
3622DEFSH (VTYSH_RIPD, accept_lifetime_duration_day_month_cmd_vtysh,
3623 "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> duration <1-2147483646>",
3624 "Set accept lifetime of the key\n"
3625 "Time to start\n"
3626 "Day of th month to start\n"
3627 "Month of the year to start\n"
3628 "Year to start\n"
3629 "Duration of the key\n"
3630 "Duration seconds\n")
3631
3632DEFSH (VTYSH_BGPD, show_ip_bgp_dampened_paths_cmd_vtysh,
3633 "show ip bgp dampened-paths",
3634 "Show running system information\n"
3635 "IP information\n"
3636 "BGP information\n"
3637 "Display paths suppressed due to dampening\n")
3638
3639DEFSH (VTYSH_RIPD, no_ip_rip_send_version_num_cmd_vtysh,
3640 "no ip rip send version (1|2)",
3641 "Negate a command or set its defaults\n"
3642 "IP information\n"
3643 "Routing Information Protocol\n"
3644 "Advertisement transmission\n"
3645 "Version control\n"
3646 "Version 1\n"
3647 "Version 2\n")
3648
3649DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_in_cmd_vtysh,
3650 "clear ip bgp peer-group WORD in",
3651 "Reset functions\n"
3652 "IP information\n"
3653 "BGP information\n"
3654 "Clear all members of peer-group\n"
3655 "BGP peer-group name\n"
3656 "Soft reconfig inbound update\n")
3657
3658DEFSH (VTYSH_BGPD, no_ip_community_list_cmd_vtysh,
3659 "no ip community-list WORD (deny|permit) .AA:NN",
3660 "Negate a command or set its defaults\n"
3661 "IP information\n"
3662 "Add a community list entry\n"
3663 "Community list name\n"
3664 "Specify community to reject\n"
3665 "Specify community to accept\n"
3666 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
3667
3668DEFSH (VTYSH_BGPD, no_neighbor_nexthop_self_cmd_vtysh,
3669 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "next-hop-self",
3670 "Negate a command or set its defaults\n"
3671 "Specify neighbor router\n"
3672 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
3673 "Disable the next hop calculation for this neighbor\n")
3674
3675DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_cmd_vtysh,
3676 "show ipv6 ospf6 database",
3677 "Show running system information\n"
3678 "IPv6 Information\n"
3679 "Open Shortest Path First (OSPF) for IPv6\n"
3680 "LSA Database\n"
3681 )
3682
3683DEFSH (VTYSH_ZEBRA, show_ipv6_route_cmd_vtysh,
3684 "show ipv6 route",
3685 "Show running system information\n"
3686 "IP information\n"
3687 "IPv6 routing table\n")
3688
3689DEFSH (VTYSH_OSPFD, ospf_network_cmd_vtysh,
3690 "ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)",
3691 "OSPF interface commands\n"
3692 "Network type\n"
3693 "Specify OSPF broadcast multi-access network\n"
3694 "Specify OSPF NBMA network\n"
3695 "Specify OSPF point-to-multipoint network\n"
3696 "Specify OSPF point-to-point network\n")
3697
3698DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_out_cmd_vtysh,
3699 "clear bgp ipv6 peer-group WORD out",
3700 "Reset functions\n"
3701 "BGP information\n"
3702 "Address family\n"
3703 "Clear all members of peer-group\n"
3704 "BGP peer-group name\n"
3705 "Soft reconfig outbound update\n")
3706
3707DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_tags_cmd_vtysh,
3708 "show ip bgp vpnv4 all tags",
3709 "Show running system information\n"
3710 "IP information\n"
3711 "BGP information\n"
3712 "Display VPNv4 NLRI specific information\n"
3713 "Display information about all VPNv4 NLRIs\n"
3714 "Display BGP tags for prefixes\n")
3715
3716DEFSH (VTYSH_OSPFD, no_ospf_redistribute_source_cmd_vtysh,
3717 "no redistribute (kernel|connected|static|rip|bgp)",
3718 "Negate a command or set its defaults\n"
3719 "Redistribute information from another routing protocol\n"
3720 "Kernel routes\n"
3721 "Connected\n"
3722 "Static routes\n"
3723 "Routing Information Protocol (RIP)\n"
3724 "Border Gateway Protocol (BGP)\n")
3725
3726DEFSH (VTYSH_BGPD, no_debug_bgp_fsm_cmd_vtysh,
3727 "no debug bgp fsm",
3728 "Negate a command or set its defaults\n"
3729 "Debugging functions (see also 'undebug')\n"
3730 "BGP information\n"
3731 "Finite State Machine\n")
3732
3733DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_cmd_vtysh,
3734 "show ip bgp flap-statistics A.B.C.D/M",
3735 "Show running system information\n"
3736 "IP information\n"
3737 "BGP information\n"
3738 "Display flap statistics of routes\n"
3739 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
3740
3741DEFSH (VTYSH_BGPD, clear_bgp_as_in_cmd_vtysh,
3742 "clear bgp <1-65535> in",
3743 "Reset functions\n"
3744 "BGP information\n"
3745 "Clear peers with the AS number\n"
3746 "Soft reconfig inbound update\n")
3747
3748DEFSH (VTYSH_RIPD, no_rip_redistribute_rip_cmd_vtysh,
3749 "no redistribute rip",
3750 "Negate a command or set its defaults\n"
3751 "Redistribute information from another routing protocol\n"
3752 "Routing Information Protocol (RIP)\n")
3753
3754DEFSH (VTYSH_BGPD, show_ip_bgp_view_route_cmd_vtysh,
3755 "show ip bgp view WORD A.B.C.D",
3756 "Show running system information\n"
3757 "IP information\n"
3758 "BGP information\n"
3759 "BGP view\n"
3760 "BGP view name\n"
3761 "Network in the BGP routing table to display\n")
3762
3763DEFSH (VTYSH_ZEBRA, no_debug_zebra_events_cmd_vtysh,
3764 "no debug zebra events",
3765 "Negate a command or set its defaults\n"
3766 "Debugging functions (see also 'undebug')\n"
3767 "Zebra configuration\n"
3768 "Debug option set for zebra events\n")
3769
3770DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_routemap_cmd_vtysh,
3771 "no redistribute connected metric <0-16> route-map WORD",
3772 "Negate a command or set its defaults\n"
3773 "Redistribute information from another routing protocol\n"
3774 "Connected\n"
3775 "Metric\n"
3776 "Metric value\n"
3777 "Route map reference\n"
3778 "Pointer to route-map entries\n")
3779
3780DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_le_cmd_vtysh,
3781 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32>",
3782 "IP information\n"
3783 "Build a prefix list\n"
3784 "Name of a prefix list\n"
3785 "sequence number of an entry\n"
3786 "Sequence number\n"
3787 "Specify packets to reject\n"
3788 "Specify packets to forward\n"
3789 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3790 "Maximum prefix length to be matched\n"
3791 "Maximum prefix length\n")
3792
3793DEFSH (VTYSH_BGPD, no_set_ecommunity_rt_val_cmd_vtysh,
3794 "no set extcommunity rt .ASN:nn_or_IP-address:nn",
3795 "Negate a command or set its defaults\n"
3796 "Set values in destination routing protocol\n"
3797 "BGP extended community attribute\n"
3798 "Route Target extened communityt\n"
3799 "VPN extended community\n")
3800
3801DEFSH (VTYSH_BGPD, show_ip_bgp_neighbors_cmd_vtysh,
3802 "show ip bgp neighbors",
3803 "Show running system information\n"
3804 "IP information\n"
3805 "BGP information\n"
3806 "Detailed information on TCP and BGP neighbor connections\n")
3807
3808DEFSH (VTYSH_OSPFD, no_ospf_distance_cmd_vtysh,
3809 "no distance <1-255>",
3810 "Negate a command or set its defaults\n"
3811 "Define an administrative distance\n"
3812 "OSPF Administrative distance\n")
3813
3814DEFSH (VTYSH_BGPD, bgp_network_mask_natural_cmd_vtysh,
3815 "network A.B.C.D",
3816 "Specify a network to announce via BGP\n"
3817 "Network number\n")
3818
3819DEFSH (VTYSH_BGPD, debug_bgp_events_cmd_vtysh,
3820 "debug bgp events",
3821 "Debugging functions (see also 'undebug')\n"
3822 "BGP information\n"
3823 "BGP events\n")
3824
3825DEFSH (VTYSH_BGPD, clear_bgp_all_soft_in_cmd_vtysh,
3826 "clear bgp * soft in",
3827 "Reset functions\n"
3828 "BGP information\n"
3829 "Clear all peers\n"
3830 "Soft reconfig\n"
3831 "Soft reconfig inbound update\n")
3832
3833DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_ge_le_cmd_vtysh,
3834 "ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
3835 "IP information\n"
3836 "Build a prefix list\n"
3837 "Name of a prefix list\n"
3838 "Specify packets to reject\n"
3839 "Specify packets to forward\n"
3840 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
3841 "Minimum prefix length to be matched\n"
3842 "Minimum prefix length\n"
3843 "Maximum prefix length to be matched\n"
3844 "Maximum prefix length\n")
3845
3846DEFSH (VTYSH_OSPFD, network_area_cmd_vtysh,
3847 "network A.B.C.D/M area (A.B.C.D|<0-4294967295>)",
3848 "Enable routing on an IP network\n"
3849 "OSPF network prefix\n"
3850 "Set the OSPF area ID\n"
3851 "OSPF area ID in IP address format\n"
3852 "OSPF area ID as a decimal value\n")
3853
3854DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_in_cmd_vtysh,
3855 "clear ip bgp * ipv4 (unicast|multicast) in",
3856 "Reset functions\n"
3857 "IP information\n"
3858 "BGP information\n"
3859 "Clear all peers\n"
3860 "Address family\n"
3861 "Address Family modifier\n"
3862 "Address Family modifier\n"
3863 "Soft reconfig inbound update\n")
3864
3865DEFSH (VTYSH_BGPD, show_ip_bgp_paths_cmd_vtysh,
3866 "show ip bgp paths",
3867 "Show running system information\n"
3868 "IP information\n"
3869 "BGP information\n"
3870 "Path information\n")
3871
3872DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_cmd_vtysh,
3873 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export)",
3874 "Show running system information\n"
3875 "BGP information\n"
3876 "Address family\n"
3877 "Display routes matching the communities\n"
3878 "community number\n"
3879 "Do not send outside local AS (well-known community)\n"
3880 "Do not advertise to any peer (well-known community)\n"
3881 "Do not export to next AS (well-known community)\n")
3882
3883DEFSH (VTYSH_OSPFD, no_area_default_cost_cmd_vtysh,
3884 "no area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>",
3885 "Negate a command or set its defaults\n"
3886 "OSPF area parameters\n"
3887 "OSPF area ID in IP address format\n"
3888 "OSPF area ID as a decimal value\n"
3889 "Set the summary-default cost of a NSSA or stub area\n"
3890 "Stub's advertised default summary cost\n")
3891
3892DEFSH (VTYSH_OSPFD, no_router_ospf_cmd_vtysh,
3893 "no router ospf",
3894 "Negate a command or set its defaults\n"
3895 "Enable a routing process\n"
3896 "Start OSPF configuration\n")
3897
3898DEFSH (VTYSH_OSPFD, ip_ospf_transmit_delay_cmd_vtysh,
3899 "ip ospf transmit-delay <1-65535>",
3900 "IP Information\n"
3901 "OSPF interface commands\n"
3902 "Link state transmit delay\n"
3903 "Seconds\n")
3904
3905DEFSH (VTYSH_BGPD, no_bgp_scan_time_val_cmd_vtysh,
3906 "no bgp scan-time <5-60>",
3907 "Negate a command or set its defaults\n"
3908 "BGP specific commands\n"
3909 "Configure background scanner interval\n"
3910 "Scanner interval (seconds)\n")
3911
3912DEFSH (VTYSH_BGPD, no_debug_bgp_all_cmd_vtysh,
3913 "no debug all bgp",
3914 "Negate a command or set its defaults\n"
3915 "Debugging functions (see also 'undebug')\n"
3916 "Enable all debugging\n"
3917 "BGP information\n")
3918
3919DEFSH (VTYSH_BGPD, show_ip_bgp_flap_address_cmd_vtysh,
3920 "show ip bgp flap-statistics A.B.C.D",
3921 "Show running system information\n"
3922 "IP information\n"
3923 "BGP information\n"
3924 "Display flap statistics of routes\n"
3925 "Network in the BGP routing table to display\n")
3926
3927DEFSH (VTYSH_RIPD|VTYSH_OSPFD, no_match_interface_val_cmd_vtysh,
3928 "no match interface WORD",
3929 "Negate a command or set its defaults\n"
3930 "Match values from routing table\n"
3931 "Match first hop interface of route\n"
3932 "Interface name\n")
3933
3934DEFSH (VTYSH_OSPF6D, router_id_cmd_vtysh,
3935 "router-id ROUTER_ID",
3936 "Configure ospf Router-ID.\n"
3937 "specify by IPv4 address notation(e.g. 0.0.0.0)\n")
3938
3939DEFSH (VTYSH_BGPD, no_bgp_cluster_id_arg_cmd_vtysh,
3940 "no bgp cluster-id A.B.C.D",
3941 "Negate a command or set its defaults\n"
3942 "BGP information\n"
3943 "Configure Route-Reflector Cluster-id\n"
3944 "Route-Reflector Cluster-id in IP address format\n")
3945
3946DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_cmd_vtysh,
3947 "show ipv6 ospf6 topology",
3948 "Show running system information\n"
3949 "IPv6 Information\n"
3950 "Open Shortest Path First (OSPF) for IPv6\n"
3951 "Inter Area topology information\n"
3952 )
3953
3954DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_host_cmd_vtysh,
3955 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any host A.B.C.D",
3956 "Negate a command or set its defaults\n"
3957 "Add an access list entry\n"
3958 "IP extended access list\n"
3959 "IP extended access list (expanded range)\n"
3960 "Specify packets to reject\n"
3961 "Specify packets to forward\n"
3962 "Any Internet Protocol\n"
3963 "Any source host\n"
3964 "A single destination host\n"
3965 "Destination address\n")
3966
3967DEFSH (VTYSH_RIPD, no_rip_version_val_cmd_vtysh,
3968 "no version <1-2>",
3969 "Negate a command or set its defaults\n"
3970 "Set routing protocol version\n"
3971 "version\n")
3972
3973DEFSH (VTYSH_OSPFD, no_area_vlink_param2_cmd_vtysh,
3974 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
3975 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
3976 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
3977 "Negate a command or set its defaults\n"
3978 "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"
3979 "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"
3980 "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")
3981
3982DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_all_cmd_vtysh,
3983 "no ip extcommunity-list (<1-99>|<100-199>)",
3984 "Negate a command or set its defaults\n"
3985 "IP information\n"
3986 "Add a extended community list entry\n"
3987 "Extended Community list number (standard)\n"
3988 "Extended Community list number (expanded)\n")
3989
3990DEFSH (VTYSH_ZEBRA, no_zebra_interface_cmd_vtysh,
3991 "no interface IFNAME",
3992 "Delete a pseudo interface's configuration\n"
3993 "Interface's name\n")
3994
3995DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh,
3996 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X)",
3997 "Show running system information\n"
3998 "IP information\n"
3999 "BGP information\n"
4000 "Address family\n"
4001 "Address Family modifier\n"
4002 "Address Family modifier\n"
4003 "Detailed information on TCP and BGP neighbor connections\n"
4004 "Neighbor to display information about\n"
4005 "Neighbor to display information about\n")
4006
4007DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_ge_le_cmd_vtysh,
4008 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128> le <0-128>",
paul718e3742002-12-13 20:15:29 +00004009 "IPv6 information\n"
4010 "Build a prefix list\n"
4011 "Name of a prefix list\n"
4012 "sequence number of an entry\n"
4013 "Sequence number\n"
4014 "Specify packets to reject\n"
4015 "Specify packets to forward\n"
4016 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
4017 "Minimum prefix length to be matched\n"
4018 "Minimum prefix length\n"
4019 "Maximum prefix length to be matched\n"
4020 "Maximum prefix length\n")
4021
paul569c0f02003-03-02 21:19:26 +00004022DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_cmd_vtysh,
4023 "distance ospf inter-area <1-255>",
4024 "Define an administrative distance\n"
4025 "OSPF Administrative distance\n"
4026 "Inter-area routes\n"
4027 "Distance for inter-area routes\n")
paul718e3742002-12-13 20:15:29 +00004028
paul569c0f02003-03-02 21:19:26 +00004029DEFSH (VTYSH_BGPD, set_community_cmd_vtysh,
4030 "set community .AA:NN",
4031 "Set values in destination routing protocol\n"
4032 "BGP community attribute\n"
4033 "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n")
paul718e3742002-12-13 20:15:29 +00004034
paul569c0f02003-03-02 21:19:26 +00004035DEFSH (VTYSH_BGPD, clear_ip_bgp_as_out_cmd_vtysh,
4036 "clear ip bgp <1-65535> out",
paul718e3742002-12-13 20:15:29 +00004037 "Reset functions\n"
4038 "IP information\n"
4039 "BGP information\n"
4040 "Clear peers with the AS number\n"
paul718e3742002-12-13 20:15:29 +00004041 "Soft reconfig outbound update\n")
4042
paul569c0f02003-03-02 21:19:26 +00004043DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_name_cmd_vtysh,
4044 "show ipv6 prefix-list WORD",
4045 "Show running system information\n"
4046 "IPv6 information\n"
4047 "Build a prefix list\n"
4048 "Name of a prefix list\n")
4049
4050DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_cmd_vtysh,
4051 "no network A.B.C.D",
4052 "Negate a command or set its defaults\n"
4053 "Specify a network to announce via BGP\n"
4054 "Network number\n")
4055
4056DEFSH (VTYSH_RIPD, no_rip_passive_interface_cmd_vtysh,
4057 "no passive-interface IFNAME",
4058 "Negate a command or set its defaults\n"
4059 "Suppress routing updates on an interface\n"
4060 "Interface name\n")
4061
4062DEFSH (VTYSH_RIPD, no_key_chain_cmd_vtysh,
4063 "no key chain WORD",
4064 "Negate a command or set its defaults\n"
4065 "Authentication key management\n"
4066 "Key-chain management\n"
4067 "Key-chain name\n")
4068
4069DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_set_metric_cmd_vtysh,
4070 "no set metric",
paul718e3742002-12-13 20:15:29 +00004071 "Negate a command or set its defaults\n"
4072 "Set values in destination routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00004073 "Metric value for destination routing protocol\n")
paul718e3742002-12-13 20:15:29 +00004074
paul569c0f02003-03-02 21:19:26 +00004075DEFSH (VTYSH_BGPD, show_ipv6_bgp_community3_cmd_vtysh,
4076 "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)",
4077 "Show running system information\n"
4078 "IPv6 information\n"
4079 "BGP information\n"
4080 "Display routes matching the communities\n"
4081 "community number\n"
4082 "Do not send outside local AS (well-known community)\n"
4083 "Do not advertise to any peer (well-known community)\n"
4084 "Do not export to next AS (well-known community)\n"
4085 "community number\n"
4086 "Do not send outside local AS (well-known community)\n"
4087 "Do not advertise to any peer (well-known community)\n"
4088 "Do not export to next AS (well-known community)\n"
4089 "community number\n"
4090 "Do not send outside local AS (well-known community)\n"
4091 "Do not advertise to any peer (well-known community)\n"
4092 "Do not export to next AS (well-known community)\n")
4093
4094DEFSH (VTYSH_BGPD, clear_bgp_external_in_prefix_filter_cmd_vtysh,
4095 "clear bgp external in prefix-filter",
4096 "Reset functions\n"
4097 "BGP information\n"
4098 "Clear all external peers\n"
4099 "Soft reconfig inbound update\n"
4100 "Push out prefix-list ORF and do inbound soft reconfig\n")
4101
4102DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh,
4103 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
4104 "Show running system information\n"
4105 "BGP information\n"
4106 "Address family\n"
4107 "Detailed information on TCP and BGP neighbor connections\n"
4108 "Neighbor to display information about\n"
4109 "Neighbor to display information about\n"
4110 "Display information received from a BGP neighbor\n"
4111 "Display the prefixlist filter\n")
4112
4113DEFSH (VTYSH_RIPD, no_debug_rip_events_cmd_vtysh,
4114 "no debug rip events",
4115 "Negate a command or set its defaults\n"
4116 "Debugging functions (see also 'undebug')\n"
4117 "RIP information\n"
4118 "RIP events\n")
4119
4120DEFSH (VTYSH_BGPD, undebug_bgp_events_cmd_vtysh,
4121 "undebug bgp events",
4122 "Disable debugging functions (see also 'debug')\n"
4123 "BGP information\n"
4124 "BGP events\n")
4125
4126DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_in_prefix_filter_cmd_vtysh,
4127 "clear ip bgp view WORD * ipv4 (unicast|multicast) in prefix-filter",
paul718e3742002-12-13 20:15:29 +00004128 "Reset functions\n"
4129 "IP information\n"
4130 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00004131 "Clear all peers\n"
paul718e3742002-12-13 20:15:29 +00004132 "Address family\n"
4133 "Address Family modifier\n"
4134 "Address Family modifier\n"
4135 "Soft reconfig inbound update\n"
paul569c0f02003-03-02 21:19:26 +00004136 "Push out prefix-list ORF and do inbound soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00004137
paul569c0f02003-03-02 21:19:26 +00004138DEFSH (VTYSH_BGPD, clear_bgp_external_in_cmd_vtysh,
4139 "clear bgp external in",
4140 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +00004141 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00004142 "Clear all external peers\n"
4143 "Soft reconfig inbound update\n")
paul718e3742002-12-13 20:15:29 +00004144
paul569c0f02003-03-02 21:19:26 +00004145DEFSH (VTYSH_BGPD, clear_bgp_external_out_cmd_vtysh,
4146 "clear bgp external out",
4147 "Reset functions\n"
4148 "BGP information\n"
4149 "Clear all external peers\n"
4150 "Soft reconfig outbound update\n")
4151
4152DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_cmd_vtysh,
4153 "no access-list WORD (deny|permit) A.B.C.D/M",
4154 "Negate a command or set its defaults\n"
4155 "Add an access list entry\n"
4156 "IP zebra access-list name\n"
4157 "Specify packets to reject\n"
4158 "Specify packets to forward\n"
4159 "Prefix to match. e.g. 10.0.0.0/8\n")
4160
4161DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_self_cmd_vtysh,
4162 "show ip ospf database (" "asbr-summary|external|network|router|summary" "|nssa-external" "|opaque-link|opaque-area|opaque-as" ") A.B.C.D (self-originate|)",
4163 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00004164 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00004165 "OSPF information\n"
4166 "Database summary\n"
4167 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "NSSA external link state\n" "Link local Opaque-LSA\n" "Link area Opaque-LSA\n" "Link AS Opaque-LSA\n"
4168 "Link State ID (as an IP address)\n"
4169 "Self-originated link states\n"
4170 "\n")
paul718e3742002-12-13 20:15:29 +00004171
paul569c0f02003-03-02 21:19:26 +00004172DEFSH (VTYSH_BGPD, show_ip_bgp_cmd_vtysh,
4173 "show ip bgp",
4174 "Show running system information\n"
4175 "IP information\n"
paul718e3742002-12-13 20:15:29 +00004176 "BGP information\n")
4177
paul569c0f02003-03-02 21:19:26 +00004178DEFSH (VTYSH_BGPD, no_neighbor_remove_private_as_cmd_vtysh,
4179 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "remove-private-AS",
paul718e3742002-12-13 20:15:29 +00004180 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00004181 "Specify neighbor router\n"
4182 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4183 "Remove private AS number from outbound updates\n")
paul718e3742002-12-13 20:15:29 +00004184
paul569c0f02003-03-02 21:19:26 +00004185DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh,
4186 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D routes",
paul718e3742002-12-13 20:15:29 +00004187 "Show running system information\n"
paul569c0f02003-03-02 21:19:26 +00004188 "IP information\n"
4189 "BGP information\n"
4190 "Display VPNv4 NLRI specific information\n"
4191 "Display information for a route distinguisher\n"
4192 "VPN Route Distinguisher\n"
4193 "Detailed information on TCP and BGP neighbor connections\n"
4194 "Neighbor to display information about\n"
4195 "Display routes learned from neighbor\n")
paul718e3742002-12-13 20:15:29 +00004196
paul569c0f02003-03-02 21:19:26 +00004197DEFSH (VTYSH_BGPD, neighbor_local_as_no_prepend_cmd_vtysh,
4198 "neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535> no-prepend",
4199 "Specify neighbor router\n"
4200 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4201 "Specify a local-as number\n"
4202 "AS number used as local AS\n"
4203 "Do not prepend local-as to updates from ebgp peers\n")
4204
4205DEFSH (VTYSH_BGPD, bgp_router_id_cmd_vtysh,
4206 "bgp router-id A.B.C.D",
paul718e3742002-12-13 20:15:29 +00004207 "BGP information\n"
4208 "Override configured router identifier\n"
4209 "Manually configured router identifier\n")
4210
paul569c0f02003-03-02 21:19:26 +00004211DEFSH (VTYSH_BGPD, aggregate_address_summary_as_set_cmd_vtysh,
4212 "aggregate-address A.B.C.D/M summary-only as-set",
4213 "Configure BGP aggregate entries\n"
4214 "Aggregate prefix\n"
4215 "Filter more specific routes from updates\n"
4216 "Generate AS set path information\n")
paul718e3742002-12-13 20:15:29 +00004217
4218DEFSH (VTYSH_BGPD, neighbor_port_cmd_vtysh,
4219 "neighbor (A.B.C.D|X:X::X:X) " "port <0-65535>",
4220 "Specify neighbor router\n"
4221 "Neighbor address\nIPv6 address\n"
4222 "Neighbor's BGP port\n"
4223 "TCP port number\n")
4224
paul569c0f02003-03-02 21:19:26 +00004225DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_metric_cmd_vtysh,
4226 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214>",
4227 "Redistribute information from another routing protocol\n"
4228 "Kernel routes\n"
4229 "Connected\n"
4230 "Static routes\n"
4231 "Routing Information Protocol (RIP)\n"
4232 "Border Gateway Protocol (BGP)\n"
4233 "OSPF exterior metric type for redistributed routes\n"
4234 "Set OSPF External Type 1 metrics\n"
4235 "Set OSPF External Type 2 metrics\n"
4236 "Metric for redistributed routes\n"
4237 "OSPF default metric\n")
4238
4239DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_cmd_vtysh,
4240 "distance ospf external <1-255>",
4241 "Define an administrative distance\n"
4242 "OSPF Administrative distance\n"
4243 "External routes\n"
4244 "Distance for external routes\n")
4245
4246DEFSH (VTYSH_OSPFD, mpls_te_link_rsc_clsclr_cmd_vtysh,
4247 "mpls-te link rsc-clsclr BITPATTERN",
4248 "MPLS-TE specific commands\n"
4249 "Configure MPLS-TE link parameters\n"
4250 "Administrative group membership\n"
4251 "32-bit Hexadecimal value (ex. 0xa1)\n")
4252
4253DEFSH (VTYSH_BGPD, show_ip_bgp_community_list_cmd_vtysh,
4254 "show ip bgp community-list WORD",
4255 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00004256 "IP information\n"
4257 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00004258 "Display routes matching the community-list\n"
4259 "community-list name\n")
paul718e3742002-12-13 20:15:29 +00004260
paul569c0f02003-03-02 21:19:26 +00004261DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_cmd_vtysh,
4262 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214>",
4263 "Redistribute information from another routing protocol\n"
4264 "Kernel routes\n"
4265 "Connected\n"
4266 "Static routes\n"
4267 "Routing Information Protocol (RIP)\n"
4268 "Border Gateway Protocol (BGP)\n"
4269 "Metric for redistributed routes\n"
4270 "OSPF default metric\n")
4271
4272DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_cmd_vtysh,
4273 "clear bgp ipv6 * soft",
paul718e3742002-12-13 20:15:29 +00004274 "Reset functions\n"
4275 "BGP information\n"
4276 "Address family\n"
4277 "Clear all peers\n"
paul569c0f02003-03-02 21:19:26 +00004278 "Soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00004279
paul569c0f02003-03-02 21:19:26 +00004280DEFSH (VTYSH_OSPFD, no_area_nssa_cmd_vtysh,
4281 "no area (A.B.C.D|<0-4294967295>) nssa",
paul718e3742002-12-13 20:15:29 +00004282 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00004283 "OSPF area parameters\n"
4284 "OSPF area ID in IP address format\n"
4285 "OSPF area ID as a decimal value\n"
4286 "Configure OSPF area as nssa\n")
4287
4288DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_sequence_number_cmd_vtysh,
4289 "ip prefix-list sequence-number",
4290 "IP information\n"
4291 "Build a prefix list\n"
4292 "Include/exclude sequence numbers in NVGEN\n")
4293
4294DEFSH (VTYSH_BGPD, neighbor_maximum_prefix_warning_cmd_vtysh,
4295 "neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295> warning-only",
4296 "Specify neighbor router\n"
4297 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4298 "Maximum number of prefix accept from this peer\n"
4299 "maximum no. of prefix limit\n"
4300 "Only give warning message when limit is exceeded\n")
4301
4302DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_prefix_list_val_cmd_vtysh,
4303 "no match ip next-hop prefix-list WORD",
4304 "Negate a command or set its defaults\n"
4305 "Match values from routing table\n"
4306 "IP information\n"
4307 "Match next-hop address of route\n"
4308 "Match entries of prefix-lists\n"
4309 "IP prefix-list name\n")
4310
4311DEFSH (VTYSH_BGPD, no_ip_community_list_name_all_cmd_vtysh,
4312 "no ip community-list (standard|expanded) WORD",
4313 "Negate a command or set its defaults\n"
4314 "IP information\n"
4315 "Add a community list entry\n"
4316 "Add a standard community-list entry\n"
4317 "Add an expanded community-list entry\n"
4318 "Community list name\n")
4319
4320DEFSH (VTYSH_BGPD, undebug_bgp_all_cmd_vtysh,
4321 "undebug all bgp",
4322 "Disable debugging functions (see also 'debug')\n"
4323 "Enable all debugging\n"
4324 "BGP information\n")
4325
4326DEFSH (VTYSH_OSPFD, no_ospf_default_metric_val_cmd_vtysh,
4327 "no default-metric <0-16777214>",
4328 "Negate a command or set its defaults\n"
4329 "Set metric of redistributed routes\n"
4330 "Default metric\n")
4331
4332DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_routemap_cmd_vtysh,
4333 "default-information originate always route-map WORD",
4334 "Control distribution of default information\n"
4335 "Distribute a default route\n"
4336 "Always advertise default route\n"
4337 "Route map reference\n"
4338 "Pointer to route-map entries\n")
4339
4340DEFSH (VTYSH_RIPD, ip_rip_authentication_key_chain_cmd_vtysh,
4341 "ip rip authentication key-chain LINE",
4342 "IP information\n"
4343 "Routing Information Protocol\n"
4344 "Authentication control\n"
4345 "Authentication key-chain\n"
4346 "name of key-chain\n")
4347
4348DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_le_cmd_vtysh,
4349 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128>",
4350 "Negate a command or set its defaults\n"
4351 "IPv6 information\n"
4352 "Build a prefix list\n"
4353 "Name of a prefix list\n"
4354 "Specify packets to reject\n"
4355 "Specify packets to forward\n"
4356 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
4357 "Maximum prefix length to be matched\n"
4358 "Maximum prefix length\n")
4359
4360DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_metric_cmd_vtysh,
4361 "redistribute bgp metric <0-16>",
4362 "Redistribute information from another routing protocol\n"
4363 "Border Gateway Protocol (BGP)\n"
4364 "Metric\n"
4365 "Metric value\n")
4366
4367DEFSH (VTYSH_RIPD, rip_version_cmd_vtysh,
4368 "version <1-2>",
4369 "Set routing protocol version\n"
4370 "version\n")
4371
4372DEFSH (VTYSH_BGPD, ip_extcommunity_list_standard2_cmd_vtysh,
4373 "ip extcommunity-list <1-99> (deny|permit)",
4374 "IP information\n"
4375 "Add a extended community list entry\n"
4376 "Extended Community list number (standard)\n"
4377 "Specify community to reject\n"
4378 "Specify community to accept\n")
4379
4380DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_cmd_vtysh,
4381 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft",
4382 "Reset functions\n"
4383 "IP information\n"
4384 "BGP information\n"
4385 "BGP view\n"
4386 "view name\n"
4387 "Clear all peers\n"
4388 "Address family\n"
4389 "Address Family Modifier\n"
4390 "Address Family Modifier\n"
4391 "Soft reconfig\n")
4392
4393DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_received_routes_cmd_vtysh,
4394 "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
4395 "Show running system information\n"
4396 "IPv6 information\n"
4397 "BGP information\n"
4398 "Detailed information on TCP and BGP neighbor connections\n"
4399 "Neighbor to display information about\n"
4400 "Neighbor to display information about\n"
4401 "Display the received routes from neighbor\n")
4402
4403DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_cmd_vtysh,
4404 "clear ip bgp <1-65535> vpnv4 unicast soft",
4405 "Reset functions\n"
4406 "IP information\n"
4407 "BGP information\n"
4408 "Clear peers with the AS number\n"
4409 "Address family\n"
4410 "Address Family Modifier\n"
4411 "Soft reconfig\n")
4412
4413DEFSH (VTYSH_BGPD, no_set_community_delete_val_cmd_vtysh,
4414 "no set comm-list (<1-99>|<100-199>|WORD) delete",
4415 "Negate a command or set its defaults\n"
4416 "Set values in destination routing protocol\n"
4417 "set BGP community list (for deletion)\n"
4418 "Community-list number (standard)\n"
4419 "Communitly-list number (expanded)\n"
4420 "Community-list name\n"
4421 "Delete matching communities\n")
4422
4423DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_any_cmd_vtysh,
4424 "no access-list WORD (deny|permit) any",
4425 "Negate a command or set its defaults\n"
4426 "Add an access list entry\n"
4427 "IP zebra access-list name\n"
4428 "Specify packets to reject\n"
4429 "Specify packets to forward\n"
4430 "Prefix to match. e.g. 10.0.0.0/8\n")
4431
4432DEFSH (VTYSH_BGPD, neighbor_remove_private_as_cmd_vtysh,
4433 "neighbor (A.B.C.D|X:X::X:X|WORD) " "remove-private-AS",
4434 "Specify neighbor router\n"
4435 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4436 "Remove private AS number from outbound updates\n")
4437
4438DEFSH (VTYSH_ZEBRA, ipv6_address_cmd_vtysh,
4439 "ipv6 address X:X::X:X/M",
4440 "Interface Internet Protocol config commands\n"
4441 "Set the IP address of an interface\n"
4442 "IPv6 address (e.g. 3ffe:506::1/48)\n")
4443
4444DEFSH (VTYSH_BGPD, default_attr_localpref_cmd_vtysh,
4445 "default-attr local-pref NUMBER",
4446 "Set default local preference value\n"
4447 "Set default local preference value\n"
4448 "Value\n")
4449
4450DEFSH (VTYSH_BGPD, no_ip_community_list_expanded_cmd_vtysh,
4451 "no ip community-list <100-199> (deny|permit) .LINE",
4452 "Negate a command or set its defaults\n"
4453 "IP information\n"
4454 "Add a community list entry\n"
4455 "Community list number (expanded)\n"
4456 "Specify community to reject\n"
4457 "Specify community to accept\n"
4458 "An ordered list as a regular-expression\n")
4459
4460DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_standard_cmd_vtysh,
4461 "no ip extcommunity-list <1-99> (deny|permit) .AA:NN",
4462 "Negate a command or set its defaults\n"
4463 "IP information\n"
4464 "Add a extended community list entry\n"
4465 "Extended Community list number (standard)\n"
4466 "Specify community to reject\n"
4467 "Specify community to accept\n"
4468 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
4469
4470DEFSH (VTYSH_OSPF6D, interface_area_passive_cmd_vtysh,
4471 "interface IFNAME area A.B.C.D passive",
4472 "Enable routing on an IPv6 interface\n"
4473 "Interface name(e.g. ep0)\n"
4474 "Set the OSPF6 area ID\n"
4475 "OSPF6 area ID in IPv4 address notation\n"
4476 "Suppress routing updates on an interface\n"
4477 )
4478
4479DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_le_ge_cmd_vtysh,
4480 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
4481 "IP information\n"
4482 "Build a prefix list\n"
4483 "Name of a prefix list\n"
4484 "sequence number of an entry\n"
4485 "Sequence number\n"
4486 "Specify packets to reject\n"
4487 "Specify packets to forward\n"
4488 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
4489 "Maximum prefix length to be matched\n"
4490 "Maximum prefix length\n"
4491 "Minimum prefix length to be matched\n"
4492 "Minimum prefix length\n")
4493
4494DEFSH (VTYSH_BGPD, bgp_bestpath_compare_router_id_cmd_vtysh,
4495 "bgp bestpath compare-routerid",
4496 "BGP specific commands\n"
4497 "Change the default bestpath selection\n"
4498 "Compare router-id for identical EBGP paths\n")
4499
4500DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_cmd_vtysh,
4501 "no redistribute connected metric",
4502 "Negate a command or set its defaults\n"
4503 "Redistribute information from another routing protocol\n"
4504 "Connected\n"
4505 "Metric\n")
4506
4507DEFSH (VTYSH_RIPD|VTYSH_BGPD, match_metric_cmd_vtysh,
4508 "match metric <0-4294967295>",
4509 "Match values from routing table\n"
4510 "Match metric of route\n"
4511 "Metric value\n")
4512
4513DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_in_cmd_vtysh,
4514 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in",
4515 "Reset functions\n"
4516 "IP information\n"
4517 "BGP information\n"
4518 "BGP neighbor address to clear\n"
4519 "Address family\n"
4520 "Address Family modifier\n"
4521 "Address Family modifier\n"
4522 "Soft reconfig inbound update\n")
4523
4524DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_mask_any_cmd_vtysh,
4525 "access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D any",
paul718e3742002-12-13 20:15:29 +00004526 "Add an access list entry\n"
4527 "IP extended access list\n"
4528 "IP extended access list (expanded range)\n"
4529 "Specify packets to reject\n"
4530 "Specify packets to forward\n"
4531 "Any Internet Protocol\n"
4532 "Source address\n"
4533 "Source wildcard bits\n"
paul569c0f02003-03-02 21:19:26 +00004534 "Any destination host\n")
paul718e3742002-12-13 20:15:29 +00004535
paul569c0f02003-03-02 21:19:26 +00004536DEFSH (VTYSH_BGPD, clear_bgp_all_in_prefix_filter_cmd_vtysh,
4537 "clear bgp * in prefix-filter",
4538 "Reset functions\n"
4539 "BGP information\n"
4540 "Clear all peers\n"
4541 "Soft reconfig inbound update\n"
4542 "Push out prefix-list ORF and do inbound soft reconfig\n")
4543
4544DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_ge_cmd_vtysh,
4545 "no ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32>",
4546 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00004547 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00004548 "Build a prefix list\n"
4549 "Name of a prefix list\n"
4550 "Specify packets to reject\n"
4551 "Specify packets to forward\n"
4552 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
4553 "Minimum prefix length to be matched\n"
4554 "Minimum prefix length\n")
paul718e3742002-12-13 20:15:29 +00004555
paul569c0f02003-03-02 21:19:26 +00004556DEFSH (VTYSH_ZEBRA, show_ipv6_route_addr_cmd_vtysh,
4557 "show ipv6 route X:X::X:X",
4558 "Show running system information\n"
4559 "IP information\n"
4560 "IPv6 routing table\n"
4561 "IPv6 Address\n")
4562
4563DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_routemap_cmd_vtysh,
4564 "no redistribute connected route-map WORD",
4565 "Negate a command or set its defaults\n"
4566 "Redistribute information from another routing protocol\n"
4567 "Connected\n"
4568 "Route map reference\n"
4569 "Pointer to route-map entries\n")
4570
4571DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_advertised_route_cmd_vtysh,
4572 "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
4573 "Show running system information\n"
4574 "IPv6 information\n"
4575 "MBGP information\n"
4576 "Detailed information on TCP and BGP neighbor connections\n"
4577 "Neighbor to display information about\n"
4578 "Neighbor to display information about\n"
4579 "Display the routes advertised to a BGP neighbor\n")
4580
4581DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_all_cmd_vtysh,
4582 "show bgp ipv6 community",
4583 "Show running system information\n"
4584 "BGP information\n"
4585 "Address family\n"
4586 "Display routes matching the communities\n")
4587
4588DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_in_cmd_vtysh,
4589 "clear ip bgp view WORD * soft in",
4590 "Reset functions\n"
4591 "IP information\n"
4592 "BGP information\n"
4593 "BGP view\n"
4594 "view name\n"
4595 "Clear all peers\n"
4596 "Soft reconfig\n"
4597 "Soft reconfig inbound update\n")
4598
4599DEFSH (VTYSH_BGPD, bgp_network_mask_backdoor_cmd_vtysh,
4600 "network A.B.C.D mask A.B.C.D backdoor",
4601 "Specify a network to announce via BGP\n"
4602 "Network number\n"
4603 "Network mask\n"
4604 "Network mask\n"
4605 "Specify a BGP backdoor route\n")
4606
4607DEFSH (VTYSH_BGPD, no_bgp_bestpath_med3_cmd_vtysh,
4608 "no bgp bestpath med missing-as-worst confed",
4609 "Negate a command or set its defaults\n"
4610 "BGP specific commands\n"
4611 "Change the default bestpath selection\n"
4612 "MED attribute\n"
4613 "Treat missing MED as the least preferred one\n"
4614 "Compare MED among confederation paths\n")
4615
4616DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_description_cmd_vtysh,
4617 "no ipv6 prefix-list WORD description",
4618 "Negate a command or set its defaults\n"
4619 "IPv6 information\n"
4620 "Build a prefix list\n"
4621 "Name of a prefix list\n"
4622 "Prefix-list specific description\n")
4623
4624DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_out_cmd_vtysh,
4625 "clear bgp ipv6 <1-65535> out",
4626 "Reset functions\n"
4627 "BGP information\n"
4628 "Address family\n"
4629 "Clear peers with the AS number\n"
4630 "Soft reconfig outbound update\n")
4631
4632DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_route_cmd_vtysh,
4633 "show ip bgp ipv4 (unicast|multicast) A.B.C.D",
4634 "Show running system information\n"
4635 "IP information\n"
4636 "BGP information\n"
4637 "Address family\n"
4638 "Address Family modifier\n"
4639 "Address Family modifier\n"
4640 "Network in the BGP routing table to display\n")
4641
4642DEFSH (VTYSH_OSPFD, ospf_cost_cmd_vtysh,
4643 "ospf cost <1-65535>",
4644 "OSPF interface commands\n"
4645 "Interface cost\n"
4646 "Cost")
4647
4648DEFSH (VTYSH_BGPD, neighbor_attr_unchanged8_cmd_vtysh,
4649 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop as-path med",
4650 "Specify neighbor router\n"
4651 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4652 "BGP attribute is propagated unchanged to this neighbor\n"
4653 "Nexthop attribute\n"
4654 "As-path attribute\n"
4655 "Med attribute\n")
4656
4657DEFSH (VTYSH_BGPD, no_set_origin_cmd_vtysh,
4658 "no set origin",
4659 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00004660 "Set values in destination routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00004661 "BGP origin code\n")
4662
4663DEFSH (VTYSH_ZEBRA, ip_route_distance_cmd_vtysh,
4664 "ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0) <1-255>",
4665 "IP information\n"
4666 "Establish static routes\n"
4667 "IP destination prefix (e.g. 10.0.0.0/8)\n"
4668 "IP gateway address\n"
4669 "IP gateway interface name\n"
4670 "Null interface\n"
4671 "Distance value for this route\n")
4672
4673DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_list_cmd_vtysh,
4674 "show ip bgp ipv4 (unicast|multicast) community-list WORD",
4675 "Show running system information\n"
4676 "IP information\n"
4677 "BGP information\n"
4678 "Address family\n"
4679 "Address Family modifier\n"
4680 "Address Family modifier\n"
4681 "Display routes matching the community-list\n"
4682 "community-list name\n")
4683
4684DEFSH (VTYSH_BGPD, show_bgp_summary_cmd_vtysh,
4685 "show bgp summary",
4686 "Show running system information\n"
4687 "BGP information\n"
4688 "Summary of BGP neighbor status\n")
4689
4690DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_val_cmd_vtysh,
4691 "no redistribute static metric <0-16>",
4692 "Negate a command or set its defaults\n"
4693 "Redistribute information from another routing protocol\n"
4694 "Static routes\n"
4695 "Metric\n"
4696 "Metric value\n")
4697
4698DEFSH (VTYSH_BGPD, no_neighbor_description_val_cmd_vtysh,
4699 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "description .LINE",
4700 "Negate a command or set its defaults\n"
4701 "Specify neighbor router\n"
4702 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4703 "Neighbor specific description\n"
4704 "Up to 80 characters describing this neighbor\n")
4705
4706DEFSH (VTYSH_OSPF6D, ipv6_ospf6_hellointerval_cmd_vtysh,
4707 "ipv6 ospf6 hello-interval HELLO_INTERVAL",
4708 "IPv6 Information\n"
4709 "Open Shortest Path First (OSPF) for IPv6\n"
4710 "Time between HELLO packets\n"
4711 "<1-65535> Seconds\n"
4712 )
4713
4714DEFSH (VTYSH_BGPD, show_bgp_instance_ipv6_summary_cmd_vtysh,
4715 "show bgp view WORD ipv6 summary",
4716 "Show running system information\n"
4717 "BGP information\n"
4718 "BGP view\n"
4719 "View name\n"
4720 "Address family\n"
4721 "Summary of BGP neighbor status\n")
4722
4723DEFSH (VTYSH_OSPFD|VTYSH_BGPD, match_ip_address_cmd_vtysh,
4724 "match ip address (<1-199>|<1300-2699>|WORD)",
4725 "Match values from routing table\n"
4726 "IP information\n"
4727 "Match address of route\n"
4728 "IP access-list number\n"
4729 "IP access-list number (expanded range)\n"
4730 "IP Access-list name\n")
4731
4732DEFSH (VTYSH_BGPD, no_aggregate_address_summary_as_set_cmd_vtysh,
4733 "no aggregate-address A.B.C.D/M summary-only as-set",
4734 "Negate a command or set its defaults\n"
4735 "Configure BGP aggregate entries\n"
4736 "Aggregate prefix\n"
4737 "Filter more specific routes from updates\n"
4738 "Generate AS set path information\n")
4739
4740DEFSH (VTYSH_RIPD, no_rip_network_cmd_vtysh,
4741 "no network (A.B.C.D/M|WORD)",
4742 "Negate a command or set its defaults\n"
4743 "Enable routing on an IP network\n"
4744 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
4745 "Interface name\n")
4746
4747DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_cmd_vtysh,
4748 "show ipv6 prefix-list WORD X:X::X:X/M",
4749 "Show running system information\n"
4750 "IPv6 information\n"
4751 "Build a prefix list\n"
4752 "Name of a prefix list\n"
4753 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
4754
4755DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_list_cmd_vtysh,
4756 "show ipv6 bgp prefix-list WORD",
4757 "Show running system information\n"
4758 "IPv6 information\n"
4759 "BGP information\n"
4760 "Display routes matching the prefix-list\n"
4761 "IPv6 prefix-list name\n")
4762
4763DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_ge_cmd_vtysh,
4764 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128>",
4765 "IPv6 information\n"
4766 "Build a prefix list\n"
4767 "Name of a prefix list\n"
4768 "Specify packets to reject\n"
4769 "Specify packets to forward\n"
4770 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
4771 "Minimum prefix length to be matched\n"
4772 "Minimum prefix length\n")
4773
4774DEFSH (VTYSH_BGPD, set_aggregator_as_cmd_vtysh,
4775 "set aggregator as <1-65535> A.B.C.D",
4776 "Set values in destination routing protocol\n"
4777 "BGP aggregator attribute\n"
4778 "AS number of aggregator\n"
4779 "AS number\n"
4780 "IP address of aggregator\n")
4781
4782DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_intra_external_cmd_vtysh,
4783 "distance ospf inter-area <1-255> intra-area <1-255> external <1-255>",
4784 "Define an administrative distance\n"
4785 "OSPF Administrative distance\n"
4786 "Inter-area routes\n"
4787 "Distance for inter-area routes\n"
4788 "Intra-area routes\n"
4789 "Distance for intra-area routes\n"
4790 "External routes\n"
4791 "Distance for external routes\n")
4792
4793DEFSH (VTYSH_RIPD, no_ip_rip_authentication_key_chain2_cmd_vtysh,
4794 "no ip rip authentication key-chain LINE",
4795 "Negate a command or set its defaults\n"
4796 "IP information\n"
4797 "Routing Information Protocol\n"
4798 "Authentication control\n"
4799 "Authentication key-chain\n"
4800 "name of key-chain\n")
4801
4802DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_in_cmd_vtysh,
4803 "clear ip bgp <1-65535> soft in",
4804 "Reset functions\n"
4805 "IP information\n"
4806 "BGP information\n"
4807 "Clear peers with the AS number\n"
4808 "Soft reconfig\n"
4809 "Soft reconfig inbound update\n")
4810
4811DEFSH (VTYSH_OSPFD, no_ospf_authentication_key_cmd_vtysh,
4812 "no ospf authentication-key",
4813 "Negate a command or set its defaults\n"
4814 "OSPF interface commands\n"
4815 "Authentication password (key)\n")
4816
4817DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_cmd_vtysh,
4818 "show bgp ipv6 X:X::X:X/M",
4819 "Show running system information\n"
4820 "BGP information\n"
4821 "Address family\n"
4822 "IPv6 prefix <network>/<length>\n")
4823
4824DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged7_cmd_vtysh,
4825 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop med as-path",
4826 "Negate a command or set its defaults\n"
4827 "Specify neighbor router\n"
4828 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4829 "BGP attribute is propagated unchanged to this neighbor\n"
4830 "Nexthop attribute\n"
4831 "Med attribute\n"
4832 "As-path attribute\n")
4833
4834DEFSH (VTYSH_BGPD, neighbor_attr_unchanged3_cmd_vtysh,
4835 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop (as-path|med)",
4836 "Specify neighbor router\n"
4837 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4838 "BGP attribute is propagated unchanged to this neighbor\n"
4839 "Nexthop attribute\n"
4840 "As-path attribute\n"
4841 "Med attribute\n")
4842
4843DEFSH (VTYSH_BGPD, bgp_bestpath_med2_cmd_vtysh,
4844 "bgp bestpath med confed missing-as-worst",
4845 "BGP specific commands\n"
4846 "Change the default bestpath selection\n"
4847 "MED attribute\n"
4848 "Compare MED among confederation paths\n"
4849 "Treat missing MED as the least preferred one\n")
4850
4851DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_nomask_cmd_vtysh,
4852 "no access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D",
4853 "Negate a command or set its defaults\n"
4854 "Add an access list entry\n"
4855 "IP standard access list\n"
4856 "IP standard access list (expanded range)\n"
4857 "Specify packets to reject\n"
4858 "Specify packets to forward\n"
4859 "Address to match\n")
paul718e3742002-12-13 20:15:29 +00004860
4861DEFSH (VTYSH_BGPD, show_bgp_ipv6_community4_exact_cmd_vtysh,
4862 "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",
4863 "Show running system information\n"
4864 "BGP information\n"
4865 "Address family\n"
4866 "Display routes matching the communities\n"
4867 "community number\n"
4868 "Do not send outside local AS (well-known community)\n"
4869 "Do not advertise to any peer (well-known community)\n"
4870 "Do not export to next AS (well-known community)\n"
4871 "community number\n"
4872 "Do not send outside local AS (well-known community)\n"
4873 "Do not advertise to any peer (well-known community)\n"
4874 "Do not export to next AS (well-known community)\n"
4875 "community number\n"
4876 "Do not send outside local AS (well-known community)\n"
4877 "Do not advertise to any peer (well-known community)\n"
4878 "Do not export to next AS (well-known community)\n"
4879 "community number\n"
4880 "Do not send outside local AS (well-known community)\n"
4881 "Do not advertise to any peer (well-known community)\n"
4882 "Do not export to next AS (well-known community)\n"
4883 "Exact match of the communities")
4884
paul569c0f02003-03-02 21:19:26 +00004885DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_type_cmd_vtysh,
4886 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2)",
4887 "Redistribute information from another routing protocol\n"
4888 "Kernel routes\n"
4889 "Connected\n"
4890 "Static routes\n"
4891 "Routing Information Protocol (RIP)\n"
4892 "Border Gateway Protocol (BGP)\n"
4893 "Metric for redistributed routes\n"
4894 "OSPF default metric\n"
4895 "OSPF exterior metric type for redistributed routes\n"
4896 "Set OSPF External Type 1 metrics\n"
4897 "Set OSPF External Type 2 metrics\n")
paul718e3742002-12-13 20:15:29 +00004898
paul569c0f02003-03-02 21:19:26 +00004899DEFSH (VTYSH_BGPD, no_bgp_enforce_first_as_cmd_vtysh,
4900 "no bgp enforce-first-as",
4901 "Negate a command or set its defaults\n"
4902 "BGP information\n"
4903 "Enforce the first AS for EBGP routes\n")
4904
4905DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_host_cmd_vtysh,
4906 "access-list (<1-99>|<1300-1999>) (deny|permit) host A.B.C.D",
4907 "Add an access list entry\n"
4908 "IP standard access list\n"
4909 "IP standard access list (expanded range)\n"
4910 "Specify packets to reject\n"
4911 "Specify packets to forward\n"
4912 "A single host address\n"
4913 "Address to match\n")
4914
4915DEFSH (VTYSH_BGPD, no_aggregate_address_mask_summary_only_cmd_vtysh,
4916 "no aggregate-address A.B.C.D A.B.C.D summary-only",
4917 "Negate a command or set its defaults\n"
4918 "Configure BGP aggregate entries\n"
4919 "Aggregate address\n"
4920 "Aggregate mask\n"
4921 "Filter more specific routes from updates\n")
4922
4923DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_detail_cmd_vtysh,
4924 "show ip prefix-list detail",
paul718e3742002-12-13 20:15:29 +00004925 "Show running system information\n"
4926 "IP information\n"
4927 "Build a prefix list\n"
paul569c0f02003-03-02 21:19:26 +00004928 "Detail of prefix lists\n")
paul718e3742002-12-13 20:15:29 +00004929
paul569c0f02003-03-02 21:19:26 +00004930DEFSH (VTYSH_RIPNGD, debug_ripng_packet_detail_cmd_vtysh,
4931 "debug ripng packet (recv|send) detail",
paul718e3742002-12-13 20:15:29 +00004932 "Debugging functions (see also 'undebug')\n"
paul569c0f02003-03-02 21:19:26 +00004933 "RIPng configuration\n"
4934 "Debug option set for ripng packet\n"
4935 "Debug option set for receive packet\n"
4936 "Debug option set for send packet\n"
4937 "Debug option set detaied information\n")
paul718e3742002-12-13 20:15:29 +00004938
paul569c0f02003-03-02 21:19:26 +00004939DEFSH (VTYSH_OSPFD, no_ip_ospf_priority_cmd_vtysh,
4940 "no ip ospf priority",
paul718e3742002-12-13 20:15:29 +00004941 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00004942 "IP Information\n"
4943 "OSPF interface commands\n"
4944 "Router priority\n")
4945
4946DEFSH (VTYSH_BGPD, no_neighbor_unsuppress_map_cmd_vtysh,
4947 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "unsuppress-map WORD",
4948 "Negate a command or set its defaults\n"
4949 "Specify neighbor router\n"
4950 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4951 "Route-map to selectively unsuppress suppressed routes\n"
4952 "Name of route map\n")
4953
4954DEFSH (VTYSH_BGPD, old_no_ipv6_aggregate_address_cmd_vtysh,
4955 "no ipv6 bgp aggregate-address X:X::X:X/M",
4956 "Negate a command or set its defaults\n"
4957 "IPv6 information\n"
4958 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00004959 "Configure BGP aggregate entries\n"
4960 "Aggregate prefix\n")
4961
paul569c0f02003-03-02 21:19:26 +00004962DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_le_cmd_vtysh,
4963 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32>",
paul718e3742002-12-13 20:15:29 +00004964 "Negate a command or set its defaults\n"
4965 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00004966 "Build a prefix list\n"
4967 "Name of a prefix list\n"
4968 "sequence number of an entry\n"
4969 "Sequence number\n"
paul718e3742002-12-13 20:15:29 +00004970 "Specify packets to reject\n"
4971 "Specify packets to forward\n"
paul569c0f02003-03-02 21:19:26 +00004972 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
4973 "Maximum prefix length to be matched\n"
4974 "Maximum prefix length\n")
paul718e3742002-12-13 20:15:29 +00004975
paul569c0f02003-03-02 21:19:26 +00004976DEFSH (VTYSH_BGPD, no_neighbor_route_map_cmd_vtysh,
4977 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-map WORD (in|out)",
4978 "Negate a command or set its defaults\n"
4979 "Specify neighbor router\n"
4980 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
4981 "Apply route map to neighbor\n"
4982 "Name of route map\n"
4983 "Apply map to incoming routes\n"
4984 "Apply map to outbound routes\n")
paul718e3742002-12-13 20:15:29 +00004985
paul569c0f02003-03-02 21:19:26 +00004986DEFSH (VTYSH_OSPF6D, ipv6_ospf6_advertise_prefix_list_cmd_vtysh,
4987 "ipv6 ospf6 advertise prefix-list WORD",
4988 "IPv6 Information\n"
4989 "Open Shortest Path First (OSPF) for IPv6\n"
4990 "Advertising options\n"
4991 "Filter prefix using prefix-list\n"
4992 "Prefix list name\n"
4993 )
4994
4995DEFSH (VTYSH_OSPFD, no_area_vlink_cmd_vtysh,
4996 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D",
4997 "Negate a command or set its defaults\n"
4998 "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")
paul718e3742002-12-13 20:15:29 +00004999
5000DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_in_prefix_filter_cmd_vtysh,
5001 "clear ip bgp peer-group WORD in prefix-filter",
5002 "Reset functions\n"
5003 "IP information\n"
5004 "BGP information\n"
5005 "Clear all members of peer-group\n"
5006 "BGP peer-group name\n"
5007 "Soft reconfig inbound update\n"
5008 "Push out prefix-list ORF and do inbound soft reconfig\n")
5009
paul569c0f02003-03-02 21:19:26 +00005010DEFSH (VTYSH_BGPD, show_bgp_prefix_longer_cmd_vtysh,
5011 "show bgp X:X::X:X/M longer-prefixes",
paul718e3742002-12-13 20:15:29 +00005012 "Show running system information\n"
5013 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00005014 "IPv6 prefix <network>/<length>\n"
paul569c0f02003-03-02 21:19:26 +00005015 "Display route and more specific routes\n")
paul718e3742002-12-13 20:15:29 +00005016
paul569c0f02003-03-02 21:19:26 +00005017DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_cmd_vtysh,
5018 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft",
5019 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +00005020 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00005021 "BGP information\n"
5022 "Clear all members of peer-group\n"
5023 "BGP peer-group name\n"
5024 "Address family\n"
5025 "Address Family modifier\n"
5026 "Address Family modifier\n"
5027 "Soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00005028
paul569c0f02003-03-02 21:19:26 +00005029DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbors_peer_cmd_vtysh,
5030 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X)",
paul718e3742002-12-13 20:15:29 +00005031 "Show running system information\n"
5032 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00005033 "Address family\n"
paul718e3742002-12-13 20:15:29 +00005034 "Detailed information on TCP and BGP neighbor connections\n"
5035 "Neighbor to display information about\n"
paul569c0f02003-03-02 21:19:26 +00005036 "Neighbor to display information about\n")
paul718e3742002-12-13 20:15:29 +00005037
paul569c0f02003-03-02 21:19:26 +00005038DEFSH (VTYSH_OSPFD, ospf_abr_type_cmd_vtysh,
5039 "ospf abr-type (cisco|ibm|shortcut|standard)",
5040 "OSPF specific commands\n"
5041 "Set OSPF ABR type\n"
5042 "Alternative ABR, cisco implementation\n"
5043 "Alternative ABR, IBM implementation\n"
5044 "Shortcut ABR\n"
5045 "Standard behavior (RFC2328)\n")
paul718e3742002-12-13 20:15:29 +00005046
paul569c0f02003-03-02 21:19:26 +00005047DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_cmd_vtysh,
5048 "clear bgp (A.B.C.D|X:X::X:X) soft",
paul718e3742002-12-13 20:15:29 +00005049 "Reset functions\n"
5050 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00005051 "BGP neighbor address to clear\n"
5052 "BGP IPv6 neighbor to clear\n"
5053 "Soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00005054
paul569c0f02003-03-02 21:19:26 +00005055DEFSH (VTYSH_RIPD, rip_redistribute_type_metric_cmd_vtysh,
5056 "redistribute (kernel|connected|static|ospf|bgp) metric <0-16>",
paul718e3742002-12-13 20:15:29 +00005057 "Redistribute information from another routing protocol\n"
5058 "Kernel routes\n"
5059 "Connected\n"
5060 "Static routes\n"
5061 "Open Shortest Path First (OSPF)\n"
5062 "Border Gateway Protocol (BGP)\n"
paul569c0f02003-03-02 21:19:26 +00005063 "Metric\n"
5064 "Metric value\n")
paul718e3742002-12-13 20:15:29 +00005065
paul569c0f02003-03-02 21:19:26 +00005066DEFSH (VTYSH_ZEBRA, no_shutdown_if_cmd_vtysh,
5067 "no shutdown",
paul718e3742002-12-13 20:15:29 +00005068 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00005069 "Shutdown the selected interface\n")
paul718e3742002-12-13 20:15:29 +00005070
paul569c0f02003-03-02 21:19:26 +00005071DEFSH (VTYSH_BGPD, set_originator_id_cmd_vtysh,
5072 "set originator-id A.B.C.D",
paul718e3742002-12-13 20:15:29 +00005073 "Set values in destination routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00005074 "BGP originator ID attribute\n"
5075 "IP address of originator\n")
paul718e3742002-12-13 20:15:29 +00005076
paul569c0f02003-03-02 21:19:26 +00005077DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_description_cmd_vtysh,
5078 "ipv6 prefix-list WORD description .LINE",
5079 "IPv6 information\n"
5080 "Build a prefix list\n"
5081 "Name of a prefix list\n"
5082 "Prefix-list specific description\n"
5083 "Up to 80 characters describing this prefix-list\n")
paul718e3742002-12-13 20:15:29 +00005084
paul569c0f02003-03-02 21:19:26 +00005085DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_type_routemap_cmd_vtysh,
5086 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2) route-map WORD",
paul718e3742002-12-13 20:15:29 +00005087 "Redistribute information from another routing protocol\n"
5088 "Kernel routes\n"
5089 "Connected\n"
5090 "Static routes\n"
5091 "Routing Information Protocol (RIP)\n"
5092 "Border Gateway Protocol (BGP)\n"
5093 "Metric for redistributed routes\n"
5094 "OSPF default metric\n"
paul718e3742002-12-13 20:15:29 +00005095 "OSPF exterior metric type for redistributed routes\n"
5096 "Set OSPF External Type 1 metrics\n"
5097 "Set OSPF External Type 2 metrics\n"
5098 "Route map reference\n"
5099 "Pointer to route-map entries\n")
5100
paul569c0f02003-03-02 21:19:26 +00005101DEFSH (VTYSH_BGPD, no_debug_bgp_filter_cmd_vtysh,
5102 "no debug bgp filters",
paul718e3742002-12-13 20:15:29 +00005103 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00005104 "Debugging functions (see also 'undebug')\n"
5105 "BGP information\n"
5106 "BGP filters\n")
paul718e3742002-12-13 20:15:29 +00005107
5108DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh,
5109 "show ip bgp vpnv4 all neighbors A.B.C.D routes",
5110 "Show running system information\n"
5111 "IP information\n"
5112 "BGP information\n"
5113 "Display VPNv4 NLRI specific information\n"
5114 "Display information about all VPNv4 NLRIs\n"
5115 "Detailed information on TCP and BGP neighbor connections\n"
5116 "Neighbor to display information about\n"
5117 "Display routes learned from neighbor\n")
5118
paul569c0f02003-03-02 21:19:26 +00005119DEFSH (VTYSH_OSPFD, no_debug_ospf_nsm_cmd_vtysh,
5120 "no debug ospf nsm",
paul718e3742002-12-13 20:15:29 +00005121 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00005122 "Debugging functions (see also 'undebug')\n"
5123 "OSPF information\n"
5124 "OSPF Neighbor State Machine")
5125
5126DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_cmd_vtysh,
5127 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2)",
paul718e3742002-12-13 20:15:29 +00005128 "Redistribute information from another routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00005129 "Kernel routes\n"
5130 "Connected\n"
5131 "Static routes\n"
5132 "Routing Information Protocol (RIP)\n"
paul718e3742002-12-13 20:15:29 +00005133 "Border Gateway Protocol (BGP)\n"
paul569c0f02003-03-02 21:19:26 +00005134 "OSPF exterior metric type for redistributed routes\n"
5135 "Set OSPF External Type 1 metrics\n"
5136 "Set OSPF External Type 2 metrics\n")
paul718e3742002-12-13 20:15:29 +00005137
paul569c0f02003-03-02 21:19:26 +00005138DEFSH (VTYSH_OSPFD, no_neighbor_priority_cmd_vtysh,
5139 "no neighbor A.B.C.D priority <0-255>",
5140 "Negate a command or set its defaults\n"
5141 "Specify neighbor router\n"
5142 "Neighbor IP address\n"
5143 "Neighbor Priority\n"
5144 "Priority\n")
paul718e3742002-12-13 20:15:29 +00005145
paul569c0f02003-03-02 21:19:26 +00005146DEFSH (VTYSH_ZEBRA, no_ipv6_forwarding_cmd_vtysh,
5147 "no ipv6 forwarding",
5148 "Negate a command or set its defaults\n"
5149 "IP information\n"
5150 "Doesn't forward IPv6 protocol packet")
5151
5152DEFSH (VTYSH_RIPD, no_debug_rip_packet_cmd_vtysh,
5153 "no debug rip packet",
5154 "Negate a command or set its defaults\n"
5155 "Debugging functions (see also 'undebug')\n"
5156 "RIP information\n"
5157 "RIP packet\n")
5158
5159DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_le_ge_cmd_vtysh,
5160 "ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
5161 "IP information\n"
5162 "Build a prefix list\n"
5163 "Name of a prefix list\n"
5164 "Specify packets to reject\n"
5165 "Specify packets to forward\n"
5166 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5167 "Maximum prefix length to be matched\n"
5168 "Maximum prefix length\n"
5169 "Minimum prefix length to be matched\n"
5170 "Minimum prefix length\n")
5171
5172DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_cmd_vtysh,
5173 "ip prefix-list WORD (deny|permit) (A.B.C.D/M|any)",
5174 "IP information\n"
5175 "Build a prefix list\n"
5176 "Name of a prefix list\n"
5177 "Specify packets to reject\n"
5178 "Specify packets to forward\n"
5179 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5180 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
5181
5182DEFSH (VTYSH_BGPD, show_ip_bgp_community_info_cmd_vtysh,
5183 "show ip bgp community-info",
paul718e3742002-12-13 20:15:29 +00005184 "Show running system information\n"
5185 "IP information\n"
5186 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00005187 "List all bgp community information\n")
paul718e3742002-12-13 20:15:29 +00005188
paul569c0f02003-03-02 21:19:26 +00005189DEFSH (VTYSH_OSPF6D, debug_ospf6_damp_cmd_vtysh,
5190 "debug ospf6 damp",
5191 "Debugging functions (see also 'undebug')\n"
5192 "Open Shortest Path First (OSPF) for IPv6\n"
5193 "Flap-dampening information\n"
5194 )
5195
5196DEFSH (VTYSH_BGPD, neighbor_attr_unchanged9_cmd_vtysh,
5197 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med next-hop as-path",
5198 "Specify neighbor router\n"
5199 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5200 "BGP attribute is propagated unchanged to this neighbor\n"
5201 "Med attribute\n"
5202 "Nexthop attribute\n"
5203 "As-path attribute\n")
5204
5205DEFSH (VTYSH_BGPD, no_set_ecommunity_soo_val_cmd_vtysh,
5206 "no set extcommunity soo .ASN:nn_or_IP-address:nn",
5207 "Negate a command or set its defaults\n"
5208 "Set values in destination routing protocol\n"
5209 "BGP extended community attribute\n"
5210 "Site-of-Origin extended community\n"
5211 "VPN extended community\n")
5212
5213DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_remark_cmd_vtysh,
5214 "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark",
5215 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00005216 "Add an access list entry\n"
5217 "IP standard access list\n"
5218 "IP extended access list\n"
5219 "IP standard access list (expanded range)\n"
5220 "IP extended access list (expanded range)\n"
5221 "IP zebra access-list\n"
paul569c0f02003-03-02 21:19:26 +00005222 "Access list entry comment\n")
paul718e3742002-12-13 20:15:29 +00005223
paul569c0f02003-03-02 21:19:26 +00005224DEFSH (VTYSH_ZEBRA, debug_zebra_packet_direct_cmd_vtysh,
5225 "debug zebra packet (recv|send)",
5226 "Debugging functions (see also 'undebug')\n"
5227 "Zebra configuration\n"
5228 "Debug option set for zebra packet\n"
5229 "Debug option set for receive packet\n"
5230 "Debug option set for send packet\n")
paul718e3742002-12-13 20:15:29 +00005231
paul569c0f02003-03-02 21:19:26 +00005232DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_global_cmd_vtysh,
5233 "no set ipv6 next-hop global",
paul718e3742002-12-13 20:15:29 +00005234 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00005235 "Set values in destination routing protocol\n"
paul718e3742002-12-13 20:15:29 +00005236 "IPv6 information\n"
paul569c0f02003-03-02 21:19:26 +00005237 "IPv6 next-hop address\n"
5238 "IPv6 global address\n")
paul718e3742002-12-13 20:15:29 +00005239
paul569c0f02003-03-02 21:19:26 +00005240DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_out_cmd_vtysh,
5241 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft out",
paul718e3742002-12-13 20:15:29 +00005242 "Reset functions\n"
5243 "IP information\n"
5244 "BGP information\n"
5245 "Clear all members of peer-group\n"
5246 "BGP peer-group name\n"
5247 "Address family\n"
5248 "Address Family modifier\n"
5249 "Address Family modifier\n"
paul569c0f02003-03-02 21:19:26 +00005250 "Soft reconfig\n"
5251 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00005252
paul569c0f02003-03-02 21:19:26 +00005253DEFSH (VTYSH_BGPD, no_bgp_always_compare_med_cmd_vtysh,
5254 "no bgp always-compare-med",
5255 "Negate a command or set its defaults\n"
5256 "BGP specific commands\n"
5257 "Allow comparing MED from different neighbors\n")
5258
5259DEFSH (VTYSH_ZEBRA, show_ipv6_route_prefix_cmd_vtysh,
5260 "show ipv6 route X:X::X:X/M",
5261 "Show running system information\n"
5262 "IP information\n"
5263 "IPv6 routing table\n"
5264 "IPv6 prefix\n")
5265
5266DEFSH (VTYSH_BGPD, show_ip_bgp_instance_neighbors_peer_cmd_vtysh,
5267 "show ip bgp view WORD neighbors (A.B.C.D|X:X::X:X)",
5268 "Show running system information\n"
5269 "IP information\n"
5270 "BGP information\n"
5271 "BGP view\n"
5272 "View name\n"
5273 "Detailed information on TCP and BGP neighbor connections\n"
5274 "Neighbor to display information about\n"
5275 "Neighbor to display information about\n")
5276
5277DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_out_cmd_vtysh,
5278 "clear bgp ipv6 <1-65535> soft out",
paul718e3742002-12-13 20:15:29 +00005279 "Reset functions\n"
5280 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00005281 "Address family\n"
5282 "Clear peers with the AS number\n"
5283 "Soft reconfig\n"
5284 "Soft reconfig outbound update\n")
5285
5286DEFSH (VTYSH_ZEBRA, no_ipv6_route_cmd_vtysh,
5287 "no ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE)",
5288 "Negate a command or set its defaults\n"
5289 "IP information\n"
5290 "Establish static routes\n"
5291 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
5292 "IPv6 gateway address\n"
5293 "IPv6 gateway interface name\n")
5294
5295DEFSH (VTYSH_BGPD, clear_ip_bgp_external_in_prefix_filter_cmd_vtysh,
5296 "clear ip bgp external in prefix-filter",
5297 "Reset functions\n"
5298 "IP information\n"
5299 "BGP information\n"
5300 "Clear all external peers\n"
5301 "Soft reconfig inbound update\n"
5302 "Push out prefix-list ORF and do inbound soft reconfig\n")
5303
5304DEFSH (VTYSH_BGPD, no_neighbor_version_cmd_vtysh,
5305 "no neighbor (A.B.C.D|X:X::X:X) " "version",
5306 "Negate a command or set its defaults\n"
5307 "Specify neighbor router\n"
5308 "Neighbor address\nIPv6 address\n"
5309 "Neighbor's BGP version\n")
5310
5311DEFSH (VTYSH_OSPF6D, show_ipv6_route_ospf6_external_cmd_vtysh,
5312 "show ipv6 ospf6 route redistribute",
5313 "Show running system information\n"
5314 "IPv6 Information\n"
5315 "Routing Table\n"
5316 "Open Shortest Path First (OSPF) for IPv6\n"
5317 "redistributing External information\n"
5318 )
5319
5320DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_in_cmd_vtysh,
5321 "clear ip bgp A.B.C.D vpnv4 unicast soft in",
5322 "Reset functions\n"
5323 "IP information\n"
5324 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00005325 "BGP neighbor address to clear\n"
paul569c0f02003-03-02 21:19:26 +00005326 "Address family\n"
5327 "Address Family Modifier\n"
paul718e3742002-12-13 20:15:29 +00005328 "Soft reconfig\n"
5329 "Soft reconfig inbound update\n")
5330
paul569c0f02003-03-02 21:19:26 +00005331DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_in_cmd_vtysh,
5332 "clear bgp ipv6 * soft in",
5333 "Reset functions\n"
5334 "BGP information\n"
5335 "Address family\n"
5336 "Clear all peers\n"
5337 "Soft reconfig\n"
5338 "Soft reconfig inbound update\n")
paul718e3742002-12-13 20:15:29 +00005339
paul569c0f02003-03-02 21:19:26 +00005340DEFSH (VTYSH_OSPF6D, ospf6_redistribute_routemap_cmd_vtysh,
5341 "redistribute (static|kernel|connected|ripng|bgp) route-map WORD",
5342 "Redistribute\n"
5343 "Static routes\n"
5344 "Kernel route\n"
5345 "Connected route\n"
5346 "RIPng route\n"
5347 "BGP route\n"
5348 "Route map reference\n"
5349 "Route map name\n"
5350 )
5351
5352DEFSH (VTYSH_BGPD, set_ecommunity_rt_cmd_vtysh,
5353 "set extcommunity rt .ASN:nn_or_IP-address:nn",
5354 "Set values in destination routing protocol\n"
5355 "BGP extended community attribute\n"
5356 "Route Target extened communityt\n"
5357 "VPN extended community\n")
5358
5359DEFSH (VTYSH_BGPD, neighbor_local_as_cmd_vtysh,
5360 "neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535>",
5361 "Specify neighbor router\n"
5362 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5363 "Specify a local-as number\n"
5364 "AS number used as local AS\n")
5365
5366DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ipv6_access_list_name_cmd_vtysh,
5367 "show ipv6 access-list WORD",
5368 "Show running system information\n"
5369 "IPv6 information\n"
5370 "List IPv6 access lists\n"
5371 "IPv6 zebra access-list\n")
5372
5373DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_host_cmd_vtysh,
5374 "no access-list (<1-99>|<1300-1999>) (deny|permit) host A.B.C.D",
paul718e3742002-12-13 20:15:29 +00005375 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00005376 "Add an access list entry\n"
5377 "IP standard access list\n"
5378 "IP standard access list (expanded range)\n"
5379 "Specify packets to reject\n"
5380 "Specify packets to forward\n"
5381 "A single host address\n"
5382 "Address to match\n")
5383
5384DEFSH (VTYSH_OSPFD, no_area_import_list_cmd_vtysh,
5385 "no area (A.B.C.D|<0-4294967295>) import-list NAME",
5386 "Negate a command or set its defaults\n"
5387 "OSPF area parameters\n"
5388 "OSPF area ID in IP address format\n"
5389 "OSPF area ID as a decimal value\n"
5390 "Unset the filter for networks announced to other areas\n"
5391 "Name of the access-list\n")
5392
5393DEFSH (VTYSH_BGPD, show_ip_bgp_cidr_only_cmd_vtysh,
5394 "show ip bgp cidr-only",
5395 "Show running system information\n"
5396 "IP information\n"
5397 "BGP information\n"
5398 "Display only routes with non-natural netmasks\n")
5399
5400DEFSH (VTYSH_RIPNGD, ripng_timers_cmd_vtysh,
5401 "timers basic <0-65535> <0-65535> <0-65535>",
5402 "RIPng timers setup\n"
5403 "Basic timer\n"
5404 "Routing table update timer value in second. Default is 30.\n"
5405 "Routing information timeout timer. Default is 180.\n"
5406 "Garbage collection timer. Default is 120.\n")
5407
5408DEFSH (VTYSH_BGPD, neighbor_transparent_as_cmd_vtysh,
5409 "neighbor (A.B.C.D|X:X::X:X) " "transparent-as",
5410 "Specify neighbor router\n"
5411 "Neighbor address\nIPv6 address\n"
5412 "Do not append my AS number even peer is EBGP peer\n")
5413
5414DEFSH (VTYSH_OSPFD, area_nssa_no_summary_cmd_vtysh,
5415 "area (A.B.C.D|<0-4294967295>) nssa no-summary",
5416 "OSPF area parameters\n"
5417 "OSPF area ID in IP address format\n"
5418 "OSPF area ID as a decimal value\n"
5419 "Configure OSPF area as nssa\n"
5420 "Do not inject inter-area routes into nssa\n")
5421
5422DEFSH (VTYSH_BGPD, ip_extcommunity_list_expanded_cmd_vtysh,
5423 "ip extcommunity-list <100-199> (deny|permit) .LINE",
5424 "IP information\n"
5425 "Add a extended community list entry\n"
5426 "Extended Community list number (expanded)\n"
5427 "Specify community to reject\n"
5428 "Specify community to accept\n"
5429 "An ordered list as a regular-expression\n")
5430
5431DEFSH (VTYSH_RIPD, no_router_rip_cmd_vtysh,
5432 "no router rip",
5433 "Negate a command or set its defaults\n"
5434 "Enable a routing process\n"
5435 "Routing Information Protocol (RIP)\n")
5436
5437DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_le_cmd_vtysh,
5438 "no ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32>",
5439 "Negate a command or set its defaults\n"
5440 "IP information\n"
5441 "Build a prefix list\n"
5442 "Name of a prefix list\n"
5443 "Specify packets to reject\n"
5444 "Specify packets to forward\n"
5445 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5446 "Maximum prefix length to be matched\n"
5447 "Maximum prefix length\n")
5448
5449DEFSH (VTYSH_BGPD, show_ip_bgp_route_cmd_vtysh,
5450 "show ip bgp A.B.C.D",
5451 "Show running system information\n"
5452 "IP information\n"
5453 "BGP information\n"
5454 "Network in the BGP routing table to display\n")
5455
5456DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_ge_le_cmd_vtysh,
5457 "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
paul718e3742002-12-13 20:15:29 +00005458 "IP information\n"
5459 "Build a prefix list\n"
5460 "Name of a prefix list\n"
5461 "sequence number of an entry\n"
5462 "Sequence number\n"
5463 "Specify packets to reject\n"
5464 "Specify packets to forward\n"
5465 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5466 "Minimum prefix length to be matched\n"
5467 "Minimum prefix length\n"
5468 "Maximum prefix length to be matched\n"
5469 "Maximum prefix length\n")
5470
paul569c0f02003-03-02 21:19:26 +00005471DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh,
5472 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D advertised-routes",
5473 "Show running system information\n"
5474 "IP information\n"
5475 "BGP information\n"
5476 "Display VPNv4 NLRI specific information\n"
5477 "Display information for a route distinguisher\n"
5478 "VPN Route Distinguisher\n"
5479 "Detailed information on TCP and BGP neighbor connections\n"
5480 "Neighbor to display information about\n"
5481 "Display the routes advertised to a BGP neighbor\n")
5482
5483DEFSH (VTYSH_OSPFD, no_ospf_opaque_capable_cmd_vtysh,
5484 "no ospf opaque-lsa",
paul718e3742002-12-13 20:15:29 +00005485 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00005486 "OSPF specific commands\n"
5487 "Disable the Opaque-LSA capability (rfc2370)\n")
5488
5489DEFSH (VTYSH_OSPFD, ospf_priority_cmd_vtysh,
5490 "ospf priority <0-255>",
paul718e3742002-12-13 20:15:29 +00005491 "OSPF interface commands\n"
paul569c0f02003-03-02 21:19:26 +00005492 "Router priority\n"
5493 "Priority\n")
5494
5495DEFSH (VTYSH_OSPFD, ospf_hello_interval_cmd_vtysh,
5496 "ospf hello-interval <1-65535>",
5497 "OSPF interface commands\n"
5498 "Time between HELLO packets\n"
5499 "Seconds\n")
5500
5501DEFSH (VTYSH_BGPD, no_bgp_network_mask_cmd_vtysh,
5502 "no network A.B.C.D mask A.B.C.D",
5503 "Negate a command or set its defaults\n"
5504 "Specify a network to announce via BGP\n"
5505 "Network number\n"
5506 "Network mask\n"
5507 "Network mask\n")
5508
5509DEFSH (VTYSH_BGPD, no_aggregate_address_summary_only_cmd_vtysh,
5510 "no aggregate-address A.B.C.D/M summary-only",
5511 "Negate a command or set its defaults\n"
5512 "Configure BGP aggregate entries\n"
5513 "Aggregate prefix\n"
5514 "Filter more specific routes from updates\n")
5515
5516DEFSH (VTYSH_RIPD, rip_redistribute_type_cmd_vtysh,
5517 "redistribute (kernel|connected|static|ospf|bgp)",
5518 "Redistribute information from another routing protocol\n"
5519 "Kernel routes\n"
5520 "Connected\n"
5521 "Static routes\n"
5522 "Open Shortest Path First (OSPF)\n"
5523 "Border Gateway Protocol (BGP)\n")
5524
5525DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_first_match_cmd_vtysh,
5526 "show ipv6 prefix-list WORD X:X::X:X/M first-match",
5527 "Show running system information\n"
5528 "IPv6 information\n"
5529 "Build a prefix list\n"
5530 "Name of a prefix list\n"
5531 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
5532 "First matched prefix\n")
5533
5534DEFSH (VTYSH_BGPD, neighbor_capability_orf_prefix_cmd_vtysh,
5535 "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability orf prefix-list (both|send|receive)",
5536 "Specify neighbor router\n"
5537 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5538 "Advertise capability to the peer\n"
5539 "Advertise ORF capability to the peer\n"
5540 "Advertise prefixlist ORF capability to this neighbor\n"
5541 "Capability to SEND and RECEIVE the ORF to/from this neighbor\n"
5542 "Capability to RECEIVE the ORF from this neighbor\n"
5543 "Capability to SEND the ORF to this neighbor\n")
5544
5545DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_cmd_vtysh,
5546 "clear ip bgp external ipv4 (unicast|multicast) soft",
5547 "Reset functions\n"
5548 "IP information\n"
5549 "BGP information\n"
5550 "Clear all external peers\n"
5551 "Address family\n"
5552 "Address Family modifier\n"
5553 "Address Family modifier\n"
5554 "Soft reconfig\n")
5555
5556DEFSH (VTYSH_BGPD, no_neighbor_set_peer_group_cmd_vtysh,
5557 "no neighbor (A.B.C.D|X:X::X:X) " "peer-group WORD",
5558 "Negate a command or set its defaults\n"
5559 "Specify neighbor router\n"
5560 "Neighbor address\nIPv6 address\n"
5561 "Member of the peer-group\n"
5562 "peer-group name\n")
5563
5564DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_out_cmd_vtysh,
5565 "clear ip bgp view WORD * soft out",
5566 "Reset functions\n"
5567 "IP information\n"
5568 "BGP information\n"
5569 "BGP view\n"
5570 "view name\n"
5571 "Clear all peers\n"
5572 "Soft reconfig\n"
5573 "Soft reconfig outbound update\n")
5574
5575DEFSH (VTYSH_BGPD, bgp_network_mask_route_map_cmd_vtysh,
5576 "network A.B.C.D mask A.B.C.D route-map WORD",
5577 "Specify a network to announce via BGP\n"
5578 "Network number\n"
5579 "Network mask\n"
5580 "Network mask\n"
5581 "Route-map to modify the attributes\n"
5582 "Name of the route map\n")
5583
5584DEFSH (VTYSH_BGPD, aggregate_address_as_set_cmd_vtysh,
5585 "aggregate-address A.B.C.D/M as-set",
5586 "Configure BGP aggregate entries\n"
5587 "Aggregate prefix\n"
5588 "Generate AS set path information\n")
5589
5590DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_cmd_vtysh,
5591 "show ipv6 ospf6 area A.B.C.D topology",
5592 "Show running system information\n"
5593 "IPv6 Information\n"
5594 "Open Shortest Path First (OSPF) for IPv6\n"
5595 "Area information\n"
5596 "Area ID (as an IPv4 notation)\n"
5597 "Shortest Path First tree information\n"
5598 "Displays SPF topology table\n")
5599
5600DEFSH (VTYSH_BGPD, no_neighbor_peer_group_remote_as_cmd_vtysh,
5601 "no neighbor WORD remote-as <1-65535>",
5602 "Negate a command or set its defaults\n"
5603 "Specify neighbor router\n"
5604 "Neighbor tag\n"
5605 "Specify a BGP neighbor\n"
5606 "AS number\n")
5607
5608DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_ge_cmd_vtysh,
5609 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32>",
5610 "Negate a command or set its defaults\n"
5611 "IP information\n"
5612 "Build a prefix list\n"
5613 "Name of a prefix list\n"
5614 "sequence number of an entry\n"
5615 "Sequence number\n"
5616 "Specify packets to reject\n"
5617 "Specify packets to forward\n"
5618 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5619 "Minimum prefix length to be matched\n"
5620 "Minimum prefix length\n")
5621
5622DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_routemap_cmd_vtysh,
5623 "no redistribute static route-map WORD",
5624 "Negate a command or set its defaults\n"
5625 "Redistribute information from another routing protocol\n"
5626 "Static routes\n"
5627 "Route map reference\n"
5628 "Pointer to route-map entries\n")
5629
5630DEFSH (VTYSH_RIPD, rip_network_cmd_vtysh,
5631 "network (A.B.C.D/M|WORD)",
5632 "Enable routing on an IP network\n"
5633 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5634 "Interface name\n")
5635
5636DEFSH (VTYSH_ZEBRA, ip_route_mask_cmd_vtysh,
5637 "ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0)",
5638 "IP information\n"
5639 "Establish static routes\n"
5640 "IP destination prefix\n"
5641 "IP destination prefix mask\n"
5642 "IP gateway address\n"
5643 "IP gateway interface name\n"
5644 "Null interface\n")
5645
5646DEFSH (VTYSH_BGPD, show_bgp_ipv6_regexp_cmd_vtysh,
5647 "show bgp ipv6 regexp .LINE",
5648 "Show running system information\n"
5649 "BGP information\n"
5650 "Address family\n"
5651 "Display routes matching the AS path regular expression\n"
5652 "A regular-expression to match the BGP AS paths\n")
5653
5654DEFSH (VTYSH_RIPD, debug_rip_zebra_cmd_vtysh,
5655 "debug rip zebra",
5656 "Debugging functions (see also 'undebug')\n"
5657 "RIP information\n"
5658 "RIP and ZEBRA communication\n")
5659
5660DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_match_metric_val_cmd_vtysh,
5661 "no match metric <0-4294967295>",
5662 "Negate a command or set its defaults\n"
5663 "Match values from routing table\n"
5664 "Match metric of route\n"
5665 "Metric value\n")
5666
5667DEFSH (VTYSH_BGPD, no_match_ipv6_address_cmd_vtysh,
5668 "no match ipv6 address WORD",
5669 "Negate a command or set its defaults\n"
5670 "Match values from routing table\n"
5671 "IPv6 information\n"
5672 "Match IPv6 address of route\n"
5673 "IPv6 access-list name\n")
5674
5675DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_cmd_vtysh,
5676 "show ip ospf neighbor",
5677 "Show running system information\n"
5678 "IP information\n"
5679 "OSPF information\n"
5680 "Neighbor list\n")
5681
5682DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_list_cmd_vtysh,
5683 "show ipv6 mbgp community-list WORD",
5684 "Show running system information\n"
5685 "IPv6 information\n"
5686 "MBGP information\n"
5687 "Display routes matching the community-list\n"
5688 "community-list name\n")
5689
5690DEFSH (VTYSH_RIPNGD, no_ripng_default_metric_val_cmd_vtysh,
5691 "no default-metric <1-16>",
5692 "Negate a command or set its defaults\n"
5693 "Set a metric of redistribute routes\n"
5694 "Default metric\n")
5695
5696DEFSH (VTYSH_RIPNGD, no_debug_ripng_zebra_cmd_vtysh,
5697 "no debug ripng zebra",
5698 "Negate a command or set its defaults\n"
5699 "Debugging functions (see also 'undebug')\n"
5700 "RIPng configuration\n"
5701 "Debug option set for ripng and zebra communication\n")
5702
5703DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_any_cmd_vtysh,
5704 "no ipv6 access-list WORD (deny|permit) any",
5705 "Negate a command or set its defaults\n"
5706 "IPv6 information\n"
5707 "Add an access list entry\n"
5708 "IPv6 zebra access-list\n"
5709 "Specify packets to reject\n"
5710 "Specify packets to forward\n"
5711 "Any prefixi to match\n")
5712
5713DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_ge_cmd_vtysh,
5714 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128>",
5715 "Negate a command or set its defaults\n"
5716 "IPv6 information\n"
5717 "Build a prefix list\n"
5718 "Name of a prefix list\n"
5719 "Specify packets to reject\n"
5720 "Specify packets to forward\n"
5721 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
5722 "Minimum prefix length to be matched\n"
5723 "Minimum prefix length\n")
5724
5725DEFSH (VTYSH_ZEBRA, no_ip_forwarding_cmd_vtysh,
5726 "no ip forwarding",
5727 "Negate a command or set its defaults\n"
5728 "IP information\n"
5729 "Turn off IP forwarding")
5730
5731DEFSH (VTYSH_BGPD, no_set_aspath_prepend_val_cmd_vtysh,
5732 "no set as-path prepend .<1-65535>",
5733 "Negate a command or set its defaults\n"
5734 "Set values in destination routing protocol\n"
5735 "Prepend string for a BGP AS-path attribute\n"
5736 "Prepend to the as-path\n"
5737 "AS number\n")
5738
5739DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged4_cmd_vtysh,
5740 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med (as-path|next-hop)",
5741 "Negate a command or set its defaults\n"
5742 "Specify neighbor router\n"
5743 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
5744 "BGP attribute is propagated unchanged to this neighbor\n"
5745 "Med attribute\n"
5746 "As-path attribute\n"
5747 "Nexthop attribute\n")
5748
5749DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_adv_router_cmd_vtysh,
5750 "show ip ospf database (" "asbr-summary|external|network|router|summary" "|nssa-external" "|opaque-link|opaque-area|opaque-as" ") A.B.C.D adv-router A.B.C.D",
5751 "Show running system information\n"
5752 "IP information\n"
5753 "OSPF information\n"
5754 "Database summary\n"
5755 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "NSSA external link state\n" "Link local Opaque-LSA\n" "Link area Opaque-LSA\n" "Link AS Opaque-LSA\n"
5756 "Link State ID (as an IP address)\n"
5757 "Advertising Router link states\n"
5758 "Advertising Router (as an IP address)\n")
paul718e3742002-12-13 20:15:29 +00005759
5760DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_le_cmd_vtysh,
5761 "ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32>",
5762 "IP information\n"
5763 "Build a prefix list\n"
5764 "Name of a prefix list\n"
5765 "Specify packets to reject\n"
5766 "Specify packets to forward\n"
5767 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5768 "Maximum prefix length to be matched\n"
5769 "Maximum prefix length\n")
5770
paul569c0f02003-03-02 21:19:26 +00005771DEFSH (VTYSH_RIPD|VTYSH_OSPFD, match_interface_cmd_vtysh,
5772 "match interface WORD",
5773 "Match values from routing table\n"
5774 "Match first hop interface of route\n"
5775 "Interface name\n")
paul718e3742002-12-13 20:15:29 +00005776
paul569c0f02003-03-02 21:19:26 +00005777DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_cmd_vtysh,
5778 "no ip ospf authentication",
5779 "Negate a command or set its defaults\n"
5780 "IP Information\n"
5781 "OSPF interface commands\n"
5782 "Enable authentication on this interface\n")
5783
5784DEFSH (VTYSH_OSPFD, no_area_range_advertise_cost_cmd_vtysh,
5785 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>",
5786 "Negate a command or set its defaults\n"
5787 "OSPF area parameters\n"
5788 "OSPF area ID in IP address format\n"
5789 "OSPF area ID as a decimal value\n"
5790 "Summarize routes matching address/mask (border routers only)\n"
5791 "Area range prefix\n"
5792 "Advertise this range (default)\n"
5793 "User specified metric for this range\n"
5794 "Advertised metric for this range\n")
5795
5796DEFSH (VTYSH_BGPD, no_bgp_default_local_preference_val_cmd_vtysh,
5797 "no bgp default local-preference <0-4294967295>",
5798 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00005799 "BGP specific commands\n"
paul569c0f02003-03-02 21:19:26 +00005800 "Configure BGP defaults\n"
5801 "local preference (higher=more preferred)\n"
5802 "Configure default local preference value\n")
paul718e3742002-12-13 20:15:29 +00005803
paul569c0f02003-03-02 21:19:26 +00005804DEFSH (VTYSH_OSPFD, ospf_rfc1583_flag_cmd_vtysh,
5805 "ospf rfc1583compatibility",
5806 "OSPF specific commands\n"
5807 "Enable the RFC1583Compatibility flag\n")
5808
5809DEFSH (VTYSH_OSPFD, area_filter_list_cmd_vtysh,
5810 "area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)",
5811 "OSPF area parameters\n"
5812 "OSPF area ID in IP address format\n"
5813 "OSPF area ID as a decimal value\n"
5814 "Filter networks between OSPF areas\n"
5815 "Filter prefixes between OSPF areas\n"
5816 "Name of an IP prefix-list\n"
5817 "Filter networks sent to this area\n"
5818 "Filter networks sent from this area\n")
5819
5820DEFSH (VTYSH_RIPD, ip_rip_send_version_1_cmd_vtysh,
5821 "ip rip send version 1 2",
5822 "IP information\n"
5823 "Routing Information Protocol\n"
5824 "Advertisement transmission\n"
5825 "Version control\n"
5826 "RIP version 1\n"
5827 "RIP version 2\n")
paul718e3742002-12-13 20:15:29 +00005828
5829DEFSH (VTYSH_BGPD, show_bgp_ipv6_community3_cmd_vtysh,
5830 "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)",
5831 "Show running system information\n"
5832 "BGP information\n"
5833 "Address family\n"
5834 "Display routes matching the communities\n"
5835 "community number\n"
5836 "Do not send outside local AS (well-known community)\n"
5837 "Do not advertise to any peer (well-known community)\n"
5838 "Do not export to next AS (well-known community)\n"
5839 "community number\n"
5840 "Do not send outside local AS (well-known community)\n"
5841 "Do not advertise to any peer (well-known community)\n"
5842 "Do not export to next AS (well-known community)\n"
5843 "community number\n"
5844 "Do not send outside local AS (well-known community)\n"
5845 "Do not advertise to any peer (well-known community)\n"
5846 "Do not export to next AS (well-known community)\n")
5847
paul569c0f02003-03-02 21:19:26 +00005848DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_in_cmd_vtysh,
5849 "clear ip bgp * vpnv4 unicast in",
5850 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +00005851 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00005852 "BGP information\n"
5853 "Clear all peers\n"
5854 "Address family\n"
5855 "Address Family Modifier\n"
5856 "Soft reconfig inbound update\n")
paul718e3742002-12-13 20:15:29 +00005857
paul569c0f02003-03-02 21:19:26 +00005858DEFSH (VTYSH_BGPD, bgp_network_import_check_cmd_vtysh,
5859 "bgp network import-check",
5860 "BGP specific commands\n"
5861 "BGP network command\n"
5862 "Check BGP network route exists in IGP\n")
paul718e3742002-12-13 20:15:29 +00005863
paul569c0f02003-03-02 21:19:26 +00005864DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_out_cmd_vtysh,
5865 "clear bgp ipv6 peer-group WORD soft out",
5866 "Reset functions\n"
5867 "BGP information\n"
5868 "Address family\n"
5869 "Clear all members of peer-group\n"
5870 "BGP peer-group name\n"
5871 "Soft reconfig\n"
5872 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00005873
paul569c0f02003-03-02 21:19:26 +00005874DEFSH (VTYSH_OSPFD, ip_ospf_priority_cmd_vtysh,
5875 "ip ospf priority <0-255>",
5876 "IP Information\n"
5877 "OSPF interface commands\n"
5878 "Router priority\n"
5879 "Priority\n")
5880
5881DEFSH (VTYSH_OSPFD, debug_ospf_lsa_cmd_vtysh,
5882 "debug ospf lsa",
5883 "Debugging functions (see also 'undebug')\n"
5884 "OSPF information\n"
5885 "OSPF Link State Advertisement\n")
5886
5887DEFSH (VTYSH_ZEBRA, show_ip_route_prefix_longer_cmd_vtysh,
5888 "show ip route A.B.C.D/M longer-prefixes",
5889 "Show running system information\n"
5890 "IP information\n"
5891 "IP routing table\n"
5892 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
5893 "Show route matching the specified Network/Mask pair only\n")
5894
5895DEFSH (VTYSH_BGPD, bgp_always_compare_med_cmd_vtysh,
5896 "bgp always-compare-med",
5897 "BGP specific commands\n"
5898 "Allow comparing MED from different neighbors\n")
5899
5900DEFSH (VTYSH_OSPFD, ospf_distribute_list_out_cmd_vtysh,
5901 "distribute-list WORD out (kernel|connected|static|rip|bgp)",
5902 "Filter networks in routing updates\n"
5903 "Access-list name\n"
5904 "Filter outgoing routing updates\n"
5905 "Kernel routes\n"
5906 "Connected\n"
5907 "Static routes\n"
5908 "Routing Information Protocol (RIP)\n"
5909 "Border Gateway Protocol (BGP)\n")
5910
5911DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community3_cmd_vtysh,
5912 "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)",
paul718e3742002-12-13 20:15:29 +00005913 "Show running system information\n"
5914 "IP information\n"
5915 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00005916 "Address family\n"
5917 "Address Family modifier\n"
5918 "Address Family modifier\n"
5919 "Display routes matching the communities\n"
5920 "community number\n"
5921 "Do not send outside local AS (well-known community)\n"
5922 "Do not advertise to any peer (well-known community)\n"
5923 "Do not export to next AS (well-known community)\n"
5924 "community number\n"
5925 "Do not send outside local AS (well-known community)\n"
5926 "Do not advertise to any peer (well-known community)\n"
5927 "Do not export to next AS (well-known community)\n"
5928 "community number\n"
5929 "Do not send outside local AS (well-known community)\n"
5930 "Do not advertise to any peer (well-known community)\n"
5931 "Do not export to next AS (well-known community)\n")
paul718e3742002-12-13 20:15:29 +00005932
paul569c0f02003-03-02 21:19:26 +00005933DEFSH (VTYSH_RIPD, match_ip_next_hop_cmd_vtysh,
5934 "match ip next-hop WORD",
5935 "Match values from routing table\n"
5936 "IP information\n"
5937 "Match next-hop address of route\n"
5938 "IP access-list name\n")
5939
5940DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_cmd_vtysh,
5941 "show ip prefix-list WORD A.B.C.D/M",
5942 "Show running system information\n"
5943 "IP information\n"
5944 "Build a prefix list\n"
5945 "Name of a prefix list\n"
5946 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
5947
5948DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ipv6_prefix_list_name_cmd_vtysh,
5949 "clear ipv6 prefix-list WORD",
5950 "Reset functions\n"
5951 "IPv6 information\n"
5952 "Build a prefix list\n"
5953 "Name of a prefix list\n")
5954
5955DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_cmd_vtysh,
5956 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export)",
5957 "Show running system information\n"
5958 "IPv6 information\n"
5959 "MBGP information\n"
5960 "Display routes matching the communities\n"
5961 "community number\n"
5962 "Do not send outside local AS (well-known community)\n"
5963 "Do not advertise to any peer (well-known community)\n"
5964 "Do not export to next AS (well-known community)\n")
5965
5966DEFSH (VTYSH_ZEBRA, ip_irdp_holdtime_cmd_vtysh,
5967 "ip irdp holdtime <0-9000>",
5968 "IP information\n"
5969 "ICMP Router discovery on this interface\n"
5970 "Set holdtime value\n"
5971 "Holdtime value in seconds. Default is 1800 seconds\n")
5972
5973DEFSH (VTYSH_BGPD, clear_bgp_all_soft_cmd_vtysh,
5974 "clear bgp * soft",
5975 "Reset functions\n"
5976 "BGP information\n"
5977 "Clear all peers\n"
5978 "Soft reconfig\n")
5979
5980DEFSH (VTYSH_BGPD, no_aggregate_address_mask_cmd_vtysh,
5981 "no aggregate-address A.B.C.D A.B.C.D",
5982 "Negate a command or set its defaults\n"
5983 "Configure BGP aggregate entries\n"
5984 "Aggregate address\n"
5985 "Aggregate mask\n")
5986
5987DEFSH (VTYSH_RIPD, key_string_cmd_vtysh,
5988 "key-string LINE",
5989 "Set key string\n"
5990 "The key\n")
5991
5992DEFSH (VTYSH_BGPD, show_ipv6_bgp_route_cmd_vtysh,
5993 "show ipv6 bgp X:X::X:X",
5994 "Show running system information\n"
5995 "IP information\n"
5996 "BGP information\n"
5997 "Network in the BGP routing table to display\n")
5998
5999DEFSH (VTYSH_BGPD, show_bgp_community2_exact_cmd_vtysh,
6000 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
6001 "Show running system information\n"
6002 "BGP information\n"
6003 "Display routes matching the communities\n"
6004 "community number\n"
6005 "Do not send outside local AS (well-known community)\n"
6006 "Do not advertise to any peer (well-known community)\n"
6007 "Do not export to next AS (well-known community)\n"
6008 "community number\n"
6009 "Do not send outside local AS (well-known community)\n"
6010 "Do not advertise to any peer (well-known community)\n"
6011 "Do not export to next AS (well-known community)\n"
6012 "Exact match of the communities")
6013
6014DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_cmd_vtysh,
6015 "no redistribute ospf6",
6016 "Negate a command or set its defaults\n"
6017 "Redistribute information from another routing protocol\n"
6018 "IPv6 Open Shortest Path First (OSPFv3)\n")
6019
6020DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_prefix_list_cmd_vtysh,
6021 "no match ip address prefix-list",
6022 "Negate a command or set its defaults\n"
6023 "Match values from routing table\n"
6024 "IP information\n"
6025 "Match address of route\n"
6026 "Match entries of prefix-lists\n")
6027
6028DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_any_cmd_vtysh,
6029 "access-list WORD (deny|permit) any",
6030 "Add an access list entry\n"
6031 "IP zebra access-list name\n"
6032 "Specify packets to reject\n"
6033 "Specify packets to forward\n"
6034 "Prefix to match. e.g. 10.0.0.0/8\n")
6035
6036DEFSH (VTYSH_OSPFD, no_neighbor_poll_interval_cmd_vtysh,
6037 "no neighbor A.B.C.D poll-interval <1-65535>",
paul718e3742002-12-13 20:15:29 +00006038 "Negate a command or set its defaults\n"
6039 "Specify neighbor router\n"
paul569c0f02003-03-02 21:19:26 +00006040 "Neighbor IP address\n"
6041 "Dead Neighbor Polling interval\n"
6042 "Seconds\n")
paul718e3742002-12-13 20:15:29 +00006043
paul569c0f02003-03-02 21:19:26 +00006044DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_adv_router_cmd_vtysh,
6045 "show ip ospf database (" "asbr-summary|external|network|router|summary" "|nssa-external" "|opaque-link|opaque-area|opaque-as" ") adv-router A.B.C.D",
6046 "Show running system information\n"
6047 "IP information\n"
6048 "OSPF information\n"
6049 "Database summary\n"
6050 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "NSSA external link state\n" "Link local Opaque-LSA\n" "Link area Opaque-LSA\n" "Link AS Opaque-LSA\n"
6051 "Advertising Router link states\n"
6052 "Advertising Router (as an IP address)\n")
6053
6054DEFSH (VTYSH_ZEBRA, ipv6_route_cmd_vtysh,
6055 "ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE)",
paul718e3742002-12-13 20:15:29 +00006056 "IP information\n"
6057 "Establish static routes\n"
6058 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
6059 "IPv6 gateway address\n"
6060 "IPv6 gateway interface name\n")
6061
paul569c0f02003-03-02 21:19:26 +00006062DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_addr_cmd_vtysh,
6063 "no ip ospf authentication A.B.C.D",
paul718e3742002-12-13 20:15:29 +00006064 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00006065 "IP Information\n"
6066 "OSPF interface commands\n"
6067 "Enable authentication on this interface\n"
6068 "Address of interface")
paul718e3742002-12-13 20:15:29 +00006069
paul569c0f02003-03-02 21:19:26 +00006070DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_mask_cmd_vtysh,
6071 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D A.B.C.D A.B.C.D",
6072 "Negate a command or set its defaults\n"
6073 "Add an access list entry\n"
6074 "IP extended access list\n"
6075 "IP extended access list (expanded range)\n"
6076 "Specify packets to reject\n"
6077 "Specify packets to forward\n"
6078 "Any Internet Protocol\n"
6079 "A single source host\n"
6080 "Source address\n"
6081 "Destination address\n"
6082 "Destination Wildcard bits\n")
paul718e3742002-12-13 20:15:29 +00006083
paul569c0f02003-03-02 21:19:26 +00006084DEFSH (VTYSH_BGPD, show_ip_bgp_community4_exact_cmd_vtysh,
6085 "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",
paul718e3742002-12-13 20:15:29 +00006086 "Show running system information\n"
6087 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00006088 "BGP information\n"
6089 "Display routes matching the communities\n"
6090 "community number\n"
6091 "Do not send outside local AS (well-known community)\n"
6092 "Do not advertise to any peer (well-known community)\n"
6093 "Do not export to next AS (well-known community)\n"
6094 "community number\n"
6095 "Do not send outside local AS (well-known community)\n"
6096 "Do not advertise to any peer (well-known community)\n"
6097 "Do not export to next AS (well-known community)\n"
6098 "community number\n"
6099 "Do not send outside local AS (well-known community)\n"
6100 "Do not advertise to any peer (well-known community)\n"
6101 "Do not export to next AS (well-known community)\n"
6102 "community number\n"
6103 "Do not send outside local AS (well-known community)\n"
6104 "Do not advertise to any peer (well-known community)\n"
6105 "Do not export to next AS (well-known community)\n"
6106 "Exact match of the communities")
paul718e3742002-12-13 20:15:29 +00006107
paul569c0f02003-03-02 21:19:26 +00006108DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ipv6_prefix_list_name_prefix_cmd_vtysh,
6109 "clear ipv6 prefix-list WORD X:X::X:X/M",
6110 "Reset functions\n"
6111 "IPv6 information\n"
6112 "Build a prefix list\n"
6113 "Name of a prefix list\n"
6114 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
6115
6116DEFSH (VTYSH_BGPD, no_set_aspath_prepend_cmd_vtysh,
6117 "no set as-path prepend",
6118 "Negate a command or set its defaults\n"
6119 "Set values in destination routing protocol\n"
6120 "Prepend string for a BGP AS-path attribute\n"
6121 "Prepend to the as-path\n")
6122
6123DEFSH (VTYSH_BGPD, show_bgp_ipv6_summary_cmd_vtysh,
6124 "show bgp ipv6 summary",
6125 "Show running system information\n"
6126 "BGP information\n"
6127 "Address family\n"
6128 "Summary of BGP neighbor status\n")
6129
6130DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_standard2_cmd_vtysh,
6131 "ip extcommunity-list standard WORD (deny|permit)",
6132 "IP information\n"
6133 "Add a extended community list entry\n"
6134 "Specify standard extcommunity-list\n"
6135 "Extended Community list name\n"
6136 "Specify community to reject\n"
6137 "Specify community to accept\n")
6138
6139DEFSH (VTYSH_RIPD, rip_route_cmd_vtysh,
6140 "route A.B.C.D/M",
6141 "RIP static route configuration\n"
6142 "IP prefix <network>/<length>\n")
6143
6144DEFSH (VTYSH_BGPD, ip_community_list_standard_cmd_vtysh,
6145 "ip community-list <1-99> (deny|permit) .AA:NN",
6146 "IP information\n"
6147 "Add a community list entry\n"
6148 "Community list number (standard)\n"
6149 "Specify community to reject\n"
6150 "Specify community to accept\n"
6151 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
6152
6153DEFSH (VTYSH_BGPD, clear_bgp_all_soft_out_cmd_vtysh,
6154 "clear bgp * soft out",
6155 "Reset functions\n"
6156 "BGP information\n"
6157 "Clear all peers\n"
6158 "Soft reconfig\n"
6159 "Soft reconfig outbound update\n")
6160
6161DEFSH (VTYSH_BGPD, show_bgp_neighbor_received_prefix_filter_cmd_vtysh,
6162 "show bgp neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
6163 "Show running system information\n"
6164 "BGP information\n"
6165 "Detailed information on TCP and BGP neighbor connections\n"
6166 "Neighbor to display information about\n"
6167 "Neighbor to display information about\n"
6168 "Display information received from a BGP neighbor\n"
6169 "Display the prefixlist filter\n")
6170
6171DEFSH (VTYSH_RIPNGD, ripng_redistribute_ripng_cmd_vtysh,
6172 "redistribute ripng",
6173 "Redistribute information from another routing protocol\n"
6174 "RIPng route\n")
6175
6176DEFSH (VTYSH_BGPD, no_neighbor_advertise_interval_val_cmd_vtysh,
6177 "no neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval <0-600>",
6178 "Negate a command or set its defaults\n"
6179 "Specify neighbor router\n"
6180 "Neighbor address\nIPv6 address\n"
6181 "Minimum interval between sending BGP routing updates\n"
6182 "time in seconds\n")
6183
6184DEFSH (VTYSH_BGPD, no_match_aspath_cmd_vtysh,
6185 "no match as-path",
6186 "Negate a command or set its defaults\n"
6187 "Match values from routing table\n"
6188 "Match BGP AS path list\n")
6189
6190DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_in_cmd_vtysh,
6191 "clear bgp (A.B.C.D|X:X::X:X) soft in",
6192 "Reset functions\n"
6193 "BGP information\n"
6194 "BGP neighbor address to clear\n"
6195 "BGP IPv6 neighbor to clear\n"
6196 "Soft reconfig\n"
6197 "Soft reconfig inbound update\n")
6198
6199DEFSH (VTYSH_BGPD, show_ipv6_bgp_summary_cmd_vtysh,
6200 "show ipv6 bgp summary",
6201 "Show running system information\n"
6202 "IPv6 information\n"
6203 "BGP information\n"
6204 "Summary of BGP neighbor status\n")
6205
6206DEFSH (VTYSH_BGPD, neighbor_capability_route_refresh_cmd_vtysh,
6207 "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability route-refresh",
6208 "Specify neighbor router\n"
6209 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6210 "Advertise capability to the peer\n"
6211 "Advertise route-refresh capability to this neighbor\n")
6212
6213DEFSH (VTYSH_BGPD, bgp_damp_unset2_cmd_vtysh,
6214 "no bgp dampening <1-45> <1-20000> <1-20000> <1-255>",
6215 "Negate a command or set its defaults\n"
6216 "BGP Specific commands\n"
6217 "Enable route-flap dampening\n"
6218 "Half-life time for the penalty\n"
6219 "Value to start reusing a route\n"
6220 "Value to start suppressing a route\n"
6221 "Maximum duration to suppress a stable route\n")
6222
6223DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_in_cmd_vtysh,
6224 "clear ip bgp <1-65535> vpnv4 unicast soft in",
6225 "Reset functions\n"
6226 "IP information\n"
6227 "BGP information\n"
6228 "Clear peers with the AS number\n"
6229 "Address family\n"
6230 "Address Family modifier\n"
6231 "Soft reconfig\n"
6232 "Soft reconfig inbound update\n")
6233
6234DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_cmd_vtysh,
6235 "no redistribute ospf6 metric",
6236 "Negate a command or set its defaults\n"
6237 "Redistribute information from another routing protocol\n"
6238 "IPv6 Open Shortest Path First (OSPFv3)\n"
6239 "Metric\n")
6240
6241DEFSH (VTYSH_BGPD, no_neighbor_prefix_list_cmd_vtysh,
6242 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "prefix-list WORD (in|out)",
6243 "Negate a command or set its defaults\n"
6244 "Specify neighbor router\n"
6245 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6246 "Filter updates to/from this neighbor\n"
6247 "Name of a prefix list\n"
6248 "Filter incoming updates\n"
6249 "Filter outgoing updates\n")
6250
6251DEFSH (VTYSH_BGPD, bgp_network_route_map_cmd_vtysh,
6252 "network A.B.C.D/M route-map WORD",
6253 "Specify a network to announce via BGP\n"
6254 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
6255 "Route-map to modify the attributes\n"
6256 "Name of the route map\n")
6257
6258DEFSH (VTYSH_OSPFD, area_vlink_authtype_authkey_cmd_vtysh,
6259 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
6260 "(authentication|) "
6261 "(authentication-key|) AUTH_KEY",
6262 "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"
6263 "Enable authentication on this virtual link\n" "dummy string \n"
6264 "Authentication password (key)\n" "The OSPF password (key)")
6265
6266DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_damp_cmd_vtysh,
6267 "show ip bgp neighbors (A.B.C.D|X:X::X:X) dampened-routes",
paul718e3742002-12-13 20:15:29 +00006268 "Show running system information\n"
6269 "IP information\n"
6270 "BGP information\n"
6271 "Detailed information on TCP and BGP neighbor connections\n"
6272 "Neighbor to display information about\n"
paul569c0f02003-03-02 21:19:26 +00006273 "Neighbor to display information about\n"
6274 "Display the dampened routes received from neighbor\n")
paul718e3742002-12-13 20:15:29 +00006275
paul569c0f02003-03-02 21:19:26 +00006276DEFSH (VTYSH_OSPFD, no_ip_ospf_transmit_delay_addr_cmd_vtysh,
6277 "no ip ospf transmit-delay A.B.C.D",
6278 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00006279 "IP Information\n"
6280 "OSPF interface commands\n"
paul569c0f02003-03-02 21:19:26 +00006281 "Link state transmit delay\n"
6282 "Address of interface")
paul718e3742002-12-13 20:15:29 +00006283
paul569c0f02003-03-02 21:19:26 +00006284DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged1_cmd_vtysh,
6285 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged (as-path|next-hop|med)",
6286 "Negate a command or set its defaults\n"
6287 "Specify neighbor router\n"
6288 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6289 "BGP attribute is propagated unchanged to this neighbor\n"
6290 "As-path attribute\n"
6291 "Nexthop attribute\n"
6292 "Med attribute\n")
6293
6294DEFSH (VTYSH_BGPD, bgp_network_cmd_vtysh,
6295 "network A.B.C.D/M",
6296 "Specify a network to announce via BGP\n"
6297 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
6298
6299DEFSH (VTYSH_BGPD, show_ip_bgp_scan_cmd_vtysh,
6300 "show ip bgp scan",
6301 "Show running system information\n"
6302 "IP information\n"
6303 "BGP information\n"
6304 "BGP scan status\n")
6305
6306DEFSH (VTYSH_BGPD, clear_bgp_peer_in_prefix_filter_cmd_vtysh,
6307 "clear bgp (A.B.C.D|X:X::X:X) in prefix-filter",
6308 "Reset functions\n"
6309 "BGP information\n"
6310 "BGP neighbor address to clear\n"
6311 "BGP IPv6 neighbor to clear\n"
6312 "Soft reconfig inbound update\n"
6313 "Push out the existing ORF prefix-list\n")
6314
6315DEFSH (VTYSH_RIPD, rip_offset_list_ifname_cmd_vtysh,
6316 "offset-list WORD (in|out) <0-16> IFNAME",
6317 "Modify RIP metric\n"
6318 "Access-list name\n"
6319 "For incoming updates\n"
6320 "For outgoing updates\n"
paul718e3742002-12-13 20:15:29 +00006321 "Metric value\n"
paul569c0f02003-03-02 21:19:26 +00006322 "Interface to match\n")
6323
6324DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_rmap_onmatch_next_cmd_vtysh,
6325 "no on-match next",
6326 "Negate a command or set its defaults\n"
6327 "Exit policy on matches\n"
6328 "Next clause\n")
6329
6330DEFSH (VTYSH_OSPF6D, interface_area_cmd_vtysh,
6331 "interface IFNAME area A.B.C.D",
6332 "Enable routing on an IPv6 interface\n"
6333 "Interface name(e.g. ep0)\n"
6334 "Set the OSPF6 area ID\n"
6335 "OSPF6 area ID in IPv4 address notation\n"
6336 )
6337
6338DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_routemap_cmd_vtysh,
6339 "redistribute kernel route-map WORD",
6340 "Redistribute information from another routing protocol\n"
6341 "Kernel routes\n"
paul718e3742002-12-13 20:15:29 +00006342 "Route map reference\n"
6343 "Pointer to route-map entries\n")
6344
6345DEFSH (VTYSH_BGPD, bgp_default_local_preference_cmd_vtysh,
6346 "bgp default local-preference <0-4294967295>",
6347 "BGP specific commands\n"
6348 "Configure BGP defaults\n"
6349 "local preference (higher=more preferred)\n"
6350 "Configure default local preference value\n")
6351
paul569c0f02003-03-02 21:19:26 +00006352DEFSH (VTYSH_BGPD, bgp_network_mask_natural_backdoor_cmd_vtysh,
6353 "network A.B.C.D backdoor",
6354 "Specify a network to announce via BGP\n"
6355 "Network number\n"
6356 "Specify a BGP backdoor route\n")
6357
6358DEFSH (VTYSH_BGPD, show_bgp_community_all_cmd_vtysh,
6359 "show bgp community",
6360 "Show running system information\n"
6361 "BGP information\n"
6362 "Display routes matching the communities\n")
6363
6364DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_cmd_vtysh,
6365 "redistribute static",
6366 "Redistribute information from another routing protocol\n"
6367 "Static routes\n")
6368
6369DEFSH (VTYSH_OSPFD, mpls_te_link_max_rsv_bw_cmd_vtysh,
6370 "mpls-te link max-rsv-bw BANDWIDTH",
6371 "MPLS-TE specific commands\n"
6372 "Configure MPLS-TE link parameters\n"
6373 "Maximum bandwidth that may be reserved\n"
6374 "Bytes/second (IEEE floating point format)\n")
6375
6376DEFSH (VTYSH_BGPD, neighbor_prefix_list_cmd_vtysh,
6377 "neighbor (A.B.C.D|X:X::X:X|WORD) " "prefix-list WORD (in|out)",
6378 "Specify neighbor router\n"
6379 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6380 "Filter updates to/from this neighbor\n"
6381 "Name of a prefix list\n"
6382 "Filter incoming updates\n"
6383 "Filter outgoing updates\n")
6384
6385DEFSH (VTYSH_BGPD, undebug_bgp_fsm_cmd_vtysh,
6386 "undebug bgp fsm",
6387 "Disable debugging functions (see also 'debug')\n"
6388 "Debugging functions (see also 'undebug')\n"
6389 "BGP information\n"
6390 "Finite State Machine\n")
6391
6392DEFSH (VTYSH_ZEBRA, show_zebra_client_cmd_vtysh,
6393 "show zebra client",
6394 "Show running system information\n"
6395 "Zebra information"
6396 "Client information")
6397
6398DEFSH (VTYSH_RIPD, rip_distance_source_access_list_cmd_vtysh,
6399 "distance <1-255> A.B.C.D/M WORD",
paul718e3742002-12-13 20:15:29 +00006400 "Administrative distance\n"
6401 "Distance value\n"
paul569c0f02003-03-02 21:19:26 +00006402 "IP source prefix\n"
6403 "Access list name\n")
paul718e3742002-12-13 20:15:29 +00006404
paul569c0f02003-03-02 21:19:26 +00006405DEFSH (VTYSH_RIPNGD, ripng_passive_interface_cmd_vtysh,
6406 "passive-interface IFNAME",
6407 "Suppress routing updates on an interface\n"
6408 "Interface name\n")
6409
6410DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_received_routes_cmd_vtysh,
6411 "show ip bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
6412 "Show running system information\n"
6413 "IP information\n"
6414 "BGP information\n"
6415 "Detailed information on TCP and BGP neighbor connections\n"
6416 "Neighbor to display information about\n"
6417 "Neighbor to display information about\n"
6418 "Display the received routes from neighbor\n")
6419
6420DEFSH (VTYSH_BGPD, dump_bgp_all_cmd_vtysh,
6421 "dump bgp all PATH",
6422 "Dump packet\n"
6423 "BGP packet dump\n"
6424 "Dump all BGP packets\n"
6425 "Output filename\n")
6426
6427DEFSH (VTYSH_ZEBRA, no_debug_zebra_packet_cmd_vtysh,
6428 "no debug zebra packet",
6429 "Negate a command or set its defaults\n"
6430 "Debugging functions (see also 'undebug')\n"
6431 "Zebra configuration\n"
6432 "Debug option set for zebra packet\n")
6433
6434DEFSH (VTYSH_BGPD, no_bgp_network_route_map_cmd_vtysh,
6435 "no network A.B.C.D/M route-map WORD",
6436 "Negate a command or set its defaults\n"
6437 "Specify a network to announce via BGP\n"
6438 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
6439 "Route-map to modify the attributes\n"
6440 "Name of the route map\n")
6441
6442DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh,
6443 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) received-routes",
6444 "Show running system information\n"
6445 "IP information\n"
6446 "BGP information\n"
6447 "Address family\n"
6448 "Address Family modifier\n"
6449 "Address Family modifier\n"
6450 "Detailed information on TCP and BGP neighbor connections\n"
6451 "Neighbor to display information about\n"
6452 "Neighbor to display information about\n"
6453 "Display the received routes from neighbor\n")
6454
6455DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_out_cmd_vtysh,
6456 "clear bgp (A.B.C.D|X:X::X:X) soft out",
6457 "Reset functions\n"
6458 "BGP information\n"
6459 "BGP neighbor address to clear\n"
6460 "BGP IPv6 neighbor to clear\n"
6461 "Soft reconfig\n"
6462 "Soft reconfig outbound update\n")
6463
6464DEFSH (VTYSH_BGPD, no_default_attr_localpref_cmd_vtysh,
6465 "no default-attr local-pref NUMBER",
6466 "Negate a command or set its defaults\n"
6467 "Unset default local preference value\n"
6468 "Unset default local preference value\n"
6469 "Value\n")
6470
6471DEFSH (VTYSH_ZEBRA, ip_address_cmd_vtysh,
6472 "ip address A.B.C.D/M",
6473 "Interface Internet Protocol config commands\n"
6474 "Set the IP address of an interface\n"
6475 "IP address (e.g. 10.0.0.1/8)\n")
6476
6477DEFSH (VTYSH_ZEBRA, no_ipv6_route_pref_cmd_vtysh,
6478 "no ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE) <1-255>",
6479 "Negate a command or set its defaults\n"
6480 "IP information\n"
6481 "Establish static routes\n"
6482 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
6483 "IPv6 gateway address\n"
6484 "IPv6 gateway interface name\n"
6485 "Distance value for this prefix\n")
6486
6487DEFSH (VTYSH_ZEBRA, ipv6_route_ifname_cmd_vtysh,
6488 "ipv6 route X:X::X:X/M X:X::X:X INTERFACE",
6489 "IP information\n"
6490 "Establish static routes\n"
6491 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
6492 "IPv6 gateway address\n"
6493 "IPv6 gateway interface name\n")
paul718e3742002-12-13 20:15:29 +00006494
6495DEFSH (VTYSH_BGPD, show_bgp_regexp_cmd_vtysh,
6496 "show bgp regexp .LINE",
6497 "Show running system information\n"
6498 "BGP information\n"
6499 "Display routes matching the AS path regular expression\n"
6500 "A regular-expression to match the BGP AS paths\n")
6501
paul569c0f02003-03-02 21:19:26 +00006502DEFSH (VTYSH_BGPD, show_debugging_bgp_cmd_vtysh,
6503 "show debugging bgp",
paul718e3742002-12-13 20:15:29 +00006504 "Show running system information\n"
paul569c0f02003-03-02 21:19:26 +00006505 "Debugging functions (see also 'undebug')\n"
6506 "BGP information\n")
6507
6508DEFSH (VTYSH_BGPD, clear_ip_bgp_as_in_cmd_vtysh,
6509 "clear ip bgp <1-65535> in",
6510 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +00006511 "IP information\n"
6512 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00006513 "Clear peers with the AS number\n"
6514 "Soft reconfig inbound update\n")
paul718e3742002-12-13 20:15:29 +00006515
paul569c0f02003-03-02 21:19:26 +00006516DEFSH (VTYSH_OSPF6D, interface_area_plist_cmd_vtysh,
6517 "interface IFNAME area A.B.C.D prefix-list WORD",
6518 "Enable routing on an IPv6 interface\n"
6519 "Interface name(e.g. ep0)\n"
6520 "Set the OSPF6 area ID\n"
6521 "OSPF6 area ID in IPv4 address notation\n"
6522 "Advertise I/F Address only match entries of prefix-list\n"
6523 "IPv6 prefix-list name\n"
6524 )
6525
6526DEFSH (VTYSH_OSPFD, capability_opaque_cmd_vtysh,
6527 "capability opaque",
6528 "Enable specific OSPF feature\n"
6529 "Opaque LSA\n")
6530
6531DEFSH (VTYSH_OSPFD, no_ip_ospf_transmit_delay_cmd_vtysh,
6532 "no ip ospf transmit-delay",
paul718e3742002-12-13 20:15:29 +00006533 "Negate a command or set its defaults\n"
6534 "IP Information\n"
6535 "OSPF interface commands\n"
paul569c0f02003-03-02 21:19:26 +00006536 "Link state transmit delay\n")
paul718e3742002-12-13 20:15:29 +00006537
paul569c0f02003-03-02 21:19:26 +00006538DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_out_cmd_vtysh,
6539 "clear ip bgp external ipv4 (unicast|multicast) out",
6540 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +00006541 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00006542 "BGP information\n"
6543 "Clear all external peers\n"
6544 "Address family\n"
6545 "Address Family modifier\n"
6546 "Address Family modifier\n"
6547 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00006548
paul569c0f02003-03-02 21:19:26 +00006549DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_cmd_vtysh,
6550 "default-information originate metric-type (1|2)",
6551 "Control distribution of default information\n"
6552 "Distribute a default route\n"
6553 "OSPF metric type for default routes\n"
6554 "Set OSPF External Type 1 metrics\n"
6555 "Set OSPF External Type 2 metrics\n")
paul718e3742002-12-13 20:15:29 +00006556
6557DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_name_seq_cmd_vtysh,
6558 "show ipv6 prefix-list WORD seq <1-4294967295>",
6559 "Show running system information\n"
6560 "IPv6 information\n"
6561 "Build a prefix list\n"
6562 "Name of a prefix list\n"
6563 "sequence number of an entry\n"
6564 "Sequence number\n")
6565
paul569c0f02003-03-02 21:19:26 +00006566DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_cmd_vtysh,
6567 "clear ip bgp A.B.C.D soft",
paul718e3742002-12-13 20:15:29 +00006568 "Reset functions\n"
6569 "IP information\n"
6570 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00006571 "BGP neighbor address to clear\n"
6572 "Soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00006573
paul569c0f02003-03-02 21:19:26 +00006574DEFSH (VTYSH_BGPD, show_bgp_route_cmd_vtysh,
6575 "show bgp X:X::X:X",
paul718e3742002-12-13 20:15:29 +00006576 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00006577 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00006578 "Network in the BGP routing table to display\n")
paul718e3742002-12-13 20:15:29 +00006579
paul569c0f02003-03-02 21:19:26 +00006580DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged3_cmd_vtysh,
6581 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop (as-path|med)",
6582 "Negate a command or set its defaults\n"
6583 "Specify neighbor router\n"
6584 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6585 "BGP attribute is propagated unchanged to this neighbor\n"
6586 "Nexthop attribute\n"
6587 "As-path attribute\n"
6588 "Med attribute\n")
6589
6590DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_external_cmd_vtysh,
6591 "distance ospf intra-area <1-255> external <1-255>",
6592 "Define an administrative distance\n"
6593 "OSPF Administrative distance\n"
6594 "Intra-area routes\n"
6595 "Distance for intra-area routes\n"
6596 "External routes\n"
6597 "Distance for external routes\n")
6598
6599DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_in_cmd_vtysh,
6600 "clear ip bgp A.B.C.D in",
paul718e3742002-12-13 20:15:29 +00006601 "Reset functions\n"
paul569c0f02003-03-02 21:19:26 +00006602 "IP information\n"
paul718e3742002-12-13 20:15:29 +00006603 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00006604 "BGP neighbor address to clear\n"
paul718e3742002-12-13 20:15:29 +00006605 "Soft reconfig inbound update\n")
6606
paul569c0f02003-03-02 21:19:26 +00006607DEFSH (VTYSH_OSPFD, ip_ospf_dead_interval_addr_cmd_vtysh,
6608 "ip ospf dead-interval <1-65535> A.B.C.D",
6609 "IP Information\n"
6610 "OSPF interface commands\n"
6611 "Interval after which a neighbor is declared dead\n"
6612 "Seconds\n"
6613 "Address of interface")
6614
6615DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_routemap_cmd_vtysh,
6616 "default-information originate metric-type (1|2) route-map WORD",
6617 "Control distribution of default information\n"
6618 "Distribute a default route\n"
6619 "OSPF metric type for default routes\n"
6620 "Set OSPF External Type 1 metrics\n"
6621 "Set OSPF External Type 2 metrics\n"
6622 "Route map reference\n"
6623 "Pointer to route-map entries\n")
6624
6625DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_any_cmd_vtysh,
6626 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D any",
6627 "Negate a command or set its defaults\n"
6628 "Add an access list entry\n"
paul718e3742002-12-13 20:15:29 +00006629 "IP extended access list\n"
paul718e3742002-12-13 20:15:29 +00006630 "IP extended access list (expanded range)\n"
paul569c0f02003-03-02 21:19:26 +00006631 "Specify packets to reject\n"
6632 "Specify packets to forward\n"
6633 "Any Internet Protocol\n"
6634 "A single source host\n"
6635 "Source address\n"
6636 "Any destination host\n")
paul718e3742002-12-13 20:15:29 +00006637
paul569c0f02003-03-02 21:19:26 +00006638DEFSH (VTYSH_BGPD, neighbor_allowas_in_arg_cmd_vtysh,
6639 "neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in <1-10>",
6640 "Specify neighbor router\n"
6641 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6642 "Accept as-path with my AS present in it\n"
6643 "Number of occurances of AS number\n")
paul718e3742002-12-13 20:15:29 +00006644
paul569c0f02003-03-02 21:19:26 +00006645DEFSH (VTYSH_BGPD, neighbor_ebgp_multihop_ttl_cmd_vtysh,
6646 "neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop <1-255>",
6647 "Specify neighbor router\n"
6648 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6649 "Allow EBGP neighbors not on directly connected networks\n"
6650 "maximum hop count\n")
6651
6652DEFSH (VTYSH_BGPD, no_debug_bgp_keepalive_cmd_vtysh,
6653 "no debug bgp keepalives",
6654 "Negate a command or set its defaults\n"
6655 "Debugging functions (see also 'undebug')\n"
6656 "BGP information\n"
6657 "BGP keepalives\n")
6658
6659DEFSH (VTYSH_BGPD, show_bgp_community2_cmd_vtysh,
6660 "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
paul718e3742002-12-13 20:15:29 +00006661 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00006662 "BGP information\n"
6663 "Display routes matching the communities\n"
6664 "community number\n"
6665 "Do not send outside local AS (well-known community)\n"
6666 "Do not advertise to any peer (well-known community)\n"
6667 "Do not export to next AS (well-known community)\n"
6668 "community number\n"
6669 "Do not send outside local AS (well-known community)\n"
6670 "Do not advertise to any peer (well-known community)\n"
paul569c0f02003-03-02 21:19:26 +00006671 "Do not export to next AS (well-known community)\n")
6672
6673DEFSH (VTYSH_OSPFD, no_ip_ospf_priority_addr_cmd_vtysh,
6674 "no ip ospf priority A.B.C.D",
6675 "Negate a command or set its defaults\n"
6676 "IP Information\n"
6677 "OSPF interface commands\n"
6678 "Router priority\n"
6679 "Address of interface")
6680
6681DEFSH (VTYSH_RIPD, no_rip_default_metric_cmd_vtysh,
6682 "no default-metric",
6683 "Negate a command or set its defaults\n"
6684 "Set a metric of redistribute routes\n"
6685 "Default metric\n")
6686
6687DEFSH (VTYSH_ZEBRA, no_bandwidth_if_val_cmd_vtysh,
6688 "no bandwidth <1-10000000>",
6689 "Negate a command or set its defaults\n"
6690 "Set bandwidth informational parameter\n"
6691 "Bandwidth in kilobits\n")
6692
6693DEFSH (VTYSH_RIPD, send_lifetime_infinite_month_day_cmd_vtysh,
6694 "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> infinite",
6695 "Set send lifetime of the key\n"
6696 "Time to start\n"
6697 "Month of the year to start\n"
6698 "Day of th month to start\n"
6699 "Year to start\n"
6700 "Never expires")
6701
6702DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_routemap_cmd_vtysh,
6703 "no redistribute bgp route-map WORD",
6704 "Negate a command or set its defaults\n"
6705 "Redistribute information from another routing protocol\n"
6706 "Border Gateway Protocol (BGP)\n"
6707 "Route map reference\n"
6708 "Pointer to route-map entries\n")
6709
6710DEFSH (VTYSH_BGPD, no_vpnv4_network_cmd_vtysh,
6711 "no network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD",
6712 "Negate a command or set its defaults\n"
6713 "Specify a network to announce via BGP\n"
6714 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
6715 "Specify Route Distinguisher\n"
6716 "VPN Route Distinguisher\n"
6717 "BGP tag\n"
6718 "tag value\n")
6719
6720DEFSH (VTYSH_BGPD, show_ip_bgp_filter_list_cmd_vtysh,
6721 "show ip bgp filter-list WORD",
6722 "Show running system information\n"
6723 "IP information\n"
6724 "BGP information\n"
6725 "Display routes conforming to the filter-list\n"
6726 "Regular expression access list name\n")
6727
6728DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_route_cmd_vtysh,
6729 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn A.B.C.D",
6730 "Show running system information\n"
6731 "IP information\n"
6732 "BGP information\n"
6733 "Display VPNv4 NLRI specific information\n"
6734 "Display information for a route distinguisher\n"
6735 "VPN Route Distinguisher\n"
6736 "Network in the BGP routing table to display\n")
6737
6738DEFSH (VTYSH_BGPD, undebug_bgp_keepalive_cmd_vtysh,
6739 "undebug bgp keepalives",
6740 "Disable debugging functions (see also 'debug')\n"
6741 "BGP information\n"
6742 "BGP keepalives\n")
6743
6744DEFSH (VTYSH_OSPFD, no_debug_ospf_ism_cmd_vtysh,
6745 "no debug ospf ism",
6746 "Negate a command or set its defaults\n"
6747 "Debugging functions (see also 'undebug')\n"
6748 "OSPF information\n"
6749 "OSPF Interface State Machine")
6750
6751DEFSH (VTYSH_RIPD, send_lifetime_duration_day_month_cmd_vtysh,
6752 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> duration <1-2147483646>",
6753 "Set send lifetime of the key\n"
6754 "Time to start\n"
6755 "Day of th month to start\n"
6756 "Month of the year to start\n"
6757 "Year to start\n"
6758 "Duration of the key\n"
6759 "Duration seconds\n")
6760
6761DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged5_cmd_vtysh,
6762 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path next-hop med",
6763 "Negate a command or set its defaults\n"
6764 "Specify neighbor router\n"
6765 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6766 "BGP attribute is propagated unchanged to this neighbor\n"
6767 "As-path attribute\n"
6768 "Nexthop attribute\n"
6769 "Med attribute\n")
6770
6771DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_in_cmd_vtysh,
6772 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft in",
6773 "Reset functions\n"
6774 "IP information\n"
6775 "BGP information\n"
6776 "BGP neighbor address to clear\n"
6777 "Address family\n"
6778 "Address Family modifier\n"
6779 "Address Family modifier\n"
6780 "Soft reconfig\n"
6781 "Soft reconfig inbound update\n")
6782
6783DEFSH (VTYSH_RIPD, rip_default_information_originate_cmd_vtysh,
6784 "default-information originate",
6785 "Control distribution of default route\n"
6786 "Distribute a default route\n")
6787
6788DEFSH (VTYSH_RIPD, rip_default_metric_cmd_vtysh,
6789 "default-metric <1-16>",
6790 "Set a metric of redistribute routes\n"
6791 "Default metric\n")
6792
6793DEFSH (VTYSH_BGPD, bgp_confederation_identifier_cmd_vtysh,
6794 "bgp confederation identifier <1-65535>",
6795 "BGP specific commands\n"
6796 "AS confederation parameters\n"
6797 "AS number\n"
6798 "Set routing domain confederation AS\n")
6799
6800DEFSH (VTYSH_RIPD, no_key_string_cmd_vtysh,
6801 "no key-string [LINE]",
6802 "Negate a command or set its defaults\n"
6803 "Unset key string\n"
6804 "The key\n")
6805
6806DEFSH (VTYSH_BGPD, debug_bgp_update_direct_cmd_vtysh,
6807 "debug bgp updates (in|out)",
6808 "Debugging functions (see also 'undebug')\n"
6809 "BGP information\n"
6810 "BGP updates\n"
6811 "Inbound updates\n"
6812 "Outbound updates\n")
6813
6814DEFSH (VTYSH_OSPFD, no_auto_cost_reference_bandwidth_cmd_vtysh,
6815 "no auto-cost reference-bandwidth",
6816 "Negate a command or set its defaults\n"
6817 "Calculate OSPF interface cost according to bandwidth\n"
6818 "Use reference bandwidth method to assign OSPF cost\n")
paul718e3742002-12-13 20:15:29 +00006819
6820DEFSH (VTYSH_BGPD, no_ip_community_list_all_cmd_vtysh,
6821 "no ip community-list (WORD|<1-99>|<100-199>)",
6822 "Negate a command or set its defaults\n"
6823 "IP information\n"
6824 "Add a community list entry\n"
6825 "Community list name\n"
6826 "Community list number (standard)\n"
6827 "Community list number (expanded)\n")
6828
paul569c0f02003-03-02 21:19:26 +00006829DEFSH (VTYSH_BGPD, show_ip_bgp_flap_filter_list_cmd_vtysh,
6830 "show ip bgp flap-statistics filter-list WORD",
6831 "Show running system information\n"
6832 "IP information\n"
6833 "BGP information\n"
6834 "Display flap statistics of routes\n"
6835 "Display routes conforming to the filter-list\n"
6836 "Regular expression access list name\n")
paul718e3742002-12-13 20:15:29 +00006837
paul569c0f02003-03-02 21:19:26 +00006838DEFSH (VTYSH_ZEBRA, ip_irdp_maxadvertinterval_cmd_vtysh,
6839 "ip irdp maxadvertinterval (0|<4-1800>)",
6840 "IP information\n"
6841 "ICMP Router discovery on this interface\n"
6842 "Set maximum time between advertisement\n"
6843 "Maximum advertisement interval in seconds\n")
paul718e3742002-12-13 20:15:29 +00006844
paul569c0f02003-03-02 21:19:26 +00006845DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_summary_name_cmd_vtysh,
6846 "show ipv6 prefix-list summary WORD",
6847 "Show running system information\n"
6848 "IPv6 information\n"
6849 "Build a prefix list\n"
6850 "Summary of prefix lists\n"
6851 "Name of a prefix list\n")
paul718e3742002-12-13 20:15:29 +00006852
paul569c0f02003-03-02 21:19:26 +00006853DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_authkey_cmd_vtysh,
6854 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
6855 "(authentication|) (message-digest|null) "
6856 "(authentication-key|) AUTH_KEY",
6857 "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"
6858 "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n"
6859 "Authentication password (key)\n" "The OSPF password (key)")
6860
6861DEFSH (VTYSH_BGPD, bgp_network_mask_natural_route_map_cmd_vtysh,
6862 "network A.B.C.D route-map WORD",
paul718e3742002-12-13 20:15:29 +00006863 "Specify a network to announce via BGP\n"
6864 "Network number\n"
paul569c0f02003-03-02 21:19:26 +00006865 "Route-map to modify the attributes\n"
6866 "Name of the route map\n")
paul718e3742002-12-13 20:15:29 +00006867
paul569c0f02003-03-02 21:19:26 +00006868DEFSH (VTYSH_ZEBRA, show_interface_cmd_vtysh,
6869 "show interface [IFNAME]",
6870 "Show running system information\n"
6871 "Interface status and configuration\n"
6872 "Inteface name\n")
paul718e3742002-12-13 20:15:29 +00006873
paul569c0f02003-03-02 21:19:26 +00006874DEFSH (VTYSH_BGPD, show_bgp_ipv6_cmd_vtysh,
6875 "show bgp ipv6",
6876 "Show running system information\n"
6877 "BGP information\n"
6878 "Address family\n")
paul718e3742002-12-13 20:15:29 +00006879
paul569c0f02003-03-02 21:19:26 +00006880DEFSH (VTYSH_BGPD, match_community_exact_cmd_vtysh,
6881 "match community (<1-99>|<100-199>|WORD) exact-match",
6882 "Match values from routing table\n"
6883 "Match BGP community list\n"
6884 "Community-list number (standard)\n"
6885 "Community-list number (expanded)\n"
6886 "Community-list name\n"
6887 "Do exact matching of communities\n")
6888
6889DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_out_cmd_vtysh,
6890 "clear ip bgp <1-65535> vpnv4 unicast soft out",
6891 "Reset functions\n"
6892 "IP information\n"
6893 "BGP information\n"
6894 "Clear peers with the AS number\n"
6895 "Address family\n"
6896 "Address Family modifier\n"
6897 "Soft reconfig\n"
6898 "Soft reconfig outbound update\n")
6899
6900DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_description_cmd_vtysh,
6901 "ip prefix-list WORD description .LINE",
6902 "IP information\n"
6903 "Build a prefix list\n"
6904 "Name of a prefix list\n"
6905 "Prefix-list specific description\n"
6906 "Up to 80 characters describing this prefix-list\n")
6907
6908DEFSH (VTYSH_ZEBRA, ipv6_route_ifname_pref_cmd_vtysh,
6909 "ipv6 route X:X::X:X/M X:X::X:X INTERFACE <1-255>",
6910 "IP information\n"
6911 "Establish static routes\n"
6912 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
6913 "IPv6 gateway address\n"
6914 "IPv6 gateway interface name\n"
6915 "Distance value for this prefix\n")
6916
6917DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_metric_cmd_vtysh,
6918 "redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295>",
paul718e3742002-12-13 20:15:29 +00006919 "Redistribute information from another routing protocol\n"
paul718e3742002-12-13 20:15:29 +00006920 "Connected\n"
paul569c0f02003-03-02 21:19:26 +00006921 "Kernel routes\n"
6922 "Open Shurtest Path First (OSPFv3)\n"
6923 "Routing Information Protocol (RIPng)\n"
paul718e3742002-12-13 20:15:29 +00006924 "Static routes\n"
paul569c0f02003-03-02 21:19:26 +00006925 "Metric for redistributed routes\n"
6926 "Default metric\n")
paul718e3742002-12-13 20:15:29 +00006927
paul569c0f02003-03-02 21:19:26 +00006928DEFSH (VTYSH_RIPD, rip_neighbor_cmd_vtysh,
6929 "neighbor A.B.C.D",
6930 "Specify a neighbor router\n"
6931 "Neighbor address\n")
6932
6933DEFSH (VTYSH_RIPD, no_rip_default_metric_val_cmd_vtysh,
6934 "no default-metric <1-16>",
6935 "Negate a command or set its defaults\n"
6936 "Set a metric of redistribute routes\n"
6937 "Default metric\n")
6938
6939DEFSH (VTYSH_BGPD, show_ipv6_bgp_cmd_vtysh,
6940 "show ipv6 bgp",
6941 "Show running system information\n"
6942 "IP information\n"
6943 "BGP information\n")
6944
6945DEFSH (VTYSH_BGPD, neighbor_route_reflector_client_cmd_vtysh,
6946 "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-reflector-client",
6947 "Specify neighbor router\n"
6948 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6949 "Configure a neighbor as Route Reflector client\n")
6950
6951DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_cmd_vtysh,
6952 "clear ip bgp * soft",
6953 "Reset functions\n"
6954 "IP information\n"
6955 "BGP information\n"
6956 "Clear all peers\n"
6957 "Soft reconfig\n")
6958
6959DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_mask_cmd_vtysh,
6960 "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D A.B.C.D A.B.C.D",
paul718e3742002-12-13 20:15:29 +00006961 "Add an access list entry\n"
6962 "IP extended access list\n"
6963 "IP extended access list (expanded range)\n"
6964 "Specify packets to reject\n"
6965 "Specify packets to forward\n"
6966 "Any Internet Protocol\n"
6967 "A single source host\n"
6968 "Source address\n"
paul569c0f02003-03-02 21:19:26 +00006969 "Destination address\n"
6970 "Destination Wildcard bits\n")
paul718e3742002-12-13 20:15:29 +00006971
paul569c0f02003-03-02 21:19:26 +00006972DEFSH (VTYSH_BGPD, ip_extcommunity_list_standard_cmd_vtysh,
6973 "ip extcommunity-list <1-99> (deny|permit) .AA:NN",
6974 "IP information\n"
6975 "Add a extended community list entry\n"
6976 "Extended Community list number (standard)\n"
6977 "Specify community to reject\n"
6978 "Specify community to accept\n"
6979 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
6980
6981DEFSH (VTYSH_BGPD, no_bgp_config_type_cmd_vtysh,
6982 "no bgp config-type",
6983 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00006984 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00006985 "Display configuration type\n")
paul718e3742002-12-13 20:15:29 +00006986
paul569c0f02003-03-02 21:19:26 +00006987DEFSH (VTYSH_BGPD, no_neighbor_filter_list_cmd_vtysh,
6988 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "filter-list WORD (in|out)",
6989 "Negate a command or set its defaults\n"
6990 "Specify neighbor router\n"
6991 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
6992 "Establish BGP filters\n"
6993 "AS path access-list name\n"
6994 "Filter incoming routes\n"
6995 "Filter outgoing routes\n")
6996
6997DEFSH (VTYSH_RIPD, ip_rip_receive_version_1_cmd_vtysh,
6998 "ip rip receive version 1 2",
6999 "IP information\n"
7000 "Routing Information Protocol\n"
7001 "Advertisement reception\n"
7002 "Version control\n"
7003 "RIP version 1\n"
7004 "RIP version 2\n")
7005
7006DEFSH (VTYSH_BGPD, no_debug_bgp_events_cmd_vtysh,
7007 "no debug bgp events",
7008 "Negate a command or set its defaults\n"
7009 "Debugging functions (see also 'undebug')\n"
7010 "BGP information\n"
7011 "BGP events\n")
7012
7013DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_cmd_vtysh,
7014 "clear bgp ipv6 peer-group WORD",
7015 "Reset functions\n"
7016 "BGP information\n"
7017 "Address family\n"
7018 "Clear all members of peer-group\n"
7019 "BGP peer-group name\n")
7020
7021DEFSH (VTYSH_BGPD, no_neighbor_port_val_cmd_vtysh,
7022 "no neighbor (A.B.C.D|X:X::X:X) " "port <0-65535>",
7023 "Negate a command or set its defaults\n"
7024 "Specify neighbor router\n"
7025 "Neighbor address\nIPv6 address\n"
7026 "Neighbor's BGP port\n"
7027 "TCP port number\n")
7028
7029DEFSH (VTYSH_BGPD, show_ip_bgp_community3_exact_cmd_vtysh,
7030 "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",
paul718e3742002-12-13 20:15:29 +00007031 "Show running system information\n"
7032 "IP information\n"
7033 "BGP information\n"
7034 "Display routes matching the communities\n"
7035 "community number\n"
7036 "Do not send outside local AS (well-known community)\n"
7037 "Do not advertise to any peer (well-known community)\n"
7038 "Do not export to next AS (well-known community)\n"
7039 "community number\n"
7040 "Do not send outside local AS (well-known community)\n"
7041 "Do not advertise to any peer (well-known community)\n"
7042 "Do not export to next AS (well-known community)\n"
paul569c0f02003-03-02 21:19:26 +00007043 "community number\n"
7044 "Do not send outside local AS (well-known community)\n"
7045 "Do not advertise to any peer (well-known community)\n"
7046 "Do not export to next AS (well-known community)\n"
paul718e3742002-12-13 20:15:29 +00007047 "Exact match of the communities")
7048
paul569c0f02003-03-02 21:19:26 +00007049DEFSH (VTYSH_RIPD, no_key_cmd_vtysh,
7050 "no key <0-2147483647>",
7051 "Negate a command or set its defaults\n"
7052 "Delete a key\n"
7053 "Key identifier number\n")
7054
7055DEFSH (VTYSH_BGPD, ipv6_bgp_network_cmd_vtysh,
7056 "network X:X::X:X/M",
7057 "Specify a network to announce via BGP\n"
7058 "IPv6 prefix <network>/<length>\n")
7059
7060DEFSH (VTYSH_OSPFD, show_mpls_te_router_cmd_vtysh,
7061 "show mpls-te router",
7062 "Show running system information\n"
7063 "MPLS-TE information\n"
7064 "Router information\n")
7065
7066DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_routes_cmd_vtysh,
7067 "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) routes",
7068 "Show running system information\n"
7069 "IPv6 information\n"
7070 "BGP information\n"
7071 "Detailed information on TCP and BGP neighbor connections\n"
7072 "Neighbor to display information about\n"
7073 "Neighbor to display information about\n"
7074 "Display routes learned from neighbor\n")
7075
7076DEFSH (VTYSH_BGPD, ip_community_list_name_standard2_cmd_vtysh,
7077 "ip community-list standard WORD (deny|permit)",
7078 "IP information\n"
7079 "Add a community list entry\n"
7080 "Add a standard community-list entry\n"
7081 "Community list name\n"
7082 "Specify community to reject\n"
7083 "Specify community to accept\n")
7084
7085DEFSH (VTYSH_OSPFD, no_refresh_timer_val_cmd_vtysh,
7086 "no refresh timer <10-1800>",
7087 "Adjust refresh parameters\n"
7088 "Unset refresh timer\n"
7089 "Timer value in seconds\n")
7090
7091DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_expanded_cmd_vtysh,
7092 "ip extcommunity-list expanded WORD (deny|permit) .LINE",
7093 "IP information\n"
7094 "Add a extended community list entry\n"
7095 "Specify expanded extcommunity-list\n"
7096 "Extended Community list name\n"
7097 "Specify community to reject\n"
7098 "Specify community to accept\n"
7099 "An ordered list as a regular-expression\n")
7100
7101DEFSH (VTYSH_BGPD, clear_bgp_as_cmd_vtysh,
7102 "clear bgp <1-65535>",
7103 "Reset functions\n"
7104 "BGP information\n"
7105 "Clear peers with the AS number\n")
7106
7107DEFSH (VTYSH_OSPF6D, no_redistribute_ospf6_cmd_vtysh,
7108 "no redistribute ospf6",
7109 "Negate a command or set its defaults\n"
7110 "Redistribute control\n"
7111 "OSPF6 route\n")
7112
7113DEFSH (VTYSH_BGPD, show_ip_bgp_community_cmd_vtysh,
7114 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export)",
7115 "Show running system information\n"
7116 "IP information\n"
7117 "BGP information\n"
7118 "Display routes matching the communities\n"
7119 "community number\n"
7120 "Do not send outside local AS (well-known community)\n"
7121 "Do not advertise to any peer (well-known community)\n"
7122 "Do not export to next AS (well-known community)\n")
7123
7124DEFSH (VTYSH_OSPFD, no_area_export_list_cmd_vtysh,
7125 "no area (A.B.C.D|<0-4294967295>) export-list NAME",
7126 "Negate a command or set its defaults\n"
7127 "OSPF area parameters\n"
7128 "OSPF area ID in IP address format\n"
7129 "OSPF area ID as a decimal value\n"
7130 "Unset the filter for networks announced to other areas\n"
7131 "Name of the access-list\n")
7132
7133DEFSH (VTYSH_OSPFD, no_ospf_hello_interval_cmd_vtysh,
7134 "no ospf hello-interval",
7135 "Negate a command or set its defaults\n"
7136 "OSPF interface commands\n"
7137 "Time between HELLO packets\n")
7138
7139DEFSH (VTYSH_BGPD, show_ipv6_mbgp_filter_list_cmd_vtysh,
7140 "show ipv6 mbgp filter-list WORD",
7141 "Show running system information\n"
7142 "IPv6 information\n"
7143 "MBGP information\n"
7144 "Display routes conforming to the filter-list\n"
7145 "Regular expression access list name\n")
7146
7147DEFSH (VTYSH_RIPD, debug_rip_packet_direct_cmd_vtysh,
7148 "debug rip packet (recv|send)",
7149 "Debugging functions (see also 'undebug')\n"
7150 "RIP information\n"
7151 "RIP packet\n"
7152 "RIP receive packet\n"
7153 "RIP send packet\n")
7154
7155DEFSH (VTYSH_BGPD, no_set_ecommunity_rt_cmd_vtysh,
7156 "no set extcommunity rt",
7157 "Negate a command or set its defaults\n"
7158 "Set values in destination routing protocol\n"
7159 "BGP extended community attribute\n"
7160 "Route Target extened communityt\n")
7161
7162DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_list_cmd_vtysh,
7163 "show bgp ipv6 community-list WORD",
7164 "Show running system information\n"
7165 "BGP information\n"
7166 "Address family\n"
7167 "Display routes matching the community-list\n"
7168 "community-list name\n")
7169
7170DEFSH (VTYSH_OSPFD, ospf_router_id_cmd_vtysh,
7171 "ospf router-id A.B.C.D",
7172 "OSPF specific commands\n"
7173 "router-id for the OSPF process\n"
7174 "OSPF router-id in IP address format\n")
7175
7176DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_in_prefix_filter_cmd_vtysh,
7177 "clear bgp ipv6 (A.B.C.D|X:X::X:X) in prefix-filter",
7178 "Reset functions\n"
7179 "BGP information\n"
7180 "Address family\n"
7181 "BGP neighbor address to clear\n"
7182 "BGP IPv6 neighbor to clear\n"
7183 "Soft reconfig inbound update\n"
7184 "Push out the existing ORF prefix-list\n")
7185
7186DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_cmd_vtysh,
7187 "clear bgp ipv6 *",
7188 "Reset functions\n"
7189 "BGP information\n"
7190 "Address family\n"
7191 "Clear all peers\n")
7192
7193DEFSH (VTYSH_RIPD|VTYSH_OSPFD, no_match_interface_cmd_vtysh,
7194 "no match interface",
7195 "Negate a command or set its defaults\n"
7196 "Match values from routing table\n"
7197 "Match first hop interface of route\n")
7198
7199DEFSH (VTYSH_ZEBRA, bandwidth_if_cmd_vtysh,
7200 "bandwidth <1-10000000>",
7201 "Set bandwidth informational parameter\n"
7202 "Bandwidth in kilobits\n")
7203
7204DEFSH (VTYSH_OSPF6D, no_debug_ospf6_damp_cmd_vtysh,
7205 "no debug ospf6 damp",
7206 "Negate a command or set its defaults\n"
7207 "Debugging functions (see also 'undebug')\n"
7208 "Open Shortest Path First (OSPF) for IPv6\n"
7209 "Flap-dampening information\n"
7210 )
7211
7212DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_camp_config_cmd_vtysh,
7213 "show ipv6 ospf6 damp config",
7214 "Show running system information\n"
7215 "IPv6 Information\n"
7216 "Open Shortest Path First (OSPF) for IPv6\n"
7217 "Flap-dampening information\n"
7218 "shows dampening configuration\n"
7219 )
7220
7221DEFSH (VTYSH_OSPF6D, show_version_ospf6_cmd_vtysh,
7222 "show version ospf6",
7223 "Show running system information\n"
7224 "Displays ospf6d version\n")
7225
7226DEFSH (VTYSH_BGPD, no_neighbor_route_server_client_cmd_vtysh,
7227 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-server-client",
7228 "Negate a command or set its defaults\n"
7229 "Specify neighbor router\n"
7230 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7231 "Configure a neighbor as Route Server client\n")
7232
7233DEFSH (VTYSH_ZEBRA, debug_zebra_packet_detail_cmd_vtysh,
7234 "debug zebra packet (recv|send) detail",
7235 "Debugging functions (see also 'undebug')\n"
7236 "Zebra configuration\n"
7237 "Debug option set for zebra packet\n"
7238 "Debug option set for receive packet\n"
7239 "Debug option set for send packet\n"
7240 "Debug option set detaied information\n")
7241
7242DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ripng_cmd_vtysh,
7243 "no redistribute ripng",
7244 "Negate a command or set its defaults\n"
7245 "Redistribute information from another routing protocol\n"
7246 "RIPng route\n")
7247
7248DEFSH (VTYSH_RIPD, no_rip_split_horizon_cmd_vtysh,
7249 "no ip split-horizon",
7250 "Negate a command or set its defaults\n"
7251 "IP information\n"
7252 "Perform split horizon\n")
7253
7254DEFSH (VTYSH_BGPD, no_bgp_confederation_identifier_cmd_vtysh,
7255 "no bgp confederation identifier",
7256 "Negate a command or set its defaults\n"
7257 "BGP specific commands\n"
7258 "AS confederation parameters\n"
7259 "AS number\n")
7260
7261DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_external_intra_cmd_vtysh,
7262 "distance ospf inter-area <1-255> external <1-255> intra-area <1-255>",
7263 "Define an administrative distance\n"
7264 "OSPF Administrative distance\n"
7265 "Inter-area routes\n"
7266 "Distance for inter-area routes\n"
7267 "External routes\n"
7268 "Distance for external routes\n"
7269 "Intra-area routes\n"
7270 "Distance for intra-area routes\n")
7271
7272DEFSH (VTYSH_BGPD, no_set_ecommunity_soo_cmd_vtysh,
7273 "no set extcommunity soo",
7274 "Negate a command or set its defaults\n"
7275 "Set values in destination routing protocol\n"
7276 "BGP extended community attribute\n"
7277 "Site-of-Origin extended community\n")
7278
7279DEFSH (VTYSH_ZEBRA, no_ip_address_label_cmd_vtysh,
7280 "no ip address A.B.C.D/M label LINE",
7281 "Negate a command or set its defaults\n"
7282 "Interface Internet Protocol config commands\n"
7283 "Set the IP address of an interface\n"
7284 "IP address (e.g. 10.0.0.1/8)\n"
7285 "Label of this address\n"
7286 "Label\n")
7287
7288DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbors_cmd_vtysh,
7289 "show ip bgp ipv4 (unicast|multicast) neighbors",
7290 "Show running system information\n"
7291 "IP information\n"
7292 "BGP information\n"
7293 "Address family\n"
7294 "Address Family modifier\n"
7295 "Address Family modifier\n"
7296 "Detailed information on TCP and BGP neighbor connections\n")
7297
7298DEFSH (VTYSH_OSPFD, no_ospf_transmit_delay_cmd_vtysh,
7299 "no ospf transmit-delay",
7300 "Negate a command or set its defaults\n"
7301 "OSPF interface commands\n"
7302 "Link state transmit delay\n")
7303
7304DEFSH (VTYSH_OSPFD|VTYSH_OSPF6D, ospf6_routemap_no_set_metric_type_cmd_vtysh,
7305 "no set metric-type (type-1|type-2)",
7306 "Negate a command or set its defaults\n"
7307 "Set value\n"
7308 "Type of metric\n"
7309 "OSPF6 external type 1 metric\n"
7310 "OSPF6 external type 2 metric\n")
7311
7312DEFSH (VTYSH_BGPD, show_ipv6_bgp_regexp_cmd_vtysh,
7313 "show ipv6 bgp regexp .LINE",
7314 "Show running system information\n"
7315 "IP information\n"
7316 "BGP information\n"
7317 "Display routes matching the AS path regular expression\n"
7318 "A regular-expression to match the BGP AS paths\n")
7319
7320DEFSH (VTYSH_BGPD, clear_ip_bgp_all_out_cmd_vtysh,
7321 "clear ip bgp * out",
7322 "Reset functions\n"
7323 "IP information\n"
7324 "BGP information\n"
7325 "Clear all peers\n"
7326 "Soft reconfig outbound update\n")
7327
7328DEFSH (VTYSH_BGPD, show_ipv6_bgp_filter_list_cmd_vtysh,
7329 "show ipv6 bgp filter-list WORD",
7330 "Show running system information\n"
7331 "IPv6 information\n"
7332 "BGP information\n"
7333 "Display routes conforming to the filter-list\n"
7334 "Regular expression access list name\n")
7335
7336DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_cmd_vtysh,
7337 "redistribute (connected|kernel|ospf|rip|static)",
7338 "Redistribute information from another routing protocol\n"
7339 "Connected\n"
7340 "Kernel routes\n"
7341 "Open Shurtest Path First (OSPF)\n"
7342 "Routing Information Protocol (RIP)\n"
7343 "Static routes\n")
7344
7345DEFSH (VTYSH_OSPFD, no_ospf_message_digest_key_cmd_vtysh,
7346 "no ospf message-digest-key <1-255>",
7347 "Negate a command or set its defaults\n"
7348 "OSPF interface commands\n"
7349 "Message digest authentication password (key)\n"
7350 "Key ID\n")
7351
7352DEFSH (VTYSH_OSPFD, ospf_message_digest_key_cmd_vtysh,
7353 "ospf message-digest-key <1-255> md5 KEY",
7354 "OSPF interface commands\n"
7355 "Message digest authentication password (key)\n"
7356 "Key ID\n"
7357 "Use MD5 algorithm\n"
7358 "The OSPF password (key)")
7359
7360DEFSH (VTYSH_OSPFD, neighbor_poll_interval_cmd_vtysh,
7361 "neighbor A.B.C.D poll-interval <1-65535>",
7362 "Specify neighbor router\n"
7363 "Neighbor IP address\n"
7364 "Dead Neighbor Polling interval\n"
7365 "Seconds\n")
7366
7367DEFSH (VTYSH_BGPD, neighbor_peer_group_cmd_vtysh,
7368 "neighbor WORD peer-group",
7369 "Specify neighbor router\n"
7370 "Neighbor tag\n"
7371 "Configure peer-group\n")
7372
7373DEFSH (VTYSH_OSPFD, mpls_te_link_maxbw_cmd_vtysh,
7374 "mpls-te link max-bw BANDWIDTH",
7375 "MPLS-TE specific commands\n"
7376 "Configure MPLS-TE link parameters\n"
7377 "Maximum bandwidth that can be used\n"
7378 "Bytes/second (IEEE floating point format)\n")
7379
7380DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_in_prefix_filter_cmd_vtysh,
7381 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in prefix-filter",
7382 "Reset functions\n"
7383 "IP information\n"
7384 "BGP information\n"
7385 "BGP neighbor address to clear\n"
7386 "Address family\n"
7387 "Address Family modifier\n"
7388 "Address Family modifier\n"
7389 "Soft reconfig inbound update\n"
7390 "Push out the existing ORF prefix-list\n")
7391
7392DEFSH (VTYSH_BGPD, clear_bgp_external_cmd_vtysh,
7393 "clear bgp external",
7394 "Reset functions\n"
7395 "BGP information\n"
7396 "Clear all external peers\n")
7397
7398DEFSH (VTYSH_OSPFD, ip_ospf_authentication_cmd_vtysh,
7399 "ip ospf authentication",
7400 "IP Information\n"
7401 "OSPF interface commands\n"
7402 "Enable authentication on this interface\n")
7403
7404DEFSH (VTYSH_BGPD, no_bgp_router_id_cmd_vtysh,
7405 "no bgp router-id",
7406 "Negate a command or set its defaults\n"
7407 "BGP information\n"
7408 "Override configured router identifier\n")
7409
7410DEFSH (VTYSH_OSPFD, no_ospf_abr_type_cmd_vtysh,
7411 "no ospf abr-type (cisco|ibm|shortcut)",
7412 "Negate a command or set its defaults\n"
7413 "OSPF specific commands\n"
7414 "Set OSPF ABR type\n"
7415 "Alternative ABR, cisco implementation\n"
7416 "Alternative ABR, IBM implementation\n"
7417 "Shortcut ABR\n")
7418
7419DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_self_cmd_vtysh,
7420 "show ip ospf database (" "asbr-summary|external|network|router|summary" "|nssa-external" "|opaque-link|opaque-area|opaque-as" ") (self-originate|)",
7421 "Show running system information\n"
7422 "IP information\n"
7423 "OSPF information\n"
7424 "Database summary\n"
7425 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "NSSA external link state\n" "Link local Opaque-LSA\n" "Link area Opaque-LSA\n" "Link AS Opaque-LSA\n"
7426 "Self-originated link states\n")
7427
7428DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_cmd_vtysh,
7429 "show ip ospf database (" "asbr-summary|external|network|router|summary" "|nssa-external" "|opaque-link|opaque-area|opaque-as" "|max-age|self-originate)",
7430 "Show running system information\n"
7431 "IP information\n"
7432 "OSPF information\n"
7433 "Database summary\n"
7434 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "NSSA external link state\n" "Link local Opaque-LSA\n" "Link area Opaque-LSA\n" "Link AS Opaque-LSA\n"
7435 "LSAs in MaxAge list\n"
7436 "Self-originated link states\n")
7437
7438DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged_cmd_vtysh,
7439 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged",
7440 "Negate a command or set its defaults\n"
7441 "Specify neighbor router\n"
7442 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7443 "BGP attribute is propagated unchanged to this neighbor\n")
7444
7445DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_ge_le_cmd_vtysh,
7446 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128> le <0-128>",
7447 "Negate a command or set its defaults\n"
7448 "IPv6 information\n"
7449 "Build a prefix list\n"
7450 "Name of a prefix list\n"
7451 "Specify packets to reject\n"
7452 "Specify packets to forward\n"
7453 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
7454 "Minimum prefix length to be matched\n"
7455 "Minimum prefix length\n"
7456 "Maximum prefix length to be matched\n"
7457 "Maximum prefix length\n")
7458
7459DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_in_cmd_vtysh,
7460 "clear ip bgp external soft in",
7461 "Reset functions\n"
7462 "IP information\n"
7463 "BGP information\n"
7464 "Clear all external peers\n"
7465 "Soft reconfig\n"
7466 "Soft reconfig inbound update\n")
7467
7468DEFSH (VTYSH_OSPF6D, ipv6_ospf6_transmitdelay_cmd_vtysh,
7469 "ipv6 ospf6 transmit-delay TRANSMITDELAY",
7470 "IPv6 Information\n"
7471 "Open Shortest Path First (OSPF) for IPv6\n"
7472 "Link state transmit delay\n"
7473 "<1-65535> Seconds\n"
7474 )
7475
7476DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_cmd_vtysh,
7477 "clear bgp ipv6 <1-65535>",
7478 "Reset functions\n"
7479 "BGP information\n"
7480 "Address family\n"
7481 "Clear peers with the AS number\n")
7482
7483DEFSH (VTYSH_OSPFD, area_vlink_authkey_cmd_vtysh,
7484 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
7485 "(authentication-key|) AUTH_KEY",
7486 "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"
7487 "Authentication password (key)\n" "The OSPF password (key)")
7488
7489DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_out_cmd_vtysh,
7490 "clear bgp peer-group WORD soft out",
7491 "Reset functions\n"
7492 "BGP information\n"
7493 "Clear all members of peer-group\n"
7494 "BGP peer-group name\n"
7495 "Soft reconfig\n"
7496 "Soft reconfig outbound update\n")
7497
7498DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh,
7499 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D",
7500 "Show running system information\n"
7501 "IP information\n"
7502 "BGP information\n"
7503 "Display VPNv4 NLRI specific information\n"
7504 "Display information about all VPNv4 NLRIs\n"
7505 "Detailed information on TCP and BGP neighbor connections\n"
7506 "Neighbor to display information about\n")
7507
7508DEFSH (VTYSH_BGPD, no_neighbor_ebgp_multihop_cmd_vtysh,
7509 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop",
7510 "Negate a command or set its defaults\n"
7511 "Specify neighbor router\n"
7512 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7513 "Allow EBGP neighbors not on directly connected networks\n")
7514
7515DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_exact_cmd_vtysh,
7516 "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) exact-match",
7517 "Show running system information\n"
7518 "BGP information\n"
7519 "Address family\n"
7520 "Display routes matching the communities\n"
7521 "community number\n"
7522 "Do not send outside local AS (well-known community)\n"
7523 "Do not advertise to any peer (well-known community)\n"
7524 "Do not export to next AS (well-known community)\n"
7525 "Exact match of the communities")
7526
7527DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_out_cmd_vtysh,
7528 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft out",
7529 "Reset functions\n"
7530 "IP information\n"
7531 "BGP information\n"
7532 "BGP view\n"
7533 "view name\n"
7534 "Clear all peers\n"
7535 "Address family\n"
7536 "Address Family modifier\n"
7537 "Address Family modifier\n"
7538 "Soft reconfig outbound update\n")
7539
7540DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community4_exact_cmd_vtysh,
7541 "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",
7542 "Show running system information\n"
7543 "IPv6 information\n"
7544 "MBGP information\n"
7545 "Display routes matching the communities\n"
7546 "community number\n"
7547 "Do not send outside local AS (well-known community)\n"
7548 "Do not advertise to any peer (well-known community)\n"
7549 "Do not export to next AS (well-known community)\n"
7550 "community number\n"
7551 "Do not send outside local AS (well-known community)\n"
7552 "Do not advertise to any peer (well-known community)\n"
7553 "Do not export to next AS (well-known community)\n"
7554 "community number\n"
7555 "Do not send outside local AS (well-known community)\n"
7556 "Do not advertise to any peer (well-known community)\n"
7557 "Do not export to next AS (well-known community)\n"
7558 "community number\n"
7559 "Do not send outside local AS (well-known community)\n"
7560 "Do not advertise to any peer (well-known community)\n"
7561 "Do not export to next AS (well-known community)\n"
7562 "Exact match of the communities")
7563
7564DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_cmd_vtysh,
7565 "no redistribute bgp",
7566 "Negate a command or set its defaults\n"
7567 "Redistribute information from another routing protocol\n"
7568 "Border Gateway Protocol (BGP)\n")
7569
7570DEFSH (VTYSH_OSPF6D, ipv6_ospf6_retransmitinterval_cmd_vtysh,
7571 "ipv6 ospf6 retransmit-interval RXMTINTERVAL",
7572 "IPv6 Information\n"
7573 "Open Shortest Path First (OSPF) for IPv6\n"
7574 "Time between retransmitting lost link state advertisements\n"
7575 "<1-65535> Seconds\n"
7576 )
7577
7578DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_cmd_vtysh,
7579 "clear ip bgp <1-65535> soft",
7580 "Reset functions\n"
7581 "IP information\n"
7582 "BGP information\n"
7583 "Clear peers with the AS number\n"
7584 "Soft reconfig\n")
7585
7586DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_cmd_vtysh,
7587 "clear ip bgp external soft",
7588 "Reset functions\n"
7589 "IP information\n"
7590 "BGP information\n"
7591 "Clear all external peers\n"
7592 "Soft reconfig\n")
7593
7594DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_all_cmd_vtysh,
7595 "no ipv6 access-list WORD",
7596 "Negate a command or set its defaults\n"
7597 "IPv6 information\n"
7598 "Add an access list entry\n"
7599 "IPv6 zebra access-list\n")
7600
7601DEFSH (VTYSH_RIPD, show_debugging_rip_cmd_vtysh,
7602 "show debugging rip",
7603 "Show running system information\n"
7604 "Debugging functions (see also 'undebug')\n"
7605 "RIP information\n")
7606
7607DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, rmap_onmatch_next_cmd_vtysh,
7608 "on-match next",
7609 "Exit policy on matches\n"
7610 "Next clause\n")
7611
7612DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_out_cmd_vtysh,
7613 "clear ip bgp <1-65535> soft out",
7614 "Reset functions\n"
7615 "IP information\n"
7616 "BGP information\n"
7617 "Clear peers with the AS number\n"
7618 "Soft reconfig\n"
7619 "Soft reconfig outbound update\n")
7620
7621DEFSH (VTYSH_RIPD, no_ip_rip_receive_version_num_cmd_vtysh,
7622 "no ip rip receive version (1|2)",
7623 "Negate a command or set its defaults\n"
7624 "IP information\n"
7625 "Routing Information Protocol\n"
7626 "Advertisement reception\n"
7627 "Version control\n"
7628 "Version 1\n"
7629 "Version 2\n")
7630
paul718e3742002-12-13 20:15:29 +00007631DEFSH (VTYSH_BGPD, show_ip_bgp_view_cmd_vtysh,
7632 "show ip bgp view WORD",
7633 "Show running system information\n"
7634 "IP information\n"
7635 "BGP information\n"
7636 "BGP view\n"
7637 "BGP view name\n")
7638
paul569c0f02003-03-02 21:19:26 +00007639DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh,
7640 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors",
7641 "Show running system information\n"
7642 "IP information\n"
7643 "BGP information\n"
7644 "Display VPNv4 NLRI specific information\n"
7645 "Display information for a route distinguisher\n"
7646 "VPN Route Distinguisher\n"
7647 "Detailed information on TCP and BGP neighbor connections\n")
7648
7649DEFSH (VTYSH_OSPFD, ip_ospf_cost_addr_cmd_vtysh,
7650 "ip ospf cost <1-65535> A.B.C.D",
7651 "IP Information\n"
7652 "OSPF interface commands\n"
7653 "Interface cost\n"
7654 "Cost\n"
7655 "Address of interface")
7656
7657DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_in_prefix_filter_cmd_vtysh,
7658 "clear ip bgp * ipv4 (unicast|multicast) in prefix-filter",
paul718e3742002-12-13 20:15:29 +00007659 "Reset functions\n"
7660 "IP information\n"
7661 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00007662 "Clear all peers\n"
7663 "Address family\n"
7664 "Address Family modifier\n"
7665 "Address Family modifier\n"
7666 "Soft reconfig inbound update\n"
7667 "Push out prefix-list ORF and do inbound soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00007668
paul569c0f02003-03-02 21:19:26 +00007669DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_routes_cmd_vtysh,
7670 "show ip bgp neighbors (A.B.C.D|X:X::X:X) routes",
7671 "Show running system information\n"
7672 "IP information\n"
7673 "BGP information\n"
7674 "Detailed information on TCP and BGP neighbor connections\n"
7675 "Neighbor to display information about\n"
7676 "Neighbor to display information about\n"
7677 "Display routes learned from neighbor\n")
paul718e3742002-12-13 20:15:29 +00007678
7679DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community4_exact_cmd_vtysh,
7680 "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",
7681 "Show running system information\n"
7682 "IP information\n"
7683 "BGP information\n"
7684 "Address family\n"
7685 "Address Family modifier\n"
7686 "Address Family modifier\n"
7687 "Display routes matching the communities\n"
7688 "community number\n"
7689 "Do not send outside local AS (well-known community)\n"
7690 "Do not advertise to any peer (well-known community)\n"
7691 "Do not export to next AS (well-known community)\n"
7692 "community number\n"
7693 "Do not send outside local AS (well-known community)\n"
7694 "Do not advertise to any peer (well-known community)\n"
7695 "Do not export to next AS (well-known community)\n"
7696 "community number\n"
7697 "Do not send outside local AS (well-known community)\n"
7698 "Do not advertise to any peer (well-known community)\n"
7699 "Do not export to next AS (well-known community)\n"
7700 "community number\n"
7701 "Do not send outside local AS (well-known community)\n"
7702 "Do not advertise to any peer (well-known community)\n"
7703 "Do not export to next AS (well-known community)\n"
7704 "Exact match of the communities")
7705
paul569c0f02003-03-02 21:19:26 +00007706DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_cmd_vtysh,
7707 "show ip bgp ipv4 (unicast|multicast) A.B.C.D/M",
7708 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00007709 "IP information\n"
7710 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00007711 "Address family\n"
7712 "Address Family modifier\n"
7713 "Address Family modifier\n"
paul569c0f02003-03-02 21:19:26 +00007714 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
paul718e3742002-12-13 20:15:29 +00007715
paul569c0f02003-03-02 21:19:26 +00007716DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_any_cmd_vtysh,
7717 "access-list (<1-99>|<1300-1999>) (deny|permit) any",
paul718e3742002-12-13 20:15:29 +00007718 "Add an access list entry\n"
7719 "IP standard access list\n"
7720 "IP standard access list (expanded range)\n"
7721 "Specify packets to reject\n"
7722 "Specify packets to forward\n"
paul569c0f02003-03-02 21:19:26 +00007723 "Any source host\n")
paul718e3742002-12-13 20:15:29 +00007724
paul569c0f02003-03-02 21:19:26 +00007725DEFSH (VTYSH_OSPFD, no_area_nssa_no_summary_cmd_vtysh,
7726 "no area (A.B.C.D|<0-4294967295>) nssa no-summary",
paul718e3742002-12-13 20:15:29 +00007727 "Negate a command or set its defaults\n"
7728 "OSPF area parameters\n"
7729 "OSPF area ID in IP address format\n"
7730 "OSPF area ID as a decimal value\n"
paul569c0f02003-03-02 21:19:26 +00007731 "Configure OSPF area as nssa\n"
7732 "Do not inject inter-area routes into nssa\n")
paul718e3742002-12-13 20:15:29 +00007733
paul569c0f02003-03-02 21:19:26 +00007734DEFSH (VTYSH_BGPD, neighbor_override_capability_cmd_vtysh,
7735 "neighbor (A.B.C.D|X:X::X:X|WORD) " "override-capability",
paul718e3742002-12-13 20:15:29 +00007736 "Specify neighbor router\n"
7737 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7738 "Override capability negotiation result\n")
7739
paul569c0f02003-03-02 21:19:26 +00007740DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_global_val_cmd_vtysh,
7741 "no set ipv6 next-hop global X:X::X:X",
paul718e3742002-12-13 20:15:29 +00007742 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00007743 "Set values in destination routing protocol\n"
7744 "IPv6 information\n"
7745 "IPv6 next-hop address\n"
7746 "IPv6 global address\n"
7747 "IPv6 address of next hop\n")
7748
paul569c0f02003-03-02 21:19:26 +00007749DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_cmd_vtysh,
7750 "distance ospf intra-area <1-255>",
paul718e3742002-12-13 20:15:29 +00007751 "Define an administrative distance\n"
7752 "OSPF Administrative distance\n"
paul718e3742002-12-13 20:15:29 +00007753 "Intra-area routes\n"
paul569c0f02003-03-02 21:19:26 +00007754 "Distance for intra-area routes\n")
paul718e3742002-12-13 20:15:29 +00007755
7756DEFSH (VTYSH_BGPD, no_ip_as_path_cmd_vtysh,
7757 "no ip as-path access-list WORD (deny|permit) .LINE",
7758 "Negate a command or set its defaults\n"
7759 "IP information\n"
7760 "BGP autonomous system path filter\n"
7761 "Specify an access list name\n"
7762 "Regular expression access list name\n"
7763 "Specify packets to reject\n"
7764 "Specify packets to forward\n"
7765 "A regular-expression to match the BGP AS paths\n")
7766
paul569c0f02003-03-02 21:19:26 +00007767DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_list_cmd_vtysh,
7768 "show ip bgp ipv4 (unicast|multicast) prefix-list WORD",
paul718e3742002-12-13 20:15:29 +00007769 "Show running system information\n"
7770 "IP information\n"
7771 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00007772 "Address family\n"
7773 "Address Family modifier\n"
7774 "Address Family modifier\n"
paul569c0f02003-03-02 21:19:26 +00007775 "Display routes conforming to the prefix-list\n"
7776 "IP prefix-list name\n")
paul718e3742002-12-13 20:15:29 +00007777
paul569c0f02003-03-02 21:19:26 +00007778DEFSH (VTYSH_BGPD, neighbor_default_originate_cmd_vtysh,
7779 "neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate",
7780 "Specify neighbor router\n"
7781 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7782 "Originate default route to this neighbor\n")
paul718e3742002-12-13 20:15:29 +00007783
paul569c0f02003-03-02 21:19:26 +00007784DEFSH (VTYSH_RIPD, no_rip_redistribute_type_cmd_vtysh,
7785 "no redistribute (kernel|connected|static|ospf|bgp)",
paul718e3742002-12-13 20:15:29 +00007786 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00007787 "Redistribute information from another routing protocol\n"
7788 "Kernel routes\n"
7789 "Connected\n"
7790 "Static routes\n"
7791 "Open Shortest Path First (OSPF)\n"
paul569c0f02003-03-02 21:19:26 +00007792 "Border Gateway Protocol (BGP)\n")
7793
7794DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_val_cmd_vtysh,
7795 "no redistribute connected metric <0-16>",
7796 "Negate a command or set its defaults\n"
7797 "Redistribute information from another routing protocol\n"
7798 "Connected\n"
paul718e3742002-12-13 20:15:29 +00007799 "Metric\n"
7800 "Metric value\n")
7801
paul569c0f02003-03-02 21:19:26 +00007802DEFSH (VTYSH_ZEBRA, no_ip_route_mask_distance_cmd_vtysh,
7803 "no ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0) <1-255>",
7804 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00007805 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00007806 "Establish static routes\n"
7807 "IP destination prefix\n"
7808 "IP destination prefix mask\n"
7809 "IP gateway address\n"
7810 "IP gateway interface name\n"
7811 "Null interface\n"
7812 "Distance value for this route\n")
paul718e3742002-12-13 20:15:29 +00007813
7814DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community2_exact_cmd_vtysh,
7815 "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",
7816 "Show running system information\n"
7817 "IP information\n"
7818 "BGP information\n"
7819 "Address family\n"
7820 "Address Family modifier\n"
7821 "Address Family modifier\n"
7822 "Display routes matching the communities\n"
7823 "community number\n"
7824 "Do not send outside local AS (well-known community)\n"
7825 "Do not advertise to any peer (well-known community)\n"
7826 "Do not export to next AS (well-known community)\n"
7827 "community number\n"
7828 "Do not send outside local AS (well-known community)\n"
7829 "Do not advertise to any peer (well-known community)\n"
7830 "Do not export to next AS (well-known community)\n"
7831 "Exact match of the communities")
7832
paul569c0f02003-03-02 21:19:26 +00007833DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_cmd_vtysh,
7834 "redistribute kernel",
7835 "Redistribute information from another routing protocol\n"
7836 "Kernel routes\n")
paul718e3742002-12-13 20:15:29 +00007837
paul569c0f02003-03-02 21:19:26 +00007838DEFSH (VTYSH_OSPFD, no_debug_ospf_lsa_sub_cmd_vtysh,
7839 "no debug ospf lsa (generate|flooding|install|refresh)",
paul718e3742002-12-13 20:15:29 +00007840 "Negate a command or set its defaults\n"
7841 "Debugging functions (see also 'undebug')\n"
7842 "OSPF information\n"
paul569c0f02003-03-02 21:19:26 +00007843 "OSPF Link State Advertisement\n"
7844 "LSA Generation\n"
7845 "LSA Flooding\n"
7846 "LSA Install/Delete\n"
7847 "LSA Refres\n")
paul718e3742002-12-13 20:15:29 +00007848
paul569c0f02003-03-02 21:19:26 +00007849DEFSH (VTYSH_BGPD, bgp_fast_external_failover_cmd_vtysh,
7850 "bgp fast-external-failover",
paul718e3742002-12-13 20:15:29 +00007851 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00007852 "Immediately reset session if a link to a directly connected external peer goes down\n")
paul718e3742002-12-13 20:15:29 +00007853
paul569c0f02003-03-02 21:19:26 +00007854DEFSH (VTYSH_OSPFD, ip_ospf_message_digest_key_cmd_vtysh,
7855 "ip ospf message-digest-key <1-255> md5 KEY",
paul718e3742002-12-13 20:15:29 +00007856 "IP Information\n"
7857 "OSPF interface commands\n"
paul569c0f02003-03-02 21:19:26 +00007858 "Message digest authentication password (key)\n"
7859 "Key ID\n"
7860 "Use MD5 algorithm\n"
7861 "The OSPF password (key)")
paul718e3742002-12-13 20:15:29 +00007862
paul569c0f02003-03-02 21:19:26 +00007863DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_list_cmd_vtysh,
7864 "show ipv6 mbgp prefix-list WORD",
paul718e3742002-12-13 20:15:29 +00007865 "Show running system information\n"
7866 "IPv6 information\n"
7867 "MBGP information\n"
paul569c0f02003-03-02 21:19:26 +00007868 "Display routes matching the prefix-list\n"
7869 "IPv6 prefix-list name\n")
paul718e3742002-12-13 20:15:29 +00007870
paul569c0f02003-03-02 21:19:26 +00007871DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_out_cmd_vtysh,
7872 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) out",
paul718e3742002-12-13 20:15:29 +00007873 "Reset functions\n"
paul569c0f02003-03-02 21:19:26 +00007874 "IP information\n"
paul718e3742002-12-13 20:15:29 +00007875 "BGP information\n"
7876 "Clear all members of peer-group\n"
7877 "BGP peer-group name\n"
paul569c0f02003-03-02 21:19:26 +00007878 "Address family\n"
7879 "Address Family modifier\n"
7880 "Address Family modifier\n"
7881 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00007882
7883DEFSH (VTYSH_BGPD, show_bgp_community_cmd_vtysh,
7884 "show bgp community (AA:NN|local-AS|no-advertise|no-export)",
7885 "Show running system information\n"
7886 "BGP information\n"
7887 "Display routes matching the communities\n"
7888 "community number\n"
7889 "Do not send outside local AS (well-known community)\n"
7890 "Do not advertise to any peer (well-known community)\n"
7891 "Do not export to next AS (well-known community)\n")
7892
paul569c0f02003-03-02 21:19:26 +00007893DEFSH (VTYSH_RIPD, no_rip_route_cmd_vtysh,
7894 "no route A.B.C.D/M",
7895 "Negate a command or set its defaults\n"
7896 "RIP static route configuration\n"
7897 "IP prefix <network>/<length>\n")
paul718e3742002-12-13 20:15:29 +00007898
paul569c0f02003-03-02 21:19:26 +00007899DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD, no_set_metric_val_cmd_vtysh,
7900 "no set metric <0-4294967295>",
7901 "Negate a command or set its defaults\n"
7902 "Set values in destination routing protocol\n"
7903 "Metric value for destination routing protocol\n"
7904 "Metric value\n")
7905
7906DEFSH (VTYSH_BGPD, clear_bgp_peer_out_cmd_vtysh,
7907 "clear bgp (A.B.C.D|X:X::X:X) out",
7908 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +00007909 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00007910 "BGP neighbor address to clear\n"
7911 "BGP IPv6 neighbor to clear\n"
7912 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00007913
paul569c0f02003-03-02 21:19:26 +00007914DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_le_ge_cmd_vtysh,
7915 "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
paul718e3742002-12-13 20:15:29 +00007916 "Negate a command or set its defaults\n"
7917 "IPv6 information\n"
paul569c0f02003-03-02 21:19:26 +00007918 "Build a prefix list\n"
7919 "Name of a prefix list\n"
paul718e3742002-12-13 20:15:29 +00007920 "Specify packets to reject\n"
7921 "Specify packets to forward\n"
paul569c0f02003-03-02 21:19:26 +00007922 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
7923 "Maximum prefix length to be matched\n"
7924 "Maximum prefix length\n"
7925 "Minimum prefix length to be matched\n"
7926 "Minimum prefix length\n")
paul718e3742002-12-13 20:15:29 +00007927
paul569c0f02003-03-02 21:19:26 +00007928DEFSH (VTYSH_BGPD, neighbor_activate_cmd_vtysh,
7929 "neighbor (A.B.C.D|X:X::X:X|WORD) " "activate",
paul718e3742002-12-13 20:15:29 +00007930 "Specify neighbor router\n"
7931 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
paul569c0f02003-03-02 21:19:26 +00007932 "Enable the Address Family for this Neighbor\n")
paul718e3742002-12-13 20:15:29 +00007933
paul569c0f02003-03-02 21:19:26 +00007934DEFSH (VTYSH_OSPFD, ospf_compatible_rfc1583_cmd_vtysh,
7935 "compatible rfc1583",
7936 "OSPF compatibility list\n"
7937 "compatible with RFC 1583\n")
7938
7939DEFSH (VTYSH_BGPD, no_bgp_network_mask_route_map_cmd_vtysh,
7940 "no network A.B.C.D mask A.B.C.D route-map WORD",
paul718e3742002-12-13 20:15:29 +00007941 "Negate a command or set its defaults\n"
7942 "Specify a network to announce via BGP\n"
paul569c0f02003-03-02 21:19:26 +00007943 "Network number\n"
7944 "Network mask\n"
7945 "Network mask\n"
paul718e3742002-12-13 20:15:29 +00007946 "Route-map to modify the attributes\n"
7947 "Name of the route map\n")
7948
paul569c0f02003-03-02 21:19:26 +00007949DEFSH (VTYSH_BGPD, neighbor_description_cmd_vtysh,
7950 "neighbor (A.B.C.D|X:X::X:X|WORD) " "description .LINE",
paul718e3742002-12-13 20:15:29 +00007951 "Specify neighbor router\n"
7952 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
paul569c0f02003-03-02 21:19:26 +00007953 "Neighbor specific description\n"
7954 "Up to 80 characters describing this neighbor\n")
paul718e3742002-12-13 20:15:29 +00007955
paul569c0f02003-03-02 21:19:26 +00007956DEFSH (VTYSH_RIPD, ip_rip_send_version_2_cmd_vtysh,
7957 "ip rip send version 2 1",
7958 "IP information\n"
7959 "Routing Information Protocol\n"
7960 "Advertisement transmission\n"
7961 "Version control\n"
7962 "RIP version 2\n"
7963 "RIP version 1\n")
7964
7965DEFSH (VTYSH_BGPD, no_neighbor_enforce_multihop_cmd_vtysh,
7966 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "enforce-multihop",
paul718e3742002-12-13 20:15:29 +00007967 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00007968 "Specify neighbor router\n"
7969 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
7970 "Enforce EBGP neighbors perform multihop\n")
7971
7972DEFSH (VTYSH_BGPD, show_bgp_ipv6_route_map_cmd_vtysh,
7973 "show bgp ipv6 route-map WORD",
7974 "Show running system information\n"
7975 "BGP information\n"
7976 "Address family\n"
7977 "Display routes matching the route-map\n"
7978 "A route-map to match on\n")
7979
7980DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_cmd_vtysh,
7981 "clear ip prefix-list",
7982 "Reset functions\n"
7983 "IP information\n"
7984 "Build a prefix list\n")
7985
7986DEFSH (VTYSH_OSPFD, ip_ospf_authentication_key_addr_cmd_vtysh,
7987 "ip ospf authentication-key AUTH_KEY A.B.C.D",
paul718e3742002-12-13 20:15:29 +00007988 "IP Information\n"
7989 "OSPF interface commands\n"
paul569c0f02003-03-02 21:19:26 +00007990 "Authentication password (key)\n"
7991 "The OSPF password (key)\n"
7992 "Address of interface")
paul718e3742002-12-13 20:15:29 +00007993
paul569c0f02003-03-02 21:19:26 +00007994DEFSH (VTYSH_OSPFD, ip_ospf_dead_interval_cmd_vtysh,
7995 "ip ospf dead-interval <1-65535>",
7996 "IP Information\n"
7997 "OSPF interface commands\n"
7998 "Interval after which a neighbor is declared dead\n"
7999 "Seconds\n")
paul718e3742002-12-13 20:15:29 +00008000
paul569c0f02003-03-02 21:19:26 +00008001DEFSH (VTYSH_BGPD, no_neighbor_port_cmd_vtysh,
8002 "no neighbor (A.B.C.D|X:X::X:X) " "port",
paul718e3742002-12-13 20:15:29 +00008003 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00008004 "Specify neighbor router\n"
8005 "Neighbor address\nIPv6 address\n"
8006 "Neighbor's BGP port\n")
paul718e3742002-12-13 20:15:29 +00008007
paul569c0f02003-03-02 21:19:26 +00008008DEFSH (VTYSH_BGPD, no_neighbor_route_reflector_client_cmd_vtysh,
8009 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-reflector-client",
paul718e3742002-12-13 20:15:29 +00008010 "Negate a command or set its defaults\n"
8011 "Specify neighbor router\n"
8012 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
paul569c0f02003-03-02 21:19:26 +00008013 "Configure a neighbor as Route Reflector client\n")
paul718e3742002-12-13 20:15:29 +00008014
paul569c0f02003-03-02 21:19:26 +00008015DEFSH (VTYSH_BGPD, no_set_community_delete_cmd_vtysh,
8016 "no set comm-list",
paul718e3742002-12-13 20:15:29 +00008017 "Negate a command or set its defaults\n"
8018 "Set values in destination routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00008019 "set BGP community list (for deletion)\n")
paul718e3742002-12-13 20:15:29 +00008020
8021DEFSH (VTYSH_BGPD, show_ipv6_bgp_community4_exact_cmd_vtysh,
8022 "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",
8023 "Show running system information\n"
8024 "IPv6 information\n"
8025 "BGP information\n"
8026 "Display routes matching the communities\n"
8027 "community number\n"
8028 "Do not send outside local AS (well-known community)\n"
8029 "Do not advertise to any peer (well-known community)\n"
8030 "Do not export to next AS (well-known community)\n"
8031 "community number\n"
8032 "Do not send outside local AS (well-known community)\n"
8033 "Do not advertise to any peer (well-known community)\n"
8034 "Do not export to next AS (well-known community)\n"
8035 "community number\n"
8036 "Do not send outside local AS (well-known community)\n"
8037 "Do not advertise to any peer (well-known community)\n"
8038 "Do not export to next AS (well-known community)\n"
8039 "community number\n"
8040 "Do not send outside local AS (well-known community)\n"
8041 "Do not advertise to any peer (well-known community)\n"
8042 "Do not export to next AS (well-known community)\n"
8043 "Exact match of the communities")
8044
paul569c0f02003-03-02 21:19:26 +00008045DEFSH (VTYSH_BGPD, no_bgp_fast_external_failover_cmd_vtysh,
8046 "no bgp fast-external-failover",
8047 "Negate a command or set its defaults\n"
8048 "BGP information\n"
8049 "Immediately reset session if a link to a directly connected external peer goes down\n")
8050
8051DEFSH (VTYSH_RIPD, no_ip_rip_authentication_mode_cmd_vtysh,
8052 "no ip rip authentication mode",
8053 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00008054 "IP information\n"
8055 "Routing Information Protocol\n"
8056 "Authentication control\n"
paul569c0f02003-03-02 21:19:26 +00008057 "Authentication mode\n")
paul718e3742002-12-13 20:15:29 +00008058
paul569c0f02003-03-02 21:19:26 +00008059DEFSH (VTYSH_OSPFD, area_vlink_authtype_cmd_vtysh,
8060 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
8061 "(authentication|)",
8062 "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"
8063 "Enable authentication on this virtual link\n" "dummy string \n")
paul718e3742002-12-13 20:15:29 +00008064
paul569c0f02003-03-02 21:19:26 +00008065DEFSH (VTYSH_OSPFD, area_vlink_param3_cmd_vtysh,
8066 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
8067 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
8068 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
8069 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
8070 "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"
8071 "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"
8072 "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"
8073 "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")
paul718e3742002-12-13 20:15:29 +00008074
paul569c0f02003-03-02 21:19:26 +00008075DEFSH (VTYSH_BGPD, show_bgp_prefix_cmd_vtysh,
8076 "show bgp X:X::X:X/M",
paul718e3742002-12-13 20:15:29 +00008077 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00008078 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00008079 "IPv6 prefix <network>/<length>\n")
8080
8081DEFSH (VTYSH_BGPD, neighbor_route_server_client_cmd_vtysh,
8082 "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-server-client",
8083 "Specify neighbor router\n"
8084 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8085 "Configure a neighbor as Route Server client\n")
8086
8087DEFSH (VTYSH_BGPD, show_bgp_community3_cmd_vtysh,
8088 "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)",
8089 "Show running system information\n"
8090 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00008091 "Display routes matching the communities\n"
8092 "community number\n"
8093 "Do not send outside local AS (well-known community)\n"
8094 "Do not advertise to any peer (well-known community)\n"
8095 "Do not export to next AS (well-known community)\n"
paul569c0f02003-03-02 21:19:26 +00008096 "community number\n"
8097 "Do not send outside local AS (well-known community)\n"
8098 "Do not advertise to any peer (well-known community)\n"
8099 "Do not export to next AS (well-known community)\n"
8100 "community number\n"
8101 "Do not send outside local AS (well-known community)\n"
8102 "Do not advertise to any peer (well-known community)\n"
8103 "Do not export to next AS (well-known community)\n")
paul718e3742002-12-13 20:15:29 +00008104
paul569c0f02003-03-02 21:19:26 +00008105DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_in_cmd_vtysh,
8106 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft in",
paul718e3742002-12-13 20:15:29 +00008107 "Reset functions\n"
8108 "IP information\n"
8109 "BGP information\n"
8110 "Clear peers with the AS number\n"
8111 "Address family\n"
paul718e3742002-12-13 20:15:29 +00008112 "Address Family modifier\n"
8113 "Address Family modifier\n"
8114 "Soft reconfig\n"
8115 "Soft reconfig inbound update\n")
8116
paul569c0f02003-03-02 21:19:26 +00008117DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_exact_cmd_vtysh,
8118 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
paul718e3742002-12-13 20:15:29 +00008119 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00008120 "IPv6 information\n"
paul718e3742002-12-13 20:15:29 +00008121 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00008122 "Display routes matching the communities\n"
8123 "community number\n"
8124 "Do not send outside local AS (well-known community)\n"
8125 "Do not advertise to any peer (well-known community)\n"
8126 "Do not export to next AS (well-known community)\n"
paul569c0f02003-03-02 21:19:26 +00008127 "Exact match of the communities")
paul718e3742002-12-13 20:15:29 +00008128
paul569c0f02003-03-02 21:19:26 +00008129DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_advertised_route_cmd_vtysh,
8130 "show ip bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
paul718e3742002-12-13 20:15:29 +00008131 "Show running system information\n"
8132 "IP information\n"
paul718e3742002-12-13 20:15:29 +00008133 "BGP information\n"
8134 "Detailed information on TCP and BGP neighbor connections\n"
8135 "Neighbor to display information about\n"
8136 "Neighbor to display information about\n"
8137 "Display the routes advertised to a BGP neighbor\n")
8138
paul569c0f02003-03-02 21:19:26 +00008139DEFSH (VTYSH_OSPFD, mpls_te_router_addr_cmd_vtysh,
8140 "mpls-te router-address A.B.C.D",
8141 "MPLS-TE specific commands\n"
8142 "Stable IP address of the advertising router\n"
8143 "MPLS-TE router address in IPv4 address format\n")
8144
8145DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_cmd_vtysh,
8146 "show ipv6 ospf6",
8147 "Show running system information\n"
8148 "IPv6 Information\n"
8149 "Open Shortest Path First (OSPF) for IPv6\n")
8150
8151DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ipv6_prefix_list_cmd_vtysh,
8152 "show ipv6 prefix-list",
8153 "Show running system information\n"
8154 "IPv6 information\n"
8155 "Build a prefix list\n")
8156
8157DEFSH (VTYSH_ZEBRA, no_debug_zebra_kernel_cmd_vtysh,
8158 "no debug zebra kernel",
8159 "Negate a command or set its defaults\n"
8160 "Debugging functions (see also 'undebug')\n"
8161 "Zebra configuration\n"
8162 "Debug option set for zebra between kernel interface\n")
8163
8164DEFSH (VTYSH_BGPD, clear_bgp_as_in_prefix_filter_cmd_vtysh,
8165 "clear bgp <1-65535> in prefix-filter",
8166 "Reset functions\n"
8167 "BGP information\n"
8168 "Clear peers with the AS number\n"
8169 "Soft reconfig inbound update\n"
8170 "Push out prefix-list ORF and do inbound soft reconfig\n")
8171
8172DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbors_cmd_vtysh,
8173 "show bgp ipv6 neighbors",
8174 "Show running system information\n"
8175 "BGP information\n"
8176 "Address family\n"
8177 "Detailed information on TCP and BGP neighbor connections\n")
8178
8179DEFSH (VTYSH_ZEBRA, ip_irdp_preference_cmd_vtysh,
8180
8181 "ip irdp preference <0-2147483647>",
8182 "IP information\n"
8183 "ICMP Router discovery on this interface\n"
8184 "Set default preference level for this interface\n"
8185 "Preference level\n")
8186
8187DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_intra_cmd_vtysh,
8188 "distance ospf external <1-255> intra-area <1-255>",
8189 "Define an administrative distance\n"
8190 "OSPF Administrative distance\n"
8191 "External routes\n"
8192 "Distance for external routes\n"
8193 "Intra-area routes\n"
8194 "Distance for intra-area routes\n")
8195
8196DEFSH (VTYSH_BGPD, no_set_vpnv4_nexthop_cmd_vtysh,
8197 "no set vpnv4 next-hop",
paul718e3742002-12-13 20:15:29 +00008198 "Negate a command or set its defaults\n"
8199 "Set values in destination routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00008200 "VPNv4 information\n"
8201 "VPNv4 next-hop address\n")
paul718e3742002-12-13 20:15:29 +00008202
paul569c0f02003-03-02 21:19:26 +00008203DEFSH (VTYSH_OSPFD, no_debug_ospf_lsa_cmd_vtysh,
8204 "no debug ospf lsa",
8205 "Negate a command or set its defaults\n"
8206 "Debugging functions (see also 'undebug')\n"
8207 "OSPF information\n"
8208 "OSPF Link State Advertisement\n")
8209
8210DEFSH (VTYSH_BGPD, no_match_community_exact_cmd_vtysh,
8211 "no match community (<1-99>|<100-199>|WORD) exact-match",
8212 "Negate a command or set its defaults\n"
8213 "Match values from routing table\n"
8214 "Match BGP community list\n"
8215 "Community-list number (standard)\n"
8216 "Community-list number (expanded)\n"
8217 "Community-list name\n"
8218 "Do exact matching of communities\n")
8219
8220DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_routemap_cmd_vtysh,
8221 "no redistribute kernel metric <0-16> route-map WORD",
8222 "Negate a command or set its defaults\n"
8223 "Redistribute information from another routing protocol\n"
8224 "Kernel routes\n"
8225 "Metric\n"
8226 "Metric value\n"
8227 "Route map reference\n"
8228 "Pointer to route-map entries\n")
8229
8230DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_router_cmd_vtysh,
8231 "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>|detail)",
paul718e3742002-12-13 20:15:29 +00008232 "Show running system information\n"
8233 "IPv6 Information\n"
8234 "Open Shortest Path First (OSPF) for IPv6\n"
paul569c0f02003-03-02 21:19:26 +00008235 "Inter Area topology information\n"
8236 "Specify Router-ID\n"
8237 "Specify Router-ID\n"
8238 "Detailed information\n"
paul718e3742002-12-13 20:15:29 +00008239 )
8240
8241DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_routes_cmd_vtysh,
8242 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) routes",
8243 "Show running system information\n"
8244 "BGP information\n"
8245 "Address family\n"
8246 "Detailed information on TCP and BGP neighbor connections\n"
8247 "Neighbor to display information about\n"
8248 "Neighbor to display information about\n"
8249 "Display routes learned from neighbor\n")
8250
paul569c0f02003-03-02 21:19:26 +00008251DEFSH (VTYSH_BGPD, ip_community_list_standard2_cmd_vtysh,
8252 "ip community-list <1-99> (deny|permit)",
8253 "IP information\n"
8254 "Add a community list entry\n"
8255 "Community list number (standard)\n"
8256 "Specify community to reject\n"
8257 "Specify community to accept\n")
paul718e3742002-12-13 20:15:29 +00008258
paul569c0f02003-03-02 21:19:26 +00008259DEFSH (VTYSH_BGPD, show_ip_bgp_instance_ipv4_summary_cmd_vtysh,
8260 "show ip bgp view WORD ipv4 (unicast|multicast) summary",
8261 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00008262 "IP information\n"
8263 "BGP information\n"
8264 "BGP view\n"
paul569c0f02003-03-02 21:19:26 +00008265 "View name\n"
8266 "Address family\n"
8267 "Address Family modifier\n"
8268 "Address Family modifier\n"
8269 "Summary of BGP neighbor status\n")
paul718e3742002-12-13 20:15:29 +00008270
paul569c0f02003-03-02 21:19:26 +00008271DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_route_map_cmd_vtysh,
8272 "no network A.B.C.D route-map WORD",
paul718e3742002-12-13 20:15:29 +00008273 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00008274 "Specify a network to announce via BGP\n"
8275 "Network number\n"
8276 "Route-map to modify the attributes\n"
8277 "Name of the route map\n")
paul718e3742002-12-13 20:15:29 +00008278
paul569c0f02003-03-02 21:19:26 +00008279DEFSH (VTYSH_OSPFD, no_area_range_cmd_vtysh,
8280 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M",
8281 "Negate a command or set its defaults\n"
8282 "OSPF area parameters\n"
8283 "OSPF area ID in IP address format\n"
8284 "OSPF area ID as a decimal value\n"
8285 "Summarize routes matching address/mask (border routers only)\n"
8286 "Area range prefix\n")
paul718e3742002-12-13 20:15:29 +00008287
paul569c0f02003-03-02 21:19:26 +00008288DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_metric_cmd_vtysh,
8289 "no redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295>",
8290 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00008291 "Redistribute information from another routing protocol\n"
paul569c0f02003-03-02 21:19:26 +00008292 "Connected\n"
8293 "Kernel routes\n"
8294 "Open Shurtest Path First (OSPF)\n"
8295 "Routing Information Protocol (RIP)\n"
8296 "Static routes\n"
8297 "Metric for redistributed routes\n"
8298 "Default metric\n")
paul718e3742002-12-13 20:15:29 +00008299
paul569c0f02003-03-02 21:19:26 +00008300DEFSH (VTYSH_BGPD, show_ip_bgp_community2_cmd_vtysh,
8301 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
paul718e3742002-12-13 20:15:29 +00008302 "Show running system information\n"
8303 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00008304 "BGP information\n"
8305 "Display routes matching the communities\n"
8306 "community number\n"
8307 "Do not send outside local AS (well-known community)\n"
8308 "Do not advertise to any peer (well-known community)\n"
8309 "Do not export to next AS (well-known community)\n"
8310 "community number\n"
8311 "Do not send outside local AS (well-known community)\n"
8312 "Do not advertise to any peer (well-known community)\n"
8313 "Do not export to next AS (well-known community)\n")
paul718e3742002-12-13 20:15:29 +00008314
8315DEFSH (VTYSH_OSPFD, no_ip_ospf_dead_interval_addr_cmd_vtysh,
8316 "no ip ospf dead-interval A.B.C.D",
8317 "Negate a command or set its defaults\n"
8318 "IP Information\n"
8319 "OSPF interface commands\n"
8320 "Interval after which a neighbor is declared dead\n"
8321 "Address of interface")
8322
paul569c0f02003-03-02 21:19:26 +00008323DEFSH (VTYSH_BGPD, show_ipv6_bgp_community2_cmd_vtysh,
8324 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
paul718e3742002-12-13 20:15:29 +00008325 "Show running system information\n"
8326 "IPv6 information\n"
paul569c0f02003-03-02 21:19:26 +00008327 "BGP information\n"
8328 "Display routes matching the communities\n"
8329 "community number\n"
8330 "Do not send outside local AS (well-known community)\n"
8331 "Do not advertise to any peer (well-known community)\n"
8332 "Do not export to next AS (well-known community)\n"
8333 "community number\n"
8334 "Do not send outside local AS (well-known community)\n"
8335 "Do not advertise to any peer (well-known community)\n"
8336 "Do not export to next AS (well-known community)\n")
8337
8338DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_cmd_vtysh,
8339 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn",
8340 "Show running system information\n"
8341 "IP information\n"
8342 "BGP information\n"
8343 "Display VPNv4 NLRI specific information\n"
8344 "Display information for a route distinguisher\n"
8345 "VPN Route Distinguisher\n")
8346
8347DEFSH (VTYSH_BGPD, show_ip_bgp_community_exact_cmd_vtysh,
8348 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
8349 "Show running system information\n"
8350 "IP information\n"
8351 "BGP information\n"
8352 "Display routes matching the communities\n"
8353 "community number\n"
8354 "Do not send outside local AS (well-known community)\n"
8355 "Do not advertise to any peer (well-known community)\n"
8356 "Do not export to next AS (well-known community)\n"
8357 "Exact match of the communities")
8358
8359DEFSH (VTYSH_OSPFD, no_ip_ospf_hello_interval_cmd_vtysh,
8360 "no ip ospf hello-interval",
8361 "Negate a command or set its defaults\n"
8362 "IP Information\n"
8363 "OSPF interface commands\n"
8364 "Time between HELLO packets\n")
8365
8366DEFSH (VTYSH_BGPD, show_bgp_ipv6_community4_cmd_vtysh,
8367 "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)",
8368 "Show running system information\n"
8369 "BGP information\n"
8370 "Address family\n"
paul718e3742002-12-13 20:15:29 +00008371 "Display routes matching the communities\n"
8372 "community number\n"
8373 "Do not send outside local AS (well-known community)\n"
8374 "Do not advertise to any peer (well-known community)\n"
8375 "Do not export to next AS (well-known community)\n"
8376 "community number\n"
8377 "Do not send outside local AS (well-known community)\n"
8378 "Do not advertise to any peer (well-known community)\n"
8379 "Do not export to next AS (well-known community)\n"
8380 "community number\n"
8381 "Do not send outside local AS (well-known community)\n"
8382 "Do not advertise to any peer (well-known community)\n"
8383 "Do not export to next AS (well-known community)\n"
8384 "community number\n"
8385 "Do not send outside local AS (well-known community)\n"
8386 "Do not advertise to any peer (well-known community)\n"
paul569c0f02003-03-02 21:19:26 +00008387 "Do not export to next AS (well-known community)\n")
paul718e3742002-12-13 20:15:29 +00008388
paul569c0f02003-03-02 21:19:26 +00008389DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_remark_cmd_vtysh,
8390 "no ipv6 access-list WORD remark",
paul718e3742002-12-13 20:15:29 +00008391 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00008392 "IPv6 information\n"
8393 "Add an access list entry\n"
8394 "IPv6 zebra access-list\n"
8395 "Access list entry comment\n")
paul718e3742002-12-13 20:15:29 +00008396
paul569c0f02003-03-02 21:19:26 +00008397DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_cmd_vtysh,
8398 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft",
paul718e3742002-12-13 20:15:29 +00008399 "Reset functions\n"
8400 "BGP information\n"
8401 "Address family\n"
paul569c0f02003-03-02 21:19:26 +00008402 "BGP neighbor address to clear\n"
8403 "BGP IPv6 neighbor to clear\n"
8404 "Soft reconfig\n")
paul718e3742002-12-13 20:15:29 +00008405
paul569c0f02003-03-02 21:19:26 +00008406DEFSH (VTYSH_BGPD, no_match_origin_cmd_vtysh,
8407 "no match origin",
paul718e3742002-12-13 20:15:29 +00008408 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00008409 "Match values from routing table\n"
8410 "BGP origin code\n")
paul718e3742002-12-13 20:15:29 +00008411
paul569c0f02003-03-02 21:19:26 +00008412DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_out_cmd_vtysh,
8413 "clear ip bgp * soft out",
paul718e3742002-12-13 20:15:29 +00008414 "Reset functions\n"
8415 "IP information\n"
8416 "BGP information\n"
8417 "Clear all peers\n"
paul569c0f02003-03-02 21:19:26 +00008418 "Soft reconfig\n"
8419 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00008420
paul569c0f02003-03-02 21:19:26 +00008421DEFSH (VTYSH_BGPD, show_bgp_neighbor_routes_cmd_vtysh,
8422 "show bgp neighbors (A.B.C.D|X:X::X:X) routes",
paul718e3742002-12-13 20:15:29 +00008423 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00008424 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00008425 "Detailed information on TCP and BGP neighbor connections\n"
8426 "Neighbor to display information about\n"
8427 "Neighbor to display information about\n"
paul569c0f02003-03-02 21:19:26 +00008428 "Display routes learned from neighbor\n")
paul718e3742002-12-13 20:15:29 +00008429
paul569c0f02003-03-02 21:19:26 +00008430DEFSH (VTYSH_BGPD, aggregate_address_cmd_vtysh,
8431 "aggregate-address A.B.C.D/M",
8432 "Configure BGP aggregate entries\n"
8433 "Aggregate prefix\n")
8434
8435DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_metric_routemap_cmd_vtysh,
8436 "redistribute bgp metric <0-16> route-map WORD",
8437 "Redistribute information from another routing protocol\n"
8438 "Border Gateway Protocol (BGP)\n"
8439 "Metric\n"
8440 "Metric value\n"
8441 "Route map reference\n"
8442 "Pointer to route-map entries\n")
8443
8444DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_router_cmd_vtysh,
8445 "show ipv6 ospf6 area A.B.C.D topology (A.B.C.D|<0-4294967295>|detail)",
8446 "Show running system information\n"
8447 "IPv6 Information\n"
8448 "Open Shortest Path First (OSPF) for IPv6\n"
8449 "Area information\n"
8450 "Area ID (as an IPv4 notation)\n"
8451 "Shortest Path First tree information\n"
8452 "Displays SPF topology table\n"
8453 "Specify Router-ID\n"
8454 "Specify Router-ID\n"
8455 )
8456
8457DEFSH (VTYSH_BGPD, old_ipv6_aggregate_address_summary_only_cmd_vtysh,
8458 "ipv6 bgp aggregate-address X:X::X:X/M summary-only",
8459 "IPv6 information\n"
8460 "BGP information\n"
8461 "Configure BGP aggregate entries\n"
8462 "Aggregate prefix\n"
8463 "Filter more specific routes from updates\n")
8464
8465DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_mask_any_cmd_vtysh,
8466 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D any",
paul718e3742002-12-13 20:15:29 +00008467 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00008468 "Add an access list entry\n"
8469 "IP extended access list\n"
8470 "IP extended access list (expanded range)\n"
8471 "Specify packets to reject\n"
8472 "Specify packets to forward\n"
8473 "Any Internet Protocol\n"
8474 "Source address\n"
8475 "Source wildcard bits\n"
8476 "Any destination host\n")
paul718e3742002-12-13 20:15:29 +00008477
paul569c0f02003-03-02 21:19:26 +00008478DEFSH (VTYSH_OSPFD, passive_interface_cmd_vtysh,
8479 "passive-interface IFNAME",
8480 "Suppress routing updates on an interface\n"
8481 "Interface's name\n")
8482
8483DEFSH (VTYSH_BGPD, no_bgp_network_cmd_vtysh,
8484 "no network PREFIX",
8485 "Negate a command or set its defaults\n"
8486 "Announce network setup\n"
8487 "Delete static network for bgp announcement\n")
8488
8489DEFSH (VTYSH_OSPFD, no_timers_spf_cmd_vtysh,
8490 "no timers spf",
8491 "Negate a command or set its defaults\n"
8492 "Adjust routing timers\n"
8493 "OSPF SPF timers\n")
8494
8495DEFSH (VTYSH_RIPNGD, no_ripng_network_cmd_vtysh,
8496 "no network IF_OR_ADDR",
8497 "Negate a command or set its defaults\n"
8498 "RIPng enable on specified interface or network.\n"
8499 "Interface or address")
8500
8501DEFSH (VTYSH_BGPD, bgp_multiple_instance_cmd_vtysh,
8502 "bgp multiple-instance",
8503 "BGP information\n"
8504 "Enable bgp multiple instance\n")
8505
8506DEFSH (VTYSH_BGPD, clear_ip_bgp_external_out_cmd_vtysh,
8507 "clear ip bgp external out",
paul718e3742002-12-13 20:15:29 +00008508 "Reset functions\n"
8509 "IP information\n"
8510 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00008511 "Clear all external peers\n"
paul718e3742002-12-13 20:15:29 +00008512 "Soft reconfig outbound update\n")
8513
paul569c0f02003-03-02 21:19:26 +00008514DEFSH (VTYSH_RIPD, no_rip_neighbor_cmd_vtysh,
8515 "no neighbor A.B.C.D",
8516 "Negate a command or set its defaults\n"
8517 "Specify a neighbor router\n"
8518 "Neighbor address\n")
paul718e3742002-12-13 20:15:29 +00008519
paul569c0f02003-03-02 21:19:26 +00008520DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_cmd_vtysh,
8521 "show ip bgp vpnv4 all",
paul718e3742002-12-13 20:15:29 +00008522 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +00008523 "IP information\n"
8524 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00008525 "Display VPNv4 NLRI specific information\n"
8526 "Display information about all VPNv4 NLRIs\n")
8527
8528DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_out_cmd_vtysh,
8529 "clear bgp view WORD * soft out",
8530 "Reset functions\n"
8531 "BGP information\n"
paul718e3742002-12-13 20:15:29 +00008532 "BGP view\n"
8533 "view name\n"
8534 "Clear all peers\n"
8535 "Soft reconfig\n"
8536 "Soft reconfig outbound update\n")
8537
paul569c0f02003-03-02 21:19:26 +00008538DEFSH (VTYSH_ZEBRA, debug_zebra_events_cmd_vtysh,
8539 "debug zebra events",
paul718e3742002-12-13 20:15:29 +00008540 "Debugging functions (see also 'undebug')\n"
paul569c0f02003-03-02 21:19:26 +00008541 "Zebra configuration\n"
8542 "Debug option set for zebra events\n")
paul718e3742002-12-13 20:15:29 +00008543
paul569c0f02003-03-02 21:19:26 +00008544DEFSH (VTYSH_ZEBRA, ip_route_mask_distance_cmd_vtysh,
8545 "ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0) <1-255>",
paul718e3742002-12-13 20:15:29 +00008546 "IP information\n"
paul569c0f02003-03-02 21:19:26 +00008547 "Establish static routes\n"
8548 "IP destination prefix\n"
8549 "IP destination prefix mask\n"
8550 "IP gateway address\n"
8551 "IP gateway interface name\n"
8552 "Null interface\n"
8553 "Distance value for this route\n")
paul718e3742002-12-13 20:15:29 +00008554
paul569c0f02003-03-02 21:19:26 +00008555DEFSH (VTYSH_ZEBRA, show_ipv6_route_protocol_cmd_vtysh,
8556 "show ipv6 route (bgp|connected|kernel|ospf6|ripng|static)",
8557 "Show running system information\n"
8558 "IP information\n"
8559 "IP routing table\n"
8560 "Border Gateway Protocol (BGP)\n"
8561 "Connected\n"
8562 "Kernel\n"
8563 "Open Shortest Path First (OSPFv3)\n"
8564 "Routing Information Protocol (RIPng)\n"
8565 "Static routes\n")
8566
8567DEFSH (VTYSH_BGPD, bgp_client_to_client_reflection_cmd_vtysh,
8568 "bgp client-to-client reflection",
8569 "BGP specific commands\n"
8570 "Configure client to client route reflection\n"
8571 "reflection of routes allowed\n")
8572
8573DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_exact_cmd_vtysh,
8574 "access-list WORD (deny|permit) A.B.C.D/M exact-match",
8575 "Add an access list entry\n"
8576 "IP zebra access-list name\n"
8577 "Specify packets to reject\n"
8578 "Specify packets to forward\n"
8579 "Prefix to match. e.g. 10.0.0.0/8\n"
8580 "Exact match of the prefixes\n")
8581
8582DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_cmd_vtysh,
8583 "no ipv6 access-list WORD (deny|permit) X:X::X:X/M",
8584 "Negate a command or set its defaults\n"
8585 "IPv6 information\n"
8586 "Add an access list entry\n"
8587 "IPv6 zebra access-list\n"
8588 "Specify packets to reject\n"
8589 "Specify packets to forward\n"
8590 "Prefix to match. e.g. 3ffe:506::/32\n")
8591
8592DEFSH (VTYSH_BGPD, set_atomic_aggregate_cmd_vtysh,
8593 "set atomic-aggregate",
8594 "Set values in destination routing protocol\n"
8595 "BGP atomic aggregate attribute\n" )
8596
8597DEFSH (VTYSH_BGPD, no_neighbor_soft_reconfiguration_cmd_vtysh,
8598 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "soft-reconfiguration inbound",
8599 "Negate a command or set its defaults\n"
8600 "Specify neighbor router\n"
8601 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
8602 "Per neighbor soft reconfiguration\n"
8603 "Allow inbound soft reconfiguration for this neighbor\n")
8604
8605DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ipv6_access_list_cmd_vtysh,
8606 "show ipv6 access-list",
8607 "Show running system information\n"
8608 "IPv6 information\n"
8609 "List IPv6 access lists\n")
8610
8611DEFSH (VTYSH_BGPD, no_bgp_distance_cmd_vtysh,
8612 "no distance bgp <1-255> <1-255> <1-255>",
8613 "Negate a command or set its defaults\n"
8614 "Define an administrative distance\n"
8615 "BGP distance\n"
8616 "Distance for routes external to the AS\n"
8617 "Distance for routes internal to the AS\n"
8618 "Distance for local routes\n")
8619
8620DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_route_cmd_vtysh,
8621 "show ipv6 ospf6 area A.B.C.D route",
8622 "Show running system information\n"
8623 "IPv6 Information\n"
8624 "Open Shortest Path First (OSPF) for IPv6\n"
8625 "Area information\n"
8626 "Area ID (as an IPv4 notation)\n"
8627 "Routing Table\n"
8628 )
8629
8630DEFSH (VTYSH_BGPD, no_bgp_bestpath_compare_router_id_cmd_vtysh,
8631 "no bgp bestpath compare-routerid",
8632 "Negate a command or set its defaults\n"
8633 "BGP specific commands\n"
8634 "Change the default bestpath selection\n"
8635 "Compare router-id for identical EBGP paths\n")
8636
8637DEFSH (VTYSH_BGPD, match_community_cmd_vtysh,
8638 "match community (<1-99>|<100-199>|WORD)",
8639 "Match values from routing table\n"
8640 "Match BGP community list\n"
8641 "Community-list number (standard)\n"
8642 "Community-list number (expanded)\n"
8643 "Community-list name\n")
8644
8645DEFSH (VTYSH_ZEBRA, no_bandwidth_if_cmd_vtysh,
8646 "no bandwidth",
8647 "Negate a command or set its defaults\n"
8648 "Set bandwidth informational parameter\n")
8649
8650DEFSH (VTYSH_BGPD, no_set_originator_id_cmd_vtysh,
8651 "no set originator-id",
8652 "Negate a command or set its defaults\n"
8653 "Set values in destination routing protocol\n"
8654 "BGP originator ID attribute\n")
8655
8656DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_prefix_cmd_vtysh,
8657 "show ip bgp vpnv4 all A.B.C.D/M",
paul718e3742002-12-13 20:15:29 +00008658 "Show running system information\n"
8659 "IP information\n"
8660 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00008661 "Display VPNv4 NLRI specific information\n"
8662 "Display information about all VPNv4 NLRIs\n"
8663 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
paul718e3742002-12-13 20:15:29 +00008664
8665DEFSH (VTYSH_OSPFD, no_ospf_distribute_list_out_cmd_vtysh,
8666 "no distribute-list WORD out (kernel|connected|static|rip|bgp)",
8667 "Negate a command or set its defaults\n"
8668 "Filter networks in routing updates\n"
8669 "Access-list name\n"
8670 "Filter outgoing routing updates\n"
8671 "Kernel routes\n"
8672 "Connected\n"
8673 "Static routes\n"
8674 "Routing Information Protocol (RIP)\n"
8675 "Border Gateway Protocol (BGP)\n")
8676
paul569c0f02003-03-02 21:19:26 +00008677DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_host_cmd_vtysh,
8678 "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D host A.B.C.D",
8679 "Add an access list entry\n"
8680 "IP extended access list\n"
8681 "IP extended access list (expanded range)\n"
paul718e3742002-12-13 20:15:29 +00008682 "Specify packets to reject\n"
8683 "Specify packets to forward\n"
paul569c0f02003-03-02 21:19:26 +00008684 "Any Internet Protocol\n"
8685 "A single source host\n"
8686 "Source address\n"
8687 "A single destination host\n"
8688 "Destination address\n")
paul718e3742002-12-13 20:15:29 +00008689
paul569c0f02003-03-02 21:19:26 +00008690DEFSH (VTYSH_OSPFD, no_ip_ospf_retransmit_interval_cmd_vtysh,
8691 "no ip ospf retransmit-interval",
paul718e3742002-12-13 20:15:29 +00008692 "Negate a command or set its defaults\n"
8693 "IP Information\n"
8694 "OSPF interface commands\n"
paul569c0f02003-03-02 21:19:26 +00008695 "Time between retransmitting lost link state advertisements\n")
paul718e3742002-12-13 20:15:29 +00008696
paul569c0f02003-03-02 21:19:26 +00008697DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_cmd_vtysh,
8698 "clear ip bgp (A.B.C.D|X:X::X:X)",
paul718e3742002-12-13 20:15:29 +00008699 "Reset functions\n"
8700 "IP information\n"
8701 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00008702 "BGP neighbor IP address to clear\n"
8703 "BGP IPv6 neighbor to clear\n")
paul718e3742002-12-13 20:15:29 +00008704
paul569c0f02003-03-02 21:19:26 +00008705DEFSH (VTYSH_BGPD, no_bgp_distance2_cmd_vtysh,
8706 "no distance bgp",
paul718e3742002-12-13 20:15:29 +00008707 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00008708 "Define an administrative distance\n"
paul569c0f02003-03-02 21:19:26 +00008709 "BGP distance\n")
paul718e3742002-12-13 20:15:29 +00008710
paul569c0f02003-03-02 21:19:26 +00008711DEFSH (VTYSH_RIPD, accept_lifetime_month_day_day_month_cmd_vtysh,
8712 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>",
8713 "Set accept lifetime of the key\n"
8714 "Time to start\n"
8715 "Month of the year to start\n"
8716 "Day of th month to start\n"
8717 "Year to start\n"
8718 "Time to expire\n"
8719 "Day of th month to expire\n"
8720 "Month of the year to expire\n"
8721 "Year to expire\n")
paul718e3742002-12-13 20:15:29 +00008722
8723DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_in_prefix_filter_cmd_vtysh,
8724 "clear ip bgp view WORD * in prefix-filter",
8725 "Reset functions\n"
8726 "IP information\n"
8727 "BGP information\n"
8728 "BGP view\n"
8729 "view name\n"
8730 "Clear all peers\n"
8731 "Soft reconfig inbound update\n"
8732 "Push out prefix-list ORF and do inbound soft reconfig\n")
8733
paul569c0f02003-03-02 21:19:26 +00008734DEFSH (VTYSH_OSPFD, area_authentication_cmd_vtysh,
8735 "area (A.B.C.D|<0-4294967295>) authentication",
8736 "OSPF area parameters\n"
8737 "OSPF area ID in IP address format\n"
8738 "OSPF area ID as a decimal value\n"
8739 "Enable authentication\n")
paul718e3742002-12-13 20:15:29 +00008740
paul569c0f02003-03-02 21:19:26 +00008741DEFSH (VTYSH_OSPFD, area_vlink_authtype_md5_cmd_vtysh,
8742 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
8743 "(authentication|) "
8744 "(message-digest-key|) <1-255> md5 KEY",
8745 "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"
8746 "Enable authentication on this virtual link\n" "dummy string \n"
8747 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
paul718e3742002-12-13 20:15:29 +00008748
paul569c0f02003-03-02 21:19:26 +00008749DEFSH (VTYSH_OSPFD, debug_ospf_packet_all_cmd_vtysh,
8750 "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)",
8751 "Debugging functions (see also 'undebug')\n"
8752 "OSPF information\n"
8753 "OSPF packets\n"
8754 "OSPF Hello\n"
8755 "OSPF Database Description\n"
8756 "OSPF Link State Request\n"
8757 "OSPF Link State Update\n"
8758 "OSPF Link State Acknowledgment\n"
8759 "OSPF all packets\n")
paul718e3742002-12-13 20:15:29 +00008760
paul569c0f02003-03-02 21:19:26 +00008761DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_all_cmd_vtysh,
8762 "show ipv6 mbgp community",
paul718e3742002-12-13 20:15:29 +00008763 "Show running system information\n"
paul569c0f02003-03-02 21:19:26 +00008764 "IPv6 information\n"
8765 "MBGP information\n"
8766 "Display routes matching the communities\n")
8767
8768DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_cmd_vtysh,
8769 "no redistribute connected",
8770 "Negate a command or set its defaults\n"
8771 "Redistribute information from another routing protocol\n"
8772 "Connected\n")
8773
8774DEFSH (VTYSH_BGPD, aggregate_address_as_set_summary_cmd_vtysh,
8775 "aggregate-address A.B.C.D/M as-set summary-only",
8776 "Configure BGP aggregate entries\n"
8777 "Aggregate prefix\n"
8778 "Generate AS set path information\n"
8779 "Filter more specific routes from updates\n")
paul718e3742002-12-13 20:15:29 +00008780
8781DEFSH (VTYSH_ZEBRA, show_ip_route_supernets_cmd_vtysh,
8782 "show ip route supernets-only",
8783 "Show running system information\n"
8784 "IP information\n"
8785 "IP routing table\n"
8786 "Show supernet entries only\n")
8787
paul569c0f02003-03-02 21:19:26 +00008788DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_cmd_vtysh,
8789 "redistribute (connected|kernel|ospf6|ripng|static)",
8790 "Redistribute information from another routing protocol\n"
8791 "Connected\n"
8792 "Kernel routes\n"
8793 "Open Shurtest Path First (OSPFv3)\n"
8794 "Routing Information Protocol (RIPng)\n"
8795 "Static routes\n")
paul718e3742002-12-13 20:15:29 +00008796
paul569c0f02003-03-02 21:19:26 +00008797DEFSH (VTYSH_RIPD, no_ip_rip_authentication_string2_cmd_vtysh,
8798 "no ip rip authentication string LINE",
paul718e3742002-12-13 20:15:29 +00008799 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00008800 "IP information\n"
8801 "Routing Information Protocol\n"
8802 "Authentication control\n"
8803 "Authentication string\n"
8804 "Authentication string\n")
paul718e3742002-12-13 20:15:29 +00008805
paul569c0f02003-03-02 21:19:26 +00008806DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_ge_le_cmd_vtysh,
8807 "no ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
paul718e3742002-12-13 20:15:29 +00008808 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00008809 "IP information\n"
8810 "Build a prefix list\n"
8811 "Name of a prefix list\n"
8812 "Specify packets to reject\n"
8813 "Specify packets to forward\n"
8814 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
8815 "Minimum prefix length to be matched\n"
8816 "Minimum prefix length\n"
8817 "Maximum prefix length to be matched\n"
8818 "Maximum prefix length\n")
8819
8820DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_cmd_vtysh,
8821 "clear ip bgp * ipv4 (unicast|multicast) soft",
8822 "Reset functions\n"
8823 "IP information\n"
paul718e3742002-12-13 20:15:29 +00008824 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +00008825 "Clear all peers\n"
8826 "Address family\n"
8827 "Address Family Modifier\n"
8828 "Address Family Modifier\n"
8829 "Soft reconfig\n")
8830
8831DEFSH (VTYSH_BGPD, no_router_bgp_view_cmd_vtysh,
8832 "no router bgp <1-65535> view WORD",
8833 "Negate a command or set its defaults\n"
8834 "Enable a routing process\n"
8835 "BGP information\n"
8836 "AS number\n"
8837 "BGP view\n"
8838 "view name\n")
8839
8840DEFSH (VTYSH_BGPD, old_ipv6_bgp_network_cmd_vtysh,
8841 "ipv6 bgp network X:X::X:X/M",
8842 "IPv6 information\n"
8843 "BGP information\n"
8844 "Specify a network to announce via BGP\n"
8845 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
8846
8847DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_metric_routemap_cmd_vtysh,
8848 "default-information originate metric-type (1|2) metric <0-16777214> route-map WORD",
8849 "Control distribution of default information\n"
8850 "Distribute a default route\n"
8851 "OSPF metric type for default routes\n"
8852 "Set OSPF External Type 1 metrics\n"
8853 "Set OSPF External Type 2 metrics\n"
8854 "OSPF default metric\n"
8855 "OSPF metric\n"
8856 "Route map reference\n"
8857 "Pointer to route-map entries\n")
8858
8859DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_cmd_vtysh,
8860 "show ipv6 mbgp X:X::X:X/M",
8861 "Show running system information\n"
8862 "IP information\n"
8863 "MBGP information\n"
8864 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
8865
8866DEFSH (VTYSH_BGPD, no_ip_community_list_name_expanded_cmd_vtysh,
8867 "no ip community-list expanded WORD (deny|permit) .LINE",
8868 "Negate a command or set its defaults\n"
8869 "IP information\n"
8870 "Add a community list entry\n"
8871 "Specify an expanded community-list\n"
8872 "Community list name\n"
8873 "Specify community to reject\n"
8874 "Specify community to accept\n"
8875 "An ordered list as a regular-expression\n")
8876
8877DEFSH (VTYSH_OSPFD, no_area_shortcut_cmd_vtysh,
8878 "no area (A.B.C.D|<0-4294967295>) shortcut (enable|disable)",
8879 "Negate a command or set its defaults\n"
8880 "OSPF area parameters\n"
8881 "OSPF area ID in IP address format\n"
8882 "OSPF area ID as a decimal value\n"
8883 "Deconfigure the area's shortcutting mode\n"
8884 "Deconfigure enabled shortcutting through the area\n"
8885 "Deconfigure disabled shortcutting through the area\n")
8886
8887DEFSH (VTYSH_OSPFD, ospf_dead_interval_cmd_vtysh,
8888 "ospf dead-interval <1-65535>",
8889 "OSPF interface commands\n"
8890 "Interval after which a neighbor is declared dead\n"
8891 "Seconds\n")
8892
8893DEFSH (VTYSH_ZEBRA, multicast_cmd_vtysh,
8894 "multicast",
8895 "Set multicast flag to interface\n")
8896
8897DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_advertise_prefix_list_cmd_vtysh,
8898 "no ipv6 ospf6 advertise prefix-list",
8899 "Negate a command or set its defaults\n"
8900 "IPv6 Information\n"
8901 "Open Shortest Path First (OSPF) for IPv6\n"
8902 "Advertising options\n"
8903 "Filter prefix using prefix-list\n"
8904 )
8905
8906DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_in_cmd_vtysh,
8907 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft in",
8908 "Reset functions\n"
8909 "IP information\n"
8910 "BGP information\n"
8911 "Clear all members of peer-group\n"
8912 "BGP peer-group name\n"
8913 "Address family\n"
8914 "Address Family modifier\n"
8915 "Address Family modifier\n"
8916 "Soft reconfig\n"
8917 "Soft reconfig inbound update\n")
8918
8919DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_sequence_number_cmd_vtysh,
8920 "ipv6 prefix-list sequence-number",
8921 "IPv6 information\n"
8922 "Build a prefix list\n"
8923 "Include/exclude sequence numbers in NVGEN\n")
8924
8925DEFSH (VTYSH_BGPD, bgp_default_ipv4_unicast_cmd_vtysh,
8926 "bgp default ipv4-unicast",
8927 "BGP specific commands\n"
8928 "Configure BGP defaults\n"
8929 "Activate ipv4-unicast for a peer by default\n")
8930
8931DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_ge_le_cmd_vtysh,
8932 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128> le <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 "sequence number of an entry\n"
8938 "Sequence number\n"
8939 "Specify packets to reject\n"
8940 "Specify packets to forward\n"
8941 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
8942 "Minimum prefix length to be matched\n"
8943 "Minimum prefix length\n"
8944 "Maximum prefix length to be matched\n"
8945 "Maximum prefix length\n")
paul718e3742002-12-13 20:15:29 +00008946
8947DEFSH (VTYSH_BGPD, show_bgp_ipv6_community3_exact_cmd_vtysh,
8948 "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",
8949 "Show running system information\n"
8950 "BGP information\n"
8951 "Address family\n"
8952 "Display routes matching the communities\n"
8953 "community number\n"
8954 "Do not send outside local AS (well-known community)\n"
8955 "Do not advertise to any peer (well-known community)\n"
8956 "Do not export to next AS (well-known community)\n"
8957 "community number\n"
8958 "Do not send outside local AS (well-known community)\n"
8959 "Do not advertise to any peer (well-known community)\n"
8960 "Do not export to next AS (well-known community)\n"
8961 "community number\n"
8962 "Do not send outside local AS (well-known community)\n"
8963 "Do not advertise to any peer (well-known community)\n"
8964 "Do not export to next AS (well-known community)\n"
8965 "Exact match of the communities")
8966
paul569c0f02003-03-02 21:19:26 +00008967DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh,
8968 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn A.B.C.D/M",
8969 "Show running system information\n"
8970 "IP information\n"
8971 "BGP information\n"
8972 "Display VPNv4 NLRI specific information\n"
8973 "Display information for a route distinguisher\n"
8974 "VPN Route Distinguisher\n"
8975 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
8976
8977DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_out_cmd_vtysh,
8978 "clear ip bgp A.B.C.D vpnv4 unicast soft out",
8979 "Reset functions\n"
8980 "IP information\n"
8981 "BGP information\n"
8982 "BGP neighbor address to clear\n"
8983 "Address family\n"
8984 "Address Family Modifier\n"
8985 "Soft reconfig\n"
8986 "Soft reconfig outbound update\n")
8987
8988DEFSH (VTYSH_ZEBRA, ip_irdp_minadvertinterval_cmd_vtysh,
8989 "ip irdp minadvertinterval <3-1800>",
8990 "IP information\n"
8991 "ICMP Router discovery on this interface\n"
8992 "Set minimum time between advertisement\n"
8993 "Minimum advertisement interval in seconds\n")
8994
8995DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged6_cmd_vtysh,
8996 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path med next-hop",
8997 "Negate a command or set its defaults\n"
8998 "Specify neighbor router\n"
8999 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9000 "BGP attribute is propagated unchanged to this neighbor\n"
9001 "As-path attribute\n"
9002 "Med attribute\n"
9003 "Nexthop attribute\n")
9004
9005DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_cmd_vtysh,
9006 "no match ip next-hop",
9007 "Negate a command or set its defaults\n"
9008 "Match values from routing table\n"
9009 "IP information\n"
9010 "Match next-hop address of route\n")
9011
9012DEFSH (VTYSH_BGPD, clear_ip_bgp_external_in_cmd_vtysh,
9013 "clear ip bgp external in",
9014 "Reset functions\n"
9015 "IP information\n"
9016 "BGP information\n"
9017 "Clear all external peers\n"
9018 "Soft reconfig inbound update\n")
9019
9020DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_cmd_vtysh,
9021 "show ip prefix-list",
9022 "Show running system information\n"
9023 "IP information\n"
9024 "Build a prefix list\n")
9025
9026DEFSH (VTYSH_OSPFD, ospf_default_information_originate_cmd_vtysh,
9027 "default-information originate",
9028 "Control distribution of default information\n"
9029 "Distribute a default route\n")
9030
9031DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_exact_cmd_vtysh,
9032 "ipv6 access-list WORD (deny|permit) X:X::X:X/M exact-match",
9033 "IPv6 information\n"
9034 "Add an access list entry\n"
9035 "IPv6 zebra access-list\n"
9036 "Specify packets to reject\n"
9037 "Specify packets to forward\n"
9038 "Prefix to match. e.g. 3ffe:506::/32\n"
9039 "Exact match of the prefixes\n")
9040
9041DEFSH (VTYSH_BGPD, no_dump_bgp_updates_cmd_vtysh,
9042 "no dump bgp updates [PATH] [INTERVAL]",
9043 "Negate a command or set its defaults\n"
9044 "Dump packet\n"
9045 "BGP packet dump\n"
9046 "Dump BGP updates only\n")
9047
9048DEFSH (VTYSH_BGPD, no_neighbor_local_as_val2_cmd_vtysh,
9049 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535> no-prepend",
9050 "Negate a command or set its defaults\n"
9051 "Specify neighbor router\n"
9052 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9053 "Specify a local-as number\n"
9054 "AS number used as local AS\n"
9055 "Do not prepend local-as to updates from ebgp peers\n")
9056
9057DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_prefix_list_cmd_vtysh,
9058 "no match ip next-hop prefix-list",
9059 "Negate a command or set its defaults\n"
9060 "Match values from routing table\n"
9061 "IP information\n"
9062 "Match next-hop address of route\n"
9063 "Match entries of prefix-lists\n")
9064
9065DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh,
9066 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) advertised-routes",
9067 "Show running system information\n"
9068 "IP information\n"
9069 "BGP information\n"
9070 "Address family\n"
9071 "Address Family modifier\n"
9072 "Address Family modifier\n"
9073 "Detailed information on TCP and BGP neighbor connections\n"
9074 "Neighbor to display information about\n"
9075 "Neighbor to display information about\n"
9076 "Display the routes advertised to a BGP neighbor\n")
9077
9078DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_mask_cmd_vtysh,
9079 "access-list (<100-199>|<2000-2699>) (deny|permit) ip any A.B.C.D A.B.C.D",
9080 "Add an access list entry\n"
9081 "IP extended access list\n"
9082 "IP extended access list (expanded range)\n"
9083 "Specify packets to reject\n"
9084 "Specify packets to forward\n"
9085 "Any Internet Protocol\n"
9086 "Any source host\n"
9087 "Destination address\n"
9088 "Destination Wildcard bits\n")
9089
9090DEFSH (VTYSH_OSPFD, ospf_redistribute_source_routemap_cmd_vtysh,
9091 "redistribute (kernel|connected|static|rip|bgp) route-map WORD",
9092 "Redistribute information from another routing protocol\n"
9093 "Kernel routes\n"
9094 "Connected\n"
9095 "Static routes\n"
9096 "Routing Information Protocol (RIP)\n"
9097 "Border Gateway Protocol (BGP)\n"
9098 "Route map reference\n"
9099 "Pointer to route-map entries\n")
9100
9101DEFSH (VTYSH_BGPD, no_set_local_pref_val_cmd_vtysh,
9102 "no set local-preference <0-4294967295>",
9103 "Negate a command or set its defaults\n"
9104 "Set values in destination routing protocol\n"
9105 "BGP local preference path attribute\n"
9106 "Preference value\n")
9107
9108DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_cmd_vtysh,
9109 "access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D A.B.C.D",
9110 "Add an access list entry\n"
9111 "IP standard access list\n"
9112 "IP standard access list (expanded range)\n"
9113 "Specify packets to reject\n"
9114 "Specify packets to forward\n"
9115 "Address to match\n"
9116 "Wildcard bits\n")
9117
9118DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_rmap_metric_cmd_vtysh,
9119 "no redistribute (connected|kernel|ospf6|ripng|static) route-map WORD metric <0-4294967295>",
9120 "Negate a command or set its defaults\n"
9121 "Redistribute information from another routing protocol\n"
9122 "Connected\n"
9123 "Kernel routes\n"
9124 "Open Shurtest Path First (OSPFv3)\n"
9125 "Routing Information Protocol (RIPng)\n"
9126 "Static routes\n"
9127 "Route map reference\n"
9128 "Pointer to route-map entries\n"
9129 "Metric for redistributed routes\n"
9130 "Default metric\n")
9131
9132DEFSH (VTYSH_ZEBRA, no_ipv6_route_ifname_pref_cmd_vtysh,
9133 "no ipv6 route X:X::X:X/M X:X::X:X INTERFACE <1-255>",
9134 "Negate a command or set its defaults\n"
9135 "IP information\n"
9136 "Establish static routes\n"
9137 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
9138 "IPv6 gateway address\n"
9139 "IPv6 gateway interface name\n"
9140 "Distance value for this prefix\n")
9141
9142DEFSH (VTYSH_RIPNGD, ripng_network_cmd_vtysh,
9143 "network IF_OR_ADDR",
9144 "RIPng enable on specified interface or network.\n"
9145 "Interface or address")
9146
9147DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_mask_host_cmd_vtysh,
9148 "access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D host A.B.C.D",
9149 "Add an access list entry\n"
9150 "IP extended access list\n"
9151 "IP extended access list (expanded range)\n"
9152 "Specify packets to reject\n"
9153 "Specify packets to forward\n"
9154 "Any Internet Protocol\n"
9155 "Source address\n"
9156 "Source wildcard bits\n"
9157 "A single destination host\n"
9158 "Destination address\n")
9159
9160DEFSH (VTYSH_BGPD, neighbor_attr_unchanged1_cmd_vtysh,
9161 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged (as-path|next-hop|med)",
9162 "Specify neighbor router\n"
9163 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9164 "BGP attribute is propagated unchanged to this neighbor\n"
9165 "As-path attribute\n"
9166 "Nexthop attribute\n"
9167 "Med attribute\n")
9168
9169DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ip_access_list_name_cmd_vtysh,
9170 "show ip access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD)",
9171 "Show running system information\n"
9172 "IP information\n"
9173 "List IP access lists\n"
9174 "IP standard access list\n"
9175 "IP extended access list\n"
9176 "IP standard access list (expanded range)\n"
9177 "IP extended access list (expanded range)\n"
9178 "IP zebra access-list\n")
9179
9180DEFSH (VTYSH_BGPD, vpnv4_network_cmd_vtysh,
9181 "network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD",
9182 "Specify a network to announce via BGP\n"
9183 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
9184 "Specify Route Distinguisher\n"
9185 "VPN Route Distinguisher\n"
9186 "BGP tag\n"
9187 "tag value\n")
9188
9189DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_ge_le_cmd_vtysh,
9190 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128> le <0-128>",
9191 "IPv6 information\n"
9192 "Build a prefix list\n"
9193 "Name of a prefix list\n"
9194 "Specify packets to reject\n"
9195 "Specify packets to forward\n"
9196 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
9197 "Minimum prefix length to be matched\n"
9198 "Minimum prefix length\n"
9199 "Maximum prefix length to be matched\n"
9200 "Maximum prefix length\n")
9201
9202DEFSH (VTYSH_RIPD, no_ip_rip_receive_version_cmd_vtysh,
9203 "no ip rip receive version",
9204 "Negate a command or set its defaults\n"
9205 "IP information\n"
9206 "Routing Information Protocol\n"
9207 "Advertisement reception\n"
9208 "Version control\n")
9209
9210DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_host_cmd_vtysh,
9211 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D host A.B.C.D",
9212 "Negate a command or set its defaults\n"
9213 "Add an access list entry\n"
9214 "IP extended access list\n"
9215 "IP extended access list (expanded range)\n"
9216 "Specify packets to reject\n"
9217 "Specify packets to forward\n"
9218 "Any Internet Protocol\n"
9219 "A single source host\n"
9220 "Source address\n"
9221 "A single destination host\n"
9222 "Destination address\n")
9223
9224DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_cmd_vtysh,
9225 "clear bgp ipv6 peer-group WORD soft",
9226 "Reset functions\n"
9227 "BGP information\n"
9228 "Address family\n"
9229 "Clear all members of peer-group\n"
9230 "BGP peer-group name\n"
9231 "Soft reconfig\n")
9232
9233DEFSH (VTYSH_BGPD, dump_bgp_all_interval_cmd_vtysh,
9234 "dump bgp all PATH INTERVAL",
9235 "Dump packet\n"
9236 "BGP packet dump\n"
9237 "Dump all BGP packets\n"
9238 "Output filename\n"
9239 "Interval of output\n")
9240
9241DEFSH (VTYSH_BGPD, clear_bgp_peer_group_in_cmd_vtysh,
9242 "clear bgp peer-group WORD in",
9243 "Reset functions\n"
9244 "BGP information\n"
9245 "Clear all members of peer-group\n"
9246 "BGP peer-group name\n"
9247 "Soft reconfig inbound update\n")
9248
9249DEFSH (VTYSH_OSPFD, ip_ospf_authentication_args_addr_cmd_vtysh,
9250 "ip ospf authentication (null|message-digest) A.B.C.D",
9251 "IP Information\n"
9252 "OSPF interface commands\n"
9253 "Enable authentication on this interface\n"
9254 "Use null authentication\n"
9255 "Use message-digest authentication\n"
9256 "Address of interface")
9257
9258DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_metric_routemap_cmd_vtysh,
9259 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214> route-map WORD",
9260 "Redistribute information from another routing protocol\n"
9261 "Kernel routes\n"
9262 "Connected\n"
9263 "Static routes\n"
9264 "Routing Information Protocol (RIP)\n"
9265 "Border Gateway Protocol (BGP)\n"
9266 "OSPF exterior metric type for redistributed routes\n"
9267 "Set OSPF External Type 1 metrics\n"
9268 "Set OSPF External Type 2 metrics\n"
9269 "Metric for redistributed routes\n"
9270 "OSPF default metric\n"
9271 "Route map reference\n"
9272 "Pointer to route-map entries\n")
9273
9274DEFSH (VTYSH_BGPD, bgp_enforce_first_as_cmd_vtysh,
9275 "bgp enforce-first-as",
9276 "BGP information\n"
9277 "Enforce the first AS for EBGP routes\n")
9278
9279DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_in_prefix_filter_cmd_vtysh,
9280 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in prefix-filter",
9281 "Reset functions\n"
9282 "IP information\n"
9283 "BGP information\n"
9284 "Clear all members of peer-group\n"
9285 "BGP peer-group name\n"
9286 "Address family\n"
9287 "Address Family modifier\n"
9288 "Address Family modifier\n"
9289 "Soft reconfig inbound update\n"
9290 "Push out prefix-list ORF and do inbound soft reconfig\n")
9291
9292DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_route_map_cmd_vtysh,
9293 "show ip bgp ipv4 (unicast|multicast) route-map WORD",
9294 "Show running system information\n"
9295 "IP information\n"
9296 "BGP information\n"
9297 "Address family\n"
9298 "Address Family modifier\n"
9299 "Address Family modifier\n"
9300 "Display routes matching the route-map\n"
9301 "A route-map to match on\n")
9302
9303DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_remark_arg_cmd_vtysh,
9304 "no ipv6 access-list WORD remark .LINE",
9305 "Negate a command or set its defaults\n"
9306 "IPv6 information\n"
9307 "Add an access list entry\n"
9308 "IPv6 zebra access-list\n"
9309 "Access list entry comment\n"
9310 "Comment up to 100 characters\n")
9311
9312DEFSH (VTYSH_BGPD, show_bgp_community_list_exact_cmd_vtysh,
9313 "show bgp community-list WORD exact-match",
9314 "Show running system information\n"
9315 "BGP information\n"
9316 "Display routes matching the community-list\n"
9317 "community-list name\n"
9318 "Exact match of the communities\n")
9319
9320DEFSH (VTYSH_BGPD, no_neighbor_peer_group_cmd_vtysh,
9321 "no neighbor WORD peer-group",
9322 "Negate a command or set its defaults\n"
9323 "Specify neighbor router\n"
9324 "Neighbor tag\n"
9325 "Configure peer-group\n")
9326
9327DEFSH (VTYSH_ZEBRA, ip_irdp_address_preference_cmd_vtysh,
9328 "ip irdp address A.B.C.D <0-2147483647>",
9329 "IP information\n"
9330 "ICMP Router discovery on this interface\n"
9331 "Specify IRDP address and preference to proxy-advertise\n"
9332 "Set IRDP address for proxy-advertise\n"
9333 "Preference level\n")
9334
9335DEFSH (VTYSH_RIPD, rip_timers_cmd_vtysh,
9336 "timers basic <5-2147483647> <5-2147483647> <5-2147483647>",
9337 "Adjust routing timers\n"
9338 "Basic routing protocol update timers\n"
9339 "Routing table update timer value in second. Default is 30.\n"
9340 "Routing information timeout timer. Default is 180.\n"
9341 "Garbage collection timer. Default is 120.\n")
9342
9343DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_routemap_cmd_vtysh,
9344 "default-information originate always metric <0-16777214> route-map WORD",
9345 "Control distribution of default information\n"
9346 "Distribute a default route\n"
9347 "Always advertise default route\n"
9348 "OSPF default metric\n"
9349 "OSPF metric\n"
9350 "Route map reference\n"
9351 "Pointer to route-map entries\n")
9352
9353DEFSH (VTYSH_BGPD, no_bgp_timers_arg_cmd_vtysh,
9354 "no timers bgp <0-65535> <0-65535>",
9355 "Negate a command or set its defaults\n"
9356 "Adjust routing timers\n"
9357 "BGP timers\n"
9358 "Keepalive interval\n"
9359 "Holdtime\n")
9360
9361DEFSH (VTYSH_BGPD, no_bgp_network_import_check_cmd_vtysh,
9362 "no bgp network import-check",
9363 "Negate a command or set its defaults\n"
9364 "BGP specific commands\n"
9365 "BGP network command\n"
9366 "Check BGP network route exists in IGP\n")
9367
9368DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_in_cmd_vtysh,
9369 "clear bgp ipv6 <1-65535> soft in",
9370 "Reset functions\n"
9371 "BGP information\n"
9372 "Address family\n"
9373 "Clear peers with the AS number\n"
9374 "Soft reconfig\n"
9375 "Soft reconfig inbound update\n")
9376
9377DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_cmd_vtysh,
9378 "show ip ospf database (" "asbr-summary|external|network|router|summary" "|nssa-external" "|opaque-link|opaque-area|opaque-as" ") A.B.C.D",
9379 "Show running system information\n"
9380 "IP information\n"
9381 "OSPF information\n"
9382 "Database summary\n"
9383 "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "NSSA external link state\n" "Link local Opaque-LSA\n" "Link area Opaque-LSA\n" "Link AS Opaque-LSA\n"
9384 "Link State ID (as an IP address)\n")
9385
9386DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_rmap_onmatch_goto_cmd_vtysh,
9387 "no on-match goto",
9388 "Negate a command or set its defaults\n"
9389 "Exit policy on matches\n"
9390 "Next clause\n")
9391
9392DEFSH (VTYSH_OSPFD, passive_interface_addr_cmd_vtysh,
9393 "passive-interface IFNAME A.B.C.D",
9394 "Suppress routing updates on an interface\n"
9395 "Interface's name\n")
9396
9397DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_spf_tree_cmd_vtysh,
9398 "show ipv6 ospf6 area A.B.C.D spf tree",
paul718e3742002-12-13 20:15:29 +00009399 "Show running system information\n"
9400 "IPv6 Information\n"
9401 "Open Shortest Path First (OSPF) for IPv6\n"
paul569c0f02003-03-02 21:19:26 +00009402 "Area information\n"
9403 "Area ID (as an IPv4 notation)\n"
9404 "Shortest Path First caculation\n"
9405 "Displays spf tree\n")
9406
9407DEFSH (VTYSH_OSPFD, no_area_vlink_param3_cmd_vtysh,
9408 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
9409 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
9410 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
9411 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
9412 "Negate a command or set its defaults\n"
9413 "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"
9414 "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"
9415 "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"
9416 "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")
9417
9418DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_cmd_vtysh,
9419 "show ipv6 bgp X:X::X:X/M",
9420 "Show running system information\n"
9421 "IP information\n"
9422 "BGP information\n"
9423 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
9424
9425DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_rmap_cmd_vtysh,
9426 "no redistribute (connected|kernel|ospf6|ripng|static) route-map WORD",
9427 "Negate a command or set its defaults\n"
9428 "Redistribute information from another routing protocol\n"
9429 "Connected\n"
9430 "Kernel routes\n"
9431 "Open Shurtest Path First (OSPFv3)\n"
9432 "Routing Information Protocol (RIPng)\n"
9433 "Static routes\n"
9434 "Route map reference\n"
9435 "Pointer to route-map entries\n")
9436
9437DEFSH (VTYSH_BGPD, show_ip_bgp_community4_cmd_vtysh,
9438 "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)",
9439 "Show running system information\n"
9440 "IP information\n"
9441 "BGP information\n"
9442 "Display routes matching the communities\n"
9443 "community number\n"
9444 "Do not send outside local AS (well-known community)\n"
9445 "Do not advertise to any peer (well-known community)\n"
9446 "Do not export to next AS (well-known community)\n"
9447 "community number\n"
9448 "Do not send outside local AS (well-known community)\n"
9449 "Do not advertise to any peer (well-known community)\n"
9450 "Do not export to next AS (well-known community)\n"
9451 "community number\n"
9452 "Do not send outside local AS (well-known community)\n"
9453 "Do not advertise to any peer (well-known community)\n"
9454 "Do not export to next AS (well-known community)\n"
9455 "community number\n"
9456 "Do not send outside local AS (well-known community)\n"
9457 "Do not advertise to any peer (well-known community)\n"
9458 "Do not export to next AS (well-known community)\n")
9459
9460DEFSH (VTYSH_RIPD, debug_rip_packet_detail_cmd_vtysh,
9461 "debug rip packet (recv|send) detail",
9462 "Debugging functions (see also 'undebug')\n"
9463 "RIP information\n"
9464 "RIP packet\n"
9465 "RIP receive packet\n"
9466 "RIP send packet\n"
9467 "Detailed information display\n")
9468
9469DEFSH (VTYSH_RIPNGD, no_ripng_aggregate_address_cmd_vtysh,
9470 "no aggregate-address X:X::X:X/M",
9471 "Negate a command or set its defaults\n"
9472 "Delete aggregate RIPng route announcement\n"
9473 "Aggregate network")
9474
9475DEFSH (VTYSH_OSPF6D, ipv6_ospf6_priority_cmd_vtysh,
9476 "ipv6 ospf6 priority PRIORITY",
9477 "IPv6 Information\n"
9478 "Open Shortest Path First (OSPF) for IPv6\n"
9479 "Router priority\n"
9480 "<0-255> Priority\n"
paul718e3742002-12-13 20:15:29 +00009481 )
9482
paul569c0f02003-03-02 21:19:26 +00009483DEFSH (VTYSH_OSPFD, area_vlink_param1_cmd_vtysh,
9484 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
9485 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
9486 "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"
9487 "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")
paul718e3742002-12-13 20:15:29 +00009488
paul569c0f02003-03-02 21:19:26 +00009489DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_le_ge_cmd_vtysh,
9490 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
9491 "Negate a command or set its defaults\n"
9492 "IP information\n"
9493 "Build a prefix list\n"
9494 "Name of a prefix list\n"
9495 "sequence number of an entry\n"
9496 "Sequence number\n"
9497 "Specify packets to reject\n"
9498 "Specify packets to forward\n"
9499 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
9500 "Maximum prefix length to be matched\n"
9501 "Maximum prefix length\n"
9502 "Minimum prefix length to be matched\n"
9503 "Minimum prefix length\n")
9504
9505DEFSH (VTYSH_RIPD, no_ip_rip_send_version_cmd_vtysh,
9506 "no ip rip send version",
9507 "Negate a command or set its defaults\n"
9508 "IP information\n"
9509 "Routing Information Protocol\n"
9510 "Advertisement transmission\n"
9511 "Version control\n")
9512
9513DEFSH (VTYSH_BGPD, ip_as_path_cmd_vtysh,
9514 "ip as-path access-list WORD (deny|permit) .LINE",
9515 "IP information\n"
9516 "BGP autonomous system path filter\n"
9517 "Specify an access list name\n"
9518 "Regular expression access list name\n"
9519 "Specify packets to reject\n"
9520 "Specify packets to forward\n"
9521 "A regular-expression to match the BGP AS paths\n")
9522
9523DEFSH (VTYSH_BGPD, no_bgp_bestpath_med_cmd_vtysh,
9524 "no bgp bestpath med (confed|missing-as-worst)",
9525 "Negate a command or set its defaults\n"
9526 "BGP specific commands\n"
9527 "Change the default bestpath selection\n"
9528 "MED attribute\n"
9529 "Compare MED among confederation paths\n"
9530 "Treat missing MED as the least preferred one\n")
9531
9532DEFSH (VTYSH_BGPD, neighbor_timers_cmd_vtysh,
9533 "neighbor (A.B.C.D|X:X::X:X|WORD) " "timers <0-65535> <0-65535>",
9534 "Specify neighbor router\n"
9535 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9536 "BGP per neighbor timers\n"
9537 "Keepalive interval\n"
9538 "Holdtime\n")
9539
9540DEFSH (VTYSH_ZEBRA, show_ipv6_forwarding_cmd_vtysh,
9541 "show ipv6 forwarding",
9542 "Show running system information\n"
9543 "IPv6 information\n"
9544 "Forwarding status\n")
9545
9546DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_summary_name_cmd_vtysh,
9547 "show ip prefix-list summary WORD",
9548 "Show running system information\n"
9549 "IP information\n"
9550 "Build a prefix list\n"
9551 "Summary of prefix lists\n"
9552 "Name of a prefix list\n")
9553
9554DEFSH (VTYSH_BGPD, debug_bgp_normal_cmd_vtysh,
9555 "debug bgp",
9556 "Debugging functions (see also 'undebug')\n"
9557 "BGP information\n")
9558
9559DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_in_prefix_filter_cmd_vtysh,
9560 "clear bgp ipv6 * in prefix-filter",
9561 "Reset functions\n"
9562 "BGP information\n"
9563 "Address family\n"
9564 "Clear all peers\n"
9565 "Soft reconfig inbound update\n"
9566 "Push out prefix-list ORF and do inbound soft reconfig\n")
9567
9568DEFSH (VTYSH_OSPFD, no_area_vlink_authkey_cmd_vtysh,
9569 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
9570 "(authentication-key|)",
9571 "Negate a command or set its defaults\n"
9572 "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"
9573 "Authentication password (key)\n" "The OSPF password (key)")
9574
9575DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_out_cmd_vtysh,
9576 "clear bgp ipv6 external WORD out",
9577 "Reset functions\n"
9578 "BGP information\n"
9579 "Address family\n"
9580 "Clear all external peers\n"
9581 "Soft reconfig outbound update\n")
9582
9583DEFSH (VTYSH_RIPNGD, no_debug_ripng_packet_cmd_vtysh,
9584 "no debug ripng packet",
9585 "Negate a command or set its defaults\n"
9586 "Debugging functions (see also 'undebug')\n"
9587 "RIPng configuration\n"
9588 "Debug option set for ripng packet\n")
9589
9590DEFSH (VTYSH_ZEBRA, no_multicast_cmd_vtysh,
9591 "no multicast",
9592 "Negate a command or set its defaults\n"
9593 "Unset multicast flag to interface\n")
9594
9595DEFSH (VTYSH_RIPD, ip_rip_send_version_cmd_vtysh,
9596 "ip rip send version (1|2)",
9597 "IP information\n"
9598 "Routing Information Protocol\n"
9599 "Advertisement transmission\n"
9600 "Version control\n"
9601 "RIP version 1\n"
9602 "RIP version 2\n")
9603
9604DEFSH (VTYSH_RIPD, no_rip_distance_source_cmd_vtysh,
9605 "no distance <1-255> A.B.C.D/M",
9606 "Negate a command or set its defaults\n"
9607 "Administrative distance\n"
9608 "Distance value\n"
9609 "IP source prefix\n")
9610
9611DEFSH (VTYSH_OSPFD, no_ip_ospf_retransmit_interval_addr_cmd_vtysh,
9612 "no ip ospf retransmit-interval A.B.C.D",
9613 "Negate a command or set its defaults\n"
9614 "IP Information\n"
9615 "OSPF interface commands\n"
9616 "Time between retransmitting lost link state advertisements\n"
9617 "Address of interface")
9618
9619DEFSH (VTYSH_BGPD, no_neighbor_weight_val_cmd_vtysh,
9620 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "weight <0-65535>",
9621 "Negate a command or set its defaults\n"
9622 "Specify neighbor router\n"
9623 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9624 "Set default weight for routes from this neighbor\n"
9625 "default weight\n")
9626
9627DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_paths_cmd_vtysh,
9628 "show ip bgp ipv4 (unicast|multicast) paths",
9629 "Show running system information\n"
9630 "IP information\n"
9631 "BGP information\n"
9632 "Address family\n"
9633 "Address Family modifier\n"
9634 "Address Family modifier\n"
9635 "Path information\n")
9636
9637DEFSH (VTYSH_BGPD, no_bgp_distance_source_cmd_vtysh,
9638 "no distance <1-255> A.B.C.D/M",
9639 "Negate a command or set its defaults\n"
9640 "Define an administrative distance\n"
9641 "Administrative distance\n"
9642 "IP source prefix\n")
9643
9644DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community2_cmd_vtysh,
9645 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
paul718e3742002-12-13 20:15:29 +00009646 "Show running system information\n"
9647 "IPv6 information\n"
9648 "MBGP information\n"
paul569c0f02003-03-02 21:19:26 +00009649 "Display routes matching the communities\n"
9650 "community number\n"
9651 "Do not send outside local AS (well-known community)\n"
9652 "Do not advertise to any peer (well-known community)\n"
9653 "Do not export to next AS (well-known community)\n"
9654 "community number\n"
9655 "Do not send outside local AS (well-known community)\n"
9656 "Do not advertise to any peer (well-known community)\n"
9657 "Do not export to next AS (well-known community)\n")
9658
9659DEFSH (VTYSH_BGPD, neighbor_set_peer_group_cmd_vtysh,
9660 "neighbor (A.B.C.D|X:X::X:X) " "peer-group WORD",
9661 "Specify neighbor router\n"
9662 "Neighbor address\nIPv6 address\n"
9663 "Member of the peer-group\n"
9664 "peer-group name\n")
9665
9666DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_type_cmd_vtysh,
9667 "default-information originate metric <0-16777214> metric-type (1|2)",
9668 "Control distribution of default information\n"
9669 "Distribute a default route\n"
9670 "OSPF default metric\n"
9671 "OSPF metric\n"
9672 "OSPF metric type for default routes\n"
9673 "Set OSPF External Type 1 metrics\n"
9674 "Set OSPF External Type 2 metrics\n")
9675
9676DEFSH (VTYSH_OSPF6D, ipv6_ospf6_cost_cmd_vtysh,
9677 "ipv6 ospf6 cost COST",
9678 "IPv6 Information\n"
9679 "Open Shortest Path First (OSPF) for IPv6\n"
9680 "Interface cost\n"
9681 "<1-65535> Cost\n"
9682 )
9683
9684DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_metric_cmd_vtysh,
9685 "default-information originate metric-type (1|2) metric <0-16777214>",
9686 "Control distribution of default information\n"
9687 "Distribute a default route\n"
9688 "OSPF metric type for default routes\n"
9689 "Set OSPF External Type 1 metrics\n"
9690 "Set OSPF External Type 2 metrics\n"
9691 "OSPF default metric\n"
9692 "OSPF metric\n")
9693
9694DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_out_cmd_vtysh,
9695 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) out",
9696 "Reset functions\n"
9697 "IP information\n"
9698 "BGP information\n"
9699 "BGP neighbor address to clear\n"
9700 "Address family\n"
9701 "Address Family modifier\n"
9702 "Address Family modifier\n"
9703 "Soft reconfig outbound update\n")
9704
9705DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_route_prefix_cmd_vtysh,
9706 "show ipv6 ospf6 area A.B.C.D route (X::X|detail)",
9707 "Show running system information\n"
9708 "IPv6 Information\n"
9709 "Open Shortest Path First (OSPF) for IPv6\n"
9710 "Area information\n"
9711 "Area ID (as an IPv4 notation)\n"
9712 "Routing Table\n"
9713 "Specify IPv6 address\n"
9714 "Detailed information\n"
9715 )
9716
9717DEFSH (VTYSH_OSPFD, no_area_stub_cmd_vtysh,
9718 "no area (A.B.C.D|<0-4294967295>) stub",
9719 "Negate a command or set its defaults\n"
9720 "OSPF area parameters\n"
9721 "OSPF area ID in IP address format\n"
9722 "OSPF area ID as a decimal value\n"
9723 "Configure OSPF area as stub\n")
9724
9725DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_regexp_cmd_vtysh,
9726 "show ip bgp ipv4 (unicast|multicast) regexp .LINE",
9727 "Show running system information\n"
9728 "IP information\n"
9729 "BGP information\n"
9730 "Address family\n"
9731 "Address Family modifier\n"
9732 "Address Family modifier\n"
9733 "Display routes matching the AS path regular expression\n"
9734 "A regular-expression to match the BGP AS paths\n")
9735
9736DEFSH (VTYSH_BGPD, match_ecommunity_cmd_vtysh,
9737 "match extcommunity (<1-99>|<100-199>|WORD)",
9738 "Match values from routing table\n"
9739 "Match BGP/VPN extended community list\n"
9740 "Extended community-list number (standard)\n"
9741 "Extended community-list number (expanded)\n"
9742 "Extended community-list name\n")
9743
9744DEFSH (VTYSH_BGPD, no_ip_community_list_name_standard_cmd_vtysh,
9745 "no ip community-list standard WORD (deny|permit) .AA:NN",
9746 "Negate a command or set its defaults\n"
9747 "IP information\n"
9748 "Add a community list entry\n"
9749 "Specify a standard community-list\n"
9750 "Community list name\n"
9751 "Specify community to reject\n"
9752 "Specify community to accept\n"
9753 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
9754
9755DEFSH (VTYSH_ZEBRA, no_ipv6_route_ifname_cmd_vtysh,
9756 "no ipv6 route X:X::X:X/M X:X::X:X INTERFACE",
9757 "Negate a command or set its defaults\n"
9758 "IP information\n"
9759 "Establish static routes\n"
9760 "IPv6 destination prefix (e.g. 3ffe:506::/32)\n"
9761 "IPv6 gateway address\n"
9762 "IPv6 gateway interface name\n")
9763
9764DEFSH (VTYSH_BGPD, show_ip_bgp_instance_summary_cmd_vtysh,
9765 "show ip bgp view WORD summary",
9766 "Show running system information\n"
9767 "IP information\n"
9768 "BGP information\n"
9769 "BGP view\n"
9770 "View name\n"
9771 "Summary of BGP neighbor status\n")
9772
9773DEFSH (VTYSH_OSPFD, ospf_authentication_key_cmd_vtysh,
9774 "ospf authentication-key AUTH_KEY",
9775 "OSPF interface commands\n"
9776 "Authentication password (key)\n"
9777 "The OSPF password (key)")
9778
9779DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_all_cmd_vtysh,
9780 "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)",
9781 "Negate a command or set its defaults\n"
9782 "Debugging functions (see also 'undebug')\n"
9783 "OSPF information\n"
9784 "OSPF packets\n"
9785 "OSPF Hello\n"
9786 "OSPF Database Description\n"
9787 "OSPF Link State Request\n"
9788 "OSPF Link State Update\n"
9789 "OSPF Link State Acknowledgment\n"
9790 "OSPF all packets\n")
9791
9792DEFSH (VTYSH_BGPD, clear_bgp_as_soft_out_cmd_vtysh,
9793 "clear bgp <1-65535> soft out",
9794 "Reset functions\n"
9795 "BGP information\n"
9796 "Clear peers with the AS number\n"
9797 "Soft reconfig\n"
9798 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +00009799
9800DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_route_map_cmd_vtysh,
9801 "no route-map WORD (deny|permit) <1-65535>",
9802 "Negate a command or set its defaults\n"
9803 "Create route-map or enter route-map command mode\n"
9804 "Route map tag\n"
9805 "Route map denies set operations\n"
9806 "Route map permits set operations\n"
9807 "Sequence to insert to/delete from existing route-map entry\n")
9808
paul569c0f02003-03-02 21:19:26 +00009809DEFSH (VTYSH_BGPD, neighbor_send_community_type_cmd_vtysh,
9810 "neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community (both|extended|standard)",
9811 "Specify neighbor router\n"
9812 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9813 "Send Community attribute to this neighbor\n"
9814 "Send Standard and Extended Community attributes\n"
9815 "Send Extended Community attributes\n"
9816 "Send Standard Community attributes\n")
9817
9818DEFSH (VTYSH_ZEBRA, no_ip_address_cmd_vtysh,
9819 "no ip address A.B.C.D/M",
9820 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +00009821 "Interface Internet Protocol config commands\n"
9822 "Set the IP address of an interface\n"
paul569c0f02003-03-02 21:19:26 +00009823 "IP Address (e.g. 10.0.0.1/8)")
paul718e3742002-12-13 20:15:29 +00009824
paul569c0f02003-03-02 21:19:26 +00009825DEFSH (VTYSH_BGPD, neighbor_interface_cmd_vtysh,
9826 "neighbor (A.B.C.D|X:X::X:X) " "interface WORD",
9827 "Specify neighbor router\n"
9828 "Neighbor address\nIPv6 address\n"
9829 "Interface\n"
9830 "Interface name\n")
9831
9832DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_flap_cmd_vtysh,
9833 "show ip bgp neighbors (A.B.C.D|X:X::X:X) flap-statistics",
9834 "Show running system information\n"
9835 "IP information\n"
9836 "BGP information\n"
9837 "Detailed information on TCP and BGP neighbor connections\n"
9838 "Neighbor to display information about\n"
9839 "Neighbor to display information about\n"
9840 "Display flap statistics of the routes learned from neighbor\n")
9841
9842DEFSH (VTYSH_OSPFD, ip_ospf_network_cmd_vtysh,
9843 "ip ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)",
9844 "IP Information\n"
9845 "OSPF interface commands\n"
9846 "Network type\n"
9847 "Specify OSPF broadcast multi-access network\n"
9848 "Specify OSPF NBMA network\n"
9849 "Specify OSPF point-to-multipoint network\n"
9850 "Specify OSPF point-to-point network\n")
9851
9852DEFSH (VTYSH_BGPD, no_neighbor_send_community_cmd_vtysh,
9853 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community",
paul718e3742002-12-13 20:15:29 +00009854 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00009855 "Specify neighbor router\n"
9856 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9857 "Send Community attribute to this neighbor\n")
paul718e3742002-12-13 20:15:29 +00009858
paul569c0f02003-03-02 21:19:26 +00009859DEFSH (VTYSH_BGPD, no_neighbor_strict_capability_cmd_vtysh,
9860 "no neighbor (A.B.C.D|X:X::X:X) " "strict-capability-match",
paul718e3742002-12-13 20:15:29 +00009861 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +00009862 "Specify neighbor router\n"
9863 "Neighbor address\nIPv6 address\n"
9864 "Strict capability negotiation match\n")
paul718e3742002-12-13 20:15:29 +00009865
paul569c0f02003-03-02 21:19:26 +00009866DEFSH (VTYSH_BGPD, no_neighbor_update_source_cmd_vtysh,
9867 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "update-source",
9868 "Negate a command or set its defaults\n"
9869 "Specify neighbor router\n"
9870 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
9871 "Source of routing updates\n"
9872 "Interface name\n")
9873
9874DEFSH (VTYSH_OSPFD, no_area_filter_list_cmd_vtysh,
9875 "no area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)",
9876 "Negate a command or set its defaults\n"
9877 "OSPF area parameters\n"
9878 "OSPF area ID in IP address format\n"
9879 "OSPF area ID as a decimal value\n"
9880 "Filter networks between OSPF areas\n"
9881 "Filter prefixes between OSPF areas\n"
9882 "Name of an IP prefix-list\n"
9883 "Filter networks sent to this area\n"
9884 "Filter networks sent from this area\n")
9885
9886DEFSH (VTYSH_ZEBRA, show_debugging_zebra_cmd_vtysh,
9887 "show debugging zebra",
9888 "Show running system information\n"
9889 "Zebra configuration\n"
9890 "Debugging information\n")
9891
9892DEFSH (VTYSH_BGPD, ip_community_list_name_standard_cmd_vtysh,
9893 "ip community-list standard WORD (deny|permit) .AA:NN",
9894 "IP information\n"
9895 "Add a community list entry\n"
9896 "Add a standard community-list entry\n"
9897 "Community list name\n"
9898 "Specify community to reject\n"
9899 "Specify community to accept\n"
9900 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
9901
9902DEFSH (VTYSH_BGPD, clear_bgp_as_out_cmd_vtysh,
9903 "clear bgp <1-65535> out",
9904 "Reset functions\n"
9905 "BGP information\n"
9906 "Clear peers with the AS number\n"
9907 "Soft reconfig outbound update\n")
9908
9909DEFSH (VTYSH_OSPF6D, show_zebra_cmd_vtysh,
9910 "show zebra",
9911 "Show running system information\n"
9912 "Zebra information\n")
9913
9914DEFSH (VTYSH_BGPD, no_aggregate_address_as_set_summary_cmd_vtysh,
9915 "no aggregate-address A.B.C.D/M as-set summary-only",
9916 "Negate a command or set its defaults\n"
9917 "Configure BGP aggregate entries\n"
9918 "Aggregate prefix\n"
9919 "Generate AS set path information\n"
9920 "Filter more specific routes from updates\n")
9921
9922DEFSH (VTYSH_OSPFD, area_nssa_translate_no_summary_cmd_vtysh,
9923 "area (A.B.C.D|<0-4294967295>) nssa (translate-candidate|translate-never|translate-always) (no-summary|)",
9924 "OSPF area parameters\n"
9925 "OSPF area ID in IP address format\n"
9926 "OSPF area ID as a decimal value\n"
9927 "Configure OSPF area as nssa\n"
9928 "Configure NSSA-ABR for translate election (default)\n"
9929 "Configure NSSA-ABR to never translate\n"
9930 "Configure NSSA-ABR to always translate\n"
9931 "Do not inject inter-area routes into nssa\n"
9932 "dummy\n")
9933
9934DEFSH (VTYSH_BGPD, show_ipv6_mbgp_summary_cmd_vtysh,
9935 "show ipv6 mbgp summary",
9936 "Show running system information\n"
9937 "IPv6 information\n"
9938 "MBGP information\n"
9939 "Summary of BGP neighbor status\n")
9940
9941DEFSH (VTYSH_OSPF6D, no_ospf6_redistribute_cmd_vtysh,
9942 "no redistribute (static|kernel|connected|ripng|bgp)",
9943 "Negate a command or set its defaults\n"
9944 "Redistribute\n"
9945 "Static route\n"
9946 "Kernel route\n"
9947 "Connected route\n"
9948 "RIPng route\n"
9949 "BGP route\n"
9950 )
9951
9952DEFSH (VTYSH_RIPD, show_ip_protocols_rip_cmd_vtysh,
9953 "show ip protocols",
9954 "Show running system information\n"
9955 "IP information\n"
9956 "IP routing protocol process parameters and statistics\n")
9957
9958DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_list_exact_cmd_vtysh,
9959 "show bgp ipv6 community-list WORD exact-match",
9960 "Show running system information\n"
9961 "BGP information\n"
9962 "Address family\n"
9963 "Display routes matching the community-list\n"
9964 "community-list name\n"
9965 "Exact match of the communities\n")
9966
9967DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_cmd_vtysh,
9968 "redistribute ospf6",
9969 "Redistribute information from another routing protocol\n"
9970 "IPv6 Open Shortest Path First (OSPFv3)\n")
9971
9972DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_in_cmd_vtysh,
9973 "clear bgp ipv6 external WORD in",
9974 "Reset functions\n"
9975 "BGP information\n"
9976 "Address family\n"
9977 "Clear all external peers\n"
9978 "Soft reconfig inbound update\n")
9979
9980DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_cmd_vtysh,
9981 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
9982 "(authentication|) (message-digest|null)",
9983 "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"
9984 "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n")
9985
9986DEFSH (VTYSH_OSPFD, no_area_range_substitute_cmd_vtysh,
9987 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M",
9988 "Negate a command or set its defaults\n"
9989 "OSPF area parameters\n"
9990 "OSPF area ID in IP address format\n"
9991 "OSPF area ID as a decimal value\n"
9992 "Summarize routes matching address/mask (border routers only)\n"
9993 "Area range prefix\n"
9994 "Announce area range as another prefix\n"
9995 "Network prefix to be announced instead of range\n")
9996
9997DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh,
9998 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) routes",
paul718e3742002-12-13 20:15:29 +00009999 "Show running system information\n"
10000 "IP information\n"
10001 "BGP information\n"
10002 "Address family\n"
10003 "Address Family modifier\n"
paul569c0f02003-03-02 21:19:26 +000010004 "Address Family modifier\n"
paul718e3742002-12-13 20:15:29 +000010005 "Detailed information on TCP and BGP neighbor connections\n"
10006 "Neighbor to display information about\n"
10007 "Neighbor to display information about\n"
10008 "Display routes learned from neighbor\n")
10009
paul569c0f02003-03-02 21:19:26 +000010010DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_cmd_vtysh,
10011 "clear bgp ipv6 (A.B.C.D|X:X::X:X)",
10012 "Reset functions\n"
10013 "BGP information\n"
10014 "Address family\n"
10015 "BGP neighbor address to clear\n"
10016 "BGP IPv6 neighbor to clear\n")
10017
10018DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community4_cmd_vtysh,
10019 "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)",
10020 "Show running system information\n"
10021 "IPv6 information\n"
10022 "MBGP information\n"
10023 "Display routes matching the communities\n"
10024 "community number\n"
10025 "Do not send outside local AS (well-known community)\n"
10026 "Do not advertise to any peer (well-known community)\n"
10027 "Do not export to next AS (well-known community)\n"
10028 "community number\n"
10029 "Do not send outside local AS (well-known community)\n"
10030 "Do not advertise to any peer (well-known community)\n"
10031 "Do not export to next AS (well-known community)\n"
10032 "community number\n"
10033 "Do not send outside local AS (well-known community)\n"
10034 "Do not advertise to any peer (well-known community)\n"
10035 "Do not export to next AS (well-known community)\n"
10036 "community number\n"
10037 "Do not send outside local AS (well-known community)\n"
10038 "Do not advertise to any peer (well-known community)\n"
10039 "Do not export to next AS (well-known community)\n")
10040
10041DEFSH (VTYSH_BGPD, ip_community_list_cmd_vtysh,
10042 "ip community-list WORD (deny|permit) .AA:NN",
10043 "IP information\n"
10044 "Add a community list entry\n"
10045 "Community list name\n"
10046 "Specify community to reject\n"
10047 "Specify community to accept\n"
10048 "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n")
10049
10050DEFSH (VTYSH_OSPFD, no_router_id_cmd_vtysh,
10051 "no router-id",
10052 "Negate a command or set its defaults\n"
10053 "router-id for the OSPF process\n")
10054
10055DEFSH (VTYSH_RIPD, no_match_ip_address_val_cmd_vtysh,
10056 "no match ip address WORD",
10057 "Negate a command or set its defaults\n"
10058 "Match values from routing table\n"
10059 "IP information\n"
10060 "Match address of route\n"
10061 "IP access-list name\n")
10062
10063DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged10_cmd_vtysh,
10064 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med as-path next-hop",
10065 "Negate a command or set its defaults\n"
10066 "Specify neighbor router\n"
10067 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10068 "BGP attribute is propagated unchanged to this neighbor\n"
10069 "Med attribute\n"
10070 "As-path attribute\n"
10071 "Nexthop attribute\n")
10072
10073DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_out_cmd_vtysh,
10074 "clear ip bgp <1-65535> vpnv4 unicast out",
10075 "Reset functions\n"
10076 "IP information\n"
10077 "BGP information\n"
10078 "Clear peers with the AS number\n"
10079 "Address family\n"
10080 "Address Family modifier\n"
10081 "Soft reconfig outbound update\n")
10082
10083DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_in_prefix_filter_cmd_vtysh,
10084 "clear bgp ipv6 <1-65535> in prefix-filter",
10085 "Reset functions\n"
10086 "BGP information\n"
10087 "Address family\n"
10088 "Clear peers with the AS number\n"
10089 "Soft reconfig inbound update\n"
10090 "Push out prefix-list ORF and do inbound soft reconfig\n")
10091
10092DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_cmd_vtysh,
10093 "clear bgp ipv6 external soft",
10094 "Reset functions\n"
10095 "BGP information\n"
10096 "Address family\n"
10097 "Clear all external peers\n"
10098 "Soft reconfig\n")
10099
10100DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ipv6_prefix_list_seq_cmd_vtysh,
10101 "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) (X:X::X:X/M|any)",
10102 "Negate a command or set its defaults\n"
10103 "IPv6 information\n"
10104 "Build a prefix list\n"
10105 "Name of a prefix list\n"
10106 "sequence number of an entry\n"
10107 "Sequence number\n"
10108 "Specify packets to reject\n"
10109 "Specify packets to forward\n"
10110 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
10111 "Any prefix match. Same as \"::0/0 le 128\"\n")
10112
10113DEFSH (VTYSH_BGPD, no_debug_bgp_update_cmd_vtysh,
10114 "no debug bgp updates",
10115 "Negate a command or set its defaults\n"
10116 "Debugging functions (see also 'undebug')\n"
10117 "BGP information\n"
10118 "BGP updates\n")
10119
10120DEFSH (VTYSH_OSPFD|VTYSH_OSPF6D, ospf6_routemap_set_metric_type_cmd_vtysh,
10121 "set metric-type (type-1|type-2)",
10122 "Set value\n"
10123 "Type of metric\n"
10124 "OSPF6 external type 1 metric\n"
10125 "OSPF6 external type 2 metric\n")
10126
10127DEFSH (VTYSH_BGPD, no_bgp_confederation_identifier_arg_cmd_vtysh,
10128 "no bgp confederation identifier <1-65535>",
10129 "Negate a command or set its defaults\n"
10130 "BGP specific commands\n"
10131 "AS confederation parameters\n"
10132 "AS number\n"
10133 "Set routing domain confederation AS\n")
10134
10135DEFSH (VTYSH_BGPD, clear_ip_bgp_as_cmd_vtysh,
10136 "clear ip bgp <1-65535>",
10137 "Reset functions\n"
10138 "IP information\n"
10139 "BGP information\n"
10140 "Clear peers with the AS number\n")
10141
10142DEFSH (VTYSH_BGPD, neighbor_attr_unchanged_cmd_vtysh,
10143 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged",
10144 "Specify neighbor router\n"
10145 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10146 "BGP attribute is propagated unchanged to this neighbor\n")
10147
10148DEFSH (VTYSH_OSPF6D, ipv6_ospf6_deadinterval_cmd_vtysh,
10149 "ipv6 ospf6 dead-interval ROUTER_DEAD_INTERVAL",
10150 "IPv6 Information\n"
10151 "Open Shortest Path First (OSPF) for IPv6\n"
10152 "Interval after which a neighbor is declared dead\n"
10153 "<1-65535> Seconds\n"
10154 )
10155
paul718e3742002-12-13 20:15:29 +000010156DEFSH (VTYSH_OSPFD, area_vlink_param4_cmd_vtysh,
10157 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
10158 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
10159 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
10160 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
10161 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
10162 "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"
10163 "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"
10164 "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"
10165 "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"
10166 "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")
10167
paul569c0f02003-03-02 21:19:26 +000010168DEFSH (VTYSH_RIPD, send_lifetime_infinite_day_month_cmd_vtysh,
10169 "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> infinite",
10170 "Set send lifetime of the key\n"
10171 "Time to start\n"
10172 "Day of th month to start\n"
10173 "Month of the year to start\n"
10174 "Year to start\n"
10175 "Never expires")
10176
10177DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_cmd_vtysh,
10178 "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",
10179 "Add an access list entry\n"
10180 "IP extended access list\n"
10181 "IP extended access list (expanded range)\n"
10182 "Specify packets to reject\n"
10183 "Specify packets to forward\n"
10184 "Any Internet Protocol\n"
10185 "Source address\n"
10186 "Source wildcard bits\n"
10187 "Destination address\n"
10188 "Destination Wildcard bits\n")
10189
10190DEFSH (VTYSH_OSPFD, ip_ospf_retransmit_interval_addr_cmd_vtysh,
10191 "ip ospf retransmit-interval <3-65535> A.B.C.D",
10192 "IP Information\n"
10193 "OSPF interface commands\n"
10194 "Time between retransmitting lost link state advertisements\n"
10195 "Seconds\n"
10196 "Address of interface")
10197
10198DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_detail_cmd_vtysh,
10199 "show ip ospf neighbor detail",
10200 "Show running system information\n"
10201 "IP information\n"
10202 "OSPF information\n"
10203 "Neighbor list\n"
10204 "detail of all neighbors\n")
10205
10206DEFSH (VTYSH_BGPD, clear_ip_bgp_as_in_prefix_filter_cmd_vtysh,
10207 "clear ip bgp <1-65535> in prefix-filter",
10208 "Reset functions\n"
10209 "IP information\n"
10210 "BGP information\n"
10211 "Clear peers with the AS number\n"
10212 "Soft reconfig inbound update\n"
10213 "Push out prefix-list ORF and do inbound soft reconfig\n")
10214
10215DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_name_seq_cmd_vtysh,
10216 "show ip prefix-list WORD seq <1-4294967295>",
10217 "Show running system information\n"
10218 "IP information\n"
10219 "Build a prefix list\n"
10220 "Name of a prefix list\n"
10221 "sequence number of an entry\n"
10222 "Sequence number\n")
10223
10224DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_description_arg_cmd_vtysh,
10225 "no ip prefix-list WORD description .LINE",
paul718e3742002-12-13 20:15:29 +000010226 "Negate a command or set its defaults\n"
10227 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000010228 "Build a prefix list\n"
10229 "Name of a prefix list\n"
10230 "Prefix-list specific description\n"
10231 "Up to 80 characters describing this prefix-list\n")
10232
10233DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_rmap_cmd_vtysh,
10234 "redistribute (connected|kernel|ospf6|ripng|static) route-map WORD",
10235 "Redistribute information from another routing protocol\n"
10236 "Connected\n"
10237 "Kernel routes\n"
10238 "Open Shurtest Path First (OSPFv3)\n"
10239 "Routing Information Protocol (RIPng)\n"
10240 "Static routes\n"
10241 "Route map reference\n"
10242 "Pointer to route-map entries\n")
10243
10244DEFSH (VTYSH_RIPD, rip_redistribute_rip_cmd_vtysh,
10245 "redistribute rip",
10246 "Redistribute information from another routing protocol\n"
10247 "Routing Information Protocol (RIP)\n")
10248
10249DEFSH (VTYSH_BGPD, show_ip_extcommunity_list_cmd_vtysh,
10250 "show ip extcommunity-list",
10251 "Show running system information\n"
10252 "IP information\n"
10253 "List extended-community list\n")
10254
10255DEFSH (VTYSH_OSPFD, no_ospf_cost_cmd_vtysh,
10256 "no ospf cost",
10257 "Negate a command or set its defaults\n"
10258 "OSPF interface commands\n"
10259 "Interface cost\n")
10260
10261DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_filter_list_cmd_vtysh,
10262 "show ip bgp ipv4 (unicast|multicast) filter-list WORD",
10263 "Show running system information\n"
10264 "IP information\n"
10265 "BGP information\n"
10266 "Address family\n"
10267 "Address Family modifier\n"
10268 "Address Family modifier\n"
10269 "Display routes conforming to the filter-list\n"
10270 "Regular expression access list name\n")
10271
10272DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_advertised_route_cmd_vtysh,
10273 "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
10274 "Show running system information\n"
10275 "IPv6 information\n"
10276 "BGP information\n"
10277 "Detailed information on TCP and BGP neighbor connections\n"
10278 "Neighbor to display information about\n"
10279 "Neighbor to display information about\n"
10280 "Display the routes advertised to a BGP neighbor\n")
10281
10282DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_in_cmd_vtysh,
10283 "clear bgp ipv6 external soft in",
10284 "Reset functions\n"
10285 "BGP information\n"
10286 "Address family\n"
10287 "Clear all external peers\n"
10288 "Soft reconfig\n"
10289 "Soft reconfig inbound update\n")
10290
10291DEFSH (VTYSH_OSPFD, debug_ospf_nssa_cmd_vtysh,
10292 "debug ospf nssa",
10293 "Debugging functions (see also 'undebug')\n"
10294 "OSPF information\n"
10295 "OSPF nssa information\n")
10296
10297DEFSH (VTYSH_OSPFD, area_vlink_md5_cmd_vtysh,
10298 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
10299 "(message-digest-key|) <1-255> md5 KEY",
10300 "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"
10301 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
10302
10303DEFSH (VTYSH_BGPD, neighbor_passive_cmd_vtysh,
10304 "neighbor (A.B.C.D|X:X::X:X|WORD) " "passive",
10305 "Specify neighbor router\n"
10306 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10307 "Don't send open messages to this neighbor\n")
10308
10309DEFSH (VTYSH_BGPD, neighbor_timers_connect_cmd_vtysh,
10310 "neighbor (A.B.C.D|X:X::X:X) " "timers connect <0-65535>",
10311 "Specify neighbor router\n"
10312 "Neighbor address\nIPv6 address\n"
10313 "BGP per neighbor timers\n"
10314 "BGP connect timer\n"
10315 "Connect timer\n")
paul718e3742002-12-13 20:15:29 +000010316
10317DEFSH (VTYSH_RIPD, no_ip_rip_authentication_key_chain_cmd_vtysh,
10318 "no ip rip authentication key-chain",
10319 "Negate a command or set its defaults\n"
10320 "IP information\n"
10321 "Routing Information Protocol\n"
10322 "Authentication control\n"
10323 "Authentication key-chain\n")
10324
paul569c0f02003-03-02 21:19:26 +000010325DEFSH (VTYSH_OSPFD, debug_ospf_event_cmd_vtysh,
10326 "debug ospf event",
10327 "Debugging functions (see also 'undebug')\n"
10328 "OSPF information\n"
10329 "OSPF event information\n")
10330
10331DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_out_cmd_vtysh,
10332 "clear ip bgp peer-group WORD soft out",
10333 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +000010334 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000010335 "BGP information\n"
10336 "Clear all members of peer-group\n"
10337 "BGP peer-group name\n"
10338 "Soft reconfig\n"
10339 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +000010340
paul569c0f02003-03-02 21:19:26 +000010341DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_all_cmd_vtysh,
10342 "show ipv6 bgp community",
10343 "Show running system information\n"
10344 "IPv6 information\n"
10345 "BGP information\n"
10346 "Display routes matching the communities\n")
paul718e3742002-12-13 20:15:29 +000010347
paul569c0f02003-03-02 21:19:26 +000010348DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_out_cmd_vtysh,
10349 "clear ip bgp external ipv4 (unicast|multicast) soft out",
10350 "Reset functions\n"
10351 "IP information\n"
10352 "BGP information\n"
10353 "Clear all external peers\n"
10354 "Address family\n"
10355 "Address Family modifier\n"
10356 "Address Family modifier\n"
10357 "Soft reconfig\n"
10358 "Soft reconfig outbound update\n")
10359
10360DEFSH (VTYSH_BGPD, old_ipv6_aggregate_address_cmd_vtysh,
10361 "ipv6 bgp aggregate-address X:X::X:X/M",
10362 "IPv6 information\n"
10363 "BGP information\n"
10364 "Configure BGP aggregate entries\n"
10365 "Aggregate prefix\n")
10366
10367DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_cmd_vtysh,
10368 "clear ip bgp peer-group WORD soft",
10369 "Reset functions\n"
10370 "IP information\n"
10371 "BGP information\n"
10372 "Clear all members of peer-group\n"
10373 "BGP peer-group name\n"
10374 "Soft reconfig\n")
10375
10376DEFSH (VTYSH_OSPFD, no_ip_ospf_hello_interval_addr_cmd_vtysh,
10377 "no ip ospf hello-interval A.B.C.D",
paul718e3742002-12-13 20:15:29 +000010378 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000010379 "IP Information\n"
10380 "OSPF interface commands\n"
10381 "Time between HELLO packets\n"
10382 "Address of interface")
10383
10384DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_host_cmd_vtysh,
10385 "access-list (<100-199>|<2000-2699>) (deny|permit) ip any host A.B.C.D",
10386 "Add an access list entry\n"
10387 "IP extended access list\n"
10388 "IP extended access list (expanded range)\n"
10389 "Specify packets to reject\n"
10390 "Specify packets to forward\n"
10391 "Any Internet Protocol\n"
10392 "Any source host\n"
10393 "A single destination host\n"
10394 "Destination address\n")
10395
10396DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_cmd_vtysh,
10397 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft",
10398 "Reset functions\n"
10399 "IP information\n"
10400 "BGP information\n"
10401 "BGP neighbor address to clear\n"
10402 "Address family\n"
10403 "Address Family Modifier\n"
10404 "Address Family Modifier\n"
10405 "Soft reconfig\n")
10406
10407DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_description_cmd_vtysh,
10408 "no ip prefix-list WORD description",
10409 "Negate a command or set its defaults\n"
10410 "IP information\n"
10411 "Build a prefix list\n"
10412 "Name of a prefix list\n"
10413 "Prefix-list specific description\n")
10414
10415DEFSH (VTYSH_BGPD, old_no_ipv6_bgp_network_cmd_vtysh,
10416 "no ipv6 bgp network X:X::X:X/M",
10417 "Negate a command or set its defaults\n"
10418 "IPv6 information\n"
10419 "BGP information\n"
10420 "Specify a network to announce via BGP\n"
10421 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n")
10422
10423DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_cmd_vtysh,
10424 "no redistribute kernel metric",
10425 "Negate a command or set its defaults\n"
10426 "Redistribute information from another routing protocol\n"
10427 "Kernel routes\n"
10428 "Metric\n")
10429
10430DEFSH (VTYSH_OSPFD, no_network_area_cmd_vtysh,
10431 "no network A.B.C.D/M area (A.B.C.D|<0-4294967295>)",
10432 "Negate a command or set its defaults\n"
10433 "Enable routing on an IP network\n"
10434 "OSPF network prefix\n"
10435 "Set the OSPF area ID\n"
10436 "OSPF area ID in IP address format\n"
10437 "OSPF area ID as a decimal value\n")
10438
10439DEFSH (VTYSH_OSPFD, area_range_advertise_cmd_vtysh,
10440 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise",
10441 "OSPF area parameters\n"
10442 "OSPF area ID in IP address format\n"
10443 "OSPF area ID as a decimal value\n"
10444 "OSPF area range for route advertise (default)\n"
10445 "Area range prefix\n"
10446 "Advertise this range (default)\n")
10447
10448DEFSH (VTYSH_OSPFD, area_range_substitute_cmd_vtysh,
10449 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M",
10450 "OSPF area parameters\n"
10451 "OSPF area ID in IP address format\n"
10452 "OSPF area ID as a decimal value\n"
10453 "Summarize routes matching address/mask (border routers only)\n"
10454 "Area range prefix\n"
10455 "Announce area range as another prefix\n"
10456 "Network prefix to be announced instead of range\n")
10457
10458DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_cmd_vtysh,
10459 "clear bgp ipv6 external",
10460 "Reset functions\n"
10461 "BGP information\n"
10462 "Address family\n"
10463 "Clear all external peers\n")
10464
10465DEFSH (VTYSH_RIPD, no_rip_version_cmd_vtysh,
10466 "no version",
10467 "Negate a command or set its defaults\n"
10468 "Set routing protocol version\n")
10469
10470DEFSH (VTYSH_BGPD, match_ipv6_next_hop_cmd_vtysh,
10471 "match ipv6 next-hop X:X::X:X",
10472 "Match values from routing table\n"
10473 "IPv6 information\n"
10474 "Match IPv6 next-hop address of route\n"
10475 "IPv6 address of next hop\n")
10476
10477DEFSH (VTYSH_BGPD, bgp_confederation_peers_cmd_vtysh,
10478 "bgp confederation peers .<1-65535>",
paul718e3742002-12-13 20:15:29 +000010479 "BGP specific commands\n"
paul569c0f02003-03-02 21:19:26 +000010480 "AS confederation parameters\n"
10481 "Peer ASs in BGP confederation\n"
10482 "AS number\n")
paul718e3742002-12-13 20:15:29 +000010483
paul569c0f02003-03-02 21:19:26 +000010484DEFSH (VTYSH_BGPD, show_ipv6_bgp_community3_exact_cmd_vtysh,
10485 "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",
10486 "Show running system information\n"
10487 "IPv6 information\n"
10488 "BGP information\n"
10489 "Display routes matching the communities\n"
10490 "community number\n"
10491 "Do not send outside local AS (well-known community)\n"
10492 "Do not advertise to any peer (well-known community)\n"
10493 "Do not export to next AS (well-known community)\n"
10494 "community number\n"
10495 "Do not send outside local AS (well-known community)\n"
10496 "Do not advertise to any peer (well-known community)\n"
10497 "Do not export to next AS (well-known community)\n"
10498 "community number\n"
10499 "Do not send outside local AS (well-known community)\n"
10500 "Do not advertise to any peer (well-known community)\n"
10501 "Do not export to next AS (well-known community)\n"
10502 "Exact match of the communities")
paul718e3742002-12-13 20:15:29 +000010503
paul569c0f02003-03-02 21:19:26 +000010504DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ipv6_prefix_list_cmd_vtysh,
10505 "clear ipv6 prefix-list",
10506 "Reset functions\n"
10507 "IPv6 information\n"
10508 "Build a prefix list\n")
paul718e3742002-12-13 20:15:29 +000010509
paul569c0f02003-03-02 21:19:26 +000010510DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_name_prefix_cmd_vtysh,
10511 "clear ip prefix-list WORD A.B.C.D/M",
10512 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +000010513 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000010514 "Build a prefix list\n"
10515 "Name of a prefix list\n"
10516 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n")
paul718e3742002-12-13 20:15:29 +000010517
paul569c0f02003-03-02 21:19:26 +000010518DEFSH (VTYSH_BGPD, show_ip_bgp_neighbors_peer_cmd_vtysh,
10519 "show ip bgp neighbors (A.B.C.D|X:X::X:X)",
paul718e3742002-12-13 20:15:29 +000010520 "Show running system information\n"
10521 "IP information\n"
10522 "BGP information\n"
10523 "Detailed information on TCP and BGP neighbor connections\n"
10524 "Neighbor to display information about\n"
paul569c0f02003-03-02 21:19:26 +000010525 "Neighbor to display information about\n")
paul718e3742002-12-13 20:15:29 +000010526
10527DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_send_recv_detail_cmd_vtysh,
10528 "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)",
10529 "Negate a command or set its defaults\n"
10530 "Debugging functions\n"
10531 "OSPF information\n"
10532 "OSPF packets\n"
10533 "OSPF Hello\n"
10534 "OSPF Database Description\n"
10535 "OSPF Link State Request\n"
10536 "OSPF Link State Update\n"
10537 "OSPF Link State Acknowledgment\n"
10538 "OSPF all packets\n"
10539 "Packet sent\n"
10540 "Packet received\n"
10541 "Detail Information\n")
10542
paul569c0f02003-03-02 21:19:26 +000010543DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_md5_cmd_vtysh,
10544 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
10545 "(authentication|) "
10546 "(message-digest-key|)",
paul718e3742002-12-13 20:15:29 +000010547 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000010548 "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"
10549 "Enable authentication on this virtual link\n" "dummy string \n"
10550 "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)")
10551
10552DEFSH (VTYSH_OSPFD, debug_ospf_ism_sub_cmd_vtysh,
10553 "debug ospf ism (status|events|timers)",
10554 "Debugging functions (see also 'undebug')\n"
10555 "OSPF information\n"
10556 "OSPF Interface State Machine\n"
10557 "ISM Status Information\n"
10558 "ISM Event Information\n"
10559 "ISM TImer Information\n")
10560
10561DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_ipv6_access_list_exact_cmd_vtysh,
10562 "no ipv6 access-list WORD (deny|permit) X:X::X:X/M exact-match",
10563 "Negate a command or set its defaults\n"
10564 "IPv6 information\n"
10565 "Add an access list entry\n"
10566 "IPv6 zebra access-list\n"
10567 "Specify packets to reject\n"
10568 "Specify packets to forward\n"
10569 "Prefix to match. e.g. 3ffe:506::/32\n"
10570 "Exact match of the prefixes\n")
10571
10572DEFSH (VTYSH_BGPD, bgp_distance_cmd_vtysh,
10573 "distance bgp <1-255> <1-255> <1-255>",
10574 "Define an administrative distance\n"
10575 "BGP distance\n"
10576 "Distance for routes external to the AS\n"
10577 "Distance for routes internal to the AS\n"
10578 "Distance for local routes\n")
10579
10580DEFSH (VTYSH_BGPD, neighbor_shutdown_cmd_vtysh,
10581 "neighbor (A.B.C.D|X:X::X:X|WORD) " "shutdown",
10582 "Specify neighbor router\n"
10583 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10584 "Administratively shut down this neighbor\n")
10585
10586DEFSH (VTYSH_OSPFD, ip_ospf_retransmit_interval_cmd_vtysh,
10587 "ip ospf retransmit-interval <3-65535>",
10588 "IP Information\n"
10589 "OSPF interface commands\n"
10590 "Time between retransmitting lost link state advertisements\n"
10591 "Seconds\n")
10592
10593DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_routemap_cmd_vtysh,
10594 "no redistribute kernel route-map WORD",
10595 "Negate a command or set its defaults\n"
10596 "Redistribute information from another routing protocol\n"
10597 "Kernel routes\n"
10598 "Route map reference\n"
10599 "Pointer to route-map entries\n")
10600
10601DEFSH (VTYSH_OSPFD, mpls_te_link_unrsv_bw_cmd_vtysh,
10602 "mpls-te link unrsv-bw <0-7> BANDWIDTH",
10603 "MPLS-TE specific commands\n"
10604 "Configure MPLS-TE link parameters\n"
10605 "Unreserved bandwidth at each priority level\n"
10606 "Priority\n"
10607 "Bytes/second (IEEE floating point format)\n")
10608
10609DEFSH (VTYSH_OSPFD, no_passive_interface_addr_cmd_vtysh,
10610 "no passive-interface IFNAME A.B.C.D",
10611 "Negate a command or set its defaults\n"
10612 "Allow routing updates on an interface\n"
10613 "Interface's name\n")
10614
10615DEFSH (VTYSH_BGPD, no_debug_bgp_normal_cmd_vtysh,
10616 "no debug bgp",
10617 "Negate a command or set its defaults\n"
10618 "Debugging functions (see also 'undebug')\n"
10619 "BGP information\n")
10620
10621DEFSH (VTYSH_BGPD, no_neighbor_override_capability_cmd_vtysh,
10622 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "override-capability",
10623 "Negate a command or set its defaults\n"
10624 "Specify neighbor router\n"
10625 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10626 "Override capability negotiation result\n")
10627
10628DEFSH (VTYSH_OSPFD, ip_ospf_authentication_key_cmd_vtysh,
10629 "ip ospf authentication-key AUTH_KEY",
10630 "IP Information\n"
10631 "OSPF interface commands\n"
10632 "Authentication password (key)\n"
10633 "The OSPF password (key)")
10634
10635DEFSH (VTYSH_OSPFD, no_ospf_dead_interval_cmd_vtysh,
10636 "no ospf dead-interval",
10637 "Negate a command or set its defaults\n"
10638 "OSPF interface commands\n"
10639 "Interval after which a neighbor is declared dead\n")
10640
10641DEFSH (VTYSH_BGPD, debug_bgp_filter_cmd_vtysh,
10642 "debug bgp filters",
10643 "Debugging functions (see also 'undebug')\n"
10644 "BGP information\n"
10645 "BGP filters\n")
10646
10647DEFSH (VTYSH_RIPD, rip_offset_list_cmd_vtysh,
10648 "offset-list WORD (in|out) <0-16>",
10649 "Modify RIP metric\n"
10650 "Access-list name\n"
10651 "For incoming updates\n"
10652 "For outgoing updates\n"
10653 "Metric value\n")
10654
10655DEFSH (VTYSH_BGPD, neighbor_enforce_multihop_cmd_vtysh,
10656 "neighbor (A.B.C.D|X:X::X:X|WORD) " "enforce-multihop",
10657 "Specify neighbor router\n"
10658 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10659 "Enforce EBGP neighbors perform multihop\n")
10660
10661DEFSH (VTYSH_BGPD, no_neighbor_dont_capability_negotiate_cmd_vtysh,
10662 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "dont-capability-negotiate",
10663 "Negate a command or set its defaults\n"
10664 "Specify neighbor router\n"
10665 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10666 "Do not perform capability negotiation\n")
10667
10668DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_exact_cmd_vtysh,
10669 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) exact-match",
10670 "Show running system information\n"
10671 "IP information\n"
10672 "BGP information\n"
10673 "Address family\n"
10674 "Address Family modifier\n"
10675 "Address Family modifier\n"
10676 "Display routes matching the communities\n"
10677 "community number\n"
10678 "Do not send outside local AS (well-known community)\n"
10679 "Do not advertise to any peer (well-known community)\n"
10680 "Do not export to next AS (well-known community)\n"
10681 "Exact match of the communities")
10682
10683DEFSH (VTYSH_BGPD, no_bgp_router_id_val_cmd_vtysh,
10684 "no bgp router-id A.B.C.D",
10685 "Negate a command or set its defaults\n"
10686 "BGP information\n"
10687 "Override configured router identifier\n"
10688 "Manually configured router identifier\n")
10689
10690DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_in_cmd_vtysh,
10691 "clear ip bgp A.B.C.D soft in",
10692 "Reset functions\n"
10693 "IP information\n"
10694 "BGP information\n"
10695 "BGP neighbor address to clear\n"
10696 "Soft reconfig\n"
10697 "Soft reconfig inbound update\n")
10698
10699DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_list_cmd_vtysh,
10700 "show ip bgp flap-statistics prefix-list WORD",
10701 "Show running system information\n"
10702 "IP information\n"
10703 "BGP information\n"
10704 "Display flap statistics of routes\n"
10705 "Display routes conforming to the prefix-list\n"
10706 "IP prefix-list name\n")
10707
10708DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community2_exact_cmd_vtysh,
10709 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
10710 "Show running system information\n"
10711 "IPv6 information\n"
10712 "MBGP information\n"
10713 "Display routes matching the communities\n"
10714 "community number\n"
10715 "Do not send outside local AS (well-known community)\n"
10716 "Do not advertise to any peer (well-known community)\n"
10717 "Do not export to next AS (well-known community)\n"
10718 "community number\n"
10719 "Do not send outside local AS (well-known community)\n"
10720 "Do not advertise to any peer (well-known community)\n"
10721 "Do not export to next AS (well-known community)\n"
10722 "Exact match of the communities")
10723
10724DEFSH (VTYSH_ZEBRA, shutdown_if_cmd_vtysh,
10725 "shutdown",
10726 "Shutdown the selected interface\n")
10727
10728DEFSH (VTYSH_BGPD, no_set_atomic_aggregate_cmd_vtysh,
10729 "no set atomic-aggregate",
10730 "Negate a command or set its defaults\n"
10731 "Set values in destination routing protocol\n"
10732 "BGP atomic aggregate attribute\n" )
10733
10734DEFSH (VTYSH_OSPFD, area_nssa_translate_cmd_vtysh,
10735 "area (A.B.C.D|<0-4294967295>) nssa (translate-candidate|translate-never|translate-always)",
10736 "OSPF area parameters\n"
10737 "OSPF area ID in IP address format\n"
10738 "OSPF area ID as a decimal value\n"
10739 "Configure OSPF area as nssa\n"
10740 "Configure NSSA-ABR for translate election (default)\n"
10741 "Configure NSSA-ABR to never translate\n"
10742 "Configure NSSA-ABR to always translate\n")
10743
10744DEFSH (VTYSH_RIPD, show_ip_rip_cmd_vtysh,
10745 "show ip rip",
10746 "Show running system information\n"
10747 "IP information\n"
10748 "Show RIP routes\n")
10749
10750DEFSH (VTYSH_BGPD, no_neighbor_default_originate_cmd_vtysh,
10751 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate",
10752 "Negate a command or set its defaults\n"
10753 "Specify neighbor router\n"
10754 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
10755 "Originate default route to this neighbor\n")
10756
10757DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_type_routemap_cmd_vtysh,
10758 "default-information originate always metric <0-16777214> metric-type (1|2) route-map WORD",
10759 "Control distribution of default information\n"
10760 "Distribute a default route\n"
10761 "Always advertise default route\n"
10762 "OSPF default metric\n"
10763 "OSPF metric\n"
10764 "OSPF metric type for default routes\n"
10765 "Set OSPF External Type 1 metrics\n"
10766 "Set OSPF External Type 2 metrics\n"
10767 "Route map reference\n"
10768 "Pointer to route-map entries\n")
10769
10770DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_address_cmd_vtysh,
10771 "clear ip bgp dampening A.B.C.D",
10772 "Reset functions\n"
10773 "IP information\n"
10774 "BGP information\n"
10775 "Clear route flap dampening information\n"
10776 "Network to clear damping information\n")
10777
10778DEFSH (VTYSH_BGPD, show_bgp_community_list_cmd_vtysh,
10779 "show bgp community-list WORD",
10780 "Show running system information\n"
10781 "BGP information\n"
10782 "Display routes matching the community-list\n"
10783 "community-list name\n")
10784
10785DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_cmd_vtysh,
10786 "clear bgp ipv6 <1-65535> soft",
10787 "Reset functions\n"
10788 "BGP information\n"
10789 "Address family\n"
10790 "Clear peers with the AS number\n"
10791 "Soft reconfig\n")
10792
10793DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_set_ip_nexthop_cmd_vtysh,
10794 "no set ip next-hop",
10795 "Negate a command or set its defaults\n"
10796 "Set values in destination routing protocol\n"
10797 "IP information\n"
10798 "Next hop address\n")
10799
10800DEFSH (VTYSH_RIPD, rip_distance_source_cmd_vtysh,
10801 "distance <1-255> A.B.C.D/M",
10802 "Administrative distance\n"
10803 "Distance value\n"
10804 "IP source prefix\n")
10805
10806DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_metric_routemap_cmd_vtysh,
10807 "redistribute ospf6 metric <0-16> route-map WORD",
10808 "Redistribute information from another routing protocol\n"
10809 "IPv6 Open Shortest Path First (OSPFv3)\n"
10810 "Metric\n"
10811 "Metric value\n"
10812 "Route map reference\n"
10813 "Pointer to route-map entries\n")
10814
10815DEFSH (VTYSH_ZEBRA, ip_route_cmd_vtysh,
10816 "ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0)",
10817 "IP information\n"
10818 "Establish static routes\n"
10819 "IP destination prefix (e.g. 10.0.0.0/8)\n"
10820 "IP gateway address\n"
10821 "IP gateway interface name\n"
10822 "Null interface\n")
10823
10824DEFSH (VTYSH_BGPD, clear_ip_bgp_external_cmd_vtysh,
10825 "clear ip bgp external",
10826 "Reset functions\n"
10827 "IP information\n"
10828 "BGP information\n"
10829 "Clear all external peers\n")
10830
10831DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_any_cmd_vtysh,
10832 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any any",
10833 "Negate a command or set its defaults\n"
10834 "Add an access list entry\n"
10835 "IP extended access list\n"
10836 "IP extended access list (expanded range)\n"
10837 "Specify packets to reject\n"
10838 "Specify packets to forward\n"
10839 "Any Internet Protocol\n"
10840 "Any source host\n"
10841 "Any destination host\n")
10842
10843DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_rmap_metric_cmd_vtysh,
10844 "redistribute (connected|kernel|ospf6|ripng|static) route-map WORD metric <0-4294967295>",
10845 "Redistribute information from another routing protocol\n"
10846 "Connected\n"
10847 "Kernel routes\n"
10848 "Open Shurtest Path First (OSPFv3)\n"
10849 "Routing Information Protocol (RIPng)\n"
10850 "Static routes\n"
10851 "Route map reference\n"
10852 "Pointer to route-map entries\n"
10853 "Metric for redistributed routes\n"
paul718e3742002-12-13 20:15:29 +000010854 "Default metric\n")
10855
paul569c0f02003-03-02 21:19:26 +000010856DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_cmd_vtysh,
10857 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) (X:X::X:X/M|any)",
10858 "IPv6 information\n"
10859 "Build a prefix list\n"
10860 "Name of a prefix list\n"
10861 "sequence number of an entry\n"
10862 "Sequence number\n"
10863 "Specify packets to reject\n"
10864 "Specify packets to forward\n"
10865 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
10866 "Any prefix match. Same as \"::0/0 le 128\"\n")
10867
10868DEFSH (VTYSH_BGPD, show_ip_bgp_route_map_cmd_vtysh,
10869 "show ip bgp route-map WORD",
10870 "Show running system information\n"
10871 "IP information\n"
10872 "BGP information\n"
10873 "Display routes matching the route-map\n"
10874 "A route-map to match on\n")
10875
10876DEFSH (VTYSH_OSPFD, no_debug_ospf_ism_sub_cmd_vtysh,
10877 "no debug ospf ism (status|events|timers)",
10878 "Negate a command or set its defaults\n"
10879 "Debugging functions\n"
10880 "OSPF information\n"
10881 "OSPF Interface State Machine\n"
10882 "ISM Status Information\n"
10883 "ISM Event Information\n"
10884 "ISM Timer Information\n")
10885
10886DEFSH (VTYSH_RIPD, ip_rip_authentication_mode_cmd_vtysh,
10887 "ip rip authentication mode (md5|text)",
10888 "IP information\n"
10889 "Routing Information Protocol\n"
10890 "Authentication control\n"
10891 "Authentication mode\n"
10892 "Keyed message digest\n"
10893 "Clear text authentication\n")
10894
10895DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_le_cmd_vtysh,
10896 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128>",
10897 "IPv6 information\n"
10898 "Build a prefix list\n"
10899 "Name of a prefix list\n"
10900 "Specify packets to reject\n"
10901 "Specify packets to forward\n"
10902 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
10903 "Maximum prefix length to be matched\n"
10904 "Maximum prefix length\n")
10905
10906DEFSH (VTYSH_OSPFD, debug_ospf_nsm_cmd_vtysh,
10907 "debug ospf nsm",
10908 "Debugging functions (see also 'undebug')\n"
10909 "OSPF information\n"
10910 "OSPF Neighbor State Machine\n")
10911
10912DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_cmd_vtysh,
10913 "clear ip bgp dampening",
10914 "Reset functions\n"
10915 "IP information\n"
10916 "BGP information\n"
10917 "Clear route flap dampening information\n")
10918
10919DEFSH (VTYSH_OSPFD, area_range_not_advertise_cmd_vtysh,
10920 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M not-advertise",
10921 "OSPF area parameters\n"
10922 "OSPF area ID in IP address format\n"
10923 "OSPF area ID as a decimal value\n"
10924 "Summarize routes matching address/mask (border routers only)\n"
10925 "Area range prefix\n"
10926 "DoNotAdvertise this range\n")
10927
10928DEFSH (VTYSH_BGPD, no_match_community_val_cmd_vtysh,
10929 "no match community (<1-99>|<100-199>|WORD)",
10930 "Negate a command or set its defaults\n"
10931 "Match values from routing table\n"
10932 "Match BGP community list\n"
10933 "Community-list number (standard)\n"
10934 "Community-list number (expanded)\n"
10935 "Community-list name\n")
10936
10937DEFSH (VTYSH_OSPFD|VTYSH_OSPFD, show_ip_ospf_neighbor_id_cmd_vtysh,
10938 "show ip ospf neighbor A.B.C.D",
10939 "Show running system information\n"
10940 "IP information\n"
10941 "OSPF information\n"
10942 "Neighbor list\n"
10943 "Neighbor ID\n")
10944
10945DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_ge_le_cmd_vtysh,
10946 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32> le <0-32>",
10947 "Negate a command or set its defaults\n"
10948 "IP information\n"
10949 "Build a prefix list\n"
10950 "Name of a prefix list\n"
10951 "sequence number of an entry\n"
10952 "Sequence number\n"
10953 "Specify packets to reject\n"
10954 "Specify packets to forward\n"
10955 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
10956 "Minimum prefix length to be matched\n"
10957 "Minimum prefix length\n"
10958 "Maximum prefix length to be matched\n"
10959 "Maximum prefix length\n")
10960
10961DEFSH (VTYSH_OSPFD, mpls_te_link_metric_cmd_vtysh,
10962 "mpls-te link metric <0-4294967295>",
10963 "MPLS-TE specific commands\n"
10964 "Configure MPLS-TE link parameters\n"
10965 "Link metric for MPLS-TE purpose\n"
10966 "Metric\n")
10967
10968DEFSH (VTYSH_BGPD, clear_bgp_external_soft_in_cmd_vtysh,
10969 "clear bgp external soft in",
10970 "Reset functions\n"
10971 "BGP information\n"
10972 "Clear all external peers\n"
10973 "Soft reconfig\n"
10974 "Soft reconfig inbound update\n")
10975
10976DEFSH (VTYSH_OSPF6D, area_range_cmd_vtysh,
10977 "area A.B.C.D range X:X::X:X/M",
10978 "OSPFv3 area parameters\n"
10979 "OSPFv3 area ID in IPv4 address format\n"
10980 "Summarize routes matching address/mask (border routers only)\n"
10981 "IPv6 address range\n")
10982
10983DEFSH (VTYSH_OSPFD, no_area_stub_no_summary_cmd_vtysh,
10984 "no area (A.B.C.D|<0-4294967295>) stub no-summary",
10985 "Negate a command or set its defaults\n"
10986 "OSPF area parameters\n"
10987 "OSPF area ID in IP address format\n"
10988 "OSPF area ID as a decimal value\n"
10989 "Configure OSPF area as stub\n"
10990 "Do not inject inter-area routes into area\n")
10991
10992DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_inter_cmd_vtysh,
10993 "distance ospf external <1-255> inter-area <1-255>",
10994 "Define an administrative distance\n"
10995 "OSPF Administrative distance\n"
10996 "External routes\n"
10997 "Distance for external routes\n"
10998 "Inter-area routes\n"
10999 "Distance for inter-area routes\n")
11000
11001DEFSH (VTYSH_BGPD, no_neighbor_cmd_vtysh,
11002 "no neighbor (A.B.C.D|X:X::X:X|WORD) ",
11003 "Negate a command or set its defaults\n"
11004 "Specify neighbor router\n"
11005 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n")
11006
11007DEFSH (VTYSH_OSPFD, area_export_list_cmd_vtysh,
11008 "area (A.B.C.D|<0-4294967295>) export-list NAME",
11009 "OSPF area parameters\n"
11010 "OSPF area ID in IP address format\n"
11011 "OSPF area ID as a decimal value\n"
11012 "Set the filter for networks announced to other areas\n"
11013 "Name of the access-list\n")
11014
11015DEFSH (VTYSH_OSPFD, no_ospf_compatible_rfc1583_cmd_vtysh,
11016 "no compatible rfc1583",
11017 "Negate a command or set its defaults\n"
11018 "OSPF compatibility list\n"
11019 "compatible with RFC 1583\n")
11020
11021DEFSH (VTYSH_BGPD, no_match_ecommunity_cmd_vtysh,
11022 "no match extcommunity",
11023 "Negate a command or set its defaults\n"
11024 "Match values from routing table\n"
11025 "Match BGP/VPN extended community list\n")
11026
11027DEFSH (VTYSH_BGPD, set_ipv6_nexthop_local_cmd_vtysh,
11028 "set ipv6 next-hop local X:X::X:X",
11029 "Set values in destination routing protocol\n"
11030 "IPv6 information\n"
11031 "IPv6 next-hop address\n"
11032 "IPv6 local address\n"
11033 "IPv6 address of next hop\n")
11034
11035DEFSH (VTYSH_OSPFD, area_import_list_cmd_vtysh,
11036 "area (A.B.C.D|<0-4294967295>) import-list NAME",
11037 "OSPF area parameters\n"
11038 "OSPF area ID in IP address format\n"
11039 "OSPF area ID as a decimal value\n"
11040 "Set the filter for networks from other areas announced to the specified one\n"
11041 "Name of the access-list\n")
11042
11043DEFSH (VTYSH_BGPD, debug_bgp_keepalive_cmd_vtysh,
11044 "debug bgp keepalives",
11045 "Debugging functions (see also 'undebug')\n"
11046 "BGP information\n"
11047 "BGP keepalives\n")
11048
11049DEFSH (VTYSH_BGPD, dump_bgp_routes_cmd_vtysh,
11050 "dump bgp routes-mrt PATH",
11051 "Dump packet\n"
11052 "BGP packet dump\n"
11053 "Dump whole BGP routing table\n"
11054 "Output filename\n")
11055
11056DEFSH (VTYSH_BGPD, no_match_aspath_val_cmd_vtysh,
11057 "no match as-path WORD",
11058 "Negate a command or set its defaults\n"
11059 "Match values from routing table\n"
11060 "Match BGP AS path list\n"
11061 "AS path access-list name\n")
11062
11063DEFSH (VTYSH_BGPD, no_synchronization_cmd_vtysh,
11064 "no synchronization",
11065 "Negate a command or set its defaults\n"
11066 "Perform IGP synchronization\n")
11067
11068DEFSH (VTYSH_BGPD, neighbor_capability_dynamic_cmd_vtysh,
11069 "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability dynamic",
11070 "Specify neighbor router\n"
11071 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11072 "Advertise capability to the peer\n"
11073 "Advertise dynamic capability to this neighbor\n")
11074
11075DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_in_cmd_vtysh,
11076 "clear ip bgp peer-group WORD soft in",
paul718e3742002-12-13 20:15:29 +000011077 "Reset functions\n"
11078 "IP information\n"
11079 "BGP information\n"
11080 "Clear all members of peer-group\n"
11081 "BGP peer-group name\n"
11082 "Soft reconfig\n"
paul718e3742002-12-13 20:15:29 +000011083 "Soft reconfig inbound update\n")
11084
paul569c0f02003-03-02 21:19:26 +000011085DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_cmd_vtysh,
11086 "clear bgp view WORD * soft",
paul718e3742002-12-13 20:15:29 +000011087 "Reset functions\n"
11088 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +000011089 "BGP view\n"
11090 "view name\n"
11091 "Clear all peers\n"
paul718e3742002-12-13 20:15:29 +000011092 "Soft reconfig\n")
11093
paul569c0f02003-03-02 21:19:26 +000011094DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_cmd_vtysh,
11095 "clear ip bgp peer-group WORD",
paul718e3742002-12-13 20:15:29 +000011096 "Reset functions\n"
11097 "IP information\n"
11098 "BGP information\n"
11099 "Clear all members of peer-group\n"
paul569c0f02003-03-02 21:19:26 +000011100 "BGP peer-group name\n")
paul718e3742002-12-13 20:15:29 +000011101
paul569c0f02003-03-02 21:19:26 +000011102DEFSH (VTYSH_BGPD, no_aggregate_address_mask_summary_as_set_cmd_vtysh,
11103 "no aggregate-address A.B.C.D A.B.C.D summary-only as-set",
paul718e3742002-12-13 20:15:29 +000011104 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000011105 "Configure BGP aggregate entries\n"
11106 "Aggregate address\n"
11107 "Aggregate mask\n"
11108 "Filter more specific routes from updates\n"
11109 "Generate AS set path information\n")
paul718e3742002-12-13 20:15:29 +000011110
paul569c0f02003-03-02 21:19:26 +000011111DEFSH (VTYSH_RIPD, no_rip_redistribute_type_routemap_cmd_vtysh,
11112 "no redistribute (kernel|connected|static|ospf|bgp) route-map WORD",
paul718e3742002-12-13 20:15:29 +000011113 "Negate a command or set its defaults\n"
11114 "Redistribute information from another routing protocol\n"
paul718e3742002-12-13 20:15:29 +000011115 "Kernel routes\n"
11116 "Connected\n"
11117 "Static routes\n"
paul569c0f02003-03-02 21:19:26 +000011118 "Open Shortest Path First (OSPF)\n"
paul718e3742002-12-13 20:15:29 +000011119 "Border Gateway Protocol (BGP)\n"
paul718e3742002-12-13 20:15:29 +000011120 "Route map reference\n"
11121 "Pointer to route-map entries\n")
11122
paul569c0f02003-03-02 21:19:26 +000011123DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_cmd_vtysh,
11124 "default-information originate always metric <0-16777214>",
11125 "Control distribution of default information\n"
11126 "Distribute a default route\n"
11127 "Always advertise default route\n"
11128 "OSPF default metric\n"
11129 "OSPF metric\n"
11130 "OSPF metric type for default routes\n")
11131
11132DEFSH (VTYSH_OSPFD, no_area_vlink_param4_cmd_vtysh,
11133 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
11134 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
11135 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
11136 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
11137 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
paul718e3742002-12-13 20:15:29 +000011138 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000011139 "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"
11140 "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"
11141 "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"
11142 "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"
11143 "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")
paul718e3742002-12-13 20:15:29 +000011144
paul569c0f02003-03-02 21:19:26 +000011145DEFSH (VTYSH_BGPD, no_set_originator_id_val_cmd_vtysh,
11146 "no set originator-id A.B.C.D",
11147 "Negate a command or set its defaults\n"
11148 "Set values in destination routing protocol\n"
11149 "BGP originator ID attribute\n"
11150 "IP address of originator\n")
11151
11152DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_cmd_vtysh,
11153 "ipv6 prefix-list WORD (deny|permit) (X:X::X:X/M|any)",
11154 "IPv6 information\n"
11155 "Build a prefix list\n"
11156 "Name of a prefix list\n"
11157 "Specify packets to reject\n"
11158 "Specify packets to forward\n"
11159 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
11160 "Any prefix match. Same as \"::0/0 le 128\"\n")
11161
11162DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_ge_cmd_vtysh,
11163 "ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32>",
paul718e3742002-12-13 20:15:29 +000011164 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000011165 "Build a prefix list\n"
11166 "Name of a prefix list\n"
11167 "Specify packets to reject\n"
11168 "Specify packets to forward\n"
11169 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
11170 "Minimum prefix length to be matched\n"
11171 "Minimum prefix length\n")
paul718e3742002-12-13 20:15:29 +000011172
paul569c0f02003-03-02 21:19:26 +000011173DEFSH (VTYSH_RIPD, no_debug_rip_zebra_cmd_vtysh,
11174 "no debug rip zebra",
11175 "Negate a command or set its defaults\n"
11176 "Debugging functions (see also 'undebug')\n"
11177 "RIP information\n"
11178 "RIP and ZEBRA communication\n")
paul718e3742002-12-13 20:15:29 +000011179
11180DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_cidr_only_cmd_vtysh,
11181 "show ip bgp ipv4 (unicast|multicast) cidr-only",
11182 "Show running system information\n"
11183 "IP information\n"
11184 "BGP information\n"
11185 "Address family\n"
11186 "Address Family modifier\n"
11187 "Address Family modifier\n"
11188 "Display only routes with non-natural netmasks\n")
11189
paul569c0f02003-03-02 21:19:26 +000011190DEFSH (VTYSH_BGPD, set_local_pref_cmd_vtysh,
11191 "set local-preference <0-4294967295>",
11192 "Set values in destination routing protocol\n"
11193 "BGP local preference path attribute\n"
11194 "Preference value\n")
11195
11196DEFSH (VTYSH_BGPD, bgp_bestpath_med_cmd_vtysh,
11197 "bgp bestpath med (confed|missing-as-worst)",
11198 "BGP specific commands\n"
11199 "Change the default bestpath selection\n"
11200 "MED attribute\n"
11201 "Compare MED among confederation paths\n"
11202 "Treat missing MED as the least preferred one\n")
11203
11204DEFSH (VTYSH_OSPFD, ip_ospf_authentication_addr_cmd_vtysh,
11205 "ip ospf authentication A.B.C.D",
11206 "IP Information\n"
11207 "OSPF interface commands\n"
11208 "Enable authentication on this interface\n"
11209 "Address of interface")
11210
11211DEFSH (VTYSH_BGPD, no_neighbor_local_as_cmd_vtysh,
11212 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as",
11213 "Negate a command or set its defaults\n"
11214 "Specify neighbor router\n"
11215 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11216 "Specify a local-as number\n")
11217
11218DEFSH (VTYSH_RIPNGD, no_debug_ripng_packet_direct_cmd_vtysh,
11219 "no debug ripng packet (recv|send)",
11220 "Negate a command or set its defaults\n"
11221 "Debugging functions (see also 'undebug')\n"
11222 "RIPng configuration\n"
11223 "Debug option set for ripng packet\n"
11224 "Debug option set for receive packet\n"
11225 "Debug option set for send packet\n")
11226
11227DEFSH (VTYSH_OSPFD, neighbor_priority_cmd_vtysh,
11228 "neighbor A.B.C.D priority <0-255>",
11229 "Specify neighbor router\n"
11230 "Neighbor IP address\n"
11231 "Neighbor Priority\n"
11232 "Seconds\n")
11233
11234DEFSH (VTYSH_BGPD, neighbor_attr_unchanged7_cmd_vtysh,
11235 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop med as-path",
11236 "Specify neighbor router\n"
11237 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11238 "BGP attribute is propagated unchanged to this neighbor\n"
11239 "Nexthop attribute\n"
11240 "Med attribute\n"
11241 "As-path attribute\n")
11242
11243DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_mask_host_cmd_vtysh,
11244 "no access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D host A.B.C.D",
11245 "Negate a command or set its defaults\n"
11246 "Add an access list entry\n"
11247 "IP extended access list\n"
11248 "IP extended access list (expanded range)\n"
11249 "Specify packets to reject\n"
11250 "Specify packets to forward\n"
11251 "Any Internet Protocol\n"
11252 "Source address\n"
11253 "Source wildcard bits\n"
11254 "A single destination host\n"
11255 "Destination address\n")
11256
11257DEFSH (VTYSH_RIPD, debug_rip_packet_cmd_vtysh,
11258 "debug rip packet",
11259 "Debugging functions (see also 'undebug')\n"
11260 "RIP information\n"
11261 "RIP packet\n")
11262
11263DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_metric_routemap_cmd_vtysh,
11264 "redistribute connected metric <0-16> route-map WORD",
11265 "Redistribute information from another routing protocol\n"
11266 "Connected\n"
11267 "Metric\n"
11268 "Metric value\n"
11269 "Route map reference\n"
11270 "Pointer to route-map entries\n")
11271
11272DEFSH (VTYSH_OSPFD, ip_ospf_authentication_args_cmd_vtysh,
11273 "ip ospf authentication (null|message-digest)",
11274 "IP Information\n"
11275 "OSPF interface commands\n"
11276 "Enable authentication on this interface\n"
11277 "Use null authentication\n"
11278 "Use message-digest authentication\n")
11279
11280DEFSH (VTYSH_BGPD, show_ipv6_mbgp_route_cmd_vtysh,
11281 "show ipv6 mbgp X:X::X:X",
11282 "Show running system information\n"
11283 "IP information\n"
11284 "MBGP information\n"
11285 "Network in the MBGP routing table to display\n")
11286
11287DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_in_cmd_vtysh,
11288 "clear ip bgp <1-65535> vpnv4 unicast in",
11289 "Reset functions\n"
11290 "IP information\n"
11291 "BGP information\n"
11292 "Clear peers with the AS number\n"
11293 "Address family\n"
11294 "Address Family modifier\n"
11295 "Soft reconfig inbound update\n")
11296
11297DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_cmd_vtysh,
11298 "ipv6 access-list WORD (deny|permit) X:X::X:X/M",
paul718e3742002-12-13 20:15:29 +000011299 "IPv6 information\n"
11300 "Add an access list entry\n"
11301 "IPv6 zebra access-list\n"
11302 "Specify packets to reject\n"
11303 "Specify packets to forward\n"
paul569c0f02003-03-02 21:19:26 +000011304 "Prefix to match. e.g. 3ffe:506::/32\n")
paul718e3742002-12-13 20:15:29 +000011305
paul569c0f02003-03-02 21:19:26 +000011306DEFSH (VTYSH_BGPD, show_bgp_community4_cmd_vtysh,
11307 "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)",
11308 "Show running system information\n"
11309 "BGP information\n"
11310 "Display routes matching the communities\n"
11311 "community number\n"
11312 "Do not send outside local AS (well-known community)\n"
11313 "Do not advertise to any peer (well-known community)\n"
11314 "Do not export to next AS (well-known community)\n"
11315 "community number\n"
11316 "Do not send outside local AS (well-known community)\n"
11317 "Do not advertise to any peer (well-known community)\n"
11318 "Do not export to next AS (well-known community)\n"
11319 "community number\n"
11320 "Do not send outside local AS (well-known community)\n"
11321 "Do not advertise to any peer (well-known community)\n"
11322 "Do not export to next AS (well-known community)\n"
11323 "community number\n"
11324 "Do not send outside local AS (well-known community)\n"
11325 "Do not advertise to any peer (well-known community)\n"
11326 "Do not export to next AS (well-known community)\n")
11327
11328DEFSH (VTYSH_OSPFD, no_area_range_advertise_cmd_vtysh,
11329 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M (advertise|not-advertise)",
11330 "Negate a command or set its defaults\n"
11331 "OSPF area parameters\n"
11332 "OSPF area ID in IP address format\n"
11333 "OSPF area ID as a decimal value\n"
11334 "Summarize routes matching address/mask (border routers only)\n"
11335 "Area range prefix\n"
11336 "Advertise this range (default)\n"
11337 "DoNotAdvertise this range\n")
11338
11339DEFSH (VTYSH_RIPNGD, debug_ripng_packet_direct_cmd_vtysh,
11340 "debug ripng packet (recv|send)",
paul718e3742002-12-13 20:15:29 +000011341 "Debugging functions (see also 'undebug')\n"
paul569c0f02003-03-02 21:19:26 +000011342 "RIPng configuration\n"
11343 "Debug option set for ripng packet\n"
11344 "Debug option set for receive packet\n"
11345 "Debug option set for send packet\n")
paul718e3742002-12-13 20:15:29 +000011346
paul569c0f02003-03-02 21:19:26 +000011347DEFSH (VTYSH_OSPFD, no_debug_ospf_nssa_cmd_vtysh,
11348 "no debug ospf nssa",
paul718e3742002-12-13 20:15:29 +000011349 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000011350 "Debugging functions (see also 'undebug')\n"
11351 "OSPF information\n"
11352 "OSPF nssa information\n")
11353
11354DEFSH (VTYSH_BGPD, no_auto_summary_cmd_vtysh,
11355 "no auto-summary",
11356 "Negate a command or set its defaults\n"
11357 "Enable automatic network number summarization\n")
11358
11359DEFSH (VTYSH_BGPD, neighbor_allowas_in_cmd_vtysh,
11360 "neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in",
11361 "Specify neighbor router\n"
11362 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11363 "Accept as-path with my AS present in it\n")
11364
11365DEFSH (VTYSH_BGPD, no_neighbor_capability_dynamic_cmd_vtysh,
11366 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability dynamic",
11367 "Negate a command or set its defaults\n"
11368 "Specify neighbor router\n"
11369 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11370 "Advertise capability to the peer\n"
11371 "Advertise dynamic capability to this neighbor\n")
11372
11373DEFSH (VTYSH_OSPF6D|VTYSH_BGPD, no_match_ipv6_address_prefix_list_cmd_vtysh,
11374 "no match ipv6 address prefix-list WORD",
11375 "Negate a command or set its defaults\n"
11376 "Match values from routing table\n"
11377 "IPv6 information\n"
11378 "Match address of route\n"
11379 "Match entries of prefix-lists\n"
11380 "IP prefix-list name\n")
11381
11382DEFSH (VTYSH_OSPFD, no_ip_ospf_network_cmd_vtysh,
11383 "no ip ospf network",
11384 "Negate a command or set its defaults\n"
11385 "IP Information\n"
11386 "OSPF interface commands\n"
11387 "Network type\n")
11388
11389DEFSH (VTYSH_BGPD, bgp_bestpath_aspath_ignore_cmd_vtysh,
11390 "bgp bestpath as-path ignore",
paul718e3742002-12-13 20:15:29 +000011391 "BGP specific commands\n"
paul569c0f02003-03-02 21:19:26 +000011392 "Change the default bestpath selection\n"
11393 "AS-path attribute\n"
11394 "Ignore as-path length in selecting a route\n")
paul718e3742002-12-13 20:15:29 +000011395
paul569c0f02003-03-02 21:19:26 +000011396DEFSH (VTYSH_BGPD, show_ip_extcommunity_list_arg_cmd_vtysh,
11397 "show ip extcommunity-list (<1-199>|WORD)",
11398 "Show running system information\n"
11399 "IP information\n"
11400 "List extended-community list\n"
11401 "Extcommunity-list number\n"
11402 "Extcommunity-list name\n")
11403
11404DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh,
11405 "show ip bgp vpnv4 all neighbors A.B.C.D",
11406 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +000011407 "IP information\n"
11408 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +000011409 "Display VPNv4 NLRI specific information\n"
11410 "Display information about all VPNv4 NLRIs\n"
11411 "Detailed information on TCP and BGP neighbor connections\n"
11412 "Neighbor to display information about\n")
paul718e3742002-12-13 20:15:29 +000011413
paul569c0f02003-03-02 21:19:26 +000011414DEFSH (VTYSH_BGPD, ip_community_list_name_expanded_cmd_vtysh,
11415 "ip community-list expanded WORD (deny|permit) .LINE",
paul718e3742002-12-13 20:15:29 +000011416 "IP information\n"
11417 "Add a community list entry\n"
paul569c0f02003-03-02 21:19:26 +000011418 "Add an expanded community-list entry\n"
paul718e3742002-12-13 20:15:29 +000011419 "Community list name\n"
11420 "Specify community to reject\n"
11421 "Specify community to accept\n"
11422 "An ordered list as a regular-expression\n")
11423
paul569c0f02003-03-02 21:19:26 +000011424DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_routemap_cmd_vtysh,
11425 "redistribute ospf6 route-map WORD",
11426 "Redistribute information from another routing protocol\n"
11427 "IPv6 Open Shortest Path First (OSPFv3)\n"
11428 "Route map reference\n"
11429 "Pointer to route-map entries\n")
11430
11431DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_out_cmd_vtysh,
11432 "clear ip bgp * vpnv4 unicast out",
11433 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +000011434 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000011435 "BGP information\n"
11436 "Clear all peers\n"
11437 "Address family\n"
11438 "Address Family Modifier\n"
11439 "Soft reconfig outbound update\n")
paul718e3742002-12-13 20:15:29 +000011440
paul569c0f02003-03-02 21:19:26 +000011441DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_out_cmd_vtysh,
11442 "clear ip bgp <1-65535> ipv4 (unicast|multicast) out",
11443 "Reset functions\n"
11444 "IP information\n"
11445 "BGP information\n"
11446 "Clear peers with the AS number\n"
11447 "Address family\n"
11448 "Address Family modifier\n"
11449 "Address Family modifier\n"
11450 "Soft reconfig outbound update\n")
11451
11452DEFSH (VTYSH_RIPD, ip_rip_receive_version_2_cmd_vtysh,
11453 "ip rip receive version 2 1",
11454 "IP information\n"
11455 "Routing Information Protocol\n"
11456 "Advertisement reception\n"
11457 "Version control\n"
11458 "RIP version 2\n"
11459 "RIP version 1\n")
11460
11461DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_remark_arg_cmd_vtysh,
11462 "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark .LINE",
paul718e3742002-12-13 20:15:29 +000011463 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000011464 "Add an access list entry\n"
11465 "IP standard access list\n"
11466 "IP extended access list\n"
11467 "IP standard access list (expanded range)\n"
11468 "IP extended access list (expanded range)\n"
11469 "IP zebra access-list\n"
11470 "Access list entry comment\n"
11471 "Comment up to 100 characters\n")
paul718e3742002-12-13 20:15:29 +000011472
paul569c0f02003-03-02 21:19:26 +000011473DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_cmd_vtysh,
11474 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export)",
paul718e3742002-12-13 20:15:29 +000011475 "Show running system information\n"
11476 "IP information\n"
11477 "BGP information\n"
11478 "Address family\n"
11479 "Address Family modifier\n"
11480 "Address Family modifier\n"
paul569c0f02003-03-02 21:19:26 +000011481 "Display routes matching the communities\n"
11482 "community number\n"
11483 "Do not send outside local AS (well-known community)\n"
11484 "Do not advertise to any peer (well-known community)\n"
11485 "Do not export to next AS (well-known community)\n")
paul718e3742002-12-13 20:15:29 +000011486
paul569c0f02003-03-02 21:19:26 +000011487DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_list_cmd_vtysh,
11488 "show bgp ipv6 prefix-list WORD",
11489 "Show running system information\n"
11490 "BGP information\n"
11491 "Address family\n"
11492 "Display routes conforming to the prefix-list\n"
11493 "IPv6 prefix-list name\n")
11494
11495DEFSH (VTYSH_RIPD, no_debug_rip_packet_direct_cmd_vtysh,
11496 "no debug rip packet (recv|send)",
paul718e3742002-12-13 20:15:29 +000011497 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000011498 "Debugging functions (see also 'undebug')\n"
11499 "RIP information\n"
11500 "RIP packet\n"
11501 "RIP option set for receive packet\n"
11502 "RIP option set for send packet\n")
paul718e3742002-12-13 20:15:29 +000011503
paul569c0f02003-03-02 21:19:26 +000011504DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_le_ge_cmd_vtysh,
11505 "no ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32> ge <0-32>",
11506 "Negate a command or set its defaults\n"
11507 "IP information\n"
11508 "Build a prefix list\n"
11509 "Name of a prefix list\n"
11510 "Specify packets to reject\n"
11511 "Specify packets to forward\n"
11512 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
11513 "Maximum prefix length to be matched\n"
11514 "Maximum prefix length\n"
11515 "Minimum prefix length to be matched\n"
11516 "Minimum prefix length\n")
11517
11518DEFSH (VTYSH_BGPD, show_ip_bgp_community2_exact_cmd_vtysh,
11519 "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
paul718e3742002-12-13 20:15:29 +000011520 "Show running system information\n"
11521 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000011522 "BGP information\n"
11523 "Display routes matching the communities\n"
11524 "community number\n"
11525 "Do not send outside local AS (well-known community)\n"
11526 "Do not advertise to any peer (well-known community)\n"
11527 "Do not export to next AS (well-known community)\n"
11528 "community number\n"
11529 "Do not send outside local AS (well-known community)\n"
11530 "Do not advertise to any peer (well-known community)\n"
11531 "Do not export to next AS (well-known community)\n"
11532 "Exact match of the communities")
paul718e3742002-12-13 20:15:29 +000011533
paul569c0f02003-03-02 21:19:26 +000011534DEFSH (VTYSH_OSPFD, no_ospf_default_metric_cmd_vtysh,
11535 "no default-metric",
paul718e3742002-12-13 20:15:29 +000011536 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000011537 "Set metric of redistributed routes\n")
paul718e3742002-12-13 20:15:29 +000011538
paul569c0f02003-03-02 21:19:26 +000011539DEFSH (VTYSH_BGPD, no_set_community_none_cmd_vtysh,
11540 "no set community none",
11541 "Negate a command or set its defaults\n"
11542 "Set values in destination routing protocol\n"
11543 "BGP community attribute\n"
11544 "No community attribute\n")
11545
11546DEFSH (VTYSH_BGPD, show_ip_bgp_flap_regexp_cmd_vtysh,
11547 "show ip bgp flap-statistics regexp .LINE",
11548 "Show running system information\n"
11549 "IP information\n"
11550 "BGP information\n"
11551 "Display flap statistics of routes\n"
11552 "Display routes matching the AS path regular expression\n"
11553 "A regular-expression to match the BGP AS paths\n")
11554
11555DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPF6D, router_zebra_cmd_vtysh,
11556 "router zebra",
11557 "Enable a routing process\n"
11558 "Make connection to zebra daemon\n")
11559
11560DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_rmap_metric_cmd_vtysh,
11561 "redistribute (connected|kernel|ospf|rip|static) route-map WORD metric <0-4294967295>",
11562 "Redistribute information from another routing protocol\n"
11563 "Connected\n"
11564 "Kernel routes\n"
11565 "Open Shurtest Path First (OSPF)\n"
11566 "Routing Information Protocol (RIP)\n"
11567 "Static routes\n"
11568 "Route map reference\n"
11569 "Pointer to route-map entries\n"
11570 "Metric for redistributed routes\n"
11571 "Default metric\n")
11572
11573DEFSH (VTYSH_BGPD, no_set_aggregator_as_val_cmd_vtysh,
11574 "no set aggregator as <1-65535> A.B.C.D",
11575 "Negate a command or set its defaults\n"
11576 "Set values in destination routing protocol\n"
11577 "BGP aggregator attribute\n"
11578 "AS number of aggregator\n"
11579 "AS number\n"
11580 "IP address of aggregator\n")
11581
11582DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_out_cmd_vtysh,
11583 "clear bgp ipv6 (A.B.C.D|X:X::X:X) out",
11584 "Reset functions\n"
11585 "BGP information\n"
11586 "Address family\n"
11587 "BGP neighbor address to clear\n"
11588 "BGP IPv6 neighbor to clear\n"
11589 "Soft reconfig outbound update\n")
11590
11591DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_external_cmd_vtysh,
11592 "distance ospf inter-area <1-255> external <1-255>",
11593 "Define an administrative distance\n"
11594 "OSPF Administrative distance\n"
11595 "Inter-area routes\n"
11596 "Distance for inter-area routes\n"
11597 "External routes\n"
11598 "Distance for external routes\n")
11599
11600DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_routemap_cmd_vtysh,
11601 "no redistribute static metric <0-16> route-map WORD",
11602 "Negate a command or set its defaults\n"
11603 "Redistribute information from another routing protocol\n"
11604 "Static routes\n"
11605 "Metric\n"
11606 "Metric value\n"
11607 "Route map reference\n"
11608 "Pointer to route-map entries\n")
11609
11610DEFSH (VTYSH_OSPFD, no_ospf_priority_cmd_vtysh,
11611 "no ospf priority",
11612 "Negate a command or set its defaults\n"
11613 "OSPF interface commands\n"
11614 "Router priority\n")
11615
11616DEFSH (VTYSH_BGPD, set_origin_cmd_vtysh,
11617 "set origin (egp|igp|incomplete)",
11618 "Set values in destination routing protocol\n"
11619 "BGP origin code\n"
11620 "remote EGP\n"
11621 "local IGP\n"
11622 "unknown heritage\n")
11623
11624DEFSH (VTYSH_OSPFD, no_debug_ospf_nsm_sub_cmd_vtysh,
11625 "no debug ospf nsm (status|events|timers)",
11626 "Negate a command or set its defaults\n"
11627 "Debugging functions\n"
11628 "OSPF information\n"
11629 "OSPF Interface State Machine\n"
11630 "NSM Status Information\n"
11631 "NSM Event Information\n"
11632 "NSM Timer Information\n")
11633
11634DEFSH (VTYSH_OSPFD, ospf_redistribute_source_cmd_vtysh,
11635 "redistribute (kernel|connected|static|rip|bgp)",
11636 "Redistribute information from another routing protocol\n"
11637 "Kernel routes\n"
11638 "Connected\n"
11639 "Static routes\n"
11640 "Routing Information Protocol (RIP)\n"
11641 "Border Gateway Protocol (BGP)\n")
11642
11643DEFSH (VTYSH_RIPD, debug_rip_events_cmd_vtysh,
11644 "debug rip events",
11645 "Debugging functions (see also 'undebug')\n"
11646 "RIP information\n"
11647 "RIP events\n")
11648
11649DEFSH (VTYSH_ZEBRA, no_ip_route_mask_cmd_vtysh,
11650 "no ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0)",
11651 "Negate a command or set its defaults\n"
11652 "IP information\n"
11653 "Establish static routes\n"
11654 "IP destination prefix\n"
11655 "IP destination prefix mask\n"
11656 "IP gateway address\n"
11657 "IP gateway interface name\n"
11658 "Null interface\n")
11659
11660DEFSH (VTYSH_BGPD, clear_ip_bgp_all_cmd_vtysh,
11661 "clear ip bgp *",
11662 "Reset functions\n"
11663 "IP information\n"
11664 "BGP information\n"
11665 "Clear all peers\n")
11666
11667DEFSH (VTYSH_OSPFD, show_mpls_te_link_cmd_vtysh,
11668 "show mpls-te interface [INTERFACE]",
11669 "Show running system information\n"
11670 "MPLS-TE information\n"
11671 "Interface information\n"
11672 "Interface name\n")
11673
11674DEFSH (VTYSH_OSPFD, ip_ospf_priority_addr_cmd_vtysh,
11675 "ip ospf priority <0-255> A.B.C.D",
11676 "IP Information\n"
11677 "OSPF interface commands\n"
11678 "Router priority\n"
11679 "Priority\n"
11680 "Address of interface")
11681
11682DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_metric_cmd_vtysh,
11683 "default-information originate always metric-type (1|2) metric <0-16777214>",
11684 "Control distribution of default information\n"
11685 "Distribute a default route\n"
11686 "Always advertise default route\n"
11687 "OSPF metric type for default routes\n"
11688 "Set OSPF External Type 1 metrics\n"
11689 "Set OSPF External Type 2 metrics\n"
11690 "OSPF default metric\n"
11691 "OSPF metric\n")
11692
11693DEFSH (VTYSH_BGPD, neighbor_route_map_cmd_vtysh,
11694 "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-map WORD (in|out)",
11695 "Specify neighbor router\n"
11696 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
11697 "Apply route map to neighbor\n"
11698 "Name of route map\n"
11699 "Apply map to incoming routes\n"
11700 "Apply map to outbound routes\n")
11701
11702DEFSH (VTYSH_RIPNGD, debug_ripng_events_cmd_vtysh,
11703 "debug ripng events",
11704 "Debugging functions (see also 'undebug')\n"
11705 "RIPng configuration\n"
11706 "Debug option set for ripng events\n")
11707
11708DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_name_cmd_vtysh,
11709 "clear ip prefix-list WORD",
11710 "Reset functions\n"
11711 "IP information\n"
11712 "Build a prefix list\n"
11713 "Name of a prefix list\n")
11714
11715DEFSH (VTYSH_OSPFD, no_debug_ospf_zebra_cmd_vtysh,
11716 "no debug ospf zebra",
11717 "Negate a command or set its defaults\n"
11718 "Debugging functions (see also 'undebug')\n"
11719 "OSPF information\n"
11720 "OSPF Zebra information\n")
11721
11722DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_intra_cmd_vtysh,
11723 "distance ospf inter-area <1-255> intra-area <1-255>",
11724 "Define an administrative distance\n"
11725 "OSPF Administrative distance\n"
11726 "Inter-area routes\n"
11727 "Distance for inter-area routes\n"
11728 "Intra-area routes\n"
11729 "Distance for intra-area routes\n")
11730
11731DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_in_prefix_filter_cmd_vtysh,
11732 "clear ip bgp external ipv4 (unicast|multicast) in prefix-filter",
11733 "Reset functions\n"
11734 "IP information\n"
11735 "BGP information\n"
11736 "Clear all external peers\n"
11737 "Address family\n"
11738 "Address Family modifier\n"
11739 "Address Family modifier\n"
11740 "Soft reconfig inbound update\n"
11741 "Push out prefix-list ORF and do inbound soft reconfig\n")
11742
11743DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_exact_cmd_vtysh,
11744 "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
11745 "Show running system information\n"
11746 "IPv6 information\n"
11747 "MBGP information\n"
11748 "Display routes matching the communities\n"
11749 "community number\n"
11750 "Do not send outside local AS (well-known community)\n"
11751 "Do not advertise to any peer (well-known community)\n"
11752 "Do not export to next AS (well-known community)\n"
11753 "Exact match of the communities")
11754
11755DEFSH (VTYSH_OSPF6D, no_passive_interface_cmd_vtysh,
11756 "no passive-interface IFNAME",
11757 "Negate a command or set its defaults\n"
11758 "Suppress routing updates on an interface\n"
11759 "Interface name(e.g. ep0)\n")
11760
11761DEFSH (VTYSH_ZEBRA, ip_address_label_cmd_vtysh,
11762 "ip address A.B.C.D/M label LINE",
11763 "Interface Internet Protocol config commands\n"
11764 "Set the IP address of an interface\n"
11765 "IP address (e.g. 10.0.0.1/8)\n"
11766 "Label of this address\n"
11767 "Label\n")
11768
11769DEFSH (VTYSH_BGPD, bgp_damp_unset_cmd_vtysh,
11770 "no bgp dampening",
11771 "Negate a command or set its defaults\n"
11772 "BGP Specific commands\n"
11773 "Enable route-flap dampening\n")
11774
11775DEFSH (VTYSH_OSPF6D, no_debug_ospf6_all_cmd_vtysh,
11776 "no debug ospf6 all",
11777 "Negate a command or set its defaults\n"
11778 "Debugging functions (see also 'undebug')\n"
11779 "Open Shortest Path First (OSPF) for IPv6\n"
11780 "Turn off ALL OSPFv3 debugging\n")
11781
11782DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_cmd_vtysh,
11783 "no access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D A.B.C.D",
11784 "Negate a command or set its defaults\n"
11785 "Add an access list entry\n"
11786 "IP standard access list\n"
11787 "IP standard access list (expanded range)\n"
11788 "Specify packets to reject\n"
11789 "Specify packets to forward\n"
11790 "Address to match\n"
11791 "Wildcard bits\n")
11792
11793DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh,
11794 "show ip bgp neighbors (A.B.C.D|X:X::X:X) received prefix-filter",
11795 "Show running system information\n"
11796 "IP information\n"
11797 "BGP information\n"
11798 "Detailed information on TCP and BGP neighbor connections\n"
11799 "Neighbor to display information about\n"
11800 "Neighbor to display information about\n"
11801 "Display information received from a BGP neighbor\n"
11802 "Display the prefixlist filter\n")
11803
11804DEFSH (VTYSH_OSPFD, area_default_cost_cmd_vtysh,
11805 "area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>",
11806 "OSPF area parameters\n"
11807 "OSPF area ID in IP address format\n"
11808 "OSPF area ID as a decimal value\n"
11809 "Set the summary-default cost of a NSSA or stub area\n"
11810 "Stub's advertised default summary cost\n")
11811
11812DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_in_cmd_vtysh,
11813 "clear bgp ipv6 peer-group WORD in",
11814 "Reset functions\n"
11815 "BGP information\n"
11816 "Address family\n"
11817 "Clear all members of peer-group\n"
11818 "BGP peer-group name\n"
11819 "Soft reconfig inbound update\n")
11820
11821DEFSH (VTYSH_BGPD, clear_bgp_all_in_cmd_vtysh,
11822 "clear bgp * in",
11823 "Reset functions\n"
11824 "BGP information\n"
11825 "Clear all peers\n"
11826 "Soft reconfig inbound update\n")
11827
11828DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh,
11829 "show ipv6 ospf6 area A.B.C.D topology (A.B.C.D|<0-4294967295>) (A.B.C.D|<0-4294967295>)",
11830 "Show running system information\n"
11831 "IPv6 Information\n"
11832 "Open Shortest Path First (OSPF) for IPv6\n"
11833 "Area information\n"
11834 "Area ID (as an IPv4 notation)\n"
11835 "Shortest Path First tree information\n"
11836 "Displays SPF topology table\n"
11837 "Specify Router-ID\n"
11838 "Specify Router-ID\n"
11839 "Specify Link State ID\n"
11840 "Specify Link State ID\n"
11841 )
11842
11843DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community3_cmd_vtysh,
11844 "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)",
11845 "Show running system information\n"
11846 "IPv6 information\n"
11847 "MBGP information\n"
11848 "Display routes matching the communities\n"
11849 "community number\n"
11850 "Do not send outside local AS (well-known community)\n"
11851 "Do not advertise to any peer (well-known community)\n"
11852 "Do not export to next AS (well-known community)\n"
11853 "community number\n"
11854 "Do not send outside local AS (well-known community)\n"
11855 "Do not advertise to any peer (well-known community)\n"
11856 "Do not export to next AS (well-known community)\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
11862DEFSH (VTYSH_BGPD, bgp_damp_set_cmd_vtysh,
11863 "bgp dampening <1-45> <1-20000> <1-20000> <1-255>",
11864 "BGP Specific commands\n"
11865 "Enable route-flap dampening\n"
11866 "Half-life time for the penalty\n"
11867 "Value to start reusing a route\n"
11868 "Value to start suppressing a route\n"
11869 "Maximum duration to suppress a stable route\n")
11870
11871DEFSH (VTYSH_OSPF6D, ipv6_ospf6_instance_cmd_vtysh,
11872 "ipv6 ospf6 instance-id INSTANCE",
11873 "IPv6 Information\n"
11874 "Open Shortest Path First (OSPF) for IPv6\n"
11875 "Instance ID\n"
11876 "<0-255> Instance ID\n"
11877 )
11878
11879DEFSH (VTYSH_BGPD, no_dump_bgp_routes_cmd_vtysh,
11880 "no dump bgp routes-mrt [PATH] [INTERVAL]",
11881 "Negate a command or set its defaults\n"
11882 "Dump packet\n"
11883 "BGP packet dump\n"
11884 "Dump whole BGP routing table\n")
11885
11886DEFSH (VTYSH_RIPNGD, no_ripng_route_cmd_vtysh,
11887 "no route IPV6ADDR",
11888 "Negate a command or set its defaults\n"
11889 "Static route setup\n"
11890 "Delete static RIPng route announcement\n")
11891
11892DEFSH (VTYSH_BGPD, no_aggregate_address_mask_as_set_cmd_vtysh,
11893 "no aggregate-address A.B.C.D A.B.C.D as-set",
11894 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +000011895 "Configure BGP aggregate entries\n"
11896 "Aggregate address\n"
11897 "Aggregate mask\n"
11898 "Generate AS set path information\n")
11899
paul569c0f02003-03-02 21:19:26 +000011900DEFSH (VTYSH_BGPD, no_bgp_confederation_peers_cmd_vtysh,
11901 "no bgp confederation peers .<1-65535>",
paul718e3742002-12-13 20:15:29 +000011902 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000011903 "BGP specific commands\n"
11904 "AS confederation parameters\n"
11905 "Peer ASs in BGP confederation\n"
11906 "AS number\n")
paul718e3742002-12-13 20:15:29 +000011907
11908DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community4_cmd_vtysh,
11909 "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)",
11910 "Show running system information\n"
11911 "IP information\n"
11912 "BGP information\n"
11913 "Address family\n"
11914 "Address Family modifier\n"
11915 "Address Family modifier\n"
11916 "Display routes matching the communities\n"
11917 "community number\n"
11918 "Do not send outside local AS (well-known community)\n"
11919 "Do not advertise to any peer (well-known community)\n"
11920 "Do not export to next AS (well-known community)\n"
11921 "community number\n"
11922 "Do not send outside local AS (well-known community)\n"
11923 "Do not advertise to any peer (well-known community)\n"
11924 "Do not export to next AS (well-known community)\n"
11925 "community number\n"
11926 "Do not send outside local AS (well-known community)\n"
11927 "Do not advertise to any peer (well-known community)\n"
11928 "Do not export to next AS (well-known community)\n"
11929 "community number\n"
11930 "Do not send outside local AS (well-known community)\n"
11931 "Do not advertise to any peer (well-known community)\n"
11932 "Do not export to next AS (well-known community)\n")
11933
paul718e3742002-12-13 20:15:29 +000011934DEFSH (VTYSH_BGPD, no_set_weight_val_cmd_vtysh,
11935 "no set weight <0-4294967295>",
11936 "Negate a command or set its defaults\n"
11937 "Set values in destination routing protocol\n"
11938 "BGP weight for routing table\n"
11939 "Weight value\n")
11940
paul569c0f02003-03-02 21:19:26 +000011941DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_list_exact_cmd_vtysh,
11942 "show ip bgp ipv4 (unicast|multicast) community-list WORD exact-match",
11943 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +000011944 "IP information\n"
11945 "BGP information\n"
paul718e3742002-12-13 20:15:29 +000011946 "Address family\n"
11947 "Address Family modifier\n"
11948 "Address Family modifier\n"
paul569c0f02003-03-02 21:19:26 +000011949 "Display routes matching the community-list\n"
11950 "community-list name\n"
11951 "Exact match of the communities\n")
paul718e3742002-12-13 20:15:29 +000011952
paul569c0f02003-03-02 21:19:26 +000011953DEFSH (VTYSH_BGPD, bgp_scan_time_cmd_vtysh,
11954 "bgp scan-time <5-60>",
paul718e3742002-12-13 20:15:29 +000011955 "BGP specific commands\n"
11956 "Configure background scanner interval\n"
11957 "Scanner interval (seconds)\n")
11958
paul718e3742002-12-13 20:15:29 +000011959DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community3_exact_cmd_vtysh,
11960 "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",
11961 "Show running system information\n"
11962 "IP information\n"
11963 "BGP information\n"
11964 "Address family\n"
11965 "Address Family modifier\n"
11966 "Address Family modifier\n"
11967 "Display routes matching the communities\n"
11968 "community number\n"
11969 "Do not send outside local AS (well-known community)\n"
11970 "Do not advertise to any peer (well-known community)\n"
11971 "Do not export to next AS (well-known community)\n"
11972 "community number\n"
11973 "Do not send outside local AS (well-known community)\n"
11974 "Do not advertise to any peer (well-known community)\n"
11975 "Do not export to next AS (well-known community)\n"
11976 "community number\n"
11977 "Do not send outside local AS (well-known community)\n"
11978 "Do not advertise to any peer (well-known community)\n"
11979 "Do not export to next AS (well-known community)\n"
11980 "Exact match of the communities")
11981
paul569c0f02003-03-02 21:19:26 +000011982DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_in_cmd_vtysh,
11983 "clear ip bgp A.B.C.D vpnv4 unicast in",
11984 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +000011985 "IP information\n"
11986 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +000011987 "BGP neighbor address to clear\n"
11988 "Address family\n"
11989 "Address Family Modifier\n"
11990 "Soft reconfig inbound update\n")
11991
11992DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_key_addr_cmd_vtysh,
11993 "no ip ospf authentication-key A.B.C.D",
11994 "Negate a command or set its defaults\n"
11995 "IP Information\n"
11996 "OSPF interface commands\n"
11997 "Authentication password (key)\n"
11998 "Address of interface")
11999
12000DEFSH (VTYSH_BGPD, ipv6_aggregate_address_summary_only_cmd_vtysh,
12001 "aggregate-address X:X::X:X/M summary-only",
12002 "Configure BGP aggregate entries\n"
12003 "Aggregate prefix\n"
12004 "Filter more specific routes from updates\n")
12005
12006DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_routes_cmd_vtysh,
12007 "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) routes",
12008 "Show running system information\n"
12009 "IPv6 information\n"
12010 "MBGP information\n"
paul718e3742002-12-13 20:15:29 +000012011 "Detailed information on TCP and BGP neighbor connections\n"
12012 "Neighbor to display information about\n"
12013 "Neighbor to display information about\n"
paul569c0f02003-03-02 21:19:26 +000012014 "Display routes learned from neighbor\n")
12015
12016DEFSH (VTYSH_RIPD, accept_lifetime_infinite_month_day_cmd_vtysh,
12017 "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> infinite",
12018 "Set accept lifetime of the key\n"
12019 "Time to start\n"
12020 "Month of the year to start\n"
12021 "Day of th month to start\n"
12022 "Year to start\n"
12023 "Never expires")
12024
12025DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_seq_le_ge_cmd_vtysh,
12026 "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
12027 "IPv6 information\n"
12028 "Build a prefix list\n"
12029 "Name of a prefix list\n"
12030 "sequence number of an entry\n"
12031 "Sequence number\n"
12032 "Specify packets to reject\n"
12033 "Specify packets to forward\n"
12034 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
12035 "Maximum prefix length to be matched\n"
12036 "Maximum prefix length\n"
12037 "Minimum prefix length to be matched\n"
12038 "Minimum prefix length\n")
12039
12040DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_out_cmd_vtysh,
12041 "clear bgp ipv6 external soft out",
12042 "Reset functions\n"
12043 "BGP information\n"
12044 "Address family\n"
12045 "Clear all external peers\n"
12046 "Soft reconfig\n"
12047 "Soft reconfig outbound update\n")
12048
12049DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_in_prefix_filter_cmd_vtysh,
12050 "clear ip bgp <1-65535> ipv4 (unicast|multicast) in prefix-filter",
12051 "Reset functions\n"
12052 "IP information\n"
12053 "BGP information\n"
12054 "Clear peers with the AS number\n"
12055 "Address family\n"
12056 "Address Family modifier\n"
12057 "Address Family modifier\n"
12058 "Soft reconfig inbound update\n"
12059 "Push out prefix-list ORF and do inbound soft reconfig\n")
12060
12061DEFSH (VTYSH_BGPD, neighbor_attr_unchanged5_cmd_vtysh,
12062 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path next-hop med",
12063 "Specify neighbor router\n"
12064 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12065 "BGP attribute is propagated unchanged to this neighbor\n"
12066 "As-path attribute\n"
12067 "Nexthop attribute\n"
12068 "Med attribute\n")
12069
12070DEFSH (VTYSH_BGPD, show_ip_bgp_instance_neighbors_cmd_vtysh,
12071 "show ip bgp view WORD neighbors",
12072 "Show running system information\n"
12073 "IP information\n"
12074 "BGP information\n"
12075 "BGP view\n"
12076 "View name\n"
12077 "Detailed information on TCP and BGP neighbor connections\n")
12078
12079DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_passive_cmd_vtysh,
12080 "no ipv6 ospf6 passive",
12081 "Negate a command or set its defaults\n"
12082 "IPv6 Information\n"
12083 "Open Shortest Path First (OSPF) for IPv6\n"
12084 "passive interface: No Adjacency will be formed on this I/F\n"
12085 )
12086
12087DEFSH (VTYSH_OSPF6D, ipv6_ospf6_passive_cmd_vtysh,
12088 "ipv6 ospf6 passive",
12089 "IPv6 Information\n"
12090 "Open Shortest Path First (OSPF) for IPv6\n"
12091 "passive interface: No Adjacency will be formed on this I/F\n"
12092 )
12093
12094DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_key_cmd_vtysh,
12095 "no ip ospf authentication-key",
12096 "Negate a command or set its defaults\n"
12097 "IP Information\n"
12098 "OSPF interface commands\n"
12099 "Authentication password (key)\n")
12100
12101DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_metric_cmd_vtysh,
12102 "redistribute connected metric <0-16>",
12103 "Redistribute information from another routing protocol\n"
12104 "Connected\n"
12105 "Metric\n"
12106 "Metric value\n")
12107
12108DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_spf_node_cmd_vtysh,
12109 "show ipv6 ospf6 area A.B.C.D spf node",
12110 "Show running system information\n"
12111 "IPv6 Information\n"
12112 "Open Shortest Path First (OSPF) for IPv6\n"
12113 "Area information\n"
12114 "Area ID (as an IPv4 notation)\n"
12115 "Shortest Path First caculation\n"
12116 "vertex infomation\n"
12117 )
12118
12119DEFSH (VTYSH_RIPD|VTYSH_BGPD, ipv6_prefix_list_le_ge_cmd_vtysh,
12120 "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128> ge <0-128>",
12121 "IPv6 information\n"
12122 "Build a prefix list\n"
12123 "Name of a prefix list\n"
12124 "Specify packets to reject\n"
12125 "Specify packets to forward\n"
12126 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
12127 "Maximum prefix length to be matched\n"
12128 "Maximum prefix length\n"
12129 "Minimum prefix length to be matched\n"
12130 "Minimum prefix length\n")
12131
12132DEFSH (VTYSH_BGPD, bgp_cluster_id_cmd_vtysh,
12133 "bgp cluster-id A.B.C.D",
12134 "BGP information\n"
12135 "Configure Route-Reflector Cluster-id\n"
12136 "Route-Reflector Cluster-id in IP address format\n")
12137
12138DEFSH (VTYSH_OSPF6D, ospf6_redistribute_cmd_vtysh,
12139 "redistribute (static|kernel|connected|ripng|bgp)",
12140 "Redistribute\n"
12141 "Static route\n"
12142 "Kernel route\n"
12143 "Connected route\n"
12144 "RIPng route\n"
12145 "BGP route\n"
12146 )
12147
12148DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_out_cmd_vtysh,
12149 "clear ip bgp * ipv4 (unicast|multicast) soft out",
12150 "Reset functions\n"
12151 "IP information\n"
12152 "BGP information\n"
12153 "Clear all peers\n"
12154 "Address family\n"
12155 "Address Family modifier\n"
12156 "Address Family modifier\n"
12157 "Soft reconfig\n"
12158 "Soft reconfig outbound update\n")
12159
12160DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_any_cmd_vtysh,
12161 "no access-list (<1-99>|<1300-1999>) (deny|permit) any",
12162 "Negate a command or set its defaults\n"
12163 "Add an access list entry\n"
12164 "IP standard access list\n"
12165 "IP standard access list (expanded range)\n"
12166 "Specify packets to reject\n"
12167 "Specify packets to forward\n"
12168 "Any source host\n")
12169
12170DEFSH (VTYSH_BGPD, set_ecommunity_soo_cmd_vtysh,
12171 "set extcommunity soo .ASN:nn_or_IP-address:nn",
12172 "Set values in destination routing protocol\n"
12173 "BGP extended community attribute\n"
12174 "Site-of-Origin extended community\n"
12175 "VPN extended community\n")
12176
12177DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_metric_cmd_vtysh,
12178 "redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295>",
12179 "Redistribute information from another routing protocol\n"
12180 "Connected\n"
12181 "Kernel routes\n"
12182 "Open Shurtest Path First (OSPF)\n"
12183 "Routing Information Protocol (RIP)\n"
12184 "Static routes\n"
12185 "Metric for redistributed routes\n"
12186 "Default metric\n")
12187
12188DEFSH (VTYSH_BGPD, clear_bgp_instance_all_cmd_vtysh,
12189 "clear bgp view WORD *",
12190 "Reset functions\n"
12191 "BGP information\n"
12192 "BGP view\n"
12193 "view name\n"
12194 "Clear all peers\n")
12195
12196DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_longer_cmd_vtysh,
12197 "show bgp ipv6 X:X::X:X/M longer-prefixes",
12198 "Show running system information\n"
12199 "BGP information\n"
12200 "Address family\n"
12201 "IPv6 prefix <network>/<length>\n"
12202 "Display route and more specific routes\n")
12203
12204DEFSH (VTYSH_BGPD, clear_bgp_as_soft_in_cmd_vtysh,
12205 "clear bgp <1-65535> soft in",
12206 "Reset functions\n"
12207 "BGP information\n"
12208 "Clear peers with the AS number\n"
12209 "Soft reconfig\n"
12210 "Soft reconfig inbound update\n")
12211
12212DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_any_cmd_vtysh,
12213 "ipv6 access-list WORD (deny|permit) any",
12214 "IPv6 information\n"
12215 "Add an access list entry\n"
12216 "IPv6 zebra access-list\n"
12217 "Specify packets to reject\n"
12218 "Specify packets to forward\n"
12219 "Any prefixi to match\n")
12220
12221DEFSH (VTYSH_OSPFD, no_ospf_retransmit_interval_cmd_vtysh,
12222 "no ospf retransmit-interval",
12223 "Negate a command or set its defaults\n"
12224 "OSPF interface commands\n"
12225 "Time between retransmitting lost link state advertisements\n")
12226
12227DEFSH (VTYSH_BGPD, no_neighbor_timers_cmd_vtysh,
12228 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "timers",
12229 "Negate a command or set its defaults\n"
12230 "Specify neighbor router\n"
12231 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12232 "BGP per neighbor timers\n")
12233
12234DEFSH (VTYSH_BGPD, bgp_cluster_id32_cmd_vtysh,
12235 "bgp cluster-id <1-4294967295>",
12236 "BGP information\n"
12237 "Configure Route-Reflector Cluster-id\n"
12238 "Route-Reflector Cluster-id as 32 bit quantity\n")
12239
12240DEFSH (VTYSH_BGPD, old_no_ipv6_aggregate_address_summary_only_cmd_vtysh,
12241 "no ipv6 bgp aggregate-address X:X::X:X/M summary-only",
12242 "Negate a command or set its defaults\n"
12243 "IPv6 information\n"
12244 "BGP information\n"
12245 "Configure BGP aggregate entries\n"
12246 "Aggregate prefix\n"
12247 "Filter more specific routes from updates\n")
12248
12249DEFSH (VTYSH_BGPD, set_ipv6_nexthop_global_cmd_vtysh,
12250 "set ipv6 next-hop global X:X::X:X",
12251 "Set values in destination routing protocol\n"
12252 "IPv6 information\n"
12253 "IPv6 next-hop address\n"
12254 "IPv6 global address\n"
12255 "IPv6 address of next hop\n")
12256
12257DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_local_val_cmd_vtysh,
12258 "no set ipv6 next-hop local X:X::X:X",
12259 "Negate a command or set its defaults\n"
12260 "Set values in destination routing protocol\n"
12261 "IPv6 information\n"
12262 "IPv6 next-hop address\n"
12263 "IPv6 local address\n"
12264 "IPv6 address of next hop\n")
12265
12266DEFSH (VTYSH_ZEBRA, ip_address_secondary_cmd_vtysh,
12267 "ip address A.B.C.D/M secondary",
12268 "Interface Internet Protocol config commands\n"
12269 "Set the IP address of an interface\n"
12270 "IP address (e.g. 10.0.0.1/8)\n"
12271 "Secondary IP address\n")
12272
12273DEFSH (VTYSH_OSPFD, no_ip_ospf_message_digest_key_addr_cmd_vtysh,
12274 "no ip ospf message-digest-key <1-255> A.B.C.D",
12275 "Negate a command or set its defaults\n"
12276 "IP Information\n"
12277 "OSPF interface commands\n"
12278 "Message digest authentication password (key)\n"
12279 "Key ID\n"
12280 "Address of interface")
paul718e3742002-12-13 20:15:29 +000012281
12282DEFSH (VTYSH_BGPD, aggregate_address_mask_summary_as_set_cmd_vtysh,
12283 "aggregate-address A.B.C.D A.B.C.D summary-only as-set",
12284 "Configure BGP aggregate entries\n"
12285 "Aggregate address\n"
12286 "Aggregate mask\n"
12287 "Filter more specific routes from updates\n"
12288 "Generate AS set path information\n")
12289
paul569c0f02003-03-02 21:19:26 +000012290DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_cmd_vtysh,
12291 "no redistribute (connected|kernel|ospf6|ripng|static)",
paul718e3742002-12-13 20:15:29 +000012292 "Negate a command or set its defaults\n"
12293 "Redistribute information from another routing protocol\n"
paul569c0f02003-03-02 21:19:26 +000012294 "Connected\n"
paul718e3742002-12-13 20:15:29 +000012295 "Kernel routes\n"
paul569c0f02003-03-02 21:19:26 +000012296 "Open Shurtest Path First (OSPFv3)\n"
12297 "Routing Information Protocol (RIPng)\n"
12298 "Static routes\n")
paul718e3742002-12-13 20:15:29 +000012299
paul569c0f02003-03-02 21:19:26 +000012300DEFSH (VTYSH_ZEBRA, no_ip_route_cmd_vtysh,
12301 "no ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0)",
paul718e3742002-12-13 20:15:29 +000012302 "Negate a command or set its defaults\n"
paul718e3742002-12-13 20:15:29 +000012303 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000012304 "Establish static routes\n"
12305 "IP destination prefix (e.g. 10.0.0.0/8)\n"
12306 "IP gateway address\n"
12307 "IP gateway interface name\n"
12308 "Null interface\n")
paul718e3742002-12-13 20:15:29 +000012309
paul569c0f02003-03-02 21:19:26 +000012310DEFSH (VTYSH_BGPD, neighbor_attr_unchanged2_cmd_vtysh,
12311 "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path (next-hop|med)",
paul718e3742002-12-13 20:15:29 +000012312 "Specify neighbor router\n"
12313 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12314 "BGP attribute is propagated unchanged to this neighbor\n"
paul569c0f02003-03-02 21:19:26 +000012315 "As-path attribute\n"
paul718e3742002-12-13 20:15:29 +000012316 "Nexthop attribute\n"
paul569c0f02003-03-02 21:19:26 +000012317 "Med attribute\n")
paul718e3742002-12-13 20:15:29 +000012318
paul569c0f02003-03-02 21:19:26 +000012319DEFSH (VTYSH_BGPD, no_ipv6_aggregate_address_summary_only_cmd_vtysh,
12320 "no aggregate-address X:X::X:X/M summary-only",
paul718e3742002-12-13 20:15:29 +000012321 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000012322 "Configure BGP aggregate entries\n"
12323 "Aggregate prefix\n"
12324 "Filter more specific routes from updates\n")
paul718e3742002-12-13 20:15:29 +000012325
12326DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_longer_cmd_vtysh,
12327 "show ip bgp ipv4 (unicast|multicast) A.B.C.D/M longer-prefixes",
12328 "Show running system information\n"
12329 "IP information\n"
12330 "BGP information\n"
12331 "Address family\n"
12332 "Address Family modifier\n"
12333 "Address Family modifier\n"
12334 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
12335 "Display route and more specific routes\n")
12336
paul569c0f02003-03-02 21:19:26 +000012337DEFSH (VTYSH_BGPD, no_bgp_deterministic_med_cmd_vtysh,
12338 "no bgp deterministic-med",
paul718e3742002-12-13 20:15:29 +000012339 "Negate a command or set its defaults\n"
12340 "BGP specific commands\n"
paul569c0f02003-03-02 21:19:26 +000012341 "Pick the best-MED path among paths advertised from the neighboring AS\n")
paul718e3742002-12-13 20:15:29 +000012342
paul569c0f02003-03-02 21:19:26 +000012343DEFSH (VTYSH_OSPFD, area_vlink_cmd_vtysh,
12344 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D",
12345 "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")
paul718e3742002-12-13 20:15:29 +000012346
paul569c0f02003-03-02 21:19:26 +000012347DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community2_cmd_vtysh,
12348 "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)",
paul718e3742002-12-13 20:15:29 +000012349 "Show running system information\n"
12350 "IP information\n"
12351 "BGP information\n"
12352 "Address family\n"
12353 "Address Family modifier\n"
12354 "Address Family modifier\n"
paul718e3742002-12-13 20:15:29 +000012355 "Display routes matching the communities\n"
12356 "community number\n"
12357 "Do not send outside local AS (well-known community)\n"
12358 "Do not advertise to any peer (well-known community)\n"
12359 "Do not export to next AS (well-known community)\n"
12360 "community number\n"
12361 "Do not send outside local AS (well-known community)\n"
12362 "Do not advertise to any peer (well-known community)\n"
paul569c0f02003-03-02 21:19:26 +000012363 "Do not export to next AS (well-known community)\n")
paul718e3742002-12-13 20:15:29 +000012364
paul569c0f02003-03-02 21:19:26 +000012365DEFSH (VTYSH_OSPFD, debug_ospf_packet_send_recv_cmd_vtysh,
12366 "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)",
paul718e3742002-12-13 20:15:29 +000012367 "Debugging functions\n"
12368 "OSPF information\n"
12369 "OSPF packets\n"
12370 "OSPF Hello\n"
12371 "OSPF Database Description\n"
12372 "OSPF Link State Request\n"
12373 "OSPF Link State Update\n"
12374 "OSPF Link State Acknowledgment\n"
12375 "OSPF all packets\n"
12376 "Packet sent\n"
12377 "Packet received\n"
paul569c0f02003-03-02 21:19:26 +000012378 "Detail information\n")
paul718e3742002-12-13 20:15:29 +000012379
paul569c0f02003-03-02 21:19:26 +000012380DEFSH (VTYSH_BGPD, show_ipv6_bgp_community2_exact_cmd_vtysh,
12381 "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match",
12382 "Show running system information\n"
12383 "IPv6 information\n"
12384 "BGP information\n"
12385 "Display routes matching the communities\n"
12386 "community number\n"
12387 "Do not send outside local AS (well-known community)\n"
12388 "Do not advertise to any peer (well-known community)\n"
12389 "Do not export to next AS (well-known community)\n"
12390 "community number\n"
12391 "Do not send outside local AS (well-known community)\n"
12392 "Do not advertise to any peer (well-known community)\n"
12393 "Do not export to next AS (well-known community)\n"
12394 "Exact match of the communities")
paul718e3742002-12-13 20:15:29 +000012395
paul569c0f02003-03-02 21:19:26 +000012396DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, ipv6_access_list_remark_cmd_vtysh,
12397 "ipv6 access-list WORD remark .LINE",
12398 "IPv6 information\n"
12399 "Add an access list entry\n"
12400 "IPv6 zebra access-list\n"
12401 "Access list entry comment\n"
12402 "Comment up to 100 characters\n")
12403
12404DEFSH (VTYSH_OSPFD, no_ip_ospf_cost_addr_cmd_vtysh,
12405 "no ip ospf cost A.B.C.D",
paul718e3742002-12-13 20:15:29 +000012406 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000012407 "IP Information\n"
12408 "OSPF interface commands\n"
12409 "Interface cost\n"
12410 "Address of interface")
paul718e3742002-12-13 20:15:29 +000012411
paul569c0f02003-03-02 21:19:26 +000012412DEFSH (VTYSH_OSPFD, area_stub_cmd_vtysh,
12413 "area (A.B.C.D|<0-4294967295>) stub",
12414 "OSPF area parameters\n"
12415 "OSPF area ID in IP address format\n"
12416 "OSPF area ID as a decimal value\n"
12417 "Configure OSPF area as stub\n")
12418
12419DEFSH (VTYSH_ZEBRA, show_table_cmd_vtysh,
12420 "show table",
12421 "Show running system information\n"
12422 "default routing table to use for all clients\n")
12423
12424DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_metric_rmap_cmd_vtysh,
12425 "no redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295> route-map WORD",
paul718e3742002-12-13 20:15:29 +000012426 "Negate a command or set its defaults\n"
12427 "Redistribute information from another routing protocol\n"
12428 "Connected\n"
12429 "Kernel routes\n"
12430 "Open Shurtest Path First (OSPF)\n"
12431 "Routing Information Protocol (RIP)\n"
12432 "Static routes\n"
paul718e3742002-12-13 20:15:29 +000012433 "Metric for redistributed routes\n"
paul569c0f02003-03-02 21:19:26 +000012434 "Default metric\n"
12435 "Route map reference\n"
12436 "Pointer to route-map entries\n")
paul718e3742002-12-13 20:15:29 +000012437
paul569c0f02003-03-02 21:19:26 +000012438DEFSH (VTYSH_ZEBRA, show_ip_forwarding_cmd_vtysh,
12439 "show ip forwarding",
paul718e3742002-12-13 20:15:29 +000012440 "Show running system information\n"
12441 "IP information\n"
paul569c0f02003-03-02 21:19:26 +000012442 "IP forwarding status\n")
paul718e3742002-12-13 20:15:29 +000012443
paul569c0f02003-03-02 21:19:26 +000012444DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_routemap_cmd_vtysh,
12445 "redistribute static route-map WORD",
12446 "Redistribute information from another routing protocol\n"
12447 "Static routes\n"
12448 "Route map reference\n"
12449 "Pointer to route-map entries\n")
paul718e3742002-12-13 20:15:29 +000012450
paul569c0f02003-03-02 21:19:26 +000012451DEFSH (VTYSH_BGPD, show_bgp_community_exact_cmd_vtysh,
12452 "show bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match",
paul718e3742002-12-13 20:15:29 +000012453 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +000012454 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +000012455 "Display routes matching the communities\n"
12456 "community number\n"
12457 "Do not send outside local AS (well-known community)\n"
12458 "Do not advertise to any peer (well-known community)\n"
12459 "Do not export to next AS (well-known community)\n"
12460 "Exact match of the communities")
paul718e3742002-12-13 20:15:29 +000012461
paul569c0f02003-03-02 21:19:26 +000012462DEFSH (VTYSH_OSPFD, no_debug_ospf_event_cmd_vtysh,
12463 "no debug ospf event",
paul718e3742002-12-13 20:15:29 +000012464 "Negate a command or set its defaults\n"
12465 "Debugging functions (see also 'undebug')\n"
12466 "OSPF information\n"
paul569c0f02003-03-02 21:19:26 +000012467 "OSPF event information\n")
paul718e3742002-12-13 20:15:29 +000012468
paul569c0f02003-03-02 21:19:26 +000012469DEFSH (VTYSH_ZEBRA, show_ip_route_protocol_cmd_vtysh,
12470 "show ip route (bgp|connected|kernel|ospf|rip|static)",
paul718e3742002-12-13 20:15:29 +000012471 "Show running system information\n"
12472 "IP information\n"
12473 "IP routing table\n"
12474 "Border Gateway Protocol (BGP)\n"
12475 "Connected\n"
12476 "Kernel\n"
paul569c0f02003-03-02 21:19:26 +000012477 "Open Shortest Path First (OSPF)\n"
12478 "Routing Information Protocol (RIP)\n"
paul718e3742002-12-13 20:15:29 +000012479 "Static routes\n")
12480
paul569c0f02003-03-02 21:19:26 +000012481DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_standard_cmd_vtysh,
12482 "ip extcommunity-list standard WORD (deny|permit) .AA:NN",
12483 "IP information\n"
12484 "Add a extended community list entry\n"
12485 "Specify standard extcommunity-list\n"
12486 "Extended Community list name\n"
12487 "Specify community to reject\n"
12488 "Specify community to accept\n"
12489 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
paul718e3742002-12-13 20:15:29 +000012490
paul569c0f02003-03-02 21:19:26 +000012491DEFSH (VTYSH_BGPD, no_bgp_cluster_id_cmd_vtysh,
12492 "no bgp cluster-id",
12493 "Negate a command or set its defaults\n"
12494 "BGP information\n"
12495 "Configure Route-Reflector Cluster-id\n")
12496
12497DEFSH (VTYSH_RIPD, no_ip_rip_authentication_mode_type_cmd_vtysh,
12498 "no ip rip authentication mode (md5|text)",
12499 "Negate a command or set its defaults\n"
12500 "IP information\n"
12501 "Routing Information Protocol\n"
12502 "Authentication control\n"
12503 "Authentication mode\n"
12504 "Keyed message digest\n"
12505 "Clear text authentication\n")
12506
12507DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_cmd_vtysh,
12508 "default-information originate metric <0-16777214>",
12509 "Control distribution of default information\n"
12510 "Distribute a default route\n"
12511 "OSPF default metric\n"
12512 "OSPF metric\n")
12513
12514DEFSH (VTYSH_RIPNGD, show_debugging_ripng_cmd_vtysh,
12515 "show debugging ripng",
paul718e3742002-12-13 20:15:29 +000012516 "Show running system information\n"
paul569c0f02003-03-02 21:19:26 +000012517 "RIPng configuration\n"
12518 "Debugging information\n")
12519
12520DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_in_cmd_vtysh,
12521 "clear bgp peer-group WORD soft in",
12522 "Reset functions\n"
12523 "BGP information\n"
12524 "Clear all members of peer-group\n"
12525 "BGP peer-group name\n"
12526 "Soft reconfig\n"
12527 "Soft reconfig inbound update\n")
12528
12529DEFSH (VTYSH_BGPD, neighbor_ebgp_multihop_cmd_vtysh,
12530 "neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop",
12531 "Specify neighbor router\n"
12532 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12533 "Allow EBGP neighbors not on directly connected networks\n")
12534
12535DEFSH (VTYSH_BGPD, match_aspath_cmd_vtysh,
12536 "match as-path WORD",
12537 "Match values from routing table\n"
12538 "Match BGP AS path list\n"
12539 "AS path access-list name\n")
12540
12541DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_routemap_cmd_vtysh,
12542 "default-information originate metric <0-16777214> route-map WORD",
12543 "Control distribution of default information\n"
12544 "Distribute a default route\n"
12545 "OSPF default metric\n"
12546 "OSPF metric\n"
12547 "Route map reference\n"
12548 "Pointer to route-map entries\n")
12549
12550DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_in_cmd_vtysh,
12551 "clear ip bgp * soft in",
12552 "Reset functions\n"
paul718e3742002-12-13 20:15:29 +000012553 "IP information\n"
12554 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +000012555 "Clear all peers\n"
12556 "Soft reconfig\n"
12557 "Soft reconfig inbound update\n")
paul718e3742002-12-13 20:15:29 +000012558
paul569c0f02003-03-02 21:19:26 +000012559DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_in_cmd_vtysh,
12560 "clear bgp ipv6 * in",
12561 "Reset functions\n"
12562 "BGP information\n"
12563 "Address family\n"
12564 "Clear all peers\n"
12565 "Soft reconfig inbound update\n")
12566
12567DEFSH (VTYSH_ZEBRA, show_ip_route_addr_cmd_vtysh,
12568 "show ip route A.B.C.D",
12569 "Show running system information\n"
12570 "IP information\n"
12571 "IP routing table\n"
12572 "Network in the IP routing table to display\n")
12573
12574DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_val_cmd_vtysh,
12575 "no redistribute bgp metric <0-16>",
paul718e3742002-12-13 20:15:29 +000012576 "Negate a command or set its defaults\n"
paul569c0f02003-03-02 21:19:26 +000012577 "Redistribute information from another routing protocol\n"
12578 "Border Gateway Protocol (BGP)\n"
12579 "Metric\n"
12580 "Metric value\n")
12581
12582DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_cmd_vtysh,
12583 "no ip prefix-list WORD seq <1-4294967295> (deny|permit) (A.B.C.D/M|any)",
12584 "Negate a command or set its defaults\n"
12585 "IP information\n"
12586 "Build a prefix list\n"
12587 "Name of a prefix list\n"
12588 "sequence number of an entry\n"
12589 "Sequence number\n"
12590 "Specify packets to reject\n"
12591 "Specify packets to forward\n"
12592 "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n"
12593 "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n")
12594
12595DEFSH (VTYSH_RIPD, no_rip_redistribute_type_metric_cmd_vtysh,
12596 "no redistribute (kernel|connected|static|ospf|bgp) metric <0-16>",
12597 "Negate a command or set its defaults\n"
12598 "Redistribute information from another routing protocol\n"
12599 "Kernel routes\n"
12600 "Connected\n"
12601 "Static routes\n"
12602 "Open Shortest Path First (OSPF)\n"
12603 "Border Gateway Protocol (BGP)\n"
12604 "Metric\n"
12605 "Metric value\n")
12606
12607DEFSH (VTYSH_ZEBRA, show_ipv6_route_prefix_longer_cmd_vtysh,
12608 "show ipv6 route X:X::X:X/M longer-prefixes",
12609 "Show running system information\n"
12610 "IP information\n"
12611 "IPv6 routing table\n"
12612 "IPv6 prefix\n"
12613 "Show route matching the specified Network/Mask pair only\n")
12614
12615DEFSH (VTYSH_BGPD, neighbor_weight_cmd_vtysh,
12616 "neighbor (A.B.C.D|X:X::X:X|WORD) " "weight <0-65535>",
12617 "Specify neighbor router\n"
12618 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12619 "Set default weight for routes from this neighbor\n"
12620 "default weight\n")
12621
12622DEFSH (VTYSH_BGPD, clear_bgp_peer_group_in_prefix_filter_cmd_vtysh,
12623 "clear bgp peer-group WORD in prefix-filter",
12624 "Reset functions\n"
12625 "BGP information\n"
12626 "Clear all members of peer-group\n"
12627 "BGP peer-group name\n"
12628 "Soft reconfig inbound update\n"
12629 "Push out prefix-list ORF and do inbound soft reconfig\n")
12630
12631DEFSH (VTYSH_BGPD, bgp_distance_source_cmd_vtysh,
12632 "distance <1-255> A.B.C.D/M",
12633 "Define an administrative distance\n"
12634 "Administrative distance\n"
12635 "IP source prefix\n")
12636
12637DEFSH (VTYSH_BGPD, no_neighbor_local_as_val_cmd_vtysh,
12638 "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535>",
12639 "Negate a command or set its defaults\n"
12640 "Specify neighbor router\n"
12641 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12642 "Specify a local-as number\n"
12643 "AS number used as local AS\n")
12644
12645DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_standard_cmd_vtysh,
12646 "no ip extcommunity-list standard WORD (deny|permit) .AA:NN",
12647 "Negate a command or set its defaults\n"
12648 "IP information\n"
12649 "Add a extended community list entry\n"
12650 "Specify standard extcommunity-list\n"
12651 "Extended Community list name\n"
12652 "Specify community to reject\n"
12653 "Specify community to accept\n"
12654 "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n")
12655
12656DEFSH (VTYSH_OSPFD, timers_spf_cmd_vtysh,
12657 "timers spf <0-4294967295> <0-4294967295>",
12658 "Adjust routing timers\n"
12659 "OSPF SPF timers\n"
12660 "Delay between receiving a change to SPF calculation\n"
12661 "Hold time between consecutive SPF calculations\n")
12662
12663DEFSH (VTYSH_OSPFD, ip_ospf_message_digest_key_addr_cmd_vtysh,
12664 "ip ospf message-digest-key <1-255> md5 KEY A.B.C.D",
paul718e3742002-12-13 20:15:29 +000012665 "IP Information\n"
12666 "OSPF interface commands\n"
paul569c0f02003-03-02 21:19:26 +000012667 "Message digest authentication password (key)\n"
12668 "Key ID\n"
12669 "Use MD5 algorithm\n"
12670 "The OSPF password (key)"
paul718e3742002-12-13 20:15:29 +000012671 "Address of interface")
12672
paul569c0f02003-03-02 21:19:26 +000012673DEFSH (VTYSH_RIPNGD, no_ripng_passive_interface_cmd_vtysh,
12674 "no passive-interface IFNAME",
12675 "Negate a command or set its defaults\n"
12676 "Suppress routing updates on an interface\n"
12677 "Interface name\n")
12678
12679DEFSH (VTYSH_BGPD, no_bgp_timers_cmd_vtysh,
12680 "no timers bgp",
12681 "Negate a command or set its defaults\n"
12682 "Adjust routing timers\n"
12683 "BGP timers\n")
12684
12685DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_received_routes_cmd_vtysh,
12686 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) received-routes",
paul718e3742002-12-13 20:15:29 +000012687 "Show running system information\n"
12688 "BGP information\n"
12689 "Address family\n"
12690 "Detailed information on TCP and BGP neighbor connections\n"
12691 "Neighbor to display information about\n"
paul569c0f02003-03-02 21:19:26 +000012692 "Neighbor to display information about\n"
12693 "Display the received routes from neighbor\n")
paul718e3742002-12-13 20:15:29 +000012694
paul569c0f02003-03-02 21:19:26 +000012695DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_metric_rmap_cmd_vtysh,
12696 "redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295> route-map WORD",
paul718e3742002-12-13 20:15:29 +000012697 "Redistribute information from another routing protocol\n"
12698 "Connected\n"
paul569c0f02003-03-02 21:19:26 +000012699 "Kernel routes\n"
12700 "Open Shurtest Path First (OSPF)\n"
12701 "Routing Information Protocol (RIP)\n"
12702 "Static routes\n"
12703 "Metric for redistributed routes\n"
12704 "Default metric\n"
paul718e3742002-12-13 20:15:29 +000012705 "Route map reference\n"
12706 "Pointer to route-map entries\n")
12707
paul569c0f02003-03-02 21:19:26 +000012708DEFSH (VTYSH_BGPD, show_bgp_route_map_cmd_vtysh,
12709 "show bgp route-map WORD",
12710 "Show running system information\n"
paul718e3742002-12-13 20:15:29 +000012711 "BGP information\n"
paul569c0f02003-03-02 21:19:26 +000012712 "Display routes matching the route-map\n"
12713 "A route-map to match on\n")
12714
12715DEFSH (VTYSH_BGPD, neighbor_nexthop_self_cmd_vtysh,
12716 "neighbor (A.B.C.D|X:X::X:X|WORD) " "next-hop-self",
12717 "Specify neighbor router\n"
12718 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
12719 "Disable the next hop calculation for this neighbor\n")
paul718e3742002-12-13 20:15:29 +000012720
12721void
12722vtysh_init_cmd ()
12723{
paul718e3742002-12-13 20:15:29 +000012724 install_element (BGP_NODE, &no_neighbor_activate_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000012725 install_element (RMAP_NODE, &no_match_ecommunity_val_cmd_vtysh);
12726 install_element (INTERFACE_NODE, &no_ip_rip_authentication_string_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000012727 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000012728 install_element (BGP_NODE, &bgp_damp_unset2_cmd_vtysh);
12729 install_element (ENABLE_NODE, &show_ip_bgp_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000012730 install_element (BGP_IPV4_NODE, &bgp_damp_unset_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000012731 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_ge_le_cmd_vtysh);
12732 install_element (CONFIG_NODE, &ip_prefix_list_sequence_number_cmd_vtysh);
12733 install_element (BGP_IPV6_NODE, &ipv6_aggregate_address_cmd_vtysh);
12734 install_element (CONFIG_NODE, &ip_extcommunity_list_standard_cmd_vtysh);
12735 install_element (CONFIG_NODE, &no_ipv6_access_list_all_cmd_vtysh);
12736 install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_longer_cmd_vtysh);
12737 install_element (ENABLE_NODE, &clear_ip_bgp_peer_cmd_vtysh);
12738 install_element (VIEW_NODE, &show_ipv6_bgp_community_all_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000012739 install_element (ENABLE_NODE, &clear_ip_bgp_all_out_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000012740 install_element (BGP_IPV4M_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
12741 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_route_cmd_vtysh);
12742 install_element (BGP_NODE, &neighbor_transparent_as_cmd_vtysh);
12743 install_element (RMAP_NODE, &no_match_community_val_cmd_vtysh);
12744 install_element (OSPF_NODE, &area_vlink_authkey_cmd_vtysh);
12745 install_element (ZEBRA_NODE, &ripng_redistribute_ripng_cmd_vtysh);
12746 install_element (VIEW_NODE, &show_bgp_ipv6_community3_exact_cmd_vtysh);
12747 install_element (VIEW_NODE, &show_ipv6_ospf6_neighbor_cmd_vtysh);
12748 install_element (ENABLE_NODE, &show_ip_bgp_community_list_exact_cmd_vtysh);
12749 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_cmd_vtysh);
12750 install_element (OSPF_NODE, &no_area_vlink_md5_cmd_vtysh);
12751 install_element (BGP_NODE, &neighbor_prefix_list_cmd_vtysh);
12752 install_element (BGP_NODE, &neighbor_passive_cmd_vtysh);
12753 install_element (CONFIG_NODE, &no_ip_prefix_list_sequence_number_cmd_vtysh);
12754 install_element (BGP_IPV4M_NODE, &no_aggregate_address_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000012755 install_element (ENABLE_NODE, &no_debug_ripng_events_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000012756 install_element (CONFIG_NODE, &no_route_map_cmd_vtysh);
12757 install_element (RIPNG_NODE, &ripng_redistribute_kernel_metric_cmd_vtysh);
12758 install_element (BGP_IPV6_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
12759 install_element (ENABLE_NODE, &show_ipv6_mbgp_community2_cmd_vtysh);
12760 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_out_cmd_vtysh);
12761 install_element (BGP_NODE, &neighbor_strict_capability_cmd_vtysh);
12762 install_element (RIPNG_NODE, &no_ripng_default_metric_val_cmd_vtysh);
12763 install_element (ENABLE_NODE, &clear_ip_bgp_peer_in_cmd_vtysh);
12764 install_element (ENABLE_NODE, &show_ip_bgp_paths_cmd_vtysh);
12765 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_list_cmd_vtysh);
12766 install_element (BGP_NODE, &no_neighbor_override_capability_cmd_vtysh);
12767 install_element (BGP_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh);
12768 install_element (OSPF_NODE, &area_range_substitute_cmd_vtysh);
12769 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_in_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000012770 install_element (ENABLE_NODE, &show_ipv6_bgp_route_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000012771 install_element (BGP_NODE, &no_neighbor_interface_cmd_vtysh);
12772 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh);
12773 install_element (BGP_NODE, &bgp_cluster_id32_cmd_vtysh);
12774 install_element (VIEW_NODE, &show_bgp_ipv6_regexp_cmd_vtysh);
12775 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_cmd_vtysh);
12776 install_element (CONFIG_NODE, &debug_ripng_packet_cmd_vtysh);
12777 install_element (OSPF_NODE, &area_shortcut_cmd_vtysh);
12778 install_element (INTERFACE_NODE, &ip_ospf_priority_addr_cmd_vtysh);
12779 install_element (BGP_IPV4_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh);
12780 install_element (VIEW_NODE, &show_bgp_neighbor_received_prefix_filter_cmd_vtysh);
12781 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_self_cmd_vtysh);
12782 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_cmd_vtysh);
12783 install_element (BGP_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
12784 install_element (BGP_IPV6_NODE, &neighbor_send_community_type_cmd_vtysh);
12785 install_element (CONFIG_NODE, &access_list_any_cmd_vtysh);
12786 install_element (VIEW_NODE, &show_bgp_community_cmd_vtysh);
12787 install_element (VIEW_NODE, &show_ip_bgp_ipv4_filter_list_cmd_vtysh);
12788 install_element (VIEW_NODE, &show_bgp_ipv6_community_exact_cmd_vtysh);
12789 install_element (RIPNG_NODE, &no_ripng_aggregate_address_cmd_vtysh);
12790 install_element (BGP_NODE, &bgp_cluster_id_cmd_vtysh);
12791 install_element (KEYCHAIN_KEY_NODE, &no_key_cmd_vtysh);
12792 install_element (BGP_IPV6_NODE, &no_neighbor_prefix_list_cmd_vtysh);
12793 install_element (RIP_NODE, &no_rip_distance_source_cmd_vtysh);
12794 install_element (ENABLE_NODE, &show_ipv6_ospf6_camp_config_cmd_vtysh);
12795 install_element (BGP_NODE, &neighbor_dont_capability_negotiate_cmd_vtysh);
12796 install_element (BGP_NODE, &bgp_network_import_check_cmd_vtysh);
12797 install_element (VIEW_NODE, &show_ipv6_ospf6_topology_router_cmd_vtysh);
12798 install_element (BGP_NODE, &aggregate_address_as_set_cmd_vtysh);
12799 install_element (OSPF_NODE, &capability_opaque_cmd_vtysh);
12800 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
12801 install_element (RMAP_NODE, &no_set_origin_cmd_vtysh);
12802 install_element (ENABLE_NODE, &show_ip_forwarding_cmd_vtysh);
12803 install_element (VIEW_NODE, &show_ipv6_bgp_prefix_cmd_vtysh);
12804 install_element (BGP_NODE, &bgp_network_mask_natural_cmd_vtysh);
12805 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh);
12806 install_element (RMAP_NODE, &no_match_ip_next_hop_val_cmd_vtysh);
12807 install_element (INTERFACE_NODE, &no_ip_address_label_cmd_vtysh);
12808 install_element (ENABLE_NODE, &show_ipv6_mbgp_community2_exact_cmd_vtysh);
12809 install_element (BGP_NODE, &neighbor_shutdown_cmd_vtysh);
12810 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_rmap_metric_cmd_vtysh);
12811 install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd_vtysh);
12812 install_element (OSPF_NODE, &area_filter_list_cmd_vtysh);
12813 install_element (CONFIG_NODE, &debug_bgp_update_direct_cmd_vtysh);
12814 install_element (ENABLE_NODE, &show_debugging_rip_cmd_vtysh);
12815 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_out_cmd_vtysh);
12816 install_element (VIEW_NODE, &show_ip_route_prefix_cmd_vtysh);
12817 install_element (VIEW_NODE, &show_ipv6_prefix_list_name_cmd_vtysh);
12818 install_element (BGP_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
12819 install_element (INTERFACE_NODE, &ipv6_ospf6_advertise_force_prefix_cmd_vtysh);
12820 install_element (ENABLE_NODE, &show_debug_ospf6_damp_cmd_vtysh);
12821 install_element (OSPF6_NODE, &interface_area_passive_cmd_vtysh);
12822 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh);
12823 install_element (CONFIG_NODE, &dump_bgp_routes_interval_cmd_vtysh);
12824 install_element (ENABLE_NODE, &show_ipv6_bgp_summary_cmd_vtysh);
12825 install_element (ENABLE_NODE, &no_debug_rip_zebra_cmd_vtysh);
12826 install_element (OSPF_NODE, &no_router_id_cmd_vtysh);
12827 install_element (ENABLE_NODE, &show_ip_bgp_view_cmd_vtysh);
12828 install_element (CONFIG_NODE, &access_list_extended_host_mask_cmd_vtysh);
12829 install_element (CONFIG_NODE, &no_debug_zebra_packet_cmd_vtysh);
12830 install_element (CONFIG_NODE, &ip_prefix_list_ge_le_cmd_vtysh);
12831 install_element (CONFIG_NODE, &access_list_extended_host_any_cmd_vtysh);
12832 install_element (BGP_NODE, &default_attr_localpref_cmd_vtysh);
12833 install_element (BGP_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh);
12834 install_element (BGP_NODE, &bgp_deterministic_med_cmd_vtysh);
12835 install_element (VIEW_NODE, &show_ip_bgp_route_map_cmd_vtysh);
12836 install_element (VIEW_NODE, &show_bgp_instance_ipv6_summary_cmd_vtysh);
12837 install_element (BGP_NODE, &neighbor_capability_dynamic_cmd_vtysh);
12838 install_element (ENABLE_NODE, &clear_bgp_external_in_cmd_vtysh);
12839 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh);
12840 install_element (RMAP_NODE, &no_rmap_onmatch_goto_cmd_vtysh);
12841 install_element (BGP_NODE, &old_no_ipv6_aggregate_address_cmd_vtysh);
12842 install_element (OSPF_NODE, &area_vlink_param4_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000012843 install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_standard_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000012844 install_element (ENABLE_NODE, &show_bgp_neighbors_peer_cmd_vtysh);
12845 install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_router_lsid_cmd_vtysh);
12846 install_element (VIEW_NODE, &show_ipv6_mbgp_community2_cmd_vtysh);
12847 install_element (ENABLE_NODE, &debug_ospf_nsm_cmd_vtysh);
12848 install_element (ENABLE_NODE, &show_bgp_route_cmd_vtysh);
12849 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_cmd_vtysh);
12850 install_element (RIP_NODE, &rip_redistribute_type_metric_cmd_vtysh);
12851 install_element (ENABLE_NODE, &reload_cmd_vtysh);
12852 install_element (CONFIG_NODE, &no_ipv6_prefix_list_le_ge_cmd_vtysh);
12853 install_element (CONFIG_NODE, &dump_bgp_updates_cmd_vtysh);
12854 install_element (VIEW_NODE, &show_bgp_route_map_cmd_vtysh);
12855 install_element (RMAP_NODE, &match_interface_cmd_vtysh);
12856 install_element (INTERFACE_NODE, &ip_ospf_hello_interval_cmd_vtysh);
12857 install_element (VIEW_NODE, &show_ip_bgp_regexp_cmd_vtysh);
12858 install_element (CONFIG_NODE, &ipv6_prefix_list_cmd_vtysh);
12859 install_element (BGP_NODE, &neighbor_ebgp_multihop_ttl_cmd_vtysh);
12860 install_element (BGP_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh);
12861 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_month_day_day_month_cmd_vtysh);
12862 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community3_exact_cmd_vtysh);
12863 install_element (RMAP_NODE, &no_set_ecommunity_soo_val_cmd_vtysh);
12864 install_element (BGP_NODE, &no_bgp_confederation_identifier_arg_cmd_vtysh);
12865 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_all_cmd_vtysh);
12866 install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh);
12867 install_element (BGP_NODE, &bgp_network_mask_backdoor_cmd_vtysh);
12868 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
12869 install_element (INTERFACE_NODE, &no_multicast_cmd_vtysh);
12870 install_element (BGP_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
12871 install_element (CONFIG_NODE, &debug_ospf_zebra_cmd_vtysh);
12872 install_element (ENABLE_NODE, &clear_ip_bgp_external_out_cmd_vtysh);
12873 install_element (ENABLE_NODE, &show_bgp_ipv6_community2_exact_cmd_vtysh);
12874 install_element (OSPF6_NODE, &no_interface_area_cmd_vtysh);
12875 install_element (CONFIG_NODE, &debug_rip_events_cmd_vtysh);
12876 install_element (RMAP_NODE, &no_set_metric_val_cmd_vtysh);
12877 install_element (VIEW_NODE, &show_ip_bgp_instance_summary_cmd_vtysh);
12878 install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_cmd_vtysh);
12879 install_element (CONFIG_NODE, &no_dump_bgp_all_cmd_vtysh);
12880 install_element (OSPF_NODE, &no_area_vlink_authtype_md5_cmd_vtysh);
12881 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
12882 install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_cmd_vtysh);
12883 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
12884 install_element (BGP_IPV6_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
12885 install_element (BGP_VPNV4_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
12886 install_element (OSPF_NODE, &ospf_default_information_originate_metric_cmd_vtysh);
12887 install_element (ENABLE_NODE, &no_debug_rip_packet_direct_cmd_vtysh);
12888 install_element (BGP_NODE, &neighbor_weight_cmd_vtysh);
12889 install_element (OSPF_NODE, &neighbor_priority_cmd_vtysh);
12890 install_element (OSPF_NODE, &no_capability_opaque_cmd_vtysh);
12891 install_element (KEYCHAIN_KEY_NODE, &key_string_cmd_vtysh);
12892 install_element (RIPNG_NODE, &ripng_redistribute_static_routemap_cmd_vtysh);
12893 install_element (CONFIG_NODE, &no_ipv6_prefix_list_description_arg_cmd_vtysh);
12894 install_element (ENABLE_NODE, &no_debug_ospf_ism_sub_cmd_vtysh);
12895 install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_cmd_vtysh);
12896 install_element (BGP_IPV4_NODE, &aggregate_address_summary_as_set_cmd_vtysh);
12897 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_cmd_vtysh);
12898 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
12899 install_element (INTERFACE_NODE, &ip_irdp_address_preference_cmd_vtysh);
12900 install_element (RIPNG_NODE, &no_ripng_passive_interface_cmd_vtysh);
12901 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community2_cmd_vtysh);
12902 install_element (CONFIG_NODE, &ip_community_list_standard_cmd_vtysh);
12903 install_element (VIEW_NODE, &show_ip_bgp_route_cmd_vtysh);
12904 install_element (ENABLE_NODE, &no_debug_bgp_normal_cmd_vtysh);
12905 install_element (ENABLE_NODE, &show_ipv6_bgp_community3_cmd_vtysh);
12906 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged_cmd_vtysh);
12907 install_element (RMAP_NODE, &set_metric_cmd_vtysh);
12908 install_element (VIEW_NODE, &show_ip_bgp_ipv4_route_map_cmd_vtysh);
12909 install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
12910 install_element (RMAP_NODE, &set_community_cmd_vtysh);
12911 install_element (VIEW_NODE, &show_bgp_route_cmd_vtysh);
12912 install_element (INTERFACE_NODE, &ipv6_ospf6_retransmitinterval_cmd_vtysh);
12913 install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_cmd_vtysh);
12914 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_le_ge_cmd_vtysh);
12915 install_element (BGP_NODE, &no_bgp_distance2_cmd_vtysh);
12916 install_element (BGP_IPV4M_NODE, &no_neighbor_distribute_list_cmd_vtysh);
12917 install_element (INTERFACE_NODE, &linkdetect_cmd_vtysh);
12918 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
12919 install_element (BGP_NODE, &bgp_confederation_peers_cmd_vtysh);
12920 install_element (BGP_IPV4_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh);
12921 install_element (BGP_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
12922 install_element (BGP_VPNV4_NODE, &neighbor_filter_list_cmd_vtysh);
12923 install_element (ENABLE_NODE, &show_ipv6_bgp_cmd_vtysh);
12924 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_summary_cmd_vtysh);
12925 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_ge_cmd_vtysh);
12926 install_element (ENABLE_NODE, &show_ipv6_ospf6_neighbor_routerid_cmd_vtysh);
12927 install_element (OSPF_NODE, &no_ospf_distribute_list_out_cmd_vtysh);
12928 install_element (VIEW_NODE, &show_ipv6_mbgp_community_exact_cmd_vtysh);
12929 install_element (OSPF_NODE, &no_area_export_list_cmd_vtysh);
12930 install_element (INTERFACE_NODE, &no_ospf_cost_cmd_vtysh);
12931 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
12932 install_element (ENABLE_NODE, &show_bgp_community_list_cmd_vtysh);
12933 install_element (CONFIG_NODE, &no_ip_route_distance_cmd_vtysh);
12934 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_metric_cmd_vtysh);
12935 install_element (ENABLE_NODE, &show_bgp_ipv6_cmd_vtysh);
12936 install_element (ENABLE_NODE, &clear_bgp_peer_group_cmd_vtysh);
12937 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_cmd_vtysh);
12938 install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_addr_cmd_vtysh);
12939 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh);
12940 install_element (RMAP_NODE, &match_aspath_cmd_vtysh);
12941 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_in_cmd_vtysh);
12942 install_element (BGP_NODE, &aggregate_address_mask_summary_only_cmd_vtysh);
12943 install_element (VIEW_NODE, &show_bgp_ipv6_community2_cmd_vtysh);
12944 install_element (VIEW_NODE, &show_ipv6_ospf6_neighbor_routerid_cmd_vtysh);
12945 install_element (ENABLE_NODE, &no_debug_ospf_lsa_cmd_vtysh);
12946 install_element (RMAP_NODE, &no_set_weight_cmd_vtysh);
12947 install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_in_cmd_vtysh);
12948 install_element (BGP_IPV4_NODE, &no_neighbor_route_map_cmd_vtysh);
12949 install_element (BGP_NODE, &bgp_fast_external_failover_cmd_vtysh);
12950 install_element (ENABLE_NODE, &show_bgp_ipv6_route_map_cmd_vtysh);
12951 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
12952 install_element (RIPNG_NODE, &no_ripng_route_cmd_vtysh);
12953 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_in_prefix_filter_cmd_vtysh);
12954 install_element (ENABLE_NODE, &debug_ripng_events_cmd_vtysh);
12955 install_element (VIEW_NODE, &show_ip_bgp_neighbors_peer_cmd_vtysh);
12956 install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_list_cmd_vtysh);
12957 install_element (BGP_IPV4M_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
12958 install_element (BGP_NODE, &neighbor_remote_as_cmd_vtysh);
12959 install_element (OSPF_NODE, &ospf_default_information_originate_cmd_vtysh);
12960 install_element (RMAP_NODE, &match_ip_address_cmd_vtysh);
12961 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_metric_routemap_cmd_vtysh);
12962 install_element (ENABLE_NODE, &no_debug_ospf_zebra_sub_cmd_vtysh);
12963 install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_out_cmd_vtysh);
12964 install_element (CONFIG_NODE, &no_ipv6_prefix_list_cmd_vtysh);
12965 install_element (BGP_VPNV4_NODE, &neighbor_nexthop_self_cmd_vtysh);
12966 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_natural_cmd_vtysh);
12967 install_element (BGP_NODE, &aggregate_address_mask_cmd_vtysh);
12968 install_element (ENABLE_NODE, &show_ipv6_prefix_list_summary_name_cmd_vtysh);
12969 install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
12970 install_element (ENABLE_NODE, &show_ip_ospf_database_type_adv_router_cmd_vtysh);
12971 install_element (RMAP_NODE, &no_match_community_exact_cmd_vtysh);
12972 install_element (RMAP_NODE, &set_community_delete_cmd_vtysh);
12973 install_element (OSPF_NODE, &no_area_default_cost_cmd_vtysh);
12974 install_element (OSPF_NODE, &no_area_vlink_param2_cmd_vtysh);
12975 install_element (ENABLE_NODE, &debug_ripng_packet_cmd_vtysh);
12976 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh);
12977 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_infinite_day_month_cmd_vtysh);
12978 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_exact_cmd_vtysh);
12979 install_element (BGP_IPV4M_NODE, &neighbor_route_map_cmd_vtysh);
12980 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
12981 install_element (BGP_NODE, &no_neighbor_send_community_cmd_vtysh);
12982 install_element (BGP_NODE, &old_no_ipv6_aggregate_address_summary_only_cmd_vtysh);
12983 install_element (INTERFACE_NODE, &ip_address_secondary_cmd_vtysh);
12984 install_element (CONFIG_NODE, &no_ipv6_route_cmd_vtysh);
12985 install_element (ENABLE_NODE, &show_bgp_ipv6_filter_list_cmd_vtysh);
12986 install_element (VIEW_NODE, &show_ip_route_protocol_cmd_vtysh);
12987 install_element (BGP_VPNV4_NODE, &no_neighbor_route_map_cmd_vtysh);
12988 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
12989 install_element (BGP_NODE, &no_bgp_timers_arg_cmd_vtysh);
12990 install_element (INTERFACE_NODE, &ospf_transmit_delay_cmd_vtysh);
12991 install_element (BGP_IPV4_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
12992 install_element (VIEW_NODE, &show_ip_bgp_neighbor_advertised_route_cmd_vtysh);
12993 install_element (RMAP_NODE, &no_set_ip_nexthop_cmd_vtysh);
12994 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_out_cmd_vtysh);
12995 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh);
12996 install_element (OSPF6_NODE, &ospf6_redistribute_cmd_vtysh);
12997 install_element (VIEW_NODE, &show_ipv6_mbgp_filter_list_cmd_vtysh);
12998 install_element (BGP_NODE, &no_bgp_confederation_identifier_cmd_vtysh);
12999 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_in_cmd_vtysh);
13000 install_element (VIEW_NODE, &ipv6_bgp_neighbor_routes_cmd_vtysh);
13001 install_element (ENABLE_NODE, &ipv6_bgp_neighbor_received_routes_cmd_vtysh);
13002 install_element (CONFIG_NODE, &ip_prefix_list_cmd_vtysh);
13003 install_element (BGP_IPV6_NODE, &neighbor_send_community_cmd_vtysh);
13004 install_element (VIEW_NODE, &show_bgp_neighbors_peer_cmd_vtysh);
13005 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_out_cmd_vtysh);
13006 install_element (ENABLE_NODE, &show_bgp_ipv6_community_cmd_vtysh);
13007 install_element (RIPNG_NODE, &ripng_redistribute_kernel_routemap_cmd_vtysh);
13008 install_element (ENABLE_NODE, &no_debug_zebra_events_cmd_vtysh);
13009 install_element (RIP_NODE, &rip_redistribute_type_routemap_cmd_vtysh);
13010 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_ge_cmd_vtysh);
13011 install_element (BGP_NODE, &bgp_network_backdoor_cmd_vtysh);
13012 install_element (BGP_NODE, &neighbor_ebgp_multihop_cmd_vtysh);
13013 install_element (CONFIG_NODE, &no_ip_route_cmd_vtysh);
13014 install_element (ENABLE_NODE, &show_bgp_community2_cmd_vtysh);
13015 install_element (OSPF_NODE, &area_nssa_cmd_vtysh);
13016 install_element (ENABLE_NODE, &show_bgp_community4_exact_cmd_vtysh);
13017 install_element (CONFIG_NODE, &no_debug_ospf_ism_sub_cmd_vtysh);
13018 install_element (CONFIG_NODE, &ipv6_prefix_list_le_ge_cmd_vtysh);
13019 install_element (VIEW_NODE, &show_ip_bgp_community_cmd_vtysh);
13020 install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_cmd_vtysh);
13021 install_element (RMAP_NODE, &no_set_aspath_prepend_cmd_vtysh);
13022 install_element (BGP_NODE, &neighbor_remove_private_as_cmd_vtysh);
13023 install_element (BGP_NODE, &no_neighbor_update_source_cmd_vtysh);
13024 install_element (BGP_NODE, &old_no_ipv6_bgp_network_cmd_vtysh);
13025 install_element (OSPF_NODE, &area_range_cost_cmd_vtysh);
13026 install_element (OSPF_NODE, &auto_cost_reference_bandwidth_cmd_vtysh);
13027 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
13028 install_element (ENABLE_NODE, &show_ip_bgp_route_cmd_vtysh);
13029 install_element (CONFIG_NODE, &no_access_list_extended_mask_host_cmd_vtysh);
13030 install_element (KEYCHAIN_NODE, &no_key_cmd_vtysh);
13031 install_element (BGP_NODE, &no_neighbor_remote_as_cmd_vtysh);
13032 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_spf_node_cmd_vtysh);
13033 install_element (INTERFACE_NODE, &ip_ospf_network_cmd_vtysh);
13034 install_element (ENABLE_NODE, &ipv6_bgp_neighbor_routes_cmd_vtysh);
13035 install_element (BGP_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
13036 install_element (BGP_NODE, &neighbor_default_originate_cmd_vtysh);
13037 install_element (INTERFACE_NODE, &mpls_te_link_metric_cmd_vtysh);
13038 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
13039 install_element (VIEW_NODE, &show_ipv6_bgp_community3_exact_cmd_vtysh);
13040 install_element (OSPF_NODE, &no_ospf_default_metric_cmd_vtysh);
13041 install_element (OSPF_NODE, &area_stub_no_summary_cmd_vtysh);
13042 install_element (RMAP_NODE, &rmap_onmatch_next_cmd_vtysh);
13043 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_router_cmd_vtysh);
13044 install_element (BGP_NODE, &no_neighbor_port_val_cmd_vtysh);
13045 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh);
13046 install_element (ENABLE_NODE, &show_ip_ospf_interface_cmd_vtysh);
13047 install_element (BGP_NODE, &no_neighbor_ebgp_multihop_ttl_cmd_vtysh);
13048 install_element (BGP_VPNV4_NODE, &neighbor_send_community_type_cmd_vtysh);
13049 install_element (INTERFACE_NODE, &ip_address_label_cmd_vtysh);
13050 install_element (CONFIG_NODE, &debug_ripng_events_cmd_vtysh);
13051 install_element (CONFIG_NODE, &no_router_ospf_cmd_vtysh);
13052 install_element (ENABLE_NODE, &show_ip_bgp_regexp_cmd_vtysh);
13053 install_element (INTERFACE_NODE, &ipv6_ospf6_passive_cmd_vtysh);
13054 install_element (ENABLE_NODE, &clear_bgp_peer_group_in_prefix_filter_cmd_vtysh);
13055 install_element (VIEW_NODE, &show_bgp_ipv6_neighbors_cmd_vtysh);
13056 install_element (BGP_VPNV4_NODE, &neighbor_activate_cmd_vtysh);
13057 install_element (CONFIG_NODE, &debug_rip_packet_detail_cmd_vtysh);
13058 install_element (VIEW_NODE, &show_ipv6_mbgp_regexp_cmd_vtysh);
13059 install_element (RIPNG_NODE, &ripng_timers_cmd_vtysh);
13060 install_element (BGP_IPV6_NODE, &neighbor_filter_list_cmd_vtysh);
13061 install_element (CONFIG_NODE, &no_debug_zebra_events_cmd_vtysh);
13062 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh);
13063 install_element (BGP_NODE, &no_bgp_distance_cmd_vtysh);
13064 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
13065 install_element (BGP_NODE, &no_bgp_bestpath_compare_router_id_cmd_vtysh);
13066 install_element (BGP_IPV4_NODE, &neighbor_unsuppress_map_cmd_vtysh);
13067 install_element (BGP_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
13068 install_element (OSPF_NODE, &neighbor_priority_poll_interval_cmd_vtysh);
13069 install_element (BGP_NODE, &no_neighbor_local_as_val_cmd_vtysh);
13070 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_cmd_vtysh);
13071 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
13072 install_element (OSPF_NODE, &area_vlink_authtype_args_authkey_cmd_vtysh);
13073 install_element (BGP_NODE, &no_neighbor_description_cmd_vtysh);
13074 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_received_routes_cmd_vtysh);
13075 install_element (VIEW_NODE, &show_ipv6_route_prefix_longer_cmd_vtysh);
13076 install_element (BGP_NODE, &bgp_confederation_identifier_cmd_vtysh);
13077 install_element (CONFIG_NODE, &debug_ospf6_damp_cmd_vtysh);
13078 install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_val_cmd_vtysh);
13079 install_element (OSPF_NODE, &ospf_redistribute_source_metric_type_routemap_cmd_vtysh);
13080 install_element (BGP_NODE, &bgp_bestpath_med2_cmd_vtysh);
13081 install_element (VIEW_NODE, &show_ip_bgp_neighbors_cmd_vtysh);
13082 install_element (OSPF_NODE, &no_area_range_cmd_vtysh);
13083 install_element (RMAP_NODE, &rmap_onmatch_goto_cmd_vtysh);
13084 install_element (ENABLE_NODE, &show_ip_bgp_community_exact_cmd_vtysh);
13085 install_element (VIEW_NODE, &show_ip_ospf_database_type_cmd_vtysh);
13086 install_element (ENABLE_NODE, &show_ip_bgp_flap_address_cmd_vtysh);
13087 install_element (BGP_IPV4M_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
13088 install_element (ENABLE_NODE, &clear_ip_prefix_list_name_cmd_vtysh);
13089 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_routemap_cmd_vtysh);
13090 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_out_cmd_vtysh);
13091 install_element (RIP_NODE, &no_rip_redistribute_type_routemap_cmd_vtysh);
13092 install_element (ENABLE_NODE, &clear_ip_prefix_list_name_prefix_cmd_vtysh);
13093 install_element (BGP_IPV4_NODE, &neighbor_maximum_prefix_cmd_vtysh);
13094 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
13095 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_val_cmd_vtysh);
13096 install_element (VIEW_NODE, &show_bgp_neighbors_cmd_vtysh);
13097 install_element (RMAP_NODE, &no_set_metric_cmd_vtysh);
13098 install_element (BGP_IPV4_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
13099 install_element (CONFIG_NODE, &no_access_list_cmd_vtysh);
13100 install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_detail_cmd_vtysh);
13101 install_element (OSPF_NODE, &ospf_opaque_capable_cmd_vtysh);
13102 install_element (OSPF_NODE, &no_auto_cost_reference_bandwidth_cmd_vtysh);
13103 install_element (VIEW_NODE, &show_ip_bgp_ipv4_summary_cmd_vtysh);
13104 install_element (VIEW_NODE, &show_bgp_community_all_cmd_vtysh);
13105 install_element (ENABLE_NODE, &show_bgp_community4_cmd_vtysh);
13106 install_element (OSPF_NODE, &no_area_range_cost_cmd_vtysh);
13107 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_month_day_day_month_cmd_vtysh);
13108 install_element (ENABLE_NODE, &show_ip_bgp_dampened_paths_cmd_vtysh);
13109 install_element (CONFIG_NODE, &no_debug_ospf_nssa_cmd_vtysh);
13110 install_element (ENABLE_NODE, &clear_ip_bgp_peer_in_prefix_filter_cmd_vtysh);
13111 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_list_exact_cmd_vtysh);
13112 install_element (CONFIG_NODE, &ipv6_access_list_exact_cmd_vtysh);
13113 install_element (BGP_IPV4_NODE, &neighbor_filter_list_cmd_vtysh);
13114 install_element (CONFIG_NODE, &debug_bgp_update_cmd_vtysh);
13115 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh);
13116 install_element (VIEW_NODE, &show_ip_bgp_flap_filter_list_cmd_vtysh);
13117 install_element (VIEW_NODE, &show_bgp_summary_cmd_vtysh);
13118 install_element (RIPNG_NODE, &ripng_redistribute_connected_routemap_cmd_vtysh);
13119 install_element (ENABLE_NODE, &clear_ip_bgp_all_in_cmd_vtysh);
13120 install_element (BGP_NODE, &no_bgp_confederation_peers_cmd_vtysh);
13121 install_element (ENABLE_NODE, &no_debug_bgp_filter_cmd_vtysh);
13122 install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_intra_cmd_vtysh);
13123 install_element (CONFIG_NODE, &ip_prefix_list_le_ge_cmd_vtysh);
13124 install_element (RMAP_NODE, &match_ip_next_hop_cmd_vtysh);
13125 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_all_cmd_vtysh);
13126 install_element (BGP_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
13127 install_element (BGP_VPNV4_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
13128 install_element (VIEW_NODE, &show_bgp_ipv6_route_cmd_vtysh);
13129 install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_external_cmd_vtysh);
13130 install_element (ENABLE_NODE, &clear_bgp_peer_group_in_cmd_vtysh);
13131 install_element (VIEW_NODE, &show_ipv6_ospf6_area_spf_node_cmd_vtysh);
13132 install_element (ENABLE_NODE, &debug_ospf_zebra_sub_cmd_vtysh);
13133 install_element (RMAP_NODE, &no_match_ip_address_val_cmd_vtysh);
13134 install_element (ENABLE_NODE, &show_ipv6_prefix_list_name_seq_cmd_vtysh);
13135 install_element (CONFIG_NODE, &bgp_config_type_cmd_vtysh);
13136 install_element (ENABLE_NODE, &show_ip_ospf_cmd_vtysh);
13137 install_element (BGP_IPV6_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13138 install_element (VIEW_NODE, &show_ipv6_mbgp_community_all_cmd_vtysh);
13139 install_element (INTERFACE_NODE, &no_ipv6_ospf6_passive_cmd_vtysh);
13140 install_element (CONFIG_NODE, &access_list_extended_cmd_vtysh);
13141 install_element (BGP_IPV4_NODE, &aggregate_address_mask_cmd_vtysh);
13142 install_element (ENABLE_NODE, &show_bgp_ipv6_community2_cmd_vtysh);
13143 install_element (ENABLE_NODE, &clear_bgp_all_soft_cmd_vtysh);
13144 install_element (BGP_VPNV4_NODE, &no_neighbor_activate_cmd_vtysh);
13145 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_in_cmd_vtysh);
13146 install_element (VIEW_NODE, &show_ip_bgp_flap_regexp_cmd_vtysh);
13147 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_val_cmd_vtysh);
13148 install_element (CONFIG_NODE, &no_ip_as_path_all_cmd_vtysh);
13149 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd_vtysh);
13150 install_element (VIEW_NODE, &show_ipv6_ospf6_area_route_prefix_cmd_vtysh);
13151 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_adv_router_cmd_vtysh);
13152 install_element (CONFIG_NODE, &access_list_remark_cmd_vtysh);
13153 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
13154 install_element (BGP_NODE, &no_bgp_network_mask_backdoor_cmd_vtysh);
13155 install_element (CONFIG_NODE, &no_ipv6_prefix_list_ge_cmd_vtysh);
13156 install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_routemap_cmd_vtysh);
13157 install_element (CONFIG_NODE, &ip_prefix_list_le_cmd_vtysh);
13158 install_element (BGP_NODE, &bgp_distance_cmd_vtysh);
13159 install_element (BGP_NODE, &aggregate_address_summary_as_set_cmd_vtysh);
13160 install_element (OSPF_NODE, &no_ospf_redistribute_source_cmd_vtysh);
13161 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_routemap_cmd_vtysh);
13162 install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd_vtysh);
13163 install_element (OSPF_NODE, &ospf_compatible_rfc1583_cmd_vtysh);
13164 install_element (BGP_NODE, &no_bgp_bestpath_med3_cmd_vtysh);
13165 install_element (BGP_NODE, &no_bgp_router_id_cmd_vtysh);
13166 install_element (VIEW_NODE, &show_ipv6_bgp_community_exact_cmd_vtysh);
13167 install_element (VIEW_NODE, &show_ip_bgp_community2_exact_cmd_vtysh);
13168 install_element (CONFIG_NODE, &debug_bgp_filter_cmd_vtysh);
13169 install_element (BGP_IPV4_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh);
13170 install_element (CONFIG_NODE, &ip_community_list_name_standard2_cmd_vtysh);
13171 install_element (OSPF_NODE, &ospf_default_information_originate_type_routemap_cmd_vtysh);
13172 install_element (ENABLE_NODE, &no_debug_ripng_packet_direct_cmd_vtysh);
13173 install_element (BGP_NODE, &no_neighbor_enforce_multihop_cmd_vtysh);
13174 install_element (CONFIG_NODE, &no_ip_route_mask_cmd_vtysh);
13175 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_cmd_vtysh);
13176 install_element (BGP_IPV4M_NODE, &aggregate_address_summary_only_cmd_vtysh);
13177 install_element (OSPF6_NODE, &interface_area_plist_cmd_vtysh);
13178 install_element (CONFIG_NODE, &no_ipv6_prefix_list_sequence_number_cmd_vtysh);
13179 install_element (OSPF_NODE, &ospf_redistribute_source_cmd_vtysh);
13180 install_element (CONFIG_NODE, &no_debug_bgp_events_cmd_vtysh);
13181 install_element (CONFIG_NODE, &no_ipv6_route_ifname_cmd_vtysh);
13182 install_element (ENABLE_NODE, &show_ip_bgp_community3_cmd_vtysh);
13183 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_routemap_cmd_vtysh);
13184 install_element (ENABLE_NODE, &clear_bgp_all_in_prefix_filter_cmd_vtysh);
13185 install_element (VIEW_NODE, &show_bgp_ipv6_community_list_exact_cmd_vtysh);
13186 install_element (CONFIG_NODE, &debug_bgp_keepalive_cmd_vtysh);
13187 install_element (BGP_IPV4_NODE, &no_neighbor_allowas_in_cmd_vtysh);
13188 install_element (INTERFACE_NODE, &ip_ospf_cost_addr_cmd_vtysh);
13189 install_element (CONFIG_NODE, &no_ip_community_list_all_cmd_vtysh);
13190 install_element (BGP_NODE, &no_bgp_network_mask_route_map_cmd_vtysh);
13191 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_cmd_vtysh);
13192 install_element (ENABLE_NODE, &show_ip_bgp_community_list_cmd_vtysh);
13193 install_element (BGP_NODE, &no_bgp_distance_source_access_list_cmd_vtysh);
13194 install_element (ENABLE_NODE, &show_ip_route_prefix_longer_cmd_vtysh);
13195 install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_cmd_vtysh);
13196 install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_addr_cmd_vtysh);
13197 install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
13198 install_element (OSPF_NODE, &ospf_redistribute_source_metric_routemap_cmd_vtysh);
13199 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_rmap_cmd_vtysh);
13200 install_element (BGP_NODE, &bgp_network_cmd_vtysh);
13201 install_element (CONFIG_NODE, &ipv6_access_list_cmd_vtysh);
13202 install_element (BGP_VPNV4_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13203 install_element (VIEW_NODE, &show_ipv6_bgp_community3_cmd_vtysh);
13204 install_element (ENABLE_NODE, &show_ipv6_prefix_list_cmd_vtysh);
13205 install_element (CONFIG_NODE, &no_access_list_all_cmd_vtysh);
13206 install_element (ENABLE_NODE, &show_ip_bgp_neighbors_cmd_vtysh);
13207 install_element (BGP_NODE, &bgp_network_cmd_vtysh);
13208 install_element (BGP_IPV4_NODE, &bgp_network_mask_route_map_cmd_vtysh);
13209 install_element (BGP_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
13210 install_element (BGP_IPV6_NODE, &no_neighbor_route_map_cmd_vtysh);
13211 install_element (BGP_IPV4M_NODE, &neighbor_route_server_client_cmd_vtysh);
13212 install_element (ENABLE_NODE, &clear_bgp_external_soft_in_cmd_vtysh);
13213 install_element (VIEW_NODE, &show_ipv6_forwarding_cmd_vtysh);
13214 install_element (BGP_IPV6_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
13215 install_element (CONFIG_NODE, &no_access_list_extended_host_any_cmd_vtysh);
13216 install_element (VIEW_NODE, &show_ip_bgp_cmd_vtysh);
13217 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_in_cmd_vtysh);
13218 install_element (INTERFACE_NODE, &ip_address_cmd_vtysh);
13219 install_element (INTERFACE_NODE, &multicast_cmd_vtysh);
13220 install_element (ENABLE_NODE, &clear_ip_bgp_as_out_cmd_vtysh);
13221 install_element (ENABLE_NODE, &show_ipv6_access_list_name_cmd_vtysh);
13222 install_element (INTERFACE_NODE, &ip_ospf_authentication_key_cmd_vtysh);
13223 install_element (VIEW_NODE, &show_ipv6_prefix_list_detail_cmd_vtysh);
13224 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_list_exact_cmd_vtysh);
13225 install_element (VIEW_NODE, &show_ip_bgp_ipv4_cmd_vtysh);
13226 install_element (ENABLE_NODE, &show_bgp_neighbor_advertised_route_cmd_vtysh);
13227 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_cmd_vtysh);
13228 install_element (VIEW_NODE, &show_bgp_ipv6_community_cmd_vtysh);
13229 install_element (RIP_NODE, &no_rip_neighbor_cmd_vtysh);
13230 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_cmd_vtysh);
13231 install_element (VIEW_NODE, &show_bgp_ipv6_filter_list_cmd_vtysh);
13232 install_element (OSPF_NODE, &no_refresh_timer_cmd_vtysh);
13233 install_element (BGP_IPV4M_NODE, &bgp_network_mask_natural_cmd_vtysh);
13234 install_element (CONFIG_NODE, &debug_ripng_packet_detail_cmd_vtysh);
13235 install_element (BGP_NODE, &aggregate_address_as_set_summary_cmd_vtysh);
13236 install_element (ENABLE_NODE, &show_ipv6_route_cmd_vtysh);
13237 install_element (BGP_NODE, &no_neighbor_timers_connect_val_cmd_vtysh);
13238 install_element (BGP_NODE, &bgp_default_ipv4_unicast_cmd_vtysh);
13239 install_element (ENABLE_NODE, &clear_ip_bgp_as_in_cmd_vtysh);
13240 install_element (BGP_NODE, &no_bgp_scan_time_val_cmd_vtysh);
13241 install_element (BGP_NODE, &no_neighbor_local_as_cmd_vtysh);
13242 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh);
13243 install_element (CONFIG_NODE, &no_ip_extcommunity_list_all_cmd_vtysh);
13244 install_element (ENABLE_NODE, &clear_ip_bgp_all_in_prefix_filter_cmd_vtysh);
13245 install_element (ENABLE_NODE, &show_ip_route_addr_cmd_vtysh);
13246 install_element (ENABLE_NODE, &show_ip_bgp_instance_summary_cmd_vtysh);
13247 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_in_prefix_filter_cmd_vtysh);
13248 install_element (ENABLE_NODE, &clear_bgp_as_soft_cmd_vtysh);
13249 install_element (ENABLE_NODE, &no_debug_ripng_packet_cmd_vtysh);
13250 install_element (BGP_NODE, &no_bgp_network_cmd_vtysh);
13251 install_element (BGP_IPV4_NODE, &bgp_damp_set3_cmd_vtysh);
13252 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_spf_tree_cmd_vtysh);
13253 install_element (ENABLE_NODE, &clear_bgp_external_soft_cmd_vtysh);
13254 install_element (CONFIG_NODE, &no_ip_as_path_cmd_vtysh);
13255 install_element (VIEW_NODE, &show_ip_bgp_neighbor_routes_cmd_vtysh);
13256 install_element (CONFIG_NODE, &debug_ospf_nsm_sub_cmd_vtysh);
13257 install_element (BGP_NODE, &no_bgp_network_route_map_cmd_vtysh);
13258 install_element (CONFIG_NODE, &no_access_list_remark_cmd_vtysh);
13259 install_element (CONFIG_NODE, &no_zebra_interface_cmd_vtysh);
13260 install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_all_cmd_vtysh);
13261 install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_inter_cmd_vtysh);
13262 install_element (OSPF_NODE, &area_nssa_no_summary_cmd_vtysh);
13263 install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
13264 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_le_cmd_vtysh);
13265 install_element (RIPNG_NODE, &ripng_redistribute_static_metric_routemap_cmd_vtysh);
13266 install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_cmd_vtysh);
13267 install_element (ENABLE_NODE, &clear_ipv6_prefix_list_cmd_vtysh);
13268 install_element (INTERFACE_NODE, &no_ip_rip_authentication_mode_type_cmd_vtysh);
13269 install_element (OSPF_NODE, &ospf_abr_type_cmd_vtysh);
13270 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_cmd_vtysh);
13271 install_element (RIP_NODE, &rip_default_information_originate_cmd_vtysh);
13272 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_le_ge_cmd_vtysh);
13273 install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
13274 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_ge_le_cmd_vtysh);
13275 install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_out_cmd_vtysh);
13276 install_element (ENABLE_NODE, &debug_zebra_packet_direct_cmd_vtysh);
13277 install_element (OSPF_NODE, &ospf_distance_ospf_external_cmd_vtysh);
13278 install_element (BGP_IPV4M_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
13279 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_summary_only_cmd_vtysh);
13280 install_element (BGP_IPV6_NODE, &ipv6_bgp_network_cmd_vtysh);
13281 install_element (VIEW_NODE, &show_ipv6_mbgp_community3_cmd_vtysh);
13282 install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_longer_cmd_vtysh);
13283 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_cmd_vtysh);
13284 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_cmd_vtysh);
13285 install_element (BGP_NODE, &bgp_redistribute_ipv4_cmd_vtysh);
13286 install_element (BGP_IPV4M_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
13287 install_element (VIEW_NODE, &show_ip_bgp_neighbor_damp_cmd_vtysh);
13288 install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_val_cmd_vtysh);
13289 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
13290 install_element (ENABLE_NODE, &show_debug_ospf6_cmd_vtysh);
13291 install_element (ENABLE_NODE, &debug_rip_packet_detail_cmd_vtysh);
13292 install_element (ENABLE_NODE, &show_ipv6_bgp_community_all_cmd_vtysh);
13293 install_element (OSPF_NODE, &area_nssa_translate_cmd_vtysh);
13294 install_element (OSPF_NODE, &no_area_vlink_param4_cmd_vtysh);
13295 install_element (VIEW_NODE, &show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh);
13296 install_element (OSPF_NODE, &no_passive_interface_cmd_vtysh);
13297 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh);
13298 install_element (BGP_NODE, &no_neighbor_passive_cmd_vtysh);
13299 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_tags_cmd_vtysh);
13300 install_element (OSPF_NODE, &area_range_advertise_cmd_vtysh);
13301 install_element (VIEW_NODE, &ipv6_bgp_neighbor_advertised_route_cmd_vtysh);
13302 install_element (OSPF_NODE, &passive_interface_addr_cmd_vtysh);
13303 install_element (BGP_IPV4_NODE, &neighbor_route_server_client_cmd_vtysh);
13304 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh);
13305 install_element (INTERFACE_NODE, &ospf_message_digest_key_cmd_vtysh);
13306 install_element (ENABLE_NODE, &show_ipv6_bgp_community4_cmd_vtysh);
13307 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_metric_cmd_vtysh);
13308 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_cmd_vtysh);
13309 install_element (VIEW_NODE, &show_ip_bgp_community2_cmd_vtysh);
13310 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_in_cmd_vtysh);
13311 install_element (ENABLE_NODE, &clear_bgp_external_cmd_vtysh);
13312 install_element (OSPF_NODE, &area_range_cmd_vtysh);
13313 install_element (CONFIG_NODE, &dump_bgp_routes_cmd_vtysh);
13314 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_in_prefix_filter_cmd_vtysh);
13315 install_element (OSPF_NODE, &no_area_shortcut_cmd_vtysh);
13316 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_cmd_vtysh);
13317 install_element (VIEW_NODE, &show_ipv6_ospf6_route_prefix_cmd_vtysh);
13318 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13319 install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
13320 install_element (VIEW_NODE, &show_bgp_community2_cmd_vtysh);
13321 install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_in_cmd_vtysh);
13322 install_element (VIEW_NODE, &show_ip_bgp_community_list_cmd_vtysh);
13323 install_element (BGP_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13324 install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_cmd_vtysh);
13325 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_int_detail_cmd_vtysh);
13326 install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_intra_cmd_vtysh);
13327 install_element (VIEW_NODE, &show_zebra_cmd_vtysh);
13328 install_element (VIEW_NODE, &show_ip_bgp_flap_statistics_cmd_vtysh);
13329 install_element (BGP_VPNV4_NODE, &neighbor_route_server_client_cmd_vtysh);
13330 install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_list_cmd_vtysh);
13331 install_element (INTERFACE_NODE, &ospf_retransmit_interval_cmd_vtysh);
13332 install_element (OSPF_NODE, &no_ospf_rfc1583_flag_cmd_vtysh);
13333 install_element (CONFIG_NODE, &no_ip_community_list_name_standard_cmd_vtysh);
13334 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13335 install_element (ENABLE_NODE, &no_debug_bgp_all_cmd_vtysh);
13336 install_element (BGP_NODE, &no_bgp_timers_cmd_vtysh);
13337 install_element (RIPNG_NODE, &ripng_redistribute_bgp_metric_routemap_cmd_vtysh);
13338 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community3_exact_cmd_vtysh);
13339 install_element (ENABLE_NODE, &debug_zebra_events_cmd_vtysh);
13340 install_element (OSPF_NODE, &no_ospf_distance_ospf_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000013341 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_duration_day_month_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000013342 install_element (VIEW_NODE, &show_ip_protocols_rip_cmd_vtysh);
13343 install_element (RIP_NODE, &rip_network_cmd_vtysh);
13344 install_element (VIEW_NODE, &show_bgp_ipv6_prefix_cmd_vtysh);
13345 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community2_exact_cmd_vtysh);
13346 install_element (BGP_IPV6_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
13347 install_element (VIEW_NODE, &show_ip_bgp_filter_list_cmd_vtysh);
13348 install_element (RMAP_NODE, &set_vpnv4_nexthop_cmd_vtysh);
13349 install_element (ENABLE_NODE, &show_ipv6_prefix_list_name_cmd_vtysh);
13350 install_element (VIEW_NODE, &show_ip_bgp_ipv4_paths_cmd_vtysh);
13351 install_element (CONFIG_NODE, &no_ip_route_mask_distance_cmd_vtysh);
13352 install_element (OSPF_NODE, &area_stub_cmd_vtysh);
13353 install_element (BGP_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh);
13354 install_element (BGP_VPNV4_NODE, &no_neighbor_route_server_client_cmd_vtysh);
13355 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_month_day_month_day_cmd_vtysh);
13356 install_element (BGP_IPV4_NODE, &no_bgp_network_cmd_vtysh);
13357 install_element (BGP_IPV6_NODE, &no_neighbor_activate_cmd_vtysh);
13358 install_element (VIEW_NODE, &show_ipv6_bgp_summary_cmd_vtysh);
13359 install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_advertised_route_cmd_vtysh);
13360 install_element (VIEW_NODE, &ipv6_mbgp_neighbor_advertised_route_cmd_vtysh);
13361 install_element (ENABLE_NODE, &debug_zebra_packet_detail_cmd_vtysh);
13362 install_element (RMAP_NODE, &no_set_ip_nexthop_val_cmd_vtysh);
13363 install_element (VIEW_NODE, &show_bgp_ipv6_cmd_vtysh);
13364 install_element (ENABLE_NODE, &clear_ip_bgp_as_in_prefix_filter_cmd_vtysh);
13365 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
13366 install_element (ENABLE_NODE, &debug_bgp_filter_cmd_vtysh);
13367 install_element (RIP_NODE, &rip_timers_cmd_vtysh);
13368 install_element (INTERFACE_NODE, &ip_rip_authentication_key_chain_cmd_vtysh);
13369 install_element (BGP_NODE, &aggregate_address_mask_as_set_cmd_vtysh);
13370 install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_addr_cmd_vtysh);
13371 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_cmd_vtysh);
13372 install_element (BGP_NODE, &no_auto_summary_cmd_vtysh);
13373 install_element (RMAP_NODE, &no_match_ipv6_address_cmd_vtysh);
13374 install_element (CONFIG_NODE, &ip_community_list_cmd_vtysh);
13375 install_element (INTERFACE_NODE, &rip_split_horizon_cmd_vtysh);
13376 install_element (INTERFACE_NODE, &mpls_te_link_rsc_clsclr_cmd_vtysh);
13377 install_element (OSPF6_NODE, &no_ospf6_redistribute_cmd_vtysh);
13378 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_exact_cmd_vtysh);
13379 install_element (BGP_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
13380 install_element (ENABLE_NODE, &debug_bgp_update_direct_cmd_vtysh);
13381 install_element (RMAP_NODE, &set_aggregator_as_cmd_vtysh);
13382 install_element (BGP_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
13383 install_element (RMAP_NODE, &no_match_community_cmd_vtysh);
13384 install_element (ENABLE_NODE, &show_debugging_ospf_cmd_vtysh);
13385 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_routemap_cmd_vtysh);
13386 install_element (VIEW_NODE, &show_ip_prefix_list_summary_name_cmd_vtysh);
13387 install_element (VIEW_NODE, &show_ip_bgp_paths_cmd_vtysh);
13388 install_element (BGP_IPV4M_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
13389 install_element (RMAP_NODE, &match_ip_address_cmd_vtysh);
13390 install_element (VIEW_NODE, &show_ipv6_ospf6_database_cmd_vtysh);
13391 install_element (RMAP_NODE, &no_match_ip_address_val_cmd_vtysh);
13392 install_element (BGP_NODE, &bgp_redistribute_ipv4_metric_cmd_vtysh);
13393 install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_cmd_vtysh);
13394 install_element (RMAP_NODE, &match_ipv6_address_cmd_vtysh);
13395 install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
13396 install_element (BGP_VPNV4_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
13397 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
13398 install_element (CONFIG_NODE, &no_debug_bgp_normal_cmd_vtysh);
13399 install_element (BGP_IPV4_NODE, &bgp_damp_set_cmd_vtysh);
13400 install_element (RIPNG_NODE, &no_ripng_timers_cmd_vtysh);
13401 install_element (RMAP_NODE, &match_community_cmd_vtysh);
13402 install_element (RMAP_NODE, &no_set_community_none_cmd_vtysh);
13403 install_element (OSPF_NODE, &ospf_default_metric_cmd_vtysh);
13404 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh);
13405 install_element (VIEW_NODE, &show_ipv6_bgp_community4_cmd_vtysh);
13406 install_element (RIPNG_NODE, &ripng_redistribute_connected_metric_routemap_cmd_vtysh);
13407 install_element (BGP_IPV4_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
13408 install_element (VIEW_NODE, &show_ip_ospf_neighbor_int_detail_cmd_vtysh);
13409 install_element (RIP_NODE, &no_rip_timers_cmd_vtysh);
13410 install_element (OSPF_NODE, &ospf_default_information_originate_type_cmd_vtysh);
13411 install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_cmd_vtysh);
13412 install_element (BGP_NODE, &neighbor_timers_cmd_vtysh);
13413 install_element (VIEW_NODE, &show_ipv6_route_addr_cmd_vtysh);
13414 install_element (ENABLE_NODE, &no_debug_zebra_packet_cmd_vtysh);
13415 install_element (ENABLE_NODE, &show_ip_bgp_instance_neighbors_cmd_vtysh);
13416 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh);
13417 install_element (CONFIG_NODE, &no_debug_ospf_nsm_cmd_vtysh);
13418 install_element (CONFIG_NODE, &no_access_list_extended_cmd_vtysh);
13419 install_element (BGP_NODE, &bgp_damp_set3_cmd_vtysh);
13420 install_element (CONFIG_NODE, &debug_zebra_packet_direct_cmd_vtysh);
13421 install_element (VIEW_NODE, &show_ipv6_ospf6_topology_cmd_vtysh);
13422 install_element (BGP_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13423 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
13424 install_element (RMAP_NODE, &no_set_vpnv4_nexthop_val_cmd_vtysh);
13425 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_in_cmd_vtysh);
13426 install_element (CONFIG_NODE, &no_debug_rip_events_cmd_vtysh);
13427 install_element (INTERFACE_NODE, &no_ip_address_cmd_vtysh);
13428 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh);
13429 install_element (CONFIG_NODE, &ipv6_prefix_list_ge_cmd_vtysh);
13430 install_element (RIP_NODE, &no_rip_version_val_cmd_vtysh);
13431 install_element (BGP_NODE, &no_neighbor_timers_connect_cmd_vtysh);
13432 install_element (VIEW_NODE, &show_ipv6_mbgp_community3_exact_cmd_vtysh);
13433 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_cmd_vtysh);
13434 install_element (ENABLE_NODE, &debug_ospf_event_cmd_vtysh);
13435 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
13436 install_element (OSPF_NODE, &ospf_redistribute_source_routemap_cmd_vtysh);
13437 install_element (BGP_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13438 install_element (BGP_IPV4M_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh);
13439 install_element (ENABLE_NODE, &no_debug_ospf_nsm_cmd_vtysh);
13440 install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_cmd_vtysh);
13441 install_element (ENABLE_NODE, &show_ipv6_bgp_community_list_cmd_vtysh);
13442 install_element (VIEW_NODE, &show_ipv6_prefix_list_summary_name_cmd_vtysh);
13443 install_element (ENABLE_NODE, &show_table_cmd_vtysh);
13444 install_element (RIP_NODE, &rip_route_cmd_vtysh);
13445 install_element (OSPF_NODE, &area_default_cost_cmd_vtysh);
13446 install_element (CONFIG_NODE, &debug_ospf_event_cmd_vtysh);
13447 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd_vtysh);
13448 install_element (BGP_NODE, &neighbor_route_map_cmd_vtysh);
13449 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged9_cmd_vtysh);
13450 install_element (BGP_IPV4M_NODE, &bgp_network_route_map_cmd_vtysh);
13451 install_element (VIEW_NODE, &show_ip_bgp_ipv4_route_cmd_vtysh);
13452 install_element (ZEBRA_NODE, &no_ripng_redistribute_ripng_cmd_vtysh);
13453 install_element (INTERFACE_NODE, &bandwidth_if_cmd_vtysh);
13454 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_in_cmd_vtysh);
13455 install_element (BGP_IPV4_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
13456 install_element (RIPNG_NODE, &ripng_redistribute_bgp_metric_cmd_vtysh);
13457 install_element (BGP_NODE, &bgp_redistribute_ipv4_metric_rmap_cmd_vtysh);
13458 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
13459 install_element (BGP_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh);
13460 install_element (INTERFACE_NODE, &shutdown_if_cmd_vtysh);
13461 install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_longer_cmd_vtysh);
13462 install_element (RIPNG_NODE, &ripng_redistribute_static_cmd_vtysh);
13463 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
13464 install_element (CONFIG_NODE, &ip_prefix_list_description_cmd_vtysh);
13465 install_element (ENABLE_NODE, &undebug_bgp_filter_cmd_vtysh);
13466 install_element (ENABLE_NODE, &show_ip_prefix_list_detail_name_cmd_vtysh);
13467 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_cmd_vtysh);
13468 install_element (INTERFACE_NODE, &ip_irdp_minadvertinterval_cmd_vtysh);
13469 install_element (CONFIG_NODE, &no_ip_prefix_list_cmd_vtysh);
13470 install_element (ENABLE_NODE, &show_ip_prefix_list_name_seq_cmd_vtysh);
13471 install_element (ENABLE_NODE, &clear_bgp_peer_in_cmd_vtysh);
13472 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
13473 install_element (VIEW_NODE, &ipv6_mbgp_neighbor_routes_cmd_vtysh);
13474 install_element (CONFIG_NODE, &debug_ospf_lsa_cmd_vtysh);
13475 install_element (ENABLE_NODE, &show_ip_bgp_filter_list_cmd_vtysh);
13476 install_element (RMAP_NODE, &no_match_aspath_val_cmd_vtysh);
13477 install_element (RIP_NODE, &no_rip_offset_list_ifname_cmd_vtysh);
13478 install_element (CONFIG_NODE, &no_debug_ospf_lsa_cmd_vtysh);
13479 install_element (CONFIG_NODE, &no_debug_ospf6_all_cmd_vtysh);
13480 install_element (ENABLE_NODE, &no_debug_ospf_zebra_cmd_vtysh);
13481 install_element (BGP_IPV4_NODE, &no_bgp_network_route_map_cmd_vtysh);
13482 install_element (VIEW_NODE, &show_ip_bgp_attr_info_cmd_vtysh);
13483 install_element (VIEW_NODE, &show_ip_bgp_instance_ipv4_summary_cmd_vtysh);
13484 install_element (BGP_IPV4M_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
13485 install_element (CONFIG_NODE, &no_debug_bgp_filter_cmd_vtysh);
13486 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_out_cmd_vtysh);
13487 install_element (CONFIG_NODE, &debug_ospf_ism_sub_cmd_vtysh);
13488 install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_addr_cmd_vtysh);
13489 install_element (CONFIG_NODE, &no_ipv6_route_ifname_pref_cmd_vtysh);
13490 install_element (VIEW_NODE, &show_bgp_ipv6_community4_cmd_vtysh);
13491 install_element (BGP_IPV4_NODE, &no_neighbor_route_server_client_cmd_vtysh);
13492 install_element (ENABLE_NODE, &debug_ripng_zebra_cmd_vtysh);
13493 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged4_cmd_vtysh);
13494 install_element (INTERFACE_NODE, &ip_rip_receive_version_1_cmd_vtysh);
13495 install_element (VIEW_NODE, &show_ipv6_mbgp_community2_exact_cmd_vtysh);
13496 install_element (BGP_NODE, &no_neighbor_distribute_list_cmd_vtysh);
13497 install_element (BGP_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
13498 install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_cmd_vtysh);
13499 install_element (ENABLE_NODE, &no_debug_zebra_kernel_cmd_vtysh);
13500 install_element (VIEW_NODE, &show_ipv6_ospf6_area_route_cmd_vtysh);
13501 install_element (BGP_NODE, &bgp_network_mask_cmd_vtysh);
13502 install_element (ENABLE_NODE, &clear_ip_bgp_peer_out_cmd_vtysh);
13503 install_element (BGP_NODE, &neighbor_route_server_client_cmd_vtysh);
13504 install_element (BGP_NODE, &no_bgp_router_id_val_cmd_vtysh);
13505 install_element (INTERFACE_NODE, &ip_rip_send_version_cmd_vtysh);
13506 install_element (ENABLE_NODE, &show_ipv6_bgp_community4_exact_cmd_vtysh);
13507 install_element (CONFIG_NODE, &debug_zebra_packet_cmd_vtysh);
13508 install_element (ENABLE_NODE, &show_ip_bgp_view_route_cmd_vtysh);
13509 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
13510 install_element (RIP_NODE, &rip_default_metric_cmd_vtysh);
13511 install_element (ENABLE_NODE, &clear_bgp_as_soft_in_cmd_vtysh);
13512 install_element (BGP_IPV4_NODE, &no_neighbor_distribute_list_cmd_vtysh);
13513 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_out_cmd_vtysh);
13514 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_in_cmd_vtysh);
13515 install_element (BGP_NODE, &no_bgp_default_local_preference_val_cmd_vtysh);
13516 install_element (ENABLE_NODE, &debug_ospf_nsm_sub_cmd_vtysh);
13517 install_element (OSPF_NODE, &area_authentication_cmd_vtysh);
13518 install_element (ENABLE_NODE, &show_ipv6_ospf6_neighbor_cmd_vtysh);
13519 install_element (BGP_IPV4M_NODE, &neighbor_allowas_in_cmd_vtysh);
13520 install_element (VIEW_NODE, &show_ipv6_prefix_list_detail_name_cmd_vtysh);
13521 install_element (BGP_NODE, &no_bgp_network_import_check_cmd_vtysh);
13522 install_element (RMAP_NODE, &no_set_aspath_prepend_val_cmd_vtysh);
13523 install_element (VIEW_NODE, &show_bgp_prefix_cmd_vtysh);
13524 install_element (VIEW_NODE, &show_ip_bgp_instance_neighbors_peer_cmd_vtysh);
13525 install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd_vtysh);
13526 install_element (CONFIG_NODE, &no_access_list_remark_arg_cmd_vtysh);
13527 install_element (BGP_NODE, &neighbor_activate_cmd_vtysh);
13528 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh);
13529 install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_list_cmd_vtysh);
13530 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_in_cmd_vtysh);
13531 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
13532 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community4_cmd_vtysh);
13533 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh);
13534 install_element (VIEW_NODE, &show_ip_prefix_list_prefix_cmd_vtysh);
13535 install_element (RMAP_NODE, &no_match_ecommunity_cmd_vtysh);
13536 install_element (ENABLE_NODE, &show_ipv6_mbgp_community4_cmd_vtysh);
13537 install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_addr_cmd_vtysh);
13538 install_element (BGP_VPNV4_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
13539 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_address_mask_cmd_vtysh);
13540 install_element (BGP_VPNV4_NODE, &no_neighbor_send_community_cmd_vtysh);
13541 install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_list_cmd_vtysh);
13542 install_element (BGP_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
13543 install_element (ENABLE_NODE, &undebug_bgp_update_cmd_vtysh);
13544 install_element (BGP_VPNV4_NODE, &no_neighbor_send_community_type_cmd_vtysh);
13545 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_filter_list_cmd_vtysh);
13546 install_element (BGP_NODE, &bgp_distance_source_access_list_cmd_vtysh);
13547 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13548 install_element (ENABLE_NODE, &show_ipv6_prefix_list_detail_name_cmd_vtysh);
13549 install_element (ENABLE_NODE, &clear_ip_prefix_list_cmd_vtysh);
13550 install_element (OSPF_NODE, &area_vlink_param3_cmd_vtysh);
13551 install_element (OSPF_NODE, &no_neighbor_priority_cmd_vtysh);
13552 install_element (BGP_IPV4_NODE, &no_aggregate_address_summary_only_cmd_vtysh);
13553 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_in_cmd_vtysh);
13554 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_metric_routemap_cmd_vtysh);
13555 install_element (INTERFACE_NODE, &ospf_hello_interval_cmd_vtysh);
13556 install_element (VIEW_NODE, &ipv6_mbgp_neighbor_received_routes_cmd_vtysh);
13557 install_element (ENABLE_NODE, &show_ip_bgp_community2_exact_cmd_vtysh);
13558 install_element (ENABLE_NODE, &show_bgp_filter_list_cmd_vtysh);
13559 install_element (INTERFACE_NODE, &no_ip_rip_send_version_cmd_vtysh);
13560 install_element (CONFIG_NODE, &no_router_rip_cmd_vtysh);
13561 install_element (INTERFACE_NODE, &no_ipv6_address_cmd_vtysh);
13562 install_element (BGP_IPV6_NODE, &ipv6_aggregate_address_summary_only_cmd_vtysh);
13563 install_element (INTERFACE_NODE, &ip_irdp_holdtime_cmd_vtysh);
13564 install_element (ENABLE_NODE, &clear_bgp_as_cmd_vtysh);
13565 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_cmd_vtysh);
13566 install_element (BGP_IPV6_NODE, &neighbor_unsuppress_map_cmd_vtysh);
13567 install_element (ENABLE_NODE, &debug_ospf_ism_cmd_vtysh);
13568 install_element (ENABLE_NODE, &show_zebra_cmd_vtysh);
13569 install_element (BGP_IPV4_NODE, &bgp_network_mask_cmd_vtysh);
13570 install_element (OSPF_NODE, &no_area_vlink_param1_cmd_vtysh);
13571 install_element (RMAP_NODE, &no_match_ip_address_prefix_list_cmd_vtysh);
13572 install_element (CONFIG_NODE, &no_ip_prefix_list_description_arg_cmd_vtysh);
13573 install_element (BGP_NODE, &no_neighbor_version_cmd_vtysh);
13574 install_element (ZEBRA_NODE, &redistribute_ospf6_cmd_vtysh);
13575 install_element (CONFIG_NODE, &debug_ospf_nssa_cmd_vtysh);
13576 install_element (RMAP_NODE, &set_ipv6_nexthop_local_cmd_vtysh);
13577 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_list_exact_cmd_vtysh);
13578 install_element (RIP_NODE, &no_rip_default_metric_cmd_vtysh);
13579 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
13580 install_element (BGP_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
13581 install_element (CONFIG_NODE, &ipv6_prefix_list_le_cmd_vtysh);
13582 install_element (BGP_IPV6_NODE, &no_ipv6_bgp_network_cmd_vtysh);
13583 install_element (OSPF_NODE, &ospf_default_information_originate_type_metric_cmd_vtysh);
13584 install_element (RMAP_NODE, &no_match_origin_val_cmd_vtysh);
13585 install_element (RIPNG_NODE, &ripng_aggregate_address_cmd_vtysh);
13586 install_element (VIEW_NODE, &show_ip_route_cmd_vtysh);
13587 install_element (BGP_IPV4M_NODE, &no_bgp_network_cmd_vtysh);
13588 install_element (BGP_NODE, &neighbor_unsuppress_map_cmd_vtysh);
13589 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
13590 install_element (VIEW_NODE, &show_mpls_te_link_cmd_vtysh);
13591 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
13592 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_cmd_vtysh);
13593 install_element (ENABLE_NODE, &clear_bgp_peer_soft_out_cmd_vtysh);
13594 install_element (BGP_IPV4M_NODE, &no_neighbor_send_community_type_cmd_vtysh);
13595 install_element (VIEW_NODE, &show_ipv6_ospf6_neighborlist_cmd_vtysh);
13596 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_in_cmd_vtysh);
13597 install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_detail_cmd_vtysh);
13598 install_element (VIEW_NODE, &show_ip_community_list_cmd_vtysh);
13599 install_element (OSPF6_NODE, &passive_interface_cmd_vtysh);
13600 install_element (BGP_IPV6_NODE, &no_neighbor_remove_private_as_cmd_vtysh);
13601 install_element (BGP_IPV4M_NODE, &neighbor_unsuppress_map_cmd_vtysh);
13602 install_element (ENABLE_NODE, &show_bgp_community3_cmd_vtysh);
13603 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_cmd_vtysh);
13604 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_cmd_vtysh);
13605 install_element (BGP_NODE, &no_bgp_default_local_preference_cmd_vtysh);
13606 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_metric_cmd_vtysh);
13607 install_element (CONFIG_NODE, &debug_ripng_packet_direct_cmd_vtysh);
13608 install_element (CONFIG_NODE, &access_list_extended_any_mask_cmd_vtysh);
13609 install_element (CONFIG_NODE, &debug_rip_zebra_cmd_vtysh);
13610 install_element (BGP_IPV6_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
13611 install_element (BGP_NODE, &bgp_network_route_map_cmd_vtysh);
13612 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
13613 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_out_cmd_vtysh);
13614 install_element (ENABLE_NODE, &clear_bgp_all_out_cmd_vtysh);
13615 install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_list_cmd_vtysh);
13616 install_element (VIEW_NODE, &show_ip_bgp_scan_cmd_vtysh);
13617 install_element (INTERFACE_NODE, &ip_irdp_cmd_vtysh);
13618 install_element (INTERFACE_NODE, &ospf_authentication_key_cmd_vtysh);
13619 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
13620 install_element (VIEW_NODE, &show_debugging_zebra_cmd_vtysh);
13621 install_element (INTERFACE_NODE, &no_ipv6_ospf6_advertise_prefix_list_cmd_vtysh);
13622 install_element (INTERFACE_NODE, &no_ospf_transmit_delay_cmd_vtysh);
13623 install_element (BGP_NODE, &neighbor_send_community_cmd_vtysh);
13624 install_element (BGP_IPV6_NODE, &neighbor_prefix_list_cmd_vtysh);
13625 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_in_cmd_vtysh);
13626 install_element (RMAP_NODE, &no_set_originator_id_val_cmd_vtysh);
13627 install_element (BGP_IPV4_NODE, &neighbor_activate_cmd_vtysh);
13628 install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_cmd_vtysh);
13629 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_route_map_cmd_vtysh);
13630 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh);
13631 install_element (BGP_VPNV4_NODE, &no_neighbor_prefix_list_cmd_vtysh);
13632 install_element (VIEW_NODE, &show_bgp_neighbor_routes_cmd_vtysh);
13633 install_element (BGP_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
13634 install_element (RMAP_NODE, &no_match_ip_address_prefix_list_val_cmd_vtysh);
13635 install_element (OSPF_NODE, &area_authentication_message_digest_cmd_vtysh);
13636 install_element (BGP_NODE, &bgp_redistribute_ipv4_rmap_metric_cmd_vtysh);
13637 install_element (INTERFACE_NODE, &ip_ospf_authentication_cmd_vtysh);
13638 install_element (ENABLE_NODE, &clear_bgp_all_soft_out_cmd_vtysh);
13639 install_element (VIEW_NODE, &show_ip_ospf_neighbor_id_cmd_vtysh);
13640 install_element (BGP_IPV4_NODE, &aggregate_address_as_set_summary_cmd_vtysh);
13641 install_element (INTERFACE_NODE, &no_ip_rip_receive_version_num_cmd_vtysh);
13642 install_element (BGP_IPV4M_NODE, &neighbor_route_reflector_client_cmd_vtysh);
13643 install_element (BGP_IPV4_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
13644 install_element (BGP_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
13645 install_element (OSPF_NODE, &ospf_default_information_originate_metric_routemap_cmd_vtysh);
13646 install_element (CONFIG_NODE, &no_ipv6_access_list_cmd_vtysh);
13647 install_element (ENABLE_NODE, &show_ipv6_mbgp_route_cmd_vtysh);
13648 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbors_cmd_vtysh);
13649 install_element (VIEW_NODE, &show_ipv6_mbgp_cmd_vtysh);
13650 install_element (BGP_IPV4_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
13651 install_element (ENABLE_NODE, &debug_rip_zebra_cmd_vtysh);
13652 install_element (BGP_IPV6_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
13653 install_element (BGP_NODE, &bgp_redistribute_ipv4_rmap_cmd_vtysh);
13654 install_element (BGP_NODE, &no_neighbor_allowas_in_cmd_vtysh);
13655 install_element (BGP_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
13656 install_element (RMAP_NODE, &set_weight_cmd_vtysh);
13657 install_element (INTERFACE_NODE, &no_ospf_retransmit_interval_cmd_vtysh);
13658 install_element (CONFIG_NODE, &debug_bgp_fsm_cmd_vtysh);
13659 install_element (RMAP_NODE, &no_match_interface_cmd_vtysh);
13660 install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_cmd_vtysh);
13661 install_element (CONFIG_NODE, &no_debug_ospf_packet_all_cmd_vtysh);
13662 install_element (VIEW_NODE, &show_ip_bgp_prefix_longer_cmd_vtysh);
13663 install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_cmd_vtysh);
13664 install_element (ENABLE_NODE, &debug_ospf_lsa_cmd_vtysh);
13665 install_element (CONFIG_NODE, &no_debug_ripng_packet_cmd_vtysh);
13666 install_element (OSPF_NODE, &no_area_authentication_cmd_vtysh);
13667 install_element (ENABLE_NODE, &clear_ip_bgp_external_in_prefix_filter_cmd_vtysh);
13668 install_element (CONFIG_NODE, &debug_rip_packet_direct_cmd_vtysh);
13669 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
13670 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_all_cmd_vtysh);
13671 install_element (ENABLE_NODE, &show_ipv6_prefix_list_detail_cmd_vtysh);
13672 install_element (BGP_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
13673 install_element (INTERFACE_NODE, &mpls_te_link_unrsv_bw_cmd_vtysh);
13674 install_element (ENABLE_NODE, &debug_bgp_normal_cmd_vtysh);
13675 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_cmd_vtysh);
13676 install_element (RMAP_NODE, &no_set_origin_val_cmd_vtysh);
13677 install_element (VIEW_NODE, &show_ipv6_bgp_community2_exact_cmd_vtysh);
13678 install_element (CONFIG_NODE, &no_ip_extcommunity_list_standard_cmd_vtysh);
13679 install_element (RMAP_NODE, &set_community_none_cmd_vtysh);
13680 install_element (RMAP_NODE, &set_metric_cmd_vtysh);
13681 install_element (BGP_NODE, &no_neighbor_advertise_interval_cmd_vtysh);
13682 install_element (RIP_NODE, &rip_distance_source_access_list_cmd_vtysh);
13683 install_element (BGP_NODE, &neighbor_local_as_no_prepend_cmd_vtysh);
13684 install_element (BGP_NODE, &bgp_damp_set_cmd_vtysh);
13685 install_element (CONFIG_NODE, &no_ip_community_list_standard_cmd_vtysh);
13686 install_element (BGP_NODE, &neighbor_attr_unchanged_cmd_vtysh);
13687 install_element (CONFIG_NODE, &no_route_map_all_cmd_vtysh);
13688 install_element (VIEW_NODE, &show_ip_forwarding_cmd_vtysh);
13689 install_element (ENABLE_NODE, &clear_bgp_peer_group_out_cmd_vtysh);
13690 install_element (BGP_IPV4_NODE, &neighbor_allowas_in_cmd_vtysh);
13691 install_element (RMAP_NODE, &match_ipv6_next_hop_cmd_vtysh);
13692 install_element (BGP_NODE, &no_neighbor_route_map_cmd_vtysh);
13693 install_element (BGP_NODE, &no_bgp_cluster_id_arg_cmd_vtysh);
13694 install_element (CONFIG_NODE, &no_debug_zebra_kernel_cmd_vtysh);
13695 install_element (VIEW_NODE, &show_ip_route_supernets_cmd_vtysh);
13696 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_cmd_vtysh);
13697 install_element (RMAP_NODE, &no_match_ipv6_address_prefix_list_cmd_vtysh);
13698 install_element (INTERFACE_NODE, &ipv6_ospf6_priority_cmd_vtysh);
13699 install_element (ENABLE_NODE, &clear_bgp_peer_in_prefix_filter_cmd_vtysh);
13700 install_element (RIPNG_NODE, &no_ripng_redistribute_static_cmd_vtysh);
13701 install_element (OSPF_NODE, &area_nssa_translate_no_summary_cmd_vtysh);
13702 install_element (BGP_IPV4_NODE, &aggregate_address_mask_summary_only_cmd_vtysh);
13703 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_list_cmd_vtysh);
13704 install_element (RMAP_NODE, &no_set_ecommunity_rt_cmd_vtysh);
13705 install_element (OSPF_NODE, &no_ospf_router_id_cmd_vtysh);
13706 install_element (VIEW_NODE, &show_ip_ospf_neighbor_all_cmd_vtysh);
13707 install_element (ENABLE_NODE, &show_ipv6_mbgp_community4_exact_cmd_vtysh);
13708 install_element (OSPF_NODE, &area_vlink_authtype_args_md5_cmd_vtysh);
13709 install_element (CONFIG_NODE, &ip_as_path_cmd_vtysh);
13710 install_element (CONFIG_NODE, &no_router_zebra_cmd_vtysh);
13711 install_element (VIEW_NODE, &show_ip_prefix_list_detail_name_cmd_vtysh);
13712 install_element (VIEW_NODE, &show_bgp_community_exact_cmd_vtysh);
13713 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged_cmd_vtysh);
13714 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_type_cmd_vtysh);
13715 install_element (RMAP_NODE, &match_ip_next_hop_cmd_vtysh);
13716 install_element (VIEW_NODE, &show_ipv6_bgp_community2_cmd_vtysh);
13717 install_element (BGP_NODE, &bgp_client_to_client_reflection_cmd_vtysh);
13718 install_element (BGP_NODE, &bgp_scan_time_cmd_vtysh);
13719 install_element (VIEW_NODE, &show_ip_bgp_cidr_only_cmd_vtysh);
13720 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
13721 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
13722 install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_routes_cmd_vtysh);
13723 install_element (CONFIG_NODE, &no_ip_prefix_list_ge_le_cmd_vtysh);
13724 install_element (BGP_IPV6_NODE, &no_neighbor_send_community_type_cmd_vtysh);
13725 install_element (VIEW_NODE, &show_bgp_neighbor_advertised_route_cmd_vtysh);
13726 install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
13727 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh);
13728 install_element (RMAP_NODE, &match_metric_cmd_vtysh);
13729 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_day_month_day_month_cmd_vtysh);
13730 install_element (BGP_VPNV4_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
13731 install_element (CONFIG_NODE, &no_bgp_config_type_cmd_vtysh);
13732 install_element (OSPF_NODE, &no_passive_interface_addr_cmd_vtysh);
13733 install_element (BGP_NODE, &old_ipv6_aggregate_address_cmd_vtysh);
13734 install_element (CONFIG_NODE, &no_ip_forwarding_cmd_vtysh);
13735 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_metric_cmd_vtysh);
13736 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged5_cmd_vtysh);
13737 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_out_cmd_vtysh);
13738 install_element (RIP_NODE, &no_rip_distance_cmd_vtysh);
13739 install_element (VIEW_NODE, &show_ipv6_prefix_list_name_seq_cmd_vtysh);
13740 install_element (VIEW_NODE, &show_ipv6_ospf6_route_flapping_cmd_vtysh);
13741 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
13742 install_element (BGP_VPNV4_NODE, &neighbor_prefix_list_cmd_vtysh);
13743 install_element (BGP_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
13744 install_element (ENABLE_NODE, &clear_bgp_instance_all_cmd_vtysh);
13745 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_rmap_cmd_vtysh);
13746 install_element (VIEW_NODE, &show_bgp_ipv6_community_list_cmd_vtysh);
13747 install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_cmd_vtysh);
13748 install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_cmd_vtysh);
13749 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_cmd_vtysh);
13750 install_element (INTERFACE_NODE, &no_ipv6_ospf6_advertise_force_prefix_cmd_vtysh);
13751 install_element (OSPF6_NODE, &no_passive_interface_cmd_vtysh);
13752 install_element (ENABLE_NODE, &show_bgp_neighbors_cmd_vtysh);
13753 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_metric_cmd_vtysh);
13754 install_element (RIP_NODE, &rip_offset_list_cmd_vtysh);
13755 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_flapping_cmd_vtysh);
13756 install_element (ENABLE_NODE, &show_bgp_ipv6_community3_cmd_vtysh);
13757 install_element (ENABLE_NODE, &no_debug_rip_events_cmd_vtysh);
13758 install_element (ENABLE_NODE, &show_ipv6_mbgp_community_cmd_vtysh);
13759 install_element (BGP_NODE, &no_bgp_cluster_id_cmd_vtysh);
13760 install_element (OSPF_NODE, &router_id_cmd_vtysh);
13761 install_element (VIEW_NODE, &show_ipv6_route_ospf6_external_cmd_vtysh);
13762 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
13763 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_duration_month_day_cmd_vtysh);
13764 install_element (BGP_NODE, &no_bgp_deterministic_med_cmd_vtysh);
13765 install_element (BGP_NODE, &neighbor_port_cmd_vtysh);
13766 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_in_prefix_filter_cmd_vtysh);
13767 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_cmd_vtysh);
13768 install_element (VIEW_NODE, &show_ip_prefix_list_detail_cmd_vtysh);
13769 install_element (BGP_IPV4M_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
13770 install_element (INTERFACE_NODE, &no_ip_ospf_network_cmd_vtysh);
13771 install_element (CONFIG_NODE, &no_ip_prefix_list_le_cmd_vtysh);
13772 install_element (RMAP_NODE, &ospf6_routemap_set_forwarding_cmd_vtysh);
13773 install_element (CONFIG_NODE, &no_access_list_extended_any_host_cmd_vtysh);
13774 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_in_cmd_vtysh);
13775 install_element (BGP_IPV4M_NODE, &neighbor_send_community_type_cmd_vtysh);
13776 install_element (CONFIG_NODE, &access_list_extended_mask_any_cmd_vtysh);
13777 install_element (VIEW_NODE, &show_ipv6_bgp_community_list_exact_cmd_vtysh);
13778 install_element (RMAP_NODE, &ospf6_routemap_set_metric_type_cmd_vtysh);
13779 install_element (BGP_NODE, &bgp_network_mask_natural_backdoor_cmd_vtysh);
13780 install_element (VIEW_NODE, &show_ip_route_prefix_longer_cmd_vtysh);
13781 install_element (BGP_NODE, &neighbor_nexthop_self_cmd_vtysh);
13782 install_element (RMAP_NODE, &no_set_local_pref_val_cmd_vtysh);
13783 install_element (BGP_IPV4_NODE, &no_neighbor_filter_list_cmd_vtysh);
13784 install_element (ENABLE_NODE, &show_bgp_neighbor_received_routes_cmd_vtysh);
13785 install_element (INTERFACE_NODE, &ospf_network_cmd_vtysh);
13786 install_element (BGP_NODE, &neighbor_interface_cmd_vtysh);
13787 install_element (CONFIG_NODE, &no_ip_prefix_list_le_ge_cmd_vtysh);
13788 install_element (ENABLE_NODE, &show_ip_bgp_community3_exact_cmd_vtysh);
13789 install_element (BGP_IPV6_NODE, &no_neighbor_distribute_list_cmd_vtysh);
13790 install_element (BGP_NODE, &no_bgp_fast_external_failover_cmd_vtysh);
13791 install_element (ENABLE_NODE, &show_bgp_ipv6_community3_exact_cmd_vtysh);
13792 install_element (BGP_VPNV4_NODE, &neighbor_distribute_list_cmd_vtysh);
13793 install_element (ENABLE_NODE, &show_ip_access_list_name_cmd_vtysh);
13794 install_element (BGP_IPV6_NODE, &neighbor_allowas_in_cmd_vtysh);
13795 install_element (CONFIG_NODE, &ip_extcommunity_list_standard2_cmd_vtysh);
13796 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_all_cmd_vtysh);
13797 install_element (BGP_NODE, &no_default_attr_localpref_cmd_vtysh);
13798 install_element (ENABLE_NODE, &undebug_bgp_keepalive_cmd_vtysh);
13799 install_element (OSPF_NODE, &no_ospf_compatible_rfc1583_cmd_vtysh);
13800 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh);
13801 install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_first_match_cmd_vtysh);
13802 install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
13803 install_element (OSPF6_NODE, &flap_damping_route_cmd_vtysh);
13804 install_element (OSPF_NODE, &ospf_redistribute_source_metric_cmd_vtysh);
13805 install_element (BGP_NODE, &no_neighbor_strict_capability_cmd_vtysh);
13806 install_element (VIEW_NODE, &show_ip_ospf_route_cmd_vtysh);
13807 install_element (RMAP_NODE, &no_set_ecommunity_rt_val_cmd_vtysh);
13808 install_element (VIEW_NODE, &show_ipv6_bgp_community_list_cmd_vtysh);
13809 install_element (RMAP_NODE, &ospf6_routemap_no_set_metric_type_cmd_vtysh);
13810 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbors_peer_cmd_vtysh);
13811 install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_longer_cmd_vtysh);
13812 install_element (CONFIG_NODE, &access_list_extended_any_host_cmd_vtysh);
13813 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_metric_rmap_cmd_vtysh);
13814 install_element (BGP_IPV4M_NODE, &aggregate_address_summary_as_set_cmd_vtysh);
13815 install_element (ENABLE_NODE, &show_ipv6_bgp_community_cmd_vtysh);
13816 install_element (CONFIG_NODE, &ip_route_mask_cmd_vtysh);
13817 install_element (CONFIG_NODE, &debug_rip_packet_cmd_vtysh);
13818 install_element (RIPNG_NODE, &ripng_redistribute_connected_cmd_vtysh);
13819 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_in_cmd_vtysh);
13820 install_element (BGP_IPV4M_NODE, &bgp_network_mask_cmd_vtysh);
13821 install_element (ENABLE_NODE, &show_ip_bgp_view_prefix_cmd_vtysh);
13822 install_element (BGP_NODE, &bgp_damp_set2_cmd_vtysh);
13823 install_element (BGP_IPV6_NODE, &neighbor_route_server_client_cmd_vtysh);
13824 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_route_cmd_vtysh);
13825 install_element (BGP_IPV4M_NODE, &aggregate_address_as_set_cmd_vtysh);
13826 install_element (VIEW_NODE, &show_ipv6_mbgp_community_list_cmd_vtysh);
13827 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_in_cmd_vtysh);
13828 install_element (OSPF_NODE, &no_refresh_timer_val_cmd_vtysh);
13829 install_element (VIEW_NODE, &show_bgp_community4_exact_cmd_vtysh);
13830 install_element (RIPNG_NODE, &ripng_route_cmd_vtysh);
13831 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_out_cmd_vtysh);
13832 install_element (ENABLE_NODE, &show_ipv6_bgp_community3_exact_cmd_vtysh);
13833 install_element (BGP_IPV4_NODE, &neighbor_remove_private_as_cmd_vtysh);
13834 install_element (ENABLE_NODE, &show_bgp_ipv6_community_list_exact_cmd_vtysh);
13835 install_element (RIPNG_NODE, &ripng_redistribute_connected_metric_cmd_vtysh);
13836 install_element (VIEW_NODE, &show_ipv6_ospf6_area_spf_tree_cmd_vtysh);
13837 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_ge_cmd_vtysh);
13838 install_element (OSPF_NODE, &no_area_import_list_cmd_vtysh);
13839 install_element (RIPNG_NODE, &ripng_redistribute_kernel_metric_routemap_cmd_vtysh);
13840 install_element (OSPF_NODE, &ospf_distance_ospf_intra_cmd_vtysh);
13841 install_element (BGP_IPV4_NODE, &bgp_network_mask_natural_cmd_vtysh);
13842 install_element (BGP_NODE, &no_bgp_distance_source_cmd_vtysh);
13843 install_element (VIEW_NODE, &show_ip_bgp_view_route_cmd_vtysh);
13844 install_element (BGP_IPV6_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
13845 install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_out_cmd_vtysh);
13846 install_element (VIEW_NODE, &show_table_cmd_vtysh);
13847 install_element (ENABLE_NODE, &debug_bgp_update_cmd_vtysh);
13848 install_element (BGP_IPV4_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
13849 install_element (INTERFACE_NODE, &no_shutdown_if_cmd_vtysh);
13850 install_element (ENABLE_NODE, &undebug_bgp_fsm_cmd_vtysh);
13851 install_element (BGP_IPV6_NODE, &neighbor_route_map_cmd_vtysh);
13852 install_element (ENABLE_NODE, &undebug_bgp_normal_cmd_vtysh);
13853 install_element (CONFIG_NODE, &no_access_list_extended_any_mask_cmd_vtysh);
13854 install_element (ENABLE_NODE, &show_ip_bgp_prefix_longer_cmd_vtysh);
13855 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
13856 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_in_cmd_vtysh);
13857 install_element (ENABLE_NODE, &no_debug_bgp_update_cmd_vtysh);
13858 install_element (RIPNG_NODE, &ripng_default_metric_cmd_vtysh);
13859 install_element (OSPF_NODE, &ospf_router_id_cmd_vtysh);
13860 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_routemap_cmd_vtysh);
13861 install_element (RMAP_NODE, &no_match_origin_cmd_vtysh);
13862 install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_cmd_vtysh);
13863 install_element (RMAP_NODE, &set_atomic_aggregate_cmd_vtysh);
13864 install_element (BGP_NODE, &bgp_default_local_preference_cmd_vtysh);
13865 install_element (BGP_NODE, &neighbor_update_source_cmd_vtysh);
13866 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
13867 install_element (OSPF_NODE, &no_ospf_abr_type_cmd_vtysh);
13868 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh);
13869 install_element (ENABLE_NODE, &clear_bgp_peer_out_cmd_vtysh);
13870 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
13871 install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_in_cmd_vtysh);
13872 install_element (RMAP_NODE, &no_set_community_cmd_vtysh);
13873 install_element (BGP_IPV4_NODE, &aggregate_address_cmd_vtysh);
13874 install_element (BGP_IPV4M_NODE, &neighbor_distribute_list_cmd_vtysh);
13875 install_element (BGP_NODE, &no_neighbor_send_community_type_cmd_vtysh);
13876 install_element (BGP_IPV6_NODE, &neighbor_default_originate_cmd_vtysh);
13877 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_in_prefix_filter_cmd_vtysh);
13878 install_element (BGP_IPV4_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh);
13879 install_element (BGP_NODE, &no_synchronization_cmd_vtysh);
13880 install_element (OSPF_NODE, &neighbor_cmd_vtysh);
13881 install_element (ENABLE_NODE, &show_ip_bgp_community2_cmd_vtysh);
13882 install_element (CONFIG_NODE, &ip_community_list_name_standard_cmd_vtysh);
13883 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
13884 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_out_cmd_vtysh);
13885 install_element (ENABLE_NODE, &clear_bgp_as_in_prefix_filter_cmd_vtysh);
13886 install_element (BGP_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh);
13887 install_element (BGP_IPV4_NODE, &neighbor_send_community_type_cmd_vtysh);
13888 install_element (OSPF_NODE, &no_ospf_distance_cmd_vtysh);
13889 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_out_cmd_vtysh);
13890 install_element (OSPF_NODE, &no_area_vlink_authtype_authkey_cmd_vtysh);
13891 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_cmd_vtysh);
13892 install_element (OSPF_NODE, &area_range_not_advertise_cmd_vtysh);
13893 install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_cmd_vtysh);
13894 install_element (ENABLE_NODE, &debug_bgp_fsm_cmd_vtysh);
13895 install_element (BGP_IPV4M_NODE, &neighbor_default_originate_cmd_vtysh);
13896 install_element (ENABLE_NODE, &undebug_bgp_all_cmd_vtysh);
13897 install_element (BGP_NODE, &bgp_always_compare_med_cmd_vtysh);
13898 install_element (ENABLE_NODE, &show_ip_bgp_community4_cmd_vtysh);
13899 install_element (CONFIG_NODE, &no_ipv6_prefix_list_description_cmd_vtysh);
13900 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_in_cmd_vtysh);
13901 install_element (VIEW_NODE, &show_debug_ospf6_cmd_vtysh);
13902 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh);
13903 install_element (OSPF_NODE, &ospf_redistribute_source_metric_type_cmd_vtysh);
13904 install_element (CONFIG_NODE, &dump_bgp_all_interval_cmd_vtysh);
13905 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
13906 install_element (BGP_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
13907 install_element (INTERFACE_NODE, &ospf_dead_interval_cmd_vtysh);
13908 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_type_routemap_cmd_vtysh);
13909 install_element (ENABLE_NODE, &clear_bgp_external_soft_out_cmd_vtysh);
13910 install_element (INTERFACE_NODE, &ip_ospf_authentication_key_addr_cmd_vtysh);
13911 install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_cmd_vtysh);
13912 install_element (ENABLE_NODE, &show_ip_bgp_prefix_list_cmd_vtysh);
13913 install_element (BGP_IPV4M_NODE, &neighbor_send_community_cmd_vtysh);
13914 install_element (VIEW_NODE, &show_bgp_community_list_exact_cmd_vtysh);
13915 install_element (VIEW_NODE, &show_ip_ospf_cmd_vtysh);
13916 install_element (BGP_NODE, &no_neighbor_shutdown_cmd_vtysh);
13917 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13918 install_element (VIEW_NODE, &show_ipv6_bgp_cmd_vtysh);
13919 install_element (ENABLE_NODE, &show_ipv6_route_protocol_cmd_vtysh);
13920 install_element (BGP_NODE, &bgp_timers_cmd_vtysh);
13921 install_element (INTERFACE_NODE, &no_ip_rip_authentication_key_chain2_cmd_vtysh);
13922 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh);
13923 install_element (CONFIG_NODE, &debug_zebra_events_cmd_vtysh);
13924 install_element (BGP_IPV4M_NODE, &neighbor_nexthop_self_cmd_vtysh);
13925 install_element (ENABLE_NODE, &debug_ospf_nssa_cmd_vtysh);
13926 install_element (RMAP_NODE, &no_match_aspath_cmd_vtysh);
13927 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_in_cmd_vtysh);
13928 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_cmd_vtysh);
13929 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
13930 install_element (BGP_NODE, &no_neighbor_capability_route_refresh_cmd_vtysh);
13931 install_element (CONFIG_NODE, &ip_community_list_expanded_cmd_vtysh);
13932 install_element (ENABLE_NODE, &show_debugging_ripng_cmd_vtysh);
13933 install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_cmd_vtysh);
13934 install_element (BGP_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
13935 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_metric_rmap_cmd_vtysh);
13936 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_out_cmd_vtysh);
13937 install_element (ENABLE_NODE, &show_ip_route_protocol_cmd_vtysh);
13938 install_element (BGP_IPV4M_NODE, &neighbor_remove_private_as_cmd_vtysh);
13939 install_element (CONFIG_NODE, &no_ip_prefix_list_description_cmd_vtysh);
13940 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_in_cmd_vtysh);
13941 install_element (INTERFACE_NODE, &no_ospf_hello_interval_cmd_vtysh);
13942 install_element (CONFIG_NODE, &no_debug_rip_packet_cmd_vtysh);
13943 install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_cmd_vtysh);
13944 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
13945 install_element (INTERFACE_NODE, &ip_rip_send_version_2_cmd_vtysh);
13946 install_element (BGP_VPNV4_NODE, &no_neighbor_allowas_in_cmd_vtysh);
13947 install_element (BGP_IPV4M_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh);
13948 install_element (CONFIG_NODE, &no_access_list_standard_cmd_vtysh);
13949 install_element (VIEW_NODE, &show_ip_ospf_database_cmd_vtysh);
13950 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh);
13951 install_element (VIEW_NODE, &show_ipv6_bgp_prefix_longer_cmd_vtysh);
13952 install_element (CONFIG_NODE, &no_access_list_any_cmd_vtysh);
13953 install_element (CONFIG_NODE, &access_list_exact_cmd_vtysh);
13954 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
13955 install_element (BGP_IPV6_NODE, &no_neighbor_filter_list_cmd_vtysh);
13956 install_element (CONFIG_NODE, &no_debug_ospf_event_cmd_vtysh);
13957 install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_out_cmd_vtysh);
13958 install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_cmd_vtysh);
13959 install_element (INTERFACE_NODE, &no_ip_ospf_priority_addr_cmd_vtysh);
13960 install_element (CONFIG_NODE, &access_list_cmd_vtysh);
13961 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_out_cmd_vtysh);
13962 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_le_cmd_vtysh);
13963 install_element (VIEW_NODE, &show_ip_bgp_instance_neighbors_cmd_vtysh);
13964 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
13965 install_element (ENABLE_NODE, &no_debug_ospf_lsa_sub_cmd_vtysh);
13966 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_in_cmd_vtysh);
13967 install_element (INTERFACE_NODE, &ipv6_ospf6_hellointerval_cmd_vtysh);
13968 install_element (BGP_IPV4_NODE, &bgp_damp_unset2_cmd_vtysh);
13969 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
13970 install_element (BGP_IPV4M_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh);
13971 install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_first_match_cmd_vtysh);
13972 install_element (CONFIG_NODE, &ipv6_prefix_list_description_cmd_vtysh);
13973 install_element (ENABLE_NODE, &show_bgp_neighbor_received_prefix_filter_cmd_vtysh);
13974 install_element (ENABLE_NODE, &show_version_ospf6_cmd_vtysh);
13975 install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_router_cmd_vtysh);
13976 install_element (INTERFACE_NODE, &no_ip_rip_send_version_num_cmd_vtysh);
13977 install_element (RMAP_NODE, &match_ecommunity_cmd_vtysh);
13978 install_element (CONFIG_NODE, &no_ipv6_prefix_list_le_cmd_vtysh);
13979 install_element (RIP_NODE, &no_rip_redistribute_type_cmd_vtysh);
13980 install_element (INTERFACE_NODE, &no_ip_ospf_priority_cmd_vtysh);
13981 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_prefix_cmd_vtysh);
13982 install_element (VIEW_NODE, &show_ip_prefix_list_prefix_first_match_cmd_vtysh);
13983 install_element (ENABLE_NODE, &show_ip_bgp_prefix_cmd_vtysh);
13984 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
13985 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_out_cmd_vtysh);
13986 install_element (BGP_IPV6_NODE, &no_ipv6_bgp_network_route_map_cmd_vtysh);
13987 install_element (VIEW_NODE, &show_bgp_cmd_vtysh);
13988 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_routes_cmd_vtysh);
13989 install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_cmd_vtysh);
13990 install_element (OSPF_NODE, &no_area_vlink_authkey_cmd_vtysh);
13991 install_element (RMAP_NODE, &no_set_atomic_aggregate_cmd_vtysh);
13992 install_element (BGP_IPV6_NODE, &ipv6_bgp_network_route_map_cmd_vtysh);
13993 install_element (BGP_IPV4M_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh);
13994 install_element (RMAP_NODE, &no_rmap_onmatch_next_cmd_vtysh);
13995 install_element (ENABLE_NODE, &clear_bgp_all_soft_in_cmd_vtysh);
13996 install_element (RMAP_NODE, &match_ipv6_address_prefix_list_cmd_vtysh);
13997 install_element (VIEW_NODE, &show_ip_bgp_prefix_list_cmd_vtysh);
13998 install_element (VIEW_NODE, &show_ip_bgp_neighbor_received_routes_cmd_vtysh);
13999 install_element (CONFIG_NODE, &no_debug_ospf_ism_cmd_vtysh);
14000 install_element (INTERFACE_NODE, &ipv6_ospf6_instance_cmd_vtysh);
14001 install_element (ENABLE_NODE, &show_bgp_ipv6_community4_cmd_vtysh);
14002 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
14003 install_element (BGP_IPV6_NODE, &no_neighbor_route_server_client_cmd_vtysh);
14004 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_duration_day_month_cmd_vtysh);
14005 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_val_cmd_vtysh);
14006 install_element (CONFIG_NODE, &no_ip_community_list_name_all_cmd_vtysh);
14007 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community4_cmd_vtysh);
14008 install_element (OSPF_NODE, &area_range_advertise_cost_cmd_vtysh);
14009 install_element (BGP_IPV4_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
14010 install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_val_cmd_vtysh);
14011 install_element (OSPF_NODE, &no_timers_spf_cmd_vtysh);
14012 install_element (BGP_IPV4M_NODE, &no_neighbor_send_community_cmd_vtysh);
14013 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community2_cmd_vtysh);
14014 install_element (OSPF_NODE, &refresh_timer_cmd_vtysh);
14015 install_element (ENABLE_NODE, &debug_bgp_keepalive_cmd_vtysh);
14016 install_element (BGP_IPV6_NODE, &neighbor_nexthop_self_cmd_vtysh);
14017 install_element (VIEW_NODE, &show_ipv6_mbgp_route_cmd_vtysh);
14018 install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_ifname_cmd_vtysh);
14019 install_element (ENABLE_NODE, &show_ip_bgp_community_cmd_vtysh);
14020 install_element (ENABLE_NODE, &debug_rip_packet_cmd_vtysh);
14021 install_element (RMAP_NODE, &no_match_ipv6_next_hop_cmd_vtysh);
14022 install_element (RIPNG_NODE, &ripng_redistribute_bgp_cmd_vtysh);
14023 install_element (OSPF_NODE, &no_network_area_cmd_vtysh);
14024 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_in_cmd_vtysh);
14025 install_element (OSPF_NODE, &no_area_range_advertise_cmd_vtysh);
14026 install_element (ENABLE_NODE, &show_ip_extcommunity_list_arg_cmd_vtysh);
14027 install_element (CONFIG_NODE, &dump_bgp_all_cmd_vtysh);
14028 install_element (OSPF_NODE, &no_neighbor_cmd_vtysh);
14029 install_element (CONFIG_NODE, &router_zebra_cmd_vtysh);
14030 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_exact_cmd_vtysh);
14031 install_element (ENABLE_NODE, &show_ip_prefix_list_detail_cmd_vtysh);
14032 install_element (ENABLE_NODE, &show_bgp_ipv6_summary_cmd_vtysh);
14033 install_element (ENABLE_NODE, &clear_bgp_as_soft_out_cmd_vtysh);
14034 install_element (ENABLE_NODE, &show_ipv6_route_prefix_cmd_vtysh);
14035 install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_list_cmd_vtysh);
14036 install_element (BGP_IPV4_NODE, &neighbor_route_map_cmd_vtysh);
14037 install_element (BGP_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
14038 install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_in_cmd_vtysh);
14039 install_element (VIEW_NODE, &show_ip_extcommunity_list_cmd_vtysh);
14040 install_element (RMAP_NODE, &no_match_interface_val_cmd_vtysh);
14041 install_element (OSPF_NODE, &no_area_stub_no_summary_cmd_vtysh);
14042 install_element (OSPF_NODE, &no_area_stub_cmd_vtysh);
14043 install_element (OSPF_NODE, &area_import_list_cmd_vtysh);
14044 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_tags_cmd_vtysh);
14045 install_element (BGP_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
14046 install_element (BGP_NODE, &neighbor_allowas_in_cmd_vtysh);
14047 install_element (OSPF6_NODE, &interface_area_cmd_vtysh);
14048 install_element (CONFIG_NODE, &no_debug_bgp_update_cmd_vtysh);
14049 install_element (INTERFACE_NODE, &ip_irdp_maxadvertinterval_cmd_vtysh);
14050 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community4_exact_cmd_vtysh);
14051 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh);
14052 install_element (VIEW_NODE, &show_bgp_ipv6_community2_exact_cmd_vtysh);
14053 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_prefix_cmd_vtysh);
14054 install_element (VIEW_NODE, &show_ip_bgp_view_prefix_cmd_vtysh);
14055 install_element (OSPF_NODE, &area_vlink_cmd_vtysh);
14056 install_element (ENABLE_NODE, &show_debugging_zebra_cmd_vtysh);
14057 install_element (VIEW_NODE, &show_ip_bgp_prefix_cmd_vtysh);
14058 install_element (RIP_NODE, &rip_version_cmd_vtysh);
14059 install_element (BGP_IPV4M_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
14060 install_element (INTERFACE_NODE, &ospf_cost_cmd_vtysh);
14061 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_in_prefix_filter_cmd_vtysh);
14062 install_element (BGP_NODE, &bgp_enforce_first_as_cmd_vtysh);
14063 install_element (INTERFACE_NODE, &ip_rip_send_version_1_cmd_vtysh);
14064 install_element (ENABLE_NODE, &show_ipv6_mbgp_community3_exact_cmd_vtysh);
14065 install_element (ENABLE_NODE, &show_ip_ospf_route_cmd_vtysh);
14066 install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_cmd_vtysh);
14067 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_routes_cmd_vtysh);
14068 install_element (VIEW_NODE, &show_ip_prefix_list_summary_cmd_vtysh);
14069 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh);
14070 install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_addr_cmd_vtysh);
14071 install_element (OSPF_NODE, &no_area_vlink_cmd_vtysh);
14072 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_adv_router_cmd_vtysh);
14073 install_element (RMAP_NODE, &no_set_community_val_cmd_vtysh);
14074 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
14075 install_element (INTERFACE_NODE, &no_ip_rip_receive_version_cmd_vtysh);
14076 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh);
14077 install_element (RMAP_NODE, &no_set_weight_val_cmd_vtysh);
14078 install_element (ENABLE_NODE, &debug_zebra_packet_cmd_vtysh);
14079 install_element (BGP_IPV4M_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
14080 install_element (BGP_IPV4M_NODE, &no_neighbor_route_map_cmd_vtysh);
14081 install_element (BGP_NODE, &neighbor_maximum_prefix_cmd_vtysh);
14082 install_element (CONFIG_NODE, &ip_route_mask_distance_cmd_vtysh);
14083 install_element (BGP_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh);
14084 install_element (ENABLE_NODE, &debug_zebra_kernel_cmd_vtysh);
14085 install_element (BGP_IPV4M_NODE, &neighbor_prefix_list_cmd_vtysh);
14086 install_element (INTERFACE_NODE, &no_ospf_message_digest_key_cmd_vtysh);
14087 install_element (VIEW_NODE, &show_ipv6_bgp_filter_list_cmd_vtysh);
14088 install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_cmd_vtysh);
14089 install_element (ENABLE_NODE, &show_bgp_ipv6_community_list_cmd_vtysh);
14090 install_element (INTERFACE_NODE, &ipv6_ospf6_cost_cmd_vtysh);
14091 install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_addr_cmd_vtysh);
14092 install_element (ENABLE_NODE, &no_debug_ospf_nsm_sub_cmd_vtysh);
14093 install_element (BGP_IPV4_NODE, &neighbor_route_reflector_client_cmd_vtysh);
14094 install_element (BGP_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
14095 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_routemap_cmd_vtysh);
14096 install_element (CONFIG_NODE, &no_ipv6_access_list_any_cmd_vtysh);
14097 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_cmd_vtysh);
14098 install_element (BGP_IPV6_NODE, &neighbor_remove_private_as_cmd_vtysh);
14099 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_out_cmd_vtysh);
14100 install_element (VIEW_NODE, &show_bgp_neighbor_received_routes_cmd_vtysh);
14101 install_element (OSPF_NODE, &no_area_nssa_cmd_vtysh);
14102 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000014103 install_element (INTERFACE_NODE, &ipv6_ospf6_deadinterval_cmd_vtysh);
paul569c0f02003-03-02 21:19:26 +000014104 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_longer_cmd_vtysh);
14105 install_element (ENABLE_NODE, &show_bgp_ipv6_route_cmd_vtysh);
14106 install_element (BGP_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh);
14107 install_element (BGP_IPV4M_NODE, &no_neighbor_route_server_client_cmd_vtysh);
14108 install_element (BGP_NODE, &no_neighbor_local_as_val2_cmd_vtysh);
14109 install_element (CONFIG_NODE, &ipv6_prefix_list_ge_le_cmd_vtysh);
14110 install_element (BGP_NODE, &neighbor_send_community_type_cmd_vtysh);
14111 install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_cmd_vtysh);
14112 install_element (BGP_IPV6_NODE, &no_neighbor_allowas_in_cmd_vtysh);
14113 install_element (ZEBRA_NODE, &no_rip_redistribute_rip_cmd_vtysh);
14114 install_element (BGP_VPNV4_NODE, &no_vpnv4_network_cmd_vtysh);
14115 install_element (CONFIG_NODE, &config_table_cmd_vtysh);
14116 install_element (ENABLE_NODE, &show_mpls_te_link_cmd_vtysh);
14117 install_element (BGP_NODE, &neighbor_description_cmd_vtysh);
14118 install_element (BGP_IPV4_NODE, &aggregate_address_summary_only_cmd_vtysh);
14119 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_cidr_only_cmd_vtysh);
14120 install_element (RIP_NODE, &rip_distance_source_cmd_vtysh);
14121 install_element (ENABLE_NODE, &clear_bgp_external_out_cmd_vtysh);
14122 install_element (VIEW_NODE, &show_interface_cmd_vtysh);
14123 install_element (VIEW_NODE, &show_ipv6_bgp_community4_exact_cmd_vtysh);
14124 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_out_cmd_vtysh);
14125 install_element (CONFIG_NODE, &ip_extcommunity_list_name_standard2_cmd_vtysh);
14126 install_element (VIEW_NODE, &show_mpls_te_router_cmd_vtysh);
14127 install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_cmd_vtysh);
14128 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh);
14129 install_element (VIEW_NODE, &show_ip_bgp_ipv4_regexp_cmd_vtysh);
14130 install_element (BGP_NODE, &no_bgp_always_compare_med_cmd_vtysh);
14131 install_element (VIEW_NODE, &show_ip_ospf_border_routers_cmd_vtysh);
14132 install_element (ENABLE_NODE, &show_interface_cmd_vtysh);
14133 install_element (ENABLE_NODE, &show_ip_ospf_database_type_cmd_vtysh);
14134 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_cmd_vtysh);
14135 install_element (VIEW_NODE, &show_ip_prefix_list_name_seq_cmd_vtysh);
14136 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community3_cmd_vtysh);
14137 install_element (BGP_IPV4_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
14138 install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_val_cmd_vtysh);
14139 install_element (CONFIG_NODE, &access_list_extended_host_host_cmd_vtysh);
14140 install_element (VIEW_NODE, &show_ip_bgp_community3_cmd_vtysh);
14141 install_element (RMAP_NODE, &no_set_aggregator_as_cmd_vtysh);
14142 install_element (VIEW_NODE, &show_bgp_ipv6_prefix_list_cmd_vtysh);
14143 install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_external_cmd_vtysh);
14144 install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_cmd_vtysh);
14145 install_element (BGP_IPV4_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh);
14146 install_element (BGP_NODE, &old_ipv6_aggregate_address_summary_only_cmd_vtysh);
14147 install_element (ENABLE_NODE, &show_bgp_community_cmd_vtysh);
14148 install_element (BGP_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh);
14149 install_element (CONFIG_NODE, &debug_zebra_packet_detail_cmd_vtysh);
14150 install_element (ENABLE_NODE, &clear_ip_bgp_all_cmd_vtysh);
14151 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh);
14152 install_element (ENABLE_NODE, &debug_ripng_packet_detail_cmd_vtysh);
14153 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_all_cmd_vtysh);
14154 install_element (ENABLE_NODE, &show_ip_ospf_database_type_self_cmd_vtysh);
14155 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_cmd_vtysh);
14156 install_element (BGP_IPV6_NODE, &neighbor_distribute_list_cmd_vtysh);
14157 install_element (ENABLE_NODE, &show_bgp_regexp_cmd_vtysh);
14158 install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_cmd_vtysh);
14159 install_element (VIEW_NODE, &show_bgp_community3_cmd_vtysh);
14160 install_element (BGP_IPV4_NODE, &no_neighbor_default_originate_cmd_vtysh);
14161 install_element (RIPNG_NODE, &default_information_originate_cmd_vtysh);
14162 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_month_day_month_day_cmd_vtysh);
14163 install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_longer_cmd_vtysh);
14164 install_element (VIEW_NODE, &show_bgp_community2_exact_cmd_vtysh);
14165 install_element (BGP_IPV4M_NODE, &neighbor_activate_cmd_vtysh);
14166 install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_cmd_vtysh);
14167 install_element (ENABLE_NODE, &clear_bgp_all_cmd_vtysh);
14168 install_element (ENABLE_NODE, &no_debug_ospf_ism_cmd_vtysh);
14169 install_element (OSPF_NODE, &no_neighbor_poll_interval_cmd_vtysh);
14170 install_element (ENABLE_NODE, &show_debugging_bgp_cmd_vtysh);
14171 install_element (VIEW_NODE, &show_ip_bgp_flap_cidr_only_cmd_vtysh);
14172 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_summary_cmd_vtysh);
14173 install_element (BGP_NODE, &no_neighbor_description_val_cmd_vtysh);
14174 install_element (ENABLE_NODE, &show_ip_protocols_rip_cmd_vtysh);
14175 install_element (ENABLE_NODE, &show_bgp_summary_cmd_vtysh);
14176 install_element (OSPF_NODE, &ospf_rfc1583_flag_cmd_vtysh);
14177 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_infinite_day_month_cmd_vtysh);
14178 install_element (ENABLE_NODE, &clear_ipv6_prefix_list_name_prefix_cmd_vtysh);
14179 install_element (ENABLE_NODE, &show_ipv6_route_prefix_longer_cmd_vtysh);
14180 install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_first_match_cmd_vtysh);
14181 install_element (OSPF_NODE, &ospf_default_information_originate_metric_type_cmd_vtysh);
14182 install_element (BGP_NODE, &bgp_distance_source_cmd_vtysh);
14183 install_element (CONFIG_NODE, &no_debug_ospf_lsa_sub_cmd_vtysh);
14184 install_element (BGP_IPV4_NODE, &bgp_network_cmd_vtysh);
14185 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_cmd_vtysh);
14186 install_element (OSPF_NODE, &mpls_te_router_addr_cmd_vtysh);
14187 install_element (RMAP_NODE, &match_ip_next_hop_prefix_list_cmd_vtysh);
14188 install_element (BGP_IPV4M_NODE, &aggregate_address_cmd_vtysh);
14189 install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_cmd_vtysh);
14190 install_element (ENABLE_NODE, &no_debug_ripng_zebra_cmd_vtysh);
14191 install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_ge_le_cmd_vtysh);
14192 install_element (BGP_NODE, &bgp_bestpath_compare_router_id_cmd_vtysh);
14193 install_element (ENABLE_NODE, &show_ipv6_mbgp_regexp_cmd_vtysh);
14194 install_element (BGP_VPNV4_NODE, &neighbor_allowas_in_cmd_vtysh);
14195 install_element (BGP_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
14196 install_element (CONFIG_NODE, &no_access_list_extended_host_host_cmd_vtysh);
14197 install_element (BGP_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
14198 install_element (CONFIG_NODE, &no_debug_ospf_zebra_sub_cmd_vtysh);
14199 install_element (ENABLE_NODE, &debug_ospf_ism_sub_cmd_vtysh);
14200 install_element (OSPF_NODE, &no_area_range_advertise_cost_cmd_vtysh);
14201 install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh);
14202 install_element (VIEW_NODE, &show_ipv6_prefix_list_summary_cmd_vtysh);
14203 install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_cmd_vtysh);
14204 install_element (VIEW_NODE, &show_ip_bgp_neighbor_flap_cmd_vtysh);
14205 install_element (ENABLE_NODE, &show_bgp_prefix_cmd_vtysh);
14206 install_element (CONFIG_NODE, &no_access_list_extended_any_any_cmd_vtysh);
14207 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_cmd_vtysh);
14208 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh);
14209 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
14210 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_out_cmd_vtysh);
14211 install_element (BGP_IPV4M_NODE, &no_aggregate_address_summary_only_cmd_vtysh);
14212 install_element (CONFIG_NODE, &ip_community_list_name_expanded_cmd_vtysh);
14213 install_element (VIEW_NODE, &show_ip_prefix_list_name_cmd_vtysh);
14214 install_element (OSPF_NODE, &ospf_default_information_originate_always_cmd_vtysh);
14215 install_element (RMAP_NODE, &set_ecommunity_soo_cmd_vtysh);
14216 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_routemap_cmd_vtysh);
14217 install_element (BGP_IPV4_NODE, &bgp_damp_set2_cmd_vtysh);
14218 install_element (RIPNG_NODE, &ripng_redistribute_bgp_routemap_cmd_vtysh);
14219 install_element (RMAP_NODE, &no_set_ecommunity_soo_cmd_vtysh);
14220 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged_cmd_vtysh);
14221 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_all_cmd_vtysh);
14222 install_element (ENABLE_NODE, &show_ip_bgp_summary_cmd_vtysh);
14223 install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_cmd_vtysh);
14224 install_element (CONFIG_NODE, &no_debug_bgp_fsm_cmd_vtysh);
14225 install_element (CONFIG_NODE, &bgp_multiple_instance_cmd_vtysh);
14226 install_element (CONFIG_NODE, &no_router_bgp_view_cmd_vtysh);
14227 install_element (VIEW_NODE, &show_ip_prefix_list_cmd_vtysh);
14228 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_le_cmd_vtysh);
14229 install_element (VIEW_NODE, &show_bgp_ipv6_summary_cmd_vtysh);
14230 install_element (RIP_NODE, &no_rip_default_metric_val_cmd_vtysh);
14231 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_paths_cmd_vtysh);
14232 install_element (VIEW_NODE, &show_ip_community_list_arg_cmd_vtysh);
14233 install_element (CONFIG_NODE, &no_access_list_standard_host_cmd_vtysh);
14234 install_element (ENABLE_NODE, &no_debug_ospf_nssa_cmd_vtysh);
14235 install_element (INTERFACE_NODE, &no_ip_ospf_cost_cmd_vtysh);
14236 install_element (RIPNG_NODE, &ripng_redistribute_kernel_cmd_vtysh);
14237 install_element (VIEW_NODE, &show_ip_ospf_database_type_adv_router_cmd_vtysh);
14238 install_element (RIPNG_NODE, &no_ripng_default_metric_cmd_vtysh);
14239 install_element (ENABLE_NODE, &show_ip_bgp_flap_filter_list_cmd_vtysh);
14240 install_element (CONFIG_NODE, &ip_prefix_list_seq_le_ge_cmd_vtysh);
14241 install_element (BGP_NODE, &no_neighbor_set_peer_group_cmd_vtysh);
14242 install_element (VIEW_NODE, &show_ipv6_ospf6_cmd_vtysh);
14243 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh);
14244 install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_longer_cmd_vtysh);
14245 install_element (ENABLE_NODE, &clear_ip_bgp_as_cmd_vtysh);
14246 install_element (INTERFACE_NODE, &ip_ospf_authentication_addr_cmd_vtysh);
14247 install_element (BGP_NODE, &neighbor_local_as_cmd_vtysh);
14248 install_element (CONFIG_NODE, &dump_bgp_updates_interval_cmd_vtysh);
14249 install_element (VIEW_NODE, &show_ip_bgp_community4_cmd_vtysh);
14250 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh);
14251 install_element (VIEW_NODE, &show_bgp_community3_exact_cmd_vtysh);
14252 install_element (BGP_NODE, &no_bgp_scan_time_cmd_vtysh);
14253 install_element (INTERFACE_NODE, &no_ip_rip_authentication_string2_cmd_vtysh);
14254 install_element (BGP_NODE, &no_bgp_redistribute_ipv4_rmap_metric_cmd_vtysh);
14255 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_in_prefix_filter_cmd_vtysh);
14256 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh);
14257 install_element (INTERFACE_NODE, &ip_ospf_authentication_args_cmd_vtysh);
14258 install_element (INTERFACE_NODE, &no_ip_rip_authentication_key_chain_cmd_vtysh);
14259 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd_vtysh);
14260 install_element (CONFIG_NODE, &access_list_extended_any_any_cmd_vtysh);
14261 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_in_cmd_vtysh);
14262 install_element (OSPF_NODE, &no_ospf_default_metric_val_cmd_vtysh);
14263 install_element (CONFIG_NODE, &ip_extcommunity_list_name_expanded_cmd_vtysh);
14264 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_cmd_vtysh);
14265 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_cmd_vtysh);
14266 install_element (BGP_IPV4_NODE, &no_neighbor_send_community_type_cmd_vtysh);
14267 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbors_cmd_vtysh);
14268 install_element (ENABLE_NODE, &show_ip_bgp_community4_exact_cmd_vtysh);
14269 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged10_cmd_vtysh);
14270 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_day_month_month_day_cmd_vtysh);
14271 install_element (OSPF_NODE, &no_area_nssa_no_summary_cmd_vtysh);
14272 install_element (ENABLE_NODE, &show_ip_bgp_flap_cidr_only_cmd_vtysh);
14273 install_element (VIEW_NODE, &show_ip_bgp_flap_address_cmd_vtysh);
14274 install_element (VIEW_NODE, &show_ip_bgp_summary_cmd_vtysh);
14275 install_element (BGP_NODE, &bgp_bestpath_med3_cmd_vtysh);
14276 install_element (VIEW_NODE, &show_ip_bgp_flap_route_map_cmd_vtysh);
14277 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_route_cmd_vtysh);
14278 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_cmd_vtysh);
14279 install_element (BGP_IPV6_NODE, &neighbor_activate_cmd_vtysh);
14280 install_element (ENABLE_NODE, &show_bgp_instance_ipv6_summary_cmd_vtysh);
14281 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_day_month_day_month_cmd_vtysh);
14282 install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_out_cmd_vtysh);
14283 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh);
14284 install_element (CONFIG_NODE, &debug_bgp_normal_cmd_vtysh);
14285 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_cmd_vtysh);
14286 install_element (ENABLE_NODE, &show_ip_ospf_border_routers_cmd_vtysh);
14287 install_element (VIEW_NODE, &show_bgp_prefix_list_cmd_vtysh);
14288 install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_detail_cmd_vtysh);
14289 install_element (RMAP_NODE, &no_set_metric_type_cmd_vtysh);
14290 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_cmd_vtysh);
14291 install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_addr_cmd_vtysh);
14292 install_element (VIEW_NODE, &ipv6_bgp_neighbor_received_routes_cmd_vtysh);
14293 install_element (CONFIG_NODE, &debug_ospf6_all_cmd_vtysh);
14294 install_element (BGP_VPNV4_NODE, &neighbor_remove_private_as_cmd_vtysh);
14295 install_element (ENABLE_NODE, &show_bgp_ipv6_community_all_cmd_vtysh);
14296 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
14297 install_element (VIEW_NODE, &show_ip_ospf_database_type_self_cmd_vtysh);
14298 install_element (INTERFACE_NODE, &ip_ospf_cost_cmd_vtysh);
14299 install_element (INTERFACE_NODE, &ipv6_ospf6_transmitdelay_cmd_vtysh);
14300 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_summary_cmd_vtysh);
14301 install_element (INTERFACE_NODE, &ip_rip_receive_version_2_cmd_vtysh);
14302 install_element (BGP_IPV4_NODE, &neighbor_nexthop_self_cmd_vtysh);
14303 install_element (OSPF_NODE, &no_area_vlink_param3_cmd_vtysh);
14304 install_element (OSPF_NODE, &area_export_list_cmd_vtysh);
14305 install_element (ENABLE_NODE, &show_ip_prefix_list_cmd_vtysh);
14306 install_element (VIEW_NODE, &show_ip_rip_cmd_vtysh);
14307 install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh);
14308 install_element (BGP_IPV4M_NODE, &no_aggregate_address_as_set_cmd_vtysh);
14309 install_element (CONFIG_NODE, &debug_zebra_kernel_cmd_vtysh);
14310 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_duration_month_day_cmd_vtysh);
14311 install_element (RIP_NODE, &no_rip_redistribute_type_metric_routemap_cmd_vtysh);
14312 install_element (CONFIG_NODE, &ip_community_list_standard2_cmd_vtysh);
14313 install_element (CONFIG_NODE, &ip_route_cmd_vtysh);
14314 install_element (VIEW_NODE, &show_ip_bgp_community3_exact_cmd_vtysh);
14315 install_element (BGP_NODE, &no_bgp_bestpath_med2_cmd_vtysh);
14316 install_element (ENABLE_NODE, &show_bgp_ipv6_regexp_cmd_vtysh);
14317 install_element (OSPF_NODE, &no_ospf_default_information_originate_cmd_vtysh);
14318 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_addr_cmd_vtysh);
14319 install_element (RMAP_NODE, &no_set_aggregator_as_val_cmd_vtysh);
14320 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_le_ge_cmd_vtysh);
14321 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh);
14322 install_element (RMAP_NODE, &no_match_ip_address_cmd_vtysh);
14323 install_element (RIPNG_NODE, &no_default_information_originate_cmd_vtysh);
14324 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
14325 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_out_cmd_vtysh);
14326 install_element (VIEW_NODE, &show_bgp_community_list_cmd_vtysh);
14327 install_element (ENABLE_NODE, &debug_ospf_packet_all_cmd_vtysh);
14328 install_element (CONFIG_NODE, &ipv6_route_pref_cmd_vtysh);
14329 install_element (BGP_IPV4_NODE, &neighbor_default_originate_cmd_vtysh);
14330 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh);
14331 install_element (ENABLE_NODE, &show_bgp_prefix_list_cmd_vtysh);
14332 install_element (INTERFACE_NODE, &no_ip_address_secondary_cmd_vtysh);
14333 install_element (INTERFACE_NODE, &mpls_te_link_max_rsv_bw_cmd_vtysh);
14334 install_element (ENABLE_NODE, &show_ip_bgp_scan_cmd_vtysh);
14335 install_element (CONFIG_NODE, &no_debug_bgp_keepalive_cmd_vtysh);
14336 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_regexp_cmd_vtysh);
14337 install_element (BGP_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
14338 install_element (CONFIG_NODE, &no_debug_rip_packet_direct_cmd_vtysh);
14339 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
14340 install_element (ENABLE_NODE, &show_ipv6_bgp_filter_list_cmd_vtysh);
14341 install_element (BGP_NODE, &neighbor_enforce_multihop_cmd_vtysh);
14342 install_element (OSPF_NODE, &ospf_default_information_originate_always_routemap_cmd_vtysh);
14343 install_element (CONFIG_NODE, &access_list_extended_mask_host_cmd_vtysh);
14344 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_advertised_route_cmd_vtysh);
14345 install_element (BGP_NODE, &bgp_bestpath_med_cmd_vtysh);
14346 install_element (OSPF_NODE, &area_vlink_authtype_authkey_cmd_vtysh);
14347 install_element (CONFIG_NODE, &no_debug_rip_zebra_cmd_vtysh);
14348 install_element (BGP_NODE, &no_bgp_network_cmd_vtysh);
14349 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
14350 install_element (ENABLE_NODE, &show_bgp_community3_exact_cmd_vtysh);
14351 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_cmd_vtysh);
14352 install_element (OSPF_NODE, &ospf_redistribute_source_type_cmd_vtysh);
14353 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_list_cmd_vtysh);
14354 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_in_cmd_vtysh);
14355 install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_cmd_vtysh);
14356 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_prefix_cmd_vtysh);
14357 install_element (ENABLE_NODE, &show_ip_bgp_flap_statistics_cmd_vtysh);
14358 install_element (RMAP_NODE, &set_ipv6_nexthop_global_cmd_vtysh);
14359 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_in_prefix_filter_cmd_vtysh);
14360 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_received_routes_cmd_vtysh);
14361 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
14362 install_element (BGP_IPV4M_NODE, &no_neighbor_default_originate_cmd_vtysh);
14363 install_element (ENABLE_NODE, &show_bgp_neighbor_routes_cmd_vtysh);
14364 install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_longer_cmd_vtysh);
14365 install_element (CONFIG_NODE, &debug_ospf_zebra_sub_cmd_vtysh);
14366 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
14367 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_out_cmd_vtysh);
14368 install_element (BGP_IPV4M_NODE, &aggregate_address_as_set_summary_cmd_vtysh);
14369 install_element (ENABLE_NODE, &show_ip_bgp_instance_ipv4_summary_cmd_vtysh);
14370 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_in_cmd_vtysh);
14371 install_element (ENABLE_NODE, &show_ipv6_ripng_cmd_vtysh);
14372 install_element (BGP_NODE, &bgp_damp_unset_cmd_vtysh);
14373 install_element (OSPF_NODE, &ospf_distribute_list_out_cmd_vtysh);
14374 install_element (CONFIG_NODE, &no_dump_bgp_updates_cmd_vtysh);
14375 install_element (CONFIG_NODE, &access_list_standard_host_cmd_vtysh);
14376 install_element (BGP_IPV4M_NODE, &bgp_network_cmd_vtysh);
14377 install_element (ENABLE_NODE, &no_debug_bgp_events_cmd_vtysh);
14378 install_element (VIEW_NODE, &show_ip_bgp_community4_exact_cmd_vtysh);
14379 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_route_cmd_vtysh);
14380 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_addr_cmd_vtysh);
14381 install_element (CONFIG_NODE, &ipv6_access_list_remark_cmd_vtysh);
14382 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_route_cmd_vtysh);
14383 install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
14384 install_element (CONFIG_NODE, &debug_ospf_lsa_sub_cmd_vtysh);
14385 install_element (INTERFACE_NODE, &no_rip_split_horizon_cmd_vtysh);
14386 install_element (BGP_IPV4_NODE, &neighbor_set_peer_group_cmd_vtysh);
14387 install_element (ENABLE_NODE, &clear_ipv6_prefix_list_name_cmd_vtysh);
14388 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_cmd_vtysh);
14389 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_route_cmd_vtysh);
14390 install_element (BGP_IPV4M_NODE, &neighbor_set_peer_group_cmd_vtysh);
14391 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
14392 install_element (BGP_NODE, &aggregate_address_summary_only_cmd_vtysh);
14393 install_element (CONFIG_NODE, &no_access_list_extended_host_mask_cmd_vtysh);
14394 install_element (BGP_IPV6_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh);
14395 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_cmd_vtysh);
14396 install_element (KEYCHAIN_NODE, &no_key_chain_cmd_vtysh);
14397 install_element (ENABLE_NODE, &show_ip_bgp_community_info_cmd_vtysh);
14398 install_element (ENABLE_NODE, &no_debug_ospf_event_cmd_vtysh);
14399 install_element (BGP_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
14400 install_element (ENABLE_NODE, &show_ip_bgp_community_all_cmd_vtysh);
14401 install_element (VIEW_NODE, &show_bgp_filter_list_cmd_vtysh);
14402 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_cmd_vtysh);
14403 install_element (INTERFACE_NODE, &ip_rip_authentication_mode_cmd_vtysh);
14404 install_element (BGP_NODE, &no_neighbor_port_cmd_vtysh);
14405 install_element (OSPF_NODE, &ospf_redistribute_source_type_routemap_cmd_vtysh);
14406 install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_in_cmd_vtysh);
14407 install_element (RIPNG_NODE, &no_ripng_network_cmd_vtysh);
14408 install_element (CONFIG_NODE, &ip_prefix_list_seq_le_cmd_vtysh);
14409 install_element (VIEW_NODE, &show_bgp_ipv6_community3_cmd_vtysh);
14410 install_element (OSPF_NODE, &ospf_distance_cmd_vtysh);
14411 install_element (CONFIG_NODE, &no_debug_ripng_zebra_cmd_vtysh);
14412 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh);
14413 install_element (OSPF_NODE, &ospf_default_information_originate_metric_type_routemap_cmd_vtysh);
14414 install_element (BGP_IPV6_NODE, &no_ipv6_aggregate_address_cmd_vtysh);
14415 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged3_cmd_vtysh);
14416 install_element (BGP_NODE, &no_bgp_enforce_first_as_cmd_vtysh);
14417 install_element (BGP_NODE, &no_neighbor_prefix_list_cmd_vtysh);
14418 install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_cmd_vtysh);
14419 install_element (ENABLE_NODE, &show_ipv6_prefix_list_summary_cmd_vtysh);
14420 install_element (RIP_NODE, &no_rip_passive_interface_cmd_vtysh);
14421 install_element (ENABLE_NODE, &show_ipv6_ospf6_area_route_prefix_cmd_vtysh);
14422 install_element (CONFIG_NODE, &ip_route_distance_cmd_vtysh);
14423 install_element (BGP_NODE, &old_ipv6_bgp_network_cmd_vtysh);
14424 install_element (BGP_NODE, &no_bgp_network_backdoor_cmd_vtysh);
14425 install_element (BGP_NODE, &no_bgp_bestpath_med_cmd_vtysh);
14426 install_element (BGP_IPV6_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh);
14427 install_element (CONFIG_NODE, &access_list_standard_cmd_vtysh);
14428 install_element (ZEBRA_NODE, &no_redistribute_ospf6_cmd_vtysh);
14429 install_element (ENABLE_NODE, &no_debug_bgp_keepalive_cmd_vtysh);
14430 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_damp_cmd_vtysh);
14431 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_address_cmd_vtysh);
14432 install_element (OSPF_NODE, &no_area_filter_list_cmd_vtysh);
14433 install_element (CONFIG_NODE, &no_ip_community_list_cmd_vtysh);
14434 install_element (BGP_NODE, &no_bgp_bestpath_aspath_ignore_cmd_vtysh);
14435 install_element (ENABLE_NODE, &clear_bgp_external_in_prefix_filter_cmd_vtysh);
14436 install_element (INTERFACE_NODE, &ip_rip_authentication_string_cmd_vtysh);
14437 install_element (CONFIG_NODE, &no_ip_community_list_expanded_cmd_vtysh);
14438 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh);
14439 install_element (VIEW_NODE, &show_debugging_ripng_cmd_vtysh);
14440 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_cmd_vtysh);
14441 install_element (BGP_NODE, &no_bgp_network_mask_natural_backdoor_cmd_vtysh);
14442 install_element (CONFIG_NODE, &ip_prefix_list_seq_ge_le_cmd_vtysh);
14443 install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged2_cmd_vtysh);
14444 install_element (ENABLE_NODE, &show_bgp_ipv6_community_exact_cmd_vtysh);
14445 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_infinite_month_day_cmd_vtysh);
14446 install_element (RMAP_NODE, &no_set_originator_id_cmd_vtysh);
14447 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_flap_cmd_vtysh);
14448 install_element (BGP_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh);
14449 install_element (VIEW_NODE, &show_version_ospf6_cmd_vtysh);
14450 install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh);
14451 install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_cmd_vtysh);
14452 install_element (BGP_IPV4M_NODE, &aggregate_address_mask_as_set_cmd_vtysh);
14453 install_element (CONFIG_NODE, &no_ipv6_access_list_remark_cmd_vtysh);
14454 install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_cmd_vtysh);
14455 install_element (CONFIG_NODE, &access_list_standard_nomask_cmd_vtysh);
14456 install_element (RIPNG_NODE, &ripng_passive_interface_cmd_vtysh);
14457 install_element (ENABLE_NODE, &ipv6_bgp_neighbor_advertised_route_cmd_vtysh);
14458 install_element (RIP_NODE, &rip_redistribute_type_cmd_vtysh);
14459 install_element (CONFIG_NODE, &no_debug_ospf_zebra_cmd_vtysh);
14460 install_element (RMAP_NODE, &no_match_metric_val_cmd_vtysh);
14461 install_element (BGP_IPV4M_NODE, &bgp_network_mask_route_map_cmd_vtysh);
14462 install_element (OSPF_NODE, &ospf_redistribute_source_type_metric_routemap_cmd_vtysh);
14463 install_element (ENABLE_NODE, &show_bgp_ipv6_community4_exact_cmd_vtysh);
14464 install_element (VIEW_NODE, &show_ipv6_ospf6_interface_ifname_cmd_vtysh);
14465 install_element (ENABLE_NODE, &show_ip_bgp_attr_info_cmd_vtysh);
14466 install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbors_cmd_vtysh);
14467 install_element (ENABLE_NODE, &show_ip_bgp_neighbor_routes_cmd_vtysh);
14468 install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_list_cmd_vtysh);
14469 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged8_cmd_vtysh);
14470 install_element (OSPF_NODE, &mpls_te_on_cmd_vtysh);
14471 install_element (RIP_NODE, &rip_offset_list_ifname_cmd_vtysh);
14472 install_element (BGP_IPV4_NODE, &aggregate_address_mask_as_set_cmd_vtysh);
14473 install_element (BGP_NODE, &no_bgp_default_ipv4_unicast_cmd_vtysh);
14474 install_element (ENABLE_NODE, &debug_rip_events_cmd_vtysh);
14475 install_element (BGP_IPV4M_NODE, &neighbor_allowas_in_arg_cmd_vtysh);
14476 install_element (BGP_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
14477 install_element (BGP_IPV4M_NODE, &no_bgp_network_route_map_cmd_vtysh);
14478 install_element (BGP_IPV4_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh);
14479 install_element (BGP_NODE, &no_neighbor_dont_capability_negotiate_cmd_vtysh);
14480 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community4_exact_cmd_vtysh);
14481 install_element (RIPNG_NODE, &no_ripng_redistribute_static_routemap_cmd_vtysh);
14482 install_element (BGP_IPV4_NODE, &neighbor_prefix_list_cmd_vtysh);
14483 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_in_cmd_vtysh);
14484 install_element (VIEW_NODE, &show_ipv6_mbgp_community_list_exact_cmd_vtysh);
14485 install_element (KEYCHAIN_KEY_NODE, &send_lifetime_infinite_month_day_cmd_vtysh);
14486 install_element (BGP_NODE, &neighbor_advertise_interval_cmd_vtysh);
14487 install_element (INTERFACE_NODE, &no_linkdetect_cmd_vtysh);
14488 install_element (BGP_VPNV4_NODE, &neighbor_send_community_cmd_vtysh);
14489 install_element (KEYCHAIN_KEY_NODE, &no_key_string_cmd_vtysh);
14490 install_element (OSPF_NODE, &timers_spf_cmd_vtysh);
14491 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_out_cmd_vtysh);
14492 install_element (VIEW_NODE, &show_ipv6_mbgp_summary_cmd_vtysh);
14493 install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_longer_cmd_vtysh);
14494 install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
14495 install_element (RMAP_NODE, &set_origin_cmd_vtysh);
14496 install_element (BGP_NODE, &no_bgp_network_mask_cmd_vtysh);
14497 install_element (RIPNG_NODE, &ripng_network_cmd_vtysh);
14498 install_element (OSPF_NODE, &ospf_distance_ospf_inter_cmd_vtysh);
14499 install_element (CONFIG_NODE, &debug_ripng_zebra_cmd_vtysh);
14500 install_element (BGP_NODE, &neighbor_timers_connect_cmd_vtysh);
14501 install_element (RMAP_NODE, &no_match_ip_next_hop_val_cmd_vtysh);
14502 install_element (INTERFACE_NODE, &ip_ospf_priority_cmd_vtysh);
14503 install_element (CONFIG_NODE, &no_debug_ospf_nsm_sub_cmd_vtysh);
14504 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh);
14505 install_element (BGP_IPV4_NODE, &no_neighbor_prefix_list_cmd_vtysh);
14506 install_element (CONFIG_NODE, &no_access_list_exact_cmd_vtysh);
14507 install_element (RIP_NODE, &no_rip_redistribute_type_metric_cmd_vtysh);
14508 install_element (INTERFACE_NODE, &ospf_priority_cmd_vtysh);
14509 install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_cmd_vtysh);
14510 install_element (INTERFACE_NODE, &no_bandwidth_if_val_cmd_vtysh);
14511 install_element (BGP_IPV4_NODE, &aggregate_address_as_set_cmd_vtysh);
14512 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_cmd_vtysh);
14513 install_element (CONFIG_NODE, &no_bgp_multiple_instance_cmd_vtysh);
14514 install_element (BGP_IPV6_NODE, &no_neighbor_send_community_cmd_vtysh);
14515 install_element (BGP_NODE, &no_neighbor_peer_group_cmd_vtysh);
14516 install_element (CONFIG_NODE, &no_ip_extcommunity_list_expanded_cmd_vtysh);
14517 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_cmd_vtysh);
14518 install_element (ENABLE_NODE, &debug_ospf_zebra_cmd_vtysh);
14519 install_element (RMAP_NODE, &ospf6_routemap_no_set_forwarding_cmd_vtysh);
14520 install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_router_cmd_vtysh);
14521 install_element (ENABLE_NODE, &show_ipv6_mbgp_summary_cmd_vtysh);
14522 install_element (VIEW_NODE, &show_ip_ospf_interface_cmd_vtysh);
14523 install_element (RIP_NODE, &no_rip_route_cmd_vtysh);
14524 install_element (INTERFACE_NODE, &ip_irdp_multicast_cmd_vtysh);
14525 install_element (BGP_NODE, &bgp_network_mask_route_map_cmd_vtysh);
14526 install_element (ENABLE_NODE, &show_bgp_prefix_longer_cmd_vtysh);
14527 install_element (VIEW_NODE, &show_ip_bgp_view_cmd_vtysh);
14528 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
14529 install_element (ENABLE_NODE, &show_ip_bgp_route_map_cmd_vtysh);
14530 install_element (BGP_NODE, &aggregate_address_cmd_vtysh);
14531 install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_cmd_vtysh);
14532 install_element (CONFIG_NODE, &ipv6_prefix_list_seq_cmd_vtysh);
14533 install_element (RMAP_NODE, &no_match_ip_next_hop_cmd_vtysh);
14534 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_out_cmd_vtysh);
14535 install_element (VIEW_NODE, &show_ipv6_ospf6_topology_router_lsid_cmd_vtysh);
14536 install_element (OSPF_NODE, &ospf_default_information_originate_routemap_cmd_vtysh);
14537 install_element (INTERFACE_NODE, &no_ospf_authentication_key_cmd_vtysh);
14538 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_cmd_vtysh);
14539 install_element (ENABLE_NODE, &clear_bgp_peer_soft_cmd_vtysh);
14540 install_element (INTERFACE_NODE, &ip_ospf_hello_interval_addr_cmd_vtysh);
14541 install_element (VIEW_NODE, &show_ipv6_mbgp_community4_exact_cmd_vtysh);
14542 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_summary_cmd_vtysh);
14543 install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd_vtysh);
14544 install_element (BGP_IPV6_NODE, &no_neighbor_default_originate_cmd_vtysh);
14545 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
14546 install_element (CONFIG_NODE, &no_dump_bgp_routes_cmd_vtysh);
14547 install_element (ENABLE_NODE, &show_ipv6_access_list_cmd_vtysh);
14548 install_element (CONFIG_NODE, &no_ipv6_prefix_list_ge_le_cmd_vtysh);
14549 install_element (CONFIG_NODE, &debug_ospf_ism_cmd_vtysh);
14550 install_element (VIEW_NODE, &show_bgp_instance_summary_cmd_vtysh);
14551 install_element (VIEW_NODE, &show_bgp_community4_cmd_vtysh);
14552 install_element (OSPF_NODE, &area_vlink_param1_cmd_vtysh);
14553 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged6_cmd_vtysh);
14554 install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_routemap_cmd_vtysh);
14555 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_cmd_vtysh);
14556 install_element (CONFIG_NODE, &ipv6_prefix_list_sequence_number_cmd_vtysh);
14557 install_element (CONFIG_NODE, &no_ip_prefix_list_ge_cmd_vtysh);
14558 install_element (RIPNG_NODE, &ripng_redistribute_static_metric_cmd_vtysh);
14559 install_element (BGP_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
14560 install_element (VIEW_NODE, &show_ipv6_mbgp_community_cmd_vtysh);
14561 install_element (BGP_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh);
14562 install_element (INTERFACE_NODE, &no_ip_ospf_cost_addr_cmd_vtysh);
14563 install_element (BGP_IPV4_NODE, &neighbor_default_originate_rmap_cmd_vtysh);
14564 install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_cmd_vtysh);
14565 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh);
14566 install_element (ENABLE_NODE, &show_ipv6_bgp_regexp_cmd_vtysh);
14567 install_element (CONFIG_NODE, &no_ipv6_prefix_list_prefix_cmd_vtysh);
14568 install_element (ENABLE_NODE, &show_ip_prefix_list_summary_name_cmd_vtysh);
14569 install_element (INTERFACE_NODE, &mpls_te_link_maxbw_cmd_vtysh);
14570 install_element (INTERFACE_NODE, &ip_ospf_authentication_args_addr_cmd_vtysh);
14571 install_element (BGP_NODE, &no_bgp_network_mask_natural_cmd_vtysh);
14572 install_element (ENABLE_NODE, &show_ip_rip_cmd_vtysh);
14573 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_in_prefix_filter_cmd_vtysh);
14574 install_element (BGP_NODE, &no_bgp_client_to_client_reflection_cmd_vtysh);
14575 install_element (VIEW_NODE, &show_ipv6_ripng_cmd_vtysh);
14576 install_element (INTERFACE_NODE, &no_ospf_dead_interval_cmd_vtysh);
14577 install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_received_routes_cmd_vtysh);
14578 install_element (BGP_NODE, &no_neighbor_weight_val_cmd_vtysh);
14579 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_addr_cmd_vtysh);
14580 install_element (INTERFACE_NODE, &ip_rip_receive_version_cmd_vtysh);
14581 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_in_prefix_filter_cmd_vtysh);
14582 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_out_cmd_vtysh);
14583 install_element (CONFIG_NODE, &access_list_standard_any_cmd_vtysh);
14584 install_element (INTERFACE_NODE, &no_ospf_priority_cmd_vtysh);
14585 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community3_cmd_vtysh);
14586 install_element (BGP_IPV6_NODE, &neighbor_set_peer_group_cmd_vtysh);
14587 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_cmd_vtysh);
14588 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_natural_cmd_vtysh);
14589 install_element (ENABLE_NODE, &show_ipv6_ospf6_neighborlist_cmd_vtysh);
14590 install_element (VIEW_NODE, &show_ip_ospf_neighbor_cmd_vtysh);
14591 install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_cmd_vtysh);
14592 install_element (ENABLE_NODE, &clear_ip_bgp_external_in_cmd_vtysh);
14593 install_element (BGP_NODE, &no_neighbor_route_server_client_cmd_vtysh);
14594 install_element (RMAP_NODE, &match_community_exact_cmd_vtysh);
14595 install_element (VIEW_NODE, &show_ip_bgp_community_list_exact_cmd_vtysh);
14596 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh);
14597 install_element (BGP_NODE, &neighbor_transparent_nexthop_cmd_vtysh);
14598 install_element (BGP_NODE, &neighbor_peer_group_cmd_vtysh);
14599 install_element (ENABLE_NODE, &no_debug_ospf_packet_all_cmd_vtysh);
14600 install_element (BGP_NODE, &no_neighbor_peer_group_remote_as_cmd_vtysh);
14601 install_element (CONFIG_NODE, &ip_prefix_list_seq_cmd_vtysh);
14602 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_prefix_cmd_vtysh);
14603 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_cmd_vtysh);
14604 install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged1_cmd_vtysh);
14605 install_element (ENABLE_NODE, &clear_bgp_all_in_cmd_vtysh);
14606 install_element (BGP_IPV4M_NODE, &no_neighbor_activate_cmd_vtysh);
14607 install_element (BGP_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
14608 install_element (BGP_NODE, &neighbor_set_peer_group_cmd_vtysh);
14609 install_element (BGP_IPV4_NODE, &no_aggregate_address_as_set_cmd_vtysh);
14610 install_element (BGP_NODE, &no_aggregate_address_mask_cmd_vtysh);
14611 install_element (ENABLE_NODE, &show_ip_route_prefix_cmd_vtysh);
14612 install_element (CONFIG_NODE, &debug_ospf_packet_all_cmd_vtysh);
14613 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged_cmd_vtysh);
14614 install_element (RIP_NODE, &no_rip_default_information_originate_cmd_vtysh);
14615 install_element (CONFIG_NODE, &no_router_bgp_cmd_vtysh);
14616 install_element (VIEW_NODE, &show_ip_bgp_community_all_cmd_vtysh);
14617 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_self_cmd_vtysh);
14618 install_element (BGP_IPV4M_NODE, &no_neighbor_prefix_list_cmd_vtysh);
14619 install_element (ENABLE_NODE, &show_ip_bgp_neighbors_peer_cmd_vtysh);
14620 install_element (VIEW_NODE, &show_ipv6_bgp_prefix_list_cmd_vtysh);
14621 install_element (RIP_NODE, &rip_neighbor_cmd_vtysh);
14622 install_element (BGP_NODE, &no_neighbor_cmd_vtysh);
14623 install_element (VIEW_NODE, &show_ip_extcommunity_list_arg_cmd_vtysh);
14624 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh);
14625 install_element (ENABLE_NODE, &show_ip_bgp_flap_regexp_cmd_vtysh);
14626 install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh);
14627 install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_cmd_vtysh);
14628 install_element (CONFIG_NODE, &ip_prefix_list_ge_cmd_vtysh);
14629 install_element (BGP_IPV4_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
14630 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_rmap_metric_cmd_vtysh);
14631 install_element (OSPF_NODE, &area_vlink_authtype_args_cmd_vtysh);
14632 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh);
14633 install_element (RMAP_NODE, &match_ip_address_prefix_list_cmd_vtysh);
14634 install_element (CONFIG_NODE, &no_debug_ospf6_damp_cmd_vtysh);
14635 install_element (CONFIG_NODE, &ipv6_route_ifname_cmd_vtysh);
14636 install_element (CONFIG_NODE, &no_ipv6_route_pref_cmd_vtysh);
14637 install_element (ENABLE_NODE, &show_ip_ospf_database_cmd_vtysh);
14638 install_element (ENABLE_NODE, &show_zebra_client_cmd_vtysh);
14639 install_element (CONFIG_NODE, &no_debug_ripng_events_cmd_vtysh);
14640 install_element (INTERFACE_NODE, &ipv6_address_cmd_vtysh);
14641 install_element (RIPNG_NODE, &ripng_redistribute_ospf6_cmd_vtysh);
14642 install_element (BGP_IPV4M_NODE, &neighbor_filter_list_cmd_vtysh);
14643 install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh);
14644 install_element (RMAP_NODE, &no_set_community_delete_val_cmd_vtysh);
14645 install_element (CONFIG_NODE, &ipv6_route_ifname_pref_cmd_vtysh);
14646 install_element (ENABLE_NODE, &show_bgp_community_list_exact_cmd_vtysh);
14647 install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_in_cmd_vtysh);
14648 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_cmd_vtysh);
14649 install_element (OSPF6_NODE, &router_id_cmd_vtysh);
14650 install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_cmd_vtysh);
14651 install_element (CONFIG_NODE, &no_debug_ripng_packet_direct_cmd_vtysh);
14652 install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_out_cmd_vtysh);
14653 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_cmd_vtysh);
14654 install_element (ENABLE_NODE, &clear_bgp_ipv6_external_cmd_vtysh);
14655 install_element (BGP_IPV4_NODE, &no_aggregate_address_cmd_vtysh);
14656 install_element (ENABLE_NODE, &show_ip_prefix_list_name_cmd_vtysh);
14657 install_element (ENABLE_NODE, &show_bgp_community_all_cmd_vtysh);
14658 install_element (CONFIG_NODE, &ipv6_route_cmd_vtysh);
14659 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_in_cmd_vtysh);
14660 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_routemap_cmd_vtysh);
14661 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_out_cmd_vtysh);
14662 install_element (BGP_NODE, &no_neighbor_weight_cmd_vtysh);
14663 install_element (RIP_NODE, &rip_passive_interface_cmd_vtysh);
14664 install_element (BGP_IPV4M_NODE, &no_neighbor_filter_list_cmd_vtysh);
14665 install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh);
14666 install_element (VIEW_NODE, &show_bgp_ipv6_prefix_longer_cmd_vtysh);
14667 install_element (VIEW_NODE, &show_ipv6_route_cmd_vtysh);
14668 install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_detail_cmd_vtysh);
14669 install_element (ENABLE_NODE, &show_bgp_route_map_cmd_vtysh);
14670 install_element (BGP_IPV6_NODE, &no_neighbor_route_reflector_client_cmd_vtysh);
14671 install_element (BGP_IPV4M_NODE, &no_neighbor_nexthop_self_cmd_vtysh);
14672 install_element (BGP_NODE, &no_aggregate_address_summary_only_cmd_vtysh);
14673 install_element (ENABLE_NODE, &show_bgp_cmd_vtysh);
14674 install_element (VIEW_NODE, &show_ipv6_bgp_community_cmd_vtysh);
14675 install_element (ENABLE_NODE, &show_ip_bgp_cidr_only_cmd_vtysh);
14676 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh);
14677 install_element (BGP_IPV6_NODE, &no_ipv6_aggregate_address_summary_only_cmd_vtysh);
14678 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_in_prefix_filter_cmd_vtysh);
14679 install_element (CONFIG_NODE, &ipv6_access_list_any_cmd_vtysh);
14680 install_element (BGP_VPNV4_NODE, &vpnv4_network_cmd_vtysh);
14681 install_element (RIP_NODE, &no_rip_network_cmd_vtysh);
14682 install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_cmd_vtysh);
14683 install_element (ENABLE_NODE, &debug_ripng_packet_direct_cmd_vtysh);
14684 install_element (OSPF_NODE, &neighbor_poll_interval_cmd_vtysh);
14685 install_element (CONFIG_NODE, &no_access_list_standard_any_cmd_vtysh);
14686 install_element (BGP_NODE, &bgp_bestpath_aspath_ignore_cmd_vtysh);
14687 install_element (ENABLE_NODE, &clear_bgp_as_in_cmd_vtysh);
14688 install_element (VIEW_NODE, &show_ip_route_addr_cmd_vtysh);
14689 install_element (BGP_NODE, &no_neighbor_advertise_interval_val_cmd_vtysh);
14690 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh);
14691 install_element (CONFIG_NODE, &no_ip_prefix_list_prefix_cmd_vtysh);
14692 install_element (OSPF_NODE, &ospf_default_information_originate_always_type_routemap_cmd_vtysh);
14693 install_element (BGP_NODE, &bgp_router_id_cmd_vtysh);
14694 install_element (ENABLE_NODE, &show_ipv6_mbgp_cmd_vtysh);
14695 install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_expanded_cmd_vtysh);
14696 install_element (BGP_IPV4_NODE, &no_neighbor_activate_cmd_vtysh);
14697 install_element (CONFIG_NODE, &ip_extcommunity_list_name_standard_cmd_vtysh);
14698 install_element (VIEW_NODE, &show_bgp_ipv6_route_map_cmd_vtysh);
14699 install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_in_prefix_filter_cmd_vtysh);
14700 install_element (BGP_IPV6_NODE, &neighbor_capability_orf_prefix_cmd_vtysh);
14701 install_element (VIEW_NODE, &show_ip_bgp_community_exact_cmd_vtysh);
14702 install_element (BGP_IPV4_NODE, &bgp_network_route_map_cmd_vtysh);
14703 install_element (VIEW_NODE, &show_ip_bgp_community_info_cmd_vtysh);
14704 install_element (ZEBRA_NODE, &rip_redistribute_rip_cmd_vtysh);
14705 install_element (ENABLE_NODE, &clear_ip_bgp_external_cmd_vtysh);
14706 install_element (ENABLE_NODE, &show_bgp_instance_summary_cmd_vtysh);
14707 install_element (ENABLE_NODE, &show_ip_community_list_cmd_vtysh);
14708 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_cmd_vtysh);
14709 install_element (BGP_NODE, &neighbor_filter_list_cmd_vtysh);
14710 install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_out_cmd_vtysh);
14711 install_element (RMAP_NODE, &match_origin_cmd_vtysh);
14712 install_element (ENABLE_NODE, &show_ip_route_cmd_vtysh);
14713 install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_cmd_vtysh);
14714 install_element (RIP_NODE, &no_rip_distance_source_access_list_cmd_vtysh);
14715 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged_cmd_vtysh);
14716 install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_out_cmd_vtysh);
14717 install_element (OSPF_NODE, &passive_interface_cmd_vtysh);
14718 install_element (OSPF_NODE, &ospf_redistribute_source_type_metric_cmd_vtysh);
14719 install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged7_cmd_vtysh);
14720 install_element (BGP_IPV4_NODE, &neighbor_distribute_list_cmd_vtysh);
14721 install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_routemap_cmd_vtysh);
14722 install_element (VIEW_NODE, &show_ipv6_mbgp_community4_cmd_vtysh);
14723 install_element (ENABLE_NODE, &clear_bgp_peer_soft_in_cmd_vtysh);
14724 install_element (OSPF6_NODE, &interface_area_plist_passive_cmd_vtysh);
14725 install_element (RMAP_NODE, &no_set_community_delete_cmd_vtysh);
14726 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_cmd_vtysh);
14727 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_cmd_vtysh);
14728 install_element (ENABLE_NODE, &show_ipv6_bgp_community_list_exact_cmd_vtysh);
14729 install_element (RIP_NODE, &no_rip_version_cmd_vtysh);
14730 install_element (ENABLE_NODE, &show_ipv6_mbgp_filter_list_cmd_vtysh);
14731 install_element (OSPF_NODE, &area_vlink_authtype_md5_cmd_vtysh);
14732 install_element (ENABLE_NODE, &show_ip_access_list_cmd_vtysh);
14733 install_element (RMAP_NODE, &set_ecommunity_rt_cmd_vtysh);
14734 install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_longer_cmd_vtysh);
14735 install_element (BGP_NODE, &no_aggregate_address_cmd_vtysh);
14736 install_element (CONFIG_NODE, &ip_extcommunity_list_expanded_cmd_vtysh);
14737 install_element (BGP_NODE, &no_neighbor_default_originate_cmd_vtysh);
14738 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_cmd_vtysh);
14739 install_element (ENABLE_NODE, &show_ipv6_bgp_community2_cmd_vtysh);
14740 install_element (BGP_IPV6_NODE, &neighbor_maximum_prefix_cmd_vtysh);
14741 install_element (INTERFACE_NODE, &no_bandwidth_if_cmd_vtysh);
14742 install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh);
14743 install_element (RMAP_NODE, &no_set_local_pref_cmd_vtysh);
14744 install_element (ENABLE_NODE, &show_ipv6_bgp_community2_exact_cmd_vtysh);
14745 install_element (CONFIG_NODE, &ip_prefix_list_seq_ge_cmd_vtysh);
14746 install_element (ENABLE_NODE, &show_bgp_community2_exact_cmd_vtysh);
14747 install_element (BGP_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh);
14748 install_element (INTERFACE_NODE, &no_ospf_network_cmd_vtysh);
14749 install_element (BGP_VPNV4_NODE, &no_neighbor_filter_list_cmd_vtysh);
14750 install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_out_cmd_vtysh);
14751 install_element (ENABLE_NODE, &show_bgp_community_exact_cmd_vtysh);
14752 install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_route_map_cmd_vtysh);
14753 install_element (INTERFACE_NODE, &no_ip_rip_authentication_mode_cmd_vtysh);
14754 install_element (BGP_VPNV4_NODE, &no_neighbor_distribute_list_cmd_vtysh);
14755 install_element (ENABLE_NODE, &clear_bgp_ipv6_as_in_prefix_filter_cmd_vtysh);
14756 install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_val_cmd_vtysh);
14757 install_element (CONFIG_NODE, &debug_ospf_nsm_cmd_vtysh);
14758 install_element (INTERFACE_NODE, &ip_irdp_preference_cmd_vtysh);
14759 install_element (BGP_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh);
14760 install_element (RIP_NODE, &no_rip_offset_list_cmd_vtysh);
14761 install_element (OSPF_NODE, &no_area_range_substitute_cmd_vtysh);
14762 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_rmap_cmd_vtysh);
14763 install_element (CONFIG_NODE, &no_ip_community_list_name_expanded_cmd_vtysh);
14764 install_element (OSPF_NODE, &no_ospf_opaque_capable_cmd_vtysh);
14765 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh);
14766 install_element (BGP_IPV4M_NODE, &no_neighbor_allowas_in_cmd_vtysh);
14767 install_element (VIEW_NODE, &show_ipv6_prefix_list_cmd_vtysh);
14768 install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_inter_cmd_vtysh);
14769 install_element (VIEW_NODE, &show_bgp_prefix_longer_cmd_vtysh);
14770 install_element (ENABLE_NODE, &show_ipv6_mbgp_community3_cmd_vtysh);
14771 install_element (BGP_NODE, &no_neighbor_timers_cmd_vtysh);
14772 install_element (ENABLE_NODE, &clear_bgp_peer_cmd_vtysh);
14773 install_element (ENABLE_NODE, &show_ipv6_route_addr_cmd_vtysh);
14774 install_element (ENABLE_NODE, &show_ip_prefix_list_summary_cmd_vtysh);
14775 install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_out_cmd_vtysh);
14776 install_element (ENABLE_NODE, &debug_ospf_lsa_sub_cmd_vtysh);
14777 install_element (CONFIG_NODE, &no_ip_prefix_list_seq_cmd_vtysh);
14778 install_element (BGP_NODE, &neighbor_override_capability_cmd_vtysh);
14779 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh);
14780 install_element (ENABLE_NODE, &show_mpls_te_router_cmd_vtysh);
14781 install_element (ENABLE_NODE, &undebug_bgp_events_cmd_vtysh);
14782 install_element (BGP_NODE, &no_aggregate_address_as_set_cmd_vtysh);
14783 install_element (BGP_IPV4_NODE, &no_neighbor_send_community_cmd_vtysh);
14784 install_element (CONFIG_NODE, &no_ipv6_access_list_exact_cmd_vtysh);
14785 install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_longer_cmd_vtysh);
14786 install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_in_cmd_vtysh);
14787 install_element (OSPF_NODE, &network_area_cmd_vtysh);
14788 install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_received_routes_cmd_vtysh);
14789 install_element (BGP_NODE, &neighbor_version_cmd_vtysh);
14790 install_element (VIEW_NODE, &show_ipv6_route_protocol_cmd_vtysh);
14791 install_element (BGP_NODE, &no_neighbor_ebgp_multihop_cmd_vtysh);
14792 install_element (KEYCHAIN_KEY_NODE, &no_key_chain_cmd_vtysh);
14793 install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_day_month_month_day_cmd_vtysh);
14794 install_element (BGP_VPNV4_NODE, &neighbor_route_map_cmd_vtysh);
14795 install_element (VIEW_NODE, &show_bgp_ipv6_community4_exact_cmd_vtysh);
14796 install_element (BGP_IPV4_NODE, &no_neighbor_unsuppress_map_cmd_vtysh);
14797 install_element (BGP_IPV4_NODE, &no_bgp_network_mask_route_map_cmd_vtysh);
14798 install_element (VIEW_NODE, &show_ipv6_bgp_route_cmd_vtysh);
14799 install_element (RMAP_NODE, &no_set_vpnv4_nexthop_cmd_vtysh);
14800 install_element (VIEW_NODE, &show_ip_bgp_dampened_paths_cmd_vtysh);
14801 install_element (OSPF_NODE, &mpls_te_cmd_vtysh);
14802 install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_in_cmd_vtysh);
14803 install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community2_exact_cmd_vtysh);
14804 install_element (OSPF_NODE, &ospf_default_information_originate_type_metric_routemap_cmd_vtysh);
14805 install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_cmd_vtysh);
14806 install_element (ENABLE_NODE, &show_ipv6_bgp_community_exact_cmd_vtysh);
14807 install_element (BGP_NODE, &no_neighbor_capability_dynamic_cmd_vtysh);
14808 install_element (VIEW_NODE, &show_bgp_regexp_cmd_vtysh);
14809 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_cmd_vtysh);
14810 install_element (OSPF_NODE, &area_vlink_md5_cmd_vtysh);
14811 install_element (OSPF_NODE, &area_vlink_authtype_cmd_vtysh);
14812 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_id_cmd_vtysh);
14813 install_element (CONFIG_NODE, &no_access_list_extended_mask_any_cmd_vtysh);
14814 install_element (VIEW_NODE, &show_ip_prefix_list_prefix_longer_cmd_vtysh);
14815 install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_list_cmd_vtysh);
14816 install_element (BGP_NODE, &neighbor_capability_route_refresh_cmd_vtysh);
14817 install_element (OSPF_NODE, &no_area_vlink_authtype_cmd_vtysh);
14818 install_element (ENABLE_NODE, &no_debug_rip_packet_cmd_vtysh);
14819 install_element (VIEW_NODE, &show_bgp_ipv6_neighbors_peer_cmd_vtysh);
14820 install_element (BGP_NODE, &no_neighbor_filter_list_cmd_vtysh);
14821 install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_out_cmd_vtysh);
14822 install_element (VIEW_NODE, &show_ipv6_bgp_regexp_cmd_vtysh);
14823 install_element (OSPF6_NODE, &area_range_cmd_vtysh);
14824 install_element (OSPF6_NODE, &ospf6_redistribute_routemap_cmd_vtysh);
14825 install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh);
14826 install_element (RIP_NODE, &rip_distance_cmd_vtysh);
14827 install_element (BGP_VPNV4_NODE, &neighbor_maximum_prefix_cmd_vtysh);
14828 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_summary_cmd_vtysh);
14829 install_element (ENABLE_NODE, &clear_bgp_as_out_cmd_vtysh);
14830 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_out_cmd_vtysh);
14831 install_element (CONFIG_NODE, &no_access_list_standard_nomask_cmd_vtysh);
14832 install_element (ENABLE_NODE, &no_debug_bgp_fsm_cmd_vtysh);
14833 install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh);
14834 install_element (VIEW_NODE, &show_bgp_ipv6_community_all_cmd_vtysh);
14835 install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_in_cmd_vtysh);
14836 install_element (INTERFACE_NODE, &ipv6_ospf6_advertise_prefix_list_cmd_vtysh);
14837 install_element (RMAP_NODE, &no_match_metric_cmd_vtysh);
14838 install_element (ENABLE_NODE, &show_ip_community_list_arg_cmd_vtysh);
14839 install_element (ENABLE_NODE, &show_ip_bgp_flap_route_map_cmd_vtysh);
14840 install_element (CONFIG_NODE, &no_key_chain_cmd_vtysh);
14841 install_element (ENABLE_NODE, &show_ip_bgp_instance_neighbors_peer_cmd_vtysh);
14842 install_element (CONFIG_NODE, &no_ipv6_access_list_remark_arg_cmd_vtysh);
14843 install_element (BGP_IPV6_NODE, &neighbor_soft_reconfiguration_cmd_vtysh);
14844 install_element (BGP_IPV4M_NODE, &neighbor_maximum_prefix_cmd_vtysh);
14845 install_element (CONFIG_NODE, &debug_bgp_events_cmd_vtysh);
14846 install_element (BGP_NODE, &neighbor_distribute_list_cmd_vtysh);
14847 install_element (ENABLE_NODE, &clear_ip_bgp_dampening_cmd_vtysh);
14848 install_element (RMAP_NODE, &set_ip_nexthop_cmd_vtysh);
14849 install_element (ENABLE_NODE, &show_ip_route_supernets_cmd_vtysh);
14850 install_element (ENABLE_NODE, &debug_bgp_events_cmd_vtysh);
14851 install_element (RMAP_NODE, &set_originator_id_cmd_vtysh);
14852 install_element (RMAP_NODE, &set_local_pref_cmd_vtysh);
14853 install_element (BGP_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh);
14854 install_element (ENABLE_NODE, &debug_rip_packet_direct_cmd_vtysh);
14855 install_element (OSPF_NODE, &neighbor_poll_interval_priority_cmd_vtysh);
14856 install_element (OSPF_NODE, &no_mpls_te_cmd_vtysh);
14857 install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_metric_rmap_cmd_vtysh);
14858 install_element (VIEW_NODE, &show_ip_bgp_ipv4_cidr_only_cmd_vtysh);
14859 install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh);
14860 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_cmd_vtysh);
14861 install_element (ENABLE_NODE, &show_ipv6_route_ospf6_external_cmd_vtysh);
14862 install_element (ENABLE_NODE, &show_ip_extcommunity_list_cmd_vtysh);
14863 install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_cmd_vtysh);
14864 install_element (RMAP_NODE, &set_aspath_prepend_cmd_vtysh);
14865 install_element (VIEW_NODE, &show_ipv6_route_prefix_cmd_vtysh);
14866 install_element (BGP_IPV4_NODE, &neighbor_send_community_cmd_vtysh);
14867 install_element (OSPF_NODE, &area_vlink_param2_cmd_vtysh);
paul718e3742002-12-13 20:15:29 +000014868}