paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | #include <zebra.h> |
| 2 | #include "command.h" |
| 3 | #include "vtysh.h" |
| 4 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 5 | DEFSH (VTYSH_BGPD, neighbor_version_cmd_vtysh, |
| 6 | "neighbor (A.B.C.D|X:X::X:X) " "version (4|4-)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 7 | "Specify neighbor router\n" |
| 8 | "Neighbor address\nIPv6 address\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9 | "Neighbor's BGP version\n" |
| 10 | "Border Gateway Protocol 4\n" |
| 11 | "Multiprotocol Extensions for BGP-4(Old Draft)\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 13 | DEFSH (VTYSH_BGPD, no_set_aspath_prepend_cmd_vtysh, |
| 14 | "no set as-path prepend", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 15 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 16 | "Set values in destination routing protocol\n" |
| 17 | "Prepend string for a BGP AS-path attribute\n" |
| 18 | "Prepend to the as-path\n") |
| 19 | |
| 20 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, clear_ipv6_prefix_list_cmd_vtysh, |
| 21 | "clear ipv6 prefix-list", |
| 22 | "Reset functions\n" |
| 23 | "IPv6 information\n" |
| 24 | "Build a prefix list\n") |
| 25 | |
| 26 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_out_cmd_vtysh, |
| 27 | "clear ip bgp A.B.C.D vpnv4 unicast soft out", |
| 28 | "Reset functions\n" |
| 29 | "IP information\n" |
| 30 | "BGP information\n" |
| 31 | "BGP neighbor address to clear\n" |
| 32 | "Address family\n" |
| 33 | "Address Family Modifier\n" |
| 34 | "Soft reconfig\n" |
| 35 | "Soft reconfig outbound update\n") |
| 36 | |
| 37 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_any_cmd_vtysh, |
| 38 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D any", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 39 | "Add an access list entry\n" |
| 40 | "IP extended access list\n" |
| 41 | "IP extended access list (expanded range)\n" |
| 42 | "Specify packets to reject\n" |
| 43 | "Specify packets to forward\n" |
| 44 | "Any Internet Protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 45 | "A single source host\n" |
| 46 | "Source address\n" |
| 47 | "Any destination host\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 48 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 49 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_description_cmd_vtysh, |
| 50 | "ip prefix-list WORD description .LINE", |
| 51 | "IP information\n" |
| 52 | "Build a prefix list\n" |
| 53 | "Name of a prefix list\n" |
| 54 | "Prefix-list specific description\n" |
| 55 | "Up to 80 characters describing this prefix-list\n") |
| 56 | |
| 57 | DEFSH (VTYSH_ZEBRA, no_ipv6_route_cmd_vtysh, |
| 58 | "no ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE)", |
| 59 | "Negate a command or set its defaults\n" |
| 60 | "IP information\n" |
| 61 | "Establish static routes\n" |
| 62 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 63 | "IPv6 gateway address\n" |
| 64 | "IPv6 gateway interface name\n") |
| 65 | |
| 66 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_inter_external_cmd_vtysh, |
| 67 | "distance ospf intra-area <1-255> inter-area <1-255> external <1-255>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 68 | "Define an administrative distance\n" |
| 69 | "OSPF Administrative distance\n" |
| 70 | "Intra-area routes\n" |
| 71 | "Distance for intra-area routes\n" |
| 72 | "Inter-area routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 73 | "Distance for inter-area routes\n" |
| 74 | "External routes\n" |
| 75 | "Distance for external routes\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 76 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 77 | DEFSH (VTYSH_OSPFD, area_default_cost_cmd_vtysh, |
| 78 | "area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>", |
| 79 | "OSPF area parameters\n" |
| 80 | "OSPF area ID in IP address format\n" |
| 81 | "OSPF area ID as a decimal value\n" |
| 82 | "Set the summary-default cost of a NSSA or stub area\n" |
| 83 | "Stub's advertised default summary cost\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 84 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 85 | DEFSH (VTYSH_RIPNGD, default_information_originate_cmd_vtysh, |
| 86 | "default-information originate", |
| 87 | "Default route information\n" |
| 88 | "Distribute default route\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 89 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 90 | DEFSH (VTYSH_BGPD, no_neighbor_update_source_cmd_vtysh, |
| 91 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "update-source", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 92 | "Negate a command or set its defaults\n" |
| 93 | "Specify neighbor router\n" |
| 94 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 95 | "Source of routing updates\n" |
| 96 | "Interface name\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 97 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 98 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_route_cmd_vtysh, |
| 99 | "show bgp ipv6 X:X::X:X", |
| 100 | "Show running system information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 101 | "BGP information\n" |
| 102 | "Address family\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 103 | "Network in the BGP routing table to display\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 104 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 105 | DEFSH (VTYSH_ZEBRA, no_bandwidth_if_cmd_vtysh, |
| 106 | "no bandwidth", |
| 107 | "Negate a command or set its defaults\n" |
| 108 | "Set bandwidth informational parameter\n") |
| 109 | |
| 110 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_any_cmd_vtysh, |
| 111 | "access-list (<1-99>|<1300-1999>) (deny|permit) any", |
| 112 | "Add an access list entry\n" |
| 113 | "IP standard access list\n" |
| 114 | "IP standard access list (expanded range)\n" |
| 115 | "Specify packets to reject\n" |
| 116 | "Specify packets to forward\n" |
| 117 | "Any source host\n") |
| 118 | |
| 119 | DEFSH (VTYSH_BGPD, no_match_ipv6_next_hop_cmd_vtysh, |
| 120 | "no match ipv6 next-hop X:X::X:X", |
| 121 | "Negate a command or set its defaults\n" |
| 122 | "Match values from routing table\n" |
| 123 | "IPv6 information\n" |
| 124 | "Match IPv6 next-hop address of route\n" |
| 125 | "IPv6 address of next hop\n") |
| 126 | |
| 127 | DEFSH (VTYSH_BGPD, clear_bgp_external_out_cmd_vtysh, |
| 128 | "clear bgp external out", |
| 129 | "Reset functions\n" |
| 130 | "BGP information\n" |
| 131 | "Clear all external peers\n" |
| 132 | "Soft reconfig outbound update\n") |
| 133 | |
| 134 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_le_cmd_vtysh, |
| 135 | "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32>", |
| 136 | "IP information\n" |
| 137 | "Build a prefix list\n" |
| 138 | "Name of a prefix list\n" |
| 139 | "sequence number of an entry\n" |
| 140 | "Sequence number\n" |
| 141 | "Specify packets to reject\n" |
| 142 | "Specify packets to forward\n" |
| 143 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 144 | "Maximum prefix length to be matched\n" |
| 145 | "Maximum prefix length\n") |
| 146 | |
| 147 | DEFSH (VTYSH_BGPD, show_ip_bgp_instance_summary_cmd_vtysh, |
| 148 | "show ip bgp view WORD summary", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 149 | "Show running system information\n" |
| 150 | "IP information\n" |
| 151 | "BGP information\n" |
| 152 | "BGP view\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 153 | "View name\n" |
| 154 | "Summary of BGP neighbor status\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 155 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 156 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_metric_routemap_cmd_vtysh, |
| 157 | "redistribute kernel metric <0-16> route-map WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 158 | "Redistribute information from another routing protocol\n" |
| 159 | "Kernel routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 160 | "Metric\n" |
| 161 | "Metric value\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 162 | "Route map reference\n" |
| 163 | "Pointer to route-map entries\n") |
| 164 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 165 | DEFSH (VTYSH_BGPD, no_bgp_distance_source_cmd_vtysh, |
| 166 | "no distance <1-255> A.B.C.D/M", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 167 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 168 | "Define an administrative distance\n" |
| 169 | "Administrative distance\n" |
| 170 | "IP source prefix\n") |
| 171 | |
| 172 | DEFSH (VTYSH_OSPF6D, no_ospf6_redistribute_cmd_vtysh, |
| 173 | "no redistribute (static|kernel|connected|ripng|bgp)", |
| 174 | "Negate a command or set its defaults\n" |
| 175 | "Redistribute\n" |
| 176 | "Static route\n" |
| 177 | "Kernel route\n" |
| 178 | "Connected route\n" |
| 179 | "RIPng route\n" |
| 180 | "BGP route\n" |
| 181 | ) |
| 182 | |
| 183 | DEFSH (VTYSH_RIPNGD, ripng_aggregate_address_cmd_vtysh, |
| 184 | "aggregate-address X:X::X:X/M", |
| 185 | "Set aggregate RIPng route announcement\n" |
| 186 | "Aggregate network\n") |
| 187 | |
| 188 | DEFSH (VTYSH_RIPD, send_lifetime_duration_month_day_cmd_vtysh, |
| 189 | "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> duration <1-2147483646>", |
| 190 | "Set send lifetime of the key\n" |
| 191 | "Time to start\n" |
| 192 | "Month of the year to start\n" |
| 193 | "Day of th month to start\n" |
| 194 | "Year to start\n" |
| 195 | "Duration of the key\n" |
| 196 | "Duration seconds\n") |
| 197 | |
| 198 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_ge_cmd_vtysh, |
| 199 | "ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 200 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 201 | "Build a prefix list\n" |
| 202 | "Name of a prefix list\n" |
| 203 | "Specify packets to reject\n" |
| 204 | "Specify packets to forward\n" |
| 205 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 206 | "Minimum prefix length to be matched\n" |
| 207 | "Minimum prefix length\n") |
| 208 | |
| 209 | DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_cmd_vtysh, |
| 210 | "clear ip bgp dampening", |
| 211 | "Reset functions\n" |
| 212 | "IP information\n" |
| 213 | "BGP information\n" |
| 214 | "Clear route flap dampening information\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 215 | |
| 216 | DEFSH (VTYSH_RIPNGD, debug_ripng_zebra_cmd_vtysh, |
| 217 | "debug ripng zebra", |
| 218 | "Debugging functions (see also 'undebug')\n" |
| 219 | "RIPng configuration\n" |
| 220 | "Debug option set for ripng and zebra communication\n") |
| 221 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 222 | DEFSH (VTYSH_OSPFD, neighbor_poll_interval_priority_cmd_vtysh, |
| 223 | "neighbor A.B.C.D poll-interval <1-65535> priority <0-255>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 224 | "Specify neighbor router\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 225 | "Neighbor address\n" |
| 226 | "OSPF dead-router polling interval\n" |
| 227 | "Seconds\n" |
| 228 | "OSPF priority of non-broadcast neighbor\n" |
| 229 | "Priority\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 230 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 231 | DEFSH (VTYSH_BGPD, show_ip_bgp_community_cmd_vtysh, |
| 232 | "show ip bgp community (AA:NN|local-AS|no-advertise|no-export)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 233 | "Show running system information\n" |
| 234 | "IP information\n" |
| 235 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 236 | "Display routes matching the communities\n" |
| 237 | "community number\n" |
| 238 | "Do not send outside local AS (well-known community)\n" |
| 239 | "Do not advertise to any peer (well-known community)\n" |
| 240 | "Do not export to next AS (well-known community)\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 241 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 242 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_cmd_vtysh, |
| 243 | "no redistribute static", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 244 | "Negate a command or set its defaults\n" |
| 245 | "Redistribute information from another routing protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 246 | "Static routes\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 247 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 248 | DEFSH (VTYSH_BGPD, show_bgp_community3_cmd_vtysh, |
| 249 | "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)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 250 | "Show running system information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 251 | "BGP information\n" |
| 252 | "Display routes matching the communities\n" |
| 253 | "community number\n" |
| 254 | "Do not send outside local AS (well-known community)\n" |
| 255 | "Do not advertise to any peer (well-known community)\n" |
| 256 | "Do not export to next AS (well-known community)\n" |
| 257 | "community number\n" |
| 258 | "Do not send outside local AS (well-known community)\n" |
| 259 | "Do not advertise to any peer (well-known community)\n" |
| 260 | "Do not export to next AS (well-known community)\n" |
| 261 | "community number\n" |
| 262 | "Do not send outside local AS (well-known community)\n" |
| 263 | "Do not advertise to any peer (well-known community)\n" |
| 264 | "Do not export to next AS (well-known community)\n") |
| 265 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 266 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged_cmd_vtysh, |
| 267 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 268 | "Negate a command or set its defaults\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 269 | "Specify neighbor router\n" |
| 270 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 271 | "BGP attribute is propagated unchanged to this neighbor\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 272 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 273 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_all_cmd_vtysh, |
| 274 | "show ipv6 bgp community", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 275 | "Show running system information\n" |
| 276 | "IPv6 information\n" |
| 277 | "BGP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 278 | "Display routes matching the communities\n") |
| 279 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 280 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_prefix_list_val_cmd_vtysh, |
| 281 | "no match ip next-hop prefix-list WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 282 | "Negate a command or set its defaults\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 283 | "Match values from routing table\n" |
| 284 | "IP information\n" |
| 285 | "Match next-hop address of route\n" |
| 286 | "Match entries of prefix-lists\n" |
| 287 | "IP prefix-list name\n") |
| 288 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 289 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_cmd_vtysh, |
| 290 | "redistribute (connected|kernel|ospf6|ripng|static)", |
| 291 | "Redistribute information from another routing protocol\n" |
| 292 | "Connected\n" |
| 293 | "Kernel routes\n" |
| 294 | "Open Shurtest Path First (OSPFv3)\n" |
| 295 | "Routing Information Protocol (RIPng)\n" |
| 296 | "Static routes\n") |
| 297 | |
| 298 | DEFSH (VTYSH_BGPD, no_neighbor_local_as_cmd_vtysh, |
| 299 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as", |
| 300 | "Negate a command or set its defaults\n" |
| 301 | "Specify neighbor router\n" |
| 302 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 303 | "Specify a local-as number\n") |
| 304 | |
| 305 | DEFSH (VTYSH_OSPFD, ospf_network_cmd_vtysh, |
| 306 | "ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)", |
| 307 | "OSPF interface commands\n" |
| 308 | "Network type\n" |
| 309 | "Specify OSPF broadcast multi-access network\n" |
| 310 | "Specify OSPF NBMA network\n" |
| 311 | "Specify OSPF point-to-multipoint network\n" |
| 312 | "Specify OSPF point-to-point network\n") |
| 313 | |
| 314 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_set_metric_cmd_vtysh, |
| 315 | "no set metric", |
| 316 | "Negate a command or set its defaults\n" |
| 317 | "Set values in destination routing protocol\n" |
| 318 | "Metric value for destination routing protocol\n") |
| 319 | |
| 320 | DEFSH (VTYSH_BGPD, show_ip_bgp_filter_list_cmd_vtysh, |
| 321 | "show ip bgp filter-list WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 322 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 323 | "IP information\n" |
| 324 | "BGP information\n" |
| 325 | "Display routes conforming to the filter-list\n" |
| 326 | "Regular expression access list name\n") |
| 327 | |
| 328 | DEFSH (VTYSH_OSPFD, no_area_range_advertise_cmd_vtysh, |
| 329 | "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M (advertise|not-advertise)", |
| 330 | "Negate a command or set its defaults\n" |
| 331 | "OSPF area parameters\n" |
| 332 | "OSPF area ID in IP address format\n" |
| 333 | "OSPF area ID as a decimal value\n" |
| 334 | "Summarize routes matching address/mask (border routers only)\n" |
| 335 | "Area range prefix\n" |
| 336 | "Advertise this range (default)\n" |
| 337 | "DoNotAdvertise this range\n") |
| 338 | |
| 339 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_seq_ge_cmd_vtysh, |
| 340 | "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 341 | "IPv6 information\n" |
| 342 | "Build a prefix list\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 343 | "Name of a prefix list\n" |
| 344 | "sequence number of an entry\n" |
| 345 | "Sequence number\n" |
| 346 | "Specify packets to reject\n" |
| 347 | "Specify packets to forward\n" |
| 348 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 349 | "Minimum prefix length to be matched\n" |
| 350 | "Minimum prefix length\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 351 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 352 | DEFSH (VTYSH_BGPD, no_bgp_timers_cmd_vtysh, |
| 353 | "no timers bgp", |
| 354 | "Negate a command or set its defaults\n" |
| 355 | "Adjust routing timers\n" |
| 356 | "BGP timers\n") |
| 357 | |
| 358 | DEFSH (VTYSH_BGPD, no_bgp_enforce_first_as_cmd_vtysh, |
| 359 | "no bgp enforce-first-as", |
| 360 | "Negate a command or set its defaults\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 361 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 362 | "Enforce the first AS for EBGP routes\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 363 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 364 | DEFSH (VTYSH_RIPD, no_ip_rip_authentication_mode_cmd_vtysh, |
| 365 | "no ip rip authentication mode", |
| 366 | "Negate a command or set its defaults\n" |
| 367 | "IP information\n" |
| 368 | "Routing Information Protocol\n" |
| 369 | "Authentication control\n" |
| 370 | "Authentication mode\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 371 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 372 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_cmd_vtysh, |
| 373 | "distance ospf intra-area <1-255>", |
| 374 | "Define an administrative distance\n" |
| 375 | "OSPF Administrative distance\n" |
| 376 | "Intra-area routes\n" |
| 377 | "Distance for intra-area routes\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 378 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 379 | DEFSH (VTYSH_BGPD, match_ipv6_address_cmd_vtysh, |
| 380 | "match ipv6 address WORD", |
| 381 | "Match values from routing table\n" |
| 382 | "IPv6 information\n" |
| 383 | "Match IPv6 address of route\n" |
| 384 | "IPv6 access-list name\n") |
| 385 | |
| 386 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_cmd_vtysh, |
| 387 | "redistribute static", |
| 388 | "Redistribute information from another routing protocol\n" |
| 389 | "Static routes\n") |
| 390 | |
| 391 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_in_cmd_vtysh, |
| 392 | "clear ip bgp * soft in", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 393 | "Reset functions\n" |
| 394 | "IP information\n" |
| 395 | "BGP information\n" |
| 396 | "Clear all peers\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 397 | "Soft reconfig\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 398 | "Soft reconfig inbound update\n") |
| 399 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 400 | DEFSH (VTYSH_ZEBRA, ip_route_mask_distance_cmd_vtysh, |
| 401 | "ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0) <1-255>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 402 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 403 | "Establish static routes\n" |
| 404 | "IP destination prefix\n" |
| 405 | "IP destination prefix mask\n" |
| 406 | "IP gateway address\n" |
| 407 | "IP gateway interface name\n" |
| 408 | "Null interface\n" |
| 409 | "Distance value for this route\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 410 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 411 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_routemap_cmd_vtysh, |
| 412 | "no redistribute ospf6 metric <0-16> route-map WORD", |
| 413 | "Negate a command or set its defaults\n" |
| 414 | "Redistribute information from another routing protocol\n" |
| 415 | "IPv6 Open Shortest Path First (OSPFv3)\n" |
| 416 | "Metric\n" |
| 417 | "Metric value\n" |
| 418 | "Route map reference\n" |
| 419 | "Pointer to route-map entries\n") |
| 420 | |
| 421 | DEFSH (VTYSH_RIPD, no_router_rip_cmd_vtysh, |
| 422 | "no router rip", |
| 423 | "Negate a command or set its defaults\n" |
| 424 | "Enable a routing process\n" |
| 425 | "Routing Information Protocol (RIP)\n") |
| 426 | |
| 427 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_summary_name_cmd_vtysh, |
| 428 | "show ip prefix-list summary WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 429 | "Show running system information\n" |
| 430 | "IP information\n" |
| 431 | "Build a prefix list\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 432 | "Summary of prefix lists\n" |
| 433 | "Name of a prefix list\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 434 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 435 | DEFSH (VTYSH_BGPD, clear_bgp_all_cmd_vtysh, |
| 436 | "clear bgp *", |
| 437 | "Reset functions\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 438 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 439 | "Clear all peers\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 440 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 441 | DEFSH (VTYSH_BGPD, no_neighbor_strict_capability_cmd_vtysh, |
| 442 | "no neighbor (A.B.C.D|X:X::X:X) " "strict-capability-match", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 443 | "Negate a command or set its defaults\n" |
| 444 | "Specify neighbor router\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 445 | "Neighbor address\nIPv6 address\n" |
| 446 | "Strict capability negotiation match\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 447 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 448 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community2_cmd_vtysh, |
| 449 | "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)", |
| 450 | "Show running system information\n" |
| 451 | "BGP information\n" |
| 452 | "Address family\n" |
| 453 | "Display routes matching the communities\n" |
| 454 | "community number\n" |
| 455 | "Do not send outside local AS (well-known community)\n" |
| 456 | "Do not advertise to any peer (well-known community)\n" |
| 457 | "Do not export to next AS (well-known community)\n" |
| 458 | "community number\n" |
| 459 | "Do not send outside local AS (well-known community)\n" |
| 460 | "Do not advertise to any peer (well-known community)\n" |
| 461 | "Do not export to next AS (well-known community)\n") |
| 462 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 463 | DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD, no_set_metric_val_cmd_vtysh, |
| 464 | "no set metric <0-4294967295>", |
| 465 | "Negate a command or set its defaults\n" |
| 466 | "Set values in destination routing protocol\n" |
| 467 | "Metric value for destination routing protocol\n" |
| 468 | "Metric value\n") |
| 469 | |
| 470 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_in_cmd_vtysh, |
| 471 | "clear ip bgp * in", |
| 472 | "Reset functions\n" |
| 473 | "IP information\n" |
| 474 | "BGP information\n" |
| 475 | "Clear all peers\n" |
| 476 | "Soft reconfig inbound update\n") |
| 477 | |
| 478 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_out_cmd_vtysh, |
| 479 | "clear ip bgp peer-group WORD out", |
| 480 | "Reset functions\n" |
| 481 | "IP information\n" |
| 482 | "BGP information\n" |
| 483 | "Clear all members of peer-group\n" |
| 484 | "BGP peer-group name\n" |
| 485 | "Soft reconfig outbound update\n") |
| 486 | |
| 487 | DEFSH (VTYSH_OSPFD, no_network_area_cmd_vtysh, |
| 488 | "no network A.B.C.D/M area (A.B.C.D|<0-4294967295>)", |
| 489 | "Negate a command or set its defaults\n" |
| 490 | "Enable routing on an IP network\n" |
| 491 | "OSPF network prefix\n" |
| 492 | "Set the OSPF area ID\n" |
| 493 | "OSPF area ID in IP address format\n" |
| 494 | "OSPF area ID as a decimal value\n") |
| 495 | |
| 496 | DEFSH (VTYSH_BGPD, neighbor_activate_cmd_vtysh, |
| 497 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "activate", |
| 498 | "Specify neighbor router\n" |
| 499 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 500 | "Enable the Address Family for this Neighbor\n") |
| 501 | |
| 502 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_route_map_cmd_vtysh, |
| 503 | "show ip bgp flap-statistics route-map WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 504 | "Show running system information\n" |
| 505 | "IP information\n" |
| 506 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 507 | "Display flap statistics of routes\n" |
| 508 | "Display routes matching the route-map\n" |
| 509 | "A route-map to match on\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 510 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 511 | DEFSH (VTYSH_OSPF6D|VTYSH_BGPD, no_match_ipv6_address_prefix_list_cmd_vtysh, |
| 512 | "no match ipv6 address prefix-list WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 513 | "Negate a command or set its defaults\n" |
| 514 | "Match values from routing table\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 515 | "IPv6 information\n" |
| 516 | "Match address of route\n" |
| 517 | "Match entries of prefix-lists\n" |
| 518 | "IP prefix-list name\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 519 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 520 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, no_ipv6_access_list_any_cmd_vtysh, |
| 521 | "no ipv6 access-list WORD (deny|permit) any", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 522 | "Negate a command or set its defaults\n" |
| 523 | "IPv6 information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 524 | "Add an access list entry\n" |
| 525 | "IPv6 zebra access-list\n" |
| 526 | "Specify packets to reject\n" |
| 527 | "Specify packets to forward\n" |
| 528 | "Any prefixi to match\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 529 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 530 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_ge_le_cmd_vtysh, |
| 531 | "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128> le <0-128>", |
| 532 | "IPv6 information\n" |
| 533 | "Build a prefix list\n" |
| 534 | "Name of a prefix list\n" |
| 535 | "Specify packets to reject\n" |
| 536 | "Specify packets to forward\n" |
| 537 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 538 | "Minimum prefix length to be matched\n" |
| 539 | "Minimum prefix length\n" |
| 540 | "Maximum prefix length to be matched\n" |
| 541 | "Maximum prefix length\n") |
| 542 | |
| 543 | DEFSH (VTYSH_BGPD, aggregate_address_mask_cmd_vtysh, |
| 544 | "aggregate-address A.B.C.D A.B.C.D", |
| 545 | "Configure BGP aggregate entries\n" |
| 546 | "Aggregate address\n" |
| 547 | "Aggregate mask\n") |
| 548 | |
| 549 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_metric_cmd_vtysh, |
| 550 | "redistribute static metric <0-16>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 551 | "Redistribute information from another routing protocol\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 552 | "Static routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 553 | "Metric\n" |
| 554 | "Metric value\n") |
| 555 | |
| 556 | DEFSH (VTYSH_OSPFD, area_vlink_authtype_authkey_cmd_vtysh, |
| 557 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 558 | "(authentication|) " |
| 559 | "(authentication-key|) AUTH_KEY", |
| 560 | "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" |
| 561 | "Enable authentication on this virtual link\n" "dummy string \n" |
| 562 | "Authentication password (key)\n" "The OSPF password (key)") |
| 563 | |
| 564 | DEFSH (VTYSH_OSPFD, no_ospf_compatible_rfc1583_cmd_vtysh, |
| 565 | "no compatible rfc1583", |
| 566 | "Negate a command or set its defaults\n" |
| 567 | "OSPF compatibility list\n" |
| 568 | "compatible with RFC 1583\n") |
| 569 | |
| 570 | DEFSH (VTYSH_OSPFD, debug_ospf_ism_cmd_vtysh, |
| 571 | "debug ospf ism", |
| 572 | "Debugging functions (see also 'undebug')\n" |
| 573 | "OSPF information\n" |
| 574 | "OSPF Interface State Machine\n") |
| 575 | |
| 576 | DEFSH (VTYSH_RIPD, rip_split_horizon_cmd_vtysh, |
| 577 | "ip split-horizon", |
| 578 | "IP information\n" |
| 579 | "Perform split horizon\n") |
| 580 | |
| 581 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_list_exact_cmd_vtysh, |
| 582 | "show ipv6 mbgp community-list WORD exact-match", |
| 583 | "Show running system information\n" |
| 584 | "IPv6 information\n" |
| 585 | "MBGP information\n" |
| 586 | "Display routes matching the community-list\n" |
| 587 | "community-list name\n" |
| 588 | "Exact match of the communities\n") |
| 589 | |
| 590 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_routemap_cmd_vtysh, |
| 591 | "default-information originate always route-map WORD", |
| 592 | "Control distribution of default information\n" |
| 593 | "Distribute a default route\n" |
| 594 | "Always advertise default route\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 595 | "Route map reference\n" |
| 596 | "Pointer to route-map entries\n") |
| 597 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 598 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_cmd_vtysh, |
| 599 | "clear bgp ipv6 external soft", |
| 600 | "Reset functions\n" |
| 601 | "BGP information\n" |
| 602 | "Address family\n" |
| 603 | "Clear all external peers\n" |
| 604 | "Soft reconfig\n") |
| 605 | |
| 606 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_sequence_number_cmd_vtysh, |
| 607 | "ip prefix-list sequence-number", |
| 608 | "IP information\n" |
| 609 | "Build a prefix list\n" |
| 610 | "Include/exclude sequence numbers in NVGEN\n") |
| 611 | |
| 612 | DEFSH (VTYSH_OSPFD, no_ip_ospf_hello_interval_cmd_vtysh, |
| 613 | "no ip ospf hello-interval", |
| 614 | "Negate a command or set its defaults\n" |
| 615 | "IP Information\n" |
| 616 | "OSPF interface commands\n" |
| 617 | "Time between HELLO packets\n") |
| 618 | |
| 619 | DEFSH (VTYSH_BGPD, show_bgp_neighbor_received_routes_cmd_vtysh, |
| 620 | "show bgp neighbors (A.B.C.D|X:X::X:X) received-routes", |
| 621 | "Show running system information\n" |
| 622 | "BGP information\n" |
| 623 | "Detailed information on TCP and BGP neighbor connections\n" |
| 624 | "Neighbor to display information about\n" |
| 625 | "Neighbor to display information about\n" |
| 626 | "Display the received routes from neighbor\n") |
| 627 | |
| 628 | DEFSH (VTYSH_OSPFD, no_ip_ospf_cost_cmd_vtysh, |
| 629 | "no ip ospf cost", |
| 630 | "Negate a command or set its defaults\n" |
| 631 | "IP Information\n" |
| 632 | "OSPF interface commands\n" |
| 633 | "Interface cost\n") |
| 634 | |
| 635 | DEFSH (VTYSH_BGPD, show_ip_bgp_community4_cmd_vtysh, |
| 636 | "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)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 637 | "Show running system information\n" |
| 638 | "IP information\n" |
| 639 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 640 | "Display routes matching the communities\n" |
| 641 | "community number\n" |
| 642 | "Do not send outside local AS (well-known community)\n" |
| 643 | "Do not advertise to any peer (well-known community)\n" |
| 644 | "Do not export to next AS (well-known community)\n" |
| 645 | "community number\n" |
| 646 | "Do not send outside local AS (well-known community)\n" |
| 647 | "Do not advertise to any peer (well-known community)\n" |
| 648 | "Do not export to next AS (well-known community)\n" |
| 649 | "community number\n" |
| 650 | "Do not send outside local AS (well-known community)\n" |
| 651 | "Do not advertise to any peer (well-known community)\n" |
| 652 | "Do not export to next AS (well-known community)\n" |
| 653 | "community number\n" |
| 654 | "Do not send outside local AS (well-known community)\n" |
| 655 | "Do not advertise to any peer (well-known community)\n" |
| 656 | "Do not export to next AS (well-known community)\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 657 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 658 | DEFSH (VTYSH_BGPD, no_match_ecommunity_cmd_vtysh, |
| 659 | "no match extcommunity", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 660 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 661 | "Match values from routing table\n" |
| 662 | "Match BGP/VPN extended community list\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 663 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 664 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_seq_ge_le_cmd_vtysh, |
| 665 | "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128> le <0-128>", |
| 666 | "Negate a command or set its defaults\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 667 | "IPv6 information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 668 | "Build a prefix list\n" |
| 669 | "Name of a prefix list\n" |
| 670 | "sequence number of an entry\n" |
| 671 | "Sequence number\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 672 | "Specify packets to reject\n" |
| 673 | "Specify packets to forward\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 674 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 675 | "Minimum prefix length to be matched\n" |
| 676 | "Minimum prefix length\n" |
| 677 | "Maximum prefix length to be matched\n" |
| 678 | "Maximum prefix length\n") |
| 679 | |
| 680 | DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_in_cmd_vtysh, |
| 681 | "clear bgp peer-group WORD soft in", |
| 682 | "Reset functions\n" |
| 683 | "BGP information\n" |
| 684 | "Clear all members of peer-group\n" |
| 685 | "BGP peer-group name\n" |
| 686 | "Soft reconfig\n" |
| 687 | "Soft reconfig inbound update\n") |
| 688 | |
| 689 | DEFSH (VTYSH_BGPD, no_aggregate_address_as_set_cmd_vtysh, |
| 690 | "no aggregate-address A.B.C.D/M as-set", |
| 691 | "Negate a command or set its defaults\n" |
| 692 | "Configure BGP aggregate entries\n" |
| 693 | "Aggregate prefix\n" |
| 694 | "Generate AS set path information\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 695 | |
| 696 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_out_cmd_vtysh, |
| 697 | "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft out", |
| 698 | "Reset functions\n" |
| 699 | "IP information\n" |
| 700 | "BGP information\n" |
| 701 | "Clear peers with the AS number\n" |
| 702 | "Address family\n" |
| 703 | "Address Family modifier\n" |
| 704 | "Address Family modifier\n" |
| 705 | "Soft reconfig\n" |
| 706 | "Soft reconfig outbound update\n") |
| 707 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 708 | DEFSH (VTYSH_BGPD, no_set_local_pref_cmd_vtysh, |
| 709 | "no set local-preference", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 710 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 711 | "Set values in destination routing protocol\n" |
| 712 | "BGP local preference path attribute\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 713 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 714 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_in_prefix_filter_cmd_vtysh, |
| 715 | "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in prefix-filter", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 716 | "Reset functions\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 717 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 718 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 719 | "BGP neighbor address to clear\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 720 | "Address family\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 721 | "Address Family modifier\n" |
| 722 | "Address Family modifier\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 723 | "Soft reconfig inbound update\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 724 | "Push out the existing ORF prefix-list\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 725 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 726 | DEFSH (VTYSH_BGPD, old_no_ipv6_bgp_network_cmd_vtysh, |
| 727 | "no ipv6 bgp network X:X::X:X/M", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 728 | "Negate a command or set its defaults\n" |
| 729 | "IPv6 information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 730 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 731 | "Specify a network to announce via BGP\n" |
| 732 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 733 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 734 | DEFSH (VTYSH_BGPD, debug_bgp_normal_cmd_vtysh, |
| 735 | "debug bgp", |
| 736 | "Debugging functions (see also 'undebug')\n" |
| 737 | "BGP information\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 738 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 739 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_routemap_cmd_vtysh, |
| 740 | "no redistribute static metric <0-16> route-map WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 741 | "Negate a command or set its defaults\n" |
| 742 | "Redistribute information from another routing protocol\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 743 | "Static routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 744 | "Metric\n" |
| 745 | "Metric value\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 746 | "Route map reference\n" |
| 747 | "Pointer to route-map entries\n") |
| 748 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 749 | DEFSH (VTYSH_ZEBRA, no_bandwidth_if_val_cmd_vtysh, |
| 750 | "no bandwidth <1-10000000>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 751 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 752 | "Set bandwidth informational parameter\n" |
| 753 | "Bandwidth in kilobits\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 754 | |
| 755 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh, |
| 756 | "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|)", |
| 757 | "Show running system information\n" |
| 758 | "IPv6 Information\n" |
| 759 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 760 | "LSA Database\n" |
| 761 | "Router-LSA\n" |
| 762 | "Network-LSA\n" |
| 763 | "AS-External-LSA\n" |
| 764 | "Intra-Area-Prefix-LSA\n" |
| 765 | "Inter-Area-Router-LSA\n" |
| 766 | "Inter-Area-Prefix-LSA\n" |
| 767 | "Link-LSA\n" |
| 768 | "All LS Type\n" |
| 769 | "Specify LS Type by Hex\n" |
| 770 | "Link State ID\n" |
| 771 | "All Link State ID\n" |
| 772 | "Advertising Router\n" |
| 773 | "All Advertising Router\n" |
| 774 | "Dump raw LSA data in Hex\n" |
| 775 | "show detail of LSAs\n" |
| 776 | ) |
| 777 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 778 | DEFSH (VTYSH_BGPD, no_bgp_router_id_val_cmd_vtysh, |
| 779 | "no bgp router-id A.B.C.D", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 780 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 781 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 782 | "Override configured router identifier\n" |
| 783 | "Manually configured router identifier\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 784 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 785 | DEFSH (VTYSH_RIPD, no_rip_offset_list_cmd_vtysh, |
| 786 | "no offset-list WORD (in|out) <0-16>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 787 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 788 | "Modify RIP metric\n" |
| 789 | "Access-list name\n" |
| 790 | "For incoming updates\n" |
| 791 | "For outgoing updates\n" |
| 792 | "Metric value\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 793 | |
| 794 | DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_detail_all_cmd_vtysh, |
| 795 | "show ip ospf neighbor detail all", |
| 796 | "Show running system information\n" |
| 797 | "IP information\n" |
| 798 | "OSPF information\n" |
| 799 | "Neighbor list\n" |
| 800 | "detail of all neighbors\n" |
| 801 | "include down status neighbor\n") |
| 802 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 803 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_cmd_vtysh, |
| 804 | "show bgp ipv6 X:X::X:X/M", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 805 | "Show running system information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 806 | "BGP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 807 | "Address family\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 808 | "IPv6 prefix <network>/<length>\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 809 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 810 | DEFSH (VTYSH_BGPD, no_dump_bgp_routes_cmd_vtysh, |
| 811 | "no dump bgp routes-mrt [PATH] [INTERVAL]", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 812 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 813 | "Dump packet\n" |
| 814 | "BGP packet dump\n" |
| 815 | "Dump whole BGP routing table\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 816 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 817 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_external_cmd_vtysh, |
| 818 | "distance ospf inter-area <1-255> external <1-255>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 819 | "Define an administrative distance\n" |
| 820 | "OSPF Administrative distance\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 821 | "Inter-area routes\n" |
| 822 | "Distance for inter-area routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 823 | "External routes\n" |
| 824 | "Distance for external routes\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 825 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 826 | DEFSH (VTYSH_OSPFD, debug_ospf_event_cmd_vtysh, |
| 827 | "debug ospf event", |
| 828 | "Debugging functions (see also 'undebug')\n" |
| 829 | "OSPF information\n" |
| 830 | "OSPF event information\n") |
| 831 | |
| 832 | DEFSH (VTYSH_OSPFD, no_ospf_retransmit_interval_cmd_vtysh, |
| 833 | "no ospf retransmit-interval", |
| 834 | "Negate a command or set its defaults\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 835 | "OSPF interface commands\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 836 | "Time between retransmitting lost link state advertisements\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 837 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 838 | DEFSH (VTYSH_BGPD, set_community_none_cmd_vtysh, |
| 839 | "set community none", |
| 840 | "Set values in destination routing protocol\n" |
| 841 | "BGP community attribute\n" |
| 842 | "No community attribute\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 843 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 844 | DEFSH (VTYSH_BGPD, debug_bgp_filter_cmd_vtysh, |
| 845 | "debug bgp filters", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 846 | "Debugging functions (see also 'undebug')\n" |
| 847 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 848 | "BGP filters\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 849 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 850 | DEFSH (VTYSH_OSPF6D, ospf6_routemap_set_forwarding_cmd_vtysh, |
| 851 | "set forwarding-address X:X::X:X", |
| 852 | "Set value\n" |
| 853 | "Forwarding Address\n" |
| 854 | "IPv6 Address\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 855 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 856 | DEFSH (VTYSH_BGPD, no_bgp_bestpath_compare_router_id_cmd_vtysh, |
| 857 | "no bgp bestpath compare-routerid", |
| 858 | "Negate a command or set its defaults\n" |
| 859 | "BGP specific commands\n" |
| 860 | "Change the default bestpath selection\n" |
| 861 | "Compare router-id for identical EBGP paths\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 862 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 863 | DEFSH (VTYSH_RIPD, no_match_ip_address_val_cmd_vtysh, |
| 864 | "no match ip address WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 865 | "Negate a command or set its defaults\n" |
| 866 | "Match values from routing table\n" |
| 867 | "IP information\n" |
| 868 | "Match address of route\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 869 | "IP access-list name\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 870 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 871 | DEFSH (VTYSH_ZEBRA, bandwidth_if_cmd_vtysh, |
| 872 | "bandwidth <1-10000000>", |
| 873 | "Set bandwidth informational parameter\n" |
| 874 | "Bandwidth in kilobits\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 875 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 876 | DEFSH (VTYSH_OSPFD, ospf_default_metric_cmd_vtysh, |
| 877 | "default-metric <0-16777214>", |
| 878 | "Set metric of redistributed routes\n" |
| 879 | "Default metric\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 880 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 881 | DEFSH (VTYSH_BGPD, no_neighbor_allowas_in_cmd_vtysh, |
| 882 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 883 | "Negate a command or set its defaults\n" |
| 884 | "Specify neighbor router\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 885 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 886 | "allow local ASN appears in aspath attribute\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 887 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 888 | DEFSH (VTYSH_RIPNGD, no_ripng_default_metric_cmd_vtysh, |
| 889 | "no default-metric", |
| 890 | "Negate a command or set its defaults\n" |
| 891 | "Set a metric of redistribute routes\n" |
| 892 | "Default metric\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 893 | |
| 894 | DEFSH (VTYSH_OSPF6D, reload_cmd_vtysh, |
| 895 | "reload", |
| 896 | "Reloads\n") |
| 897 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 898 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_spf_tree_cmd_vtysh, |
| 899 | "show ipv6 ospf6 area A.B.C.D spf tree", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 900 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 901 | "IPv6 Information\n" |
| 902 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 903 | "Area information\n" |
| 904 | "Area ID (as an IPv4 notation)\n" |
| 905 | "Shortest Path First caculation\n" |
| 906 | "Displays spf tree\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 907 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 908 | DEFSH (VTYSH_BGPD, bgp_damp_unset2_cmd_vtysh, |
| 909 | "no bgp dampening <1-45> <1-20000> <1-20000> <1-255>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 910 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 911 | "BGP Specific commands\n" |
| 912 | "Enable route-flap dampening\n" |
| 913 | "Half-life time for the penalty\n" |
| 914 | "Value to start reusing a route\n" |
| 915 | "Value to start suppressing a route\n" |
| 916 | "Maximum duration to suppress a stable route\n") |
| 917 | |
| 918 | DEFSH (VTYSH_OSPFD, ip_ospf_authentication_key_addr_cmd_vtysh, |
| 919 | "ip ospf authentication-key AUTH_KEY A.B.C.D", |
| 920 | "IP Information\n" |
| 921 | "OSPF interface commands\n" |
| 922 | "Authentication password (key)\n" |
| 923 | "The OSPF password (key)\n" |
| 924 | "Address of interface") |
| 925 | |
| 926 | DEFSH (VTYSH_RIPD, ip_rip_send_version_2_cmd_vtysh, |
| 927 | "ip rip send version 2 1", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 928 | "IP information\n" |
| 929 | "Routing Information Protocol\n" |
| 930 | "Advertisement transmission\n" |
| 931 | "Version control\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 932 | "RIP version 2\n" |
| 933 | "RIP version 1\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 934 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 935 | DEFSH (VTYSH_ZEBRA, ipv6_route_ifname_cmd_vtysh, |
| 936 | "ipv6 route X:X::X:X/M X:X::X:X INTERFACE", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 937 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 938 | "Establish static routes\n" |
| 939 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 940 | "IPv6 gateway address\n" |
| 941 | "IPv6 gateway interface name\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 942 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 943 | DEFSH (VTYSH_BGPD, show_bgp_community_all_cmd_vtysh, |
| 944 | "show bgp community", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 945 | "Show running system information\n" |
| 946 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 947 | "Display routes matching the communities\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 948 | |
| 949 | DEFSH (VTYSH_BGPD, neighbor_port_cmd_vtysh, |
| 950 | "neighbor (A.B.C.D|X:X::X:X) " "port <0-65535>", |
| 951 | "Specify neighbor router\n" |
| 952 | "Neighbor address\nIPv6 address\n" |
| 953 | "Neighbor's BGP port\n" |
| 954 | "TCP port number\n") |
| 955 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 956 | DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_prefix_cmd_vtysh, |
| 957 | "clear ip bgp dampening A.B.C.D/M", |
| 958 | "Reset functions\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 959 | "IP information\n" |
| 960 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 961 | "Clear route flap dampening information\n" |
| 962 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 963 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 964 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_out_cmd_vtysh, |
| 965 | "clear bgp ipv6 * soft out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 966 | "Reset functions\n" |
| 967 | "BGP information\n" |
| 968 | "Address family\n" |
| 969 | "Clear all peers\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 970 | "Soft reconfig\n" |
| 971 | "Soft reconfig outbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 972 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 973 | DEFSH (VTYSH_BGPD, show_ip_community_list_cmd_vtysh, |
| 974 | "show ip community-list", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 975 | "Show running system information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 976 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 977 | "List community-list\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 978 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 979 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_mask_host_cmd_vtysh, |
| 980 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D host A.B.C.D", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 981 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 982 | "Add an access list entry\n" |
| 983 | "IP extended access list\n" |
| 984 | "IP extended access list (expanded range)\n" |
| 985 | "Specify packets to reject\n" |
| 986 | "Specify packets to forward\n" |
| 987 | "Any Internet Protocol\n" |
| 988 | "Source address\n" |
| 989 | "Source wildcard bits\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 990 | "A single destination host\n" |
| 991 | "Destination address\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 992 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 993 | DEFSH (VTYSH_BGPD, set_ecommunity_soo_cmd_vtysh, |
| 994 | "set extcommunity soo .ASN:nn_or_IP-address:nn", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 995 | "Set values in destination routing protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 996 | "BGP extended community attribute\n" |
| 997 | "Site-of-Origin extended community\n" |
| 998 | "VPN extended community\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 999 | |
| 1000 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community4_exact_cmd_vtysh, |
| 1001 | "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", |
| 1002 | "Show running system information\n" |
| 1003 | "BGP information\n" |
| 1004 | "Address family\n" |
| 1005 | "Display routes matching the communities\n" |
| 1006 | "community number\n" |
| 1007 | "Do not send outside local AS (well-known community)\n" |
| 1008 | "Do not advertise to any peer (well-known community)\n" |
| 1009 | "Do not export to next AS (well-known community)\n" |
| 1010 | "community number\n" |
| 1011 | "Do not send outside local AS (well-known community)\n" |
| 1012 | "Do not advertise to any peer (well-known community)\n" |
| 1013 | "Do not export to next AS (well-known community)\n" |
| 1014 | "community number\n" |
| 1015 | "Do not send outside local AS (well-known community)\n" |
| 1016 | "Do not advertise to any peer (well-known community)\n" |
| 1017 | "Do not export to next AS (well-known community)\n" |
| 1018 | "community number\n" |
| 1019 | "Do not send outside local AS (well-known community)\n" |
| 1020 | "Do not advertise to any peer (well-known community)\n" |
| 1021 | "Do not export to next AS (well-known community)\n" |
| 1022 | "Exact match of the communities") |
| 1023 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1024 | DEFSH (VTYSH_BGPD, no_set_originator_id_cmd_vtysh, |
| 1025 | "no set originator-id", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1026 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1027 | "Set values in destination routing protocol\n" |
| 1028 | "BGP originator ID attribute\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1029 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1030 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_cmd_vtysh, |
| 1031 | "show ip prefix-list WORD A.B.C.D/M", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1032 | "Show running system information\n" |
| 1033 | "IP information\n" |
| 1034 | "Build a prefix list\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1035 | "Name of a prefix list\n" |
| 1036 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1037 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1038 | DEFSH (VTYSH_RIPD, send_lifetime_infinite_day_month_cmd_vtysh, |
| 1039 | "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> infinite", |
| 1040 | "Set send lifetime of the key\n" |
| 1041 | "Time to start\n" |
| 1042 | "Day of th month to start\n" |
| 1043 | "Month of the year to start\n" |
| 1044 | "Year to start\n" |
| 1045 | "Never expires") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1046 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1047 | DEFSH (VTYSH_BGPD, no_neighbor_description_val_cmd_vtysh, |
| 1048 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "description .LINE", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1049 | "Negate a command or set its defaults\n" |
| 1050 | "Specify neighbor router\n" |
| 1051 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1052 | "Neighbor specific description\n" |
| 1053 | "Up to 80 characters describing this neighbor\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1054 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1055 | DEFSH (VTYSH_BGPD, no_neighbor_default_originate_cmd_vtysh, |
| 1056 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1057 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1058 | "Specify neighbor router\n" |
| 1059 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 1060 | "Originate default route to this neighbor\n") |
| 1061 | |
| 1062 | DEFSH (VTYSH_RIPD, no_rip_passive_interface_cmd_vtysh, |
| 1063 | "no passive-interface IFNAME", |
| 1064 | "Negate a command or set its defaults\n" |
| 1065 | "Suppress routing updates on an interface\n" |
| 1066 | "Interface name\n") |
| 1067 | |
| 1068 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_remark_arg_cmd_vtysh, |
| 1069 | "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark .LINE", |
| 1070 | "Negate a command or set its defaults\n" |
| 1071 | "Add an access list entry\n" |
| 1072 | "IP standard access list\n" |
| 1073 | "IP extended access list\n" |
| 1074 | "IP standard access list (expanded range)\n" |
| 1075 | "IP extended access list (expanded range)\n" |
| 1076 | "IP zebra access-list\n" |
| 1077 | "Access list entry comment\n" |
| 1078 | "Comment up to 100 characters\n") |
| 1079 | |
| 1080 | DEFSH (VTYSH_BGPD, aggregate_address_as_set_cmd_vtysh, |
| 1081 | "aggregate-address A.B.C.D/M as-set", |
| 1082 | "Configure BGP aggregate entries\n" |
| 1083 | "Aggregate prefix\n" |
| 1084 | "Generate AS set path information\n") |
| 1085 | |
| 1086 | DEFSH (VTYSH_OSPF6D, interface_area_cmd_vtysh, |
| 1087 | "interface IFNAME area A.B.C.D", |
| 1088 | "Enable routing on an IPv6 interface\n" |
| 1089 | "Interface name(e.g. ep0)\n" |
| 1090 | "Set the OSPF6 area ID\n" |
| 1091 | "OSPF6 area ID in IPv4 address notation\n" |
| 1092 | ) |
| 1093 | |
| 1094 | DEFSH (VTYSH_BGPD, no_neighbor_send_community_type_cmd_vtysh, |
| 1095 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community (both|extended|standard)", |
| 1096 | "Negate a command or set its defaults\n" |
| 1097 | "Specify neighbor router\n" |
| 1098 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 1099 | "Send Community attribute to this neighbor\n" |
| 1100 | "Send Standard and Extended Community attributes\n" |
| 1101 | "Send Extended Community attributes\n" |
| 1102 | "Send Standard Community attributes\n") |
| 1103 | |
| 1104 | DEFSH (VTYSH_OSPFD, ospf_hello_interval_cmd_vtysh, |
| 1105 | "ospf hello-interval <1-65535>", |
| 1106 | "OSPF interface commands\n" |
| 1107 | "Time between HELLO packets\n" |
| 1108 | "Seconds\n") |
| 1109 | |
| 1110 | DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_all_cmd_vtysh, |
| 1111 | "show ip ospf neighbor all", |
| 1112 | "Show running system information\n" |
| 1113 | "IP information\n" |
| 1114 | "OSPF information\n" |
| 1115 | "Neighbor list\n" |
| 1116 | "include down status neighbor\n") |
| 1117 | |
| 1118 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_cost_cmd_vtysh, |
| 1119 | "ipv6 ospf6 cost COST", |
| 1120 | "IPv6 Information\n" |
| 1121 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 1122 | "Interface cost\n" |
| 1123 | "<1-65535> Cost\n" |
| 1124 | ) |
| 1125 | |
| 1126 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_out_cmd_vtysh, |
| 1127 | "clear ip bgp external out", |
| 1128 | "Reset functions\n" |
| 1129 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1130 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1131 | "Clear all external peers\n" |
| 1132 | "Soft reconfig outbound update\n") |
| 1133 | |
| 1134 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD, match_interface_cmd_vtysh, |
| 1135 | "match interface WORD", |
| 1136 | "Match values from routing table\n" |
| 1137 | "Match first hop interface of route\n" |
| 1138 | "Interface name\n") |
| 1139 | |
| 1140 | DEFSH (VTYSH_ZEBRA, debug_zebra_kernel_cmd_vtysh, |
| 1141 | "debug zebra kernel", |
| 1142 | "Debugging functions (see also 'undebug')\n" |
| 1143 | "Zebra configuration\n" |
| 1144 | "Debug option set for zebra between kernel interface\n") |
| 1145 | |
| 1146 | DEFSH (VTYSH_BGPD, no_aggregate_address_cmd_vtysh, |
| 1147 | "no aggregate-address A.B.C.D/M", |
| 1148 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1149 | "Configure BGP aggregate entries\n" |
| 1150 | "Aggregate prefix\n") |
| 1151 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1152 | DEFSH (VTYSH_ZEBRA, show_ipv6_forwarding_cmd_vtysh, |
| 1153 | "show ipv6 forwarding", |
| 1154 | "Show running system information\n" |
| 1155 | "IPv6 information\n" |
| 1156 | "Forwarding status\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1157 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1158 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_instance_cmd_vtysh, |
| 1159 | "ipv6 ospf6 instance-id INSTANCE", |
| 1160 | "IPv6 Information\n" |
| 1161 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 1162 | "Instance ID\n" |
| 1163 | "<0-255> Instance ID\n" |
| 1164 | ) |
| 1165 | |
| 1166 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_rmap_metric_cmd_vtysh, |
| 1167 | "redistribute (connected|kernel|ospf|rip|static) route-map WORD metric <0-4294967295>", |
| 1168 | "Redistribute information from another routing protocol\n" |
| 1169 | "Connected\n" |
| 1170 | "Kernel routes\n" |
| 1171 | "Open Shurtest Path First (OSPF)\n" |
| 1172 | "Routing Information Protocol (RIP)\n" |
| 1173 | "Static routes\n" |
| 1174 | "Route map reference\n" |
| 1175 | "Pointer to route-map entries\n" |
| 1176 | "Metric for redistributed routes\n" |
| 1177 | "Default metric\n") |
| 1178 | |
| 1179 | DEFSH (VTYSH_BGPD, no_aggregate_address_as_set_summary_cmd_vtysh, |
| 1180 | "no aggregate-address A.B.C.D/M as-set summary-only", |
| 1181 | "Negate a command or set its defaults\n" |
| 1182 | "Configure BGP aggregate entries\n" |
| 1183 | "Aggregate prefix\n" |
| 1184 | "Generate AS set path information\n" |
| 1185 | "Filter more specific routes from updates\n") |
| 1186 | |
| 1187 | DEFSH (VTYSH_OSPFD, ip_ospf_authentication_args_addr_cmd_vtysh, |
| 1188 | "ip ospf authentication (null|message-digest) A.B.C.D", |
| 1189 | "IP Information\n" |
| 1190 | "OSPF interface commands\n" |
| 1191 | "Enable authentication on this interface\n" |
| 1192 | "Use null authentication\n" |
| 1193 | "Use message-digest authentication\n" |
| 1194 | "Address of interface") |
| 1195 | |
| 1196 | DEFSH (VTYSH_BGPD, no_neighbor_capability_dynamic_cmd_vtysh, |
| 1197 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability dynamic", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1198 | "Negate a command or set its defaults\n" |
| 1199 | "Specify neighbor router\n" |
| 1200 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1201 | "Advertise capability to the peer\n" |
| 1202 | "Advertise dynamic capability to this neighbor\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1203 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1204 | DEFSH (VTYSH_OSPFD, ospf_retransmit_interval_cmd_vtysh, |
| 1205 | "ospf retransmit-interval <3-65535>", |
| 1206 | "OSPF interface commands\n" |
| 1207 | "Time between retransmitting lost link state advertisements\n" |
| 1208 | "Seconds\n") |
| 1209 | |
| 1210 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_in_cmd_vtysh, |
| 1211 | "clear bgp ipv6 peer-group WORD soft in", |
| 1212 | "Reset functions\n" |
| 1213 | "BGP information\n" |
| 1214 | "Address family\n" |
| 1215 | "Clear all members of peer-group\n" |
| 1216 | "BGP peer-group name\n" |
| 1217 | "Soft reconfig\n" |
| 1218 | "Soft reconfig inbound update\n") |
| 1219 | |
| 1220 | DEFSH (VTYSH_BGPD, bgp_confederation_identifier_cmd_vtysh, |
| 1221 | "bgp confederation identifier <1-65535>", |
| 1222 | "BGP specific commands\n" |
| 1223 | "AS confederation parameters\n" |
| 1224 | "AS number\n" |
| 1225 | "Set routing domain confederation AS\n") |
| 1226 | |
| 1227 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_cmd_vtysh, |
| 1228 | "clear ip bgp <1-65535> vpnv4 unicast soft", |
| 1229 | "Reset functions\n" |
| 1230 | "IP information\n" |
| 1231 | "BGP information\n" |
| 1232 | "Clear peers with the AS number\n" |
| 1233 | "Address family\n" |
| 1234 | "Address Family Modifier\n" |
| 1235 | "Soft reconfig\n") |
| 1236 | |
| 1237 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_in_prefix_filter_cmd_vtysh, |
| 1238 | "clear bgp ipv6 peer-group WORD in prefix-filter", |
| 1239 | "Reset functions\n" |
| 1240 | "BGP information\n" |
| 1241 | "Address family\n" |
| 1242 | "Clear all members of peer-group\n" |
| 1243 | "BGP peer-group name\n" |
| 1244 | "Soft reconfig inbound update\n" |
| 1245 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 1246 | |
| 1247 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged4_cmd_vtysh, |
| 1248 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med (as-path|next-hop)", |
| 1249 | "Negate a command or set its defaults\n" |
| 1250 | "Specify neighbor router\n" |
| 1251 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 1252 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 1253 | "Med attribute\n" |
| 1254 | "As-path attribute\n" |
| 1255 | "Nexthop attribute\n") |
| 1256 | |
| 1257 | DEFSH (VTYSH_OSPFD, no_debug_ospf_nsm_cmd_vtysh, |
| 1258 | "no debug ospf nsm", |
| 1259 | "Negate a command or set its defaults\n" |
| 1260 | "Debugging functions (see also 'undebug')\n" |
| 1261 | "OSPF information\n" |
| 1262 | "OSPF Neighbor State Machine") |
| 1263 | |
| 1264 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_out_cmd_vtysh, |
| 1265 | "clear ip bgp view WORD * ipv4 (unicast|multicast) soft out", |
| 1266 | "Reset functions\n" |
| 1267 | "IP information\n" |
| 1268 | "BGP information\n" |
| 1269 | "BGP view\n" |
| 1270 | "view name\n" |
| 1271 | "Clear all peers\n" |
| 1272 | "Address family\n" |
| 1273 | "Address Family modifier\n" |
| 1274 | "Address Family modifier\n" |
| 1275 | "Soft reconfig outbound update\n") |
| 1276 | |
| 1277 | DEFSH (VTYSH_ZEBRA, ip_route_mask_cmd_vtysh, |
| 1278 | "ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0)", |
| 1279 | "IP information\n" |
| 1280 | "Establish static routes\n" |
| 1281 | "IP destination prefix\n" |
| 1282 | "IP destination prefix mask\n" |
| 1283 | "IP gateway address\n" |
| 1284 | "IP gateway interface name\n" |
| 1285 | "Null interface\n") |
| 1286 | |
| 1287 | DEFSH (VTYSH_BGPD, no_match_ipv6_address_cmd_vtysh, |
| 1288 | "no match ipv6 address WORD", |
| 1289 | "Negate a command or set its defaults\n" |
| 1290 | "Match values from routing table\n" |
| 1291 | "IPv6 information\n" |
| 1292 | "Match IPv6 address of route\n" |
| 1293 | "IPv6 access-list name\n") |
| 1294 | |
| 1295 | DEFSH (VTYSH_BGPD, bgp_damp_set_cmd_vtysh, |
| 1296 | "bgp dampening <1-45> <1-20000> <1-20000> <1-255>", |
| 1297 | "BGP Specific commands\n" |
| 1298 | "Enable route-flap dampening\n" |
| 1299 | "Half-life time for the penalty\n" |
| 1300 | "Value to start reusing a route\n" |
| 1301 | "Value to start suppressing a route\n" |
| 1302 | "Maximum duration to suppress a stable route\n") |
| 1303 | |
| 1304 | DEFSH (VTYSH_BGPD, no_bgp_timers_arg_cmd_vtysh, |
| 1305 | "no timers bgp <0-65535> <0-65535>", |
| 1306 | "Negate a command or set its defaults\n" |
| 1307 | "Adjust routing timers\n" |
| 1308 | "BGP timers\n" |
| 1309 | "Keepalive interval\n" |
| 1310 | "Holdtime\n") |
| 1311 | |
| 1312 | DEFSH (VTYSH_OSPF6D, no_debug_ospf6_damp_cmd_vtysh, |
| 1313 | "no debug ospf6 damp", |
| 1314 | "Negate a command or set its defaults\n" |
| 1315 | "Debugging functions (see also 'undebug')\n" |
| 1316 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 1317 | "Flap-dampening information\n" |
| 1318 | ) |
| 1319 | |
| 1320 | DEFSH (VTYSH_RIPD, send_lifetime_month_day_month_day_cmd_vtysh, |
| 1321 | "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>", |
| 1322 | "Set send lifetime of the key\n" |
| 1323 | "Time to start\n" |
| 1324 | "Month of the year to start\n" |
| 1325 | "Day of th month to start\n" |
| 1326 | "Year to start\n" |
| 1327 | "Time to expire\n" |
| 1328 | "Month of the year to expire\n" |
| 1329 | "Day of th month to expire\n" |
| 1330 | "Year to expire\n") |
| 1331 | |
| 1332 | DEFSH (VTYSH_BGPD, show_bgp_community4_exact_cmd_vtysh, |
| 1333 | "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", |
| 1334 | "Show running system information\n" |
| 1335 | "BGP information\n" |
| 1336 | "Display routes matching the communities\n" |
| 1337 | "community number\n" |
| 1338 | "Do not send outside local AS (well-known community)\n" |
| 1339 | "Do not advertise to any peer (well-known community)\n" |
| 1340 | "Do not export to next AS (well-known community)\n" |
| 1341 | "community number\n" |
| 1342 | "Do not send outside local AS (well-known community)\n" |
| 1343 | "Do not advertise to any peer (well-known community)\n" |
| 1344 | "Do not export to next AS (well-known community)\n" |
| 1345 | "community number\n" |
| 1346 | "Do not send outside local AS (well-known community)\n" |
| 1347 | "Do not advertise to any peer (well-known community)\n" |
| 1348 | "Do not export to next AS (well-known community)\n" |
| 1349 | "community number\n" |
| 1350 | "Do not send outside local AS (well-known community)\n" |
| 1351 | "Do not advertise to any peer (well-known community)\n" |
| 1352 | "Do not export to next AS (well-known community)\n" |
| 1353 | "Exact match of the communities") |
| 1354 | |
| 1355 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighborlist_cmd_vtysh, |
| 1356 | "show ipv6 ospf6 (summary-list|request-list|retrans-list|dbdesc-list)", |
| 1357 | "Show running system information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1358 | "IPv6 Information\n" |
| 1359 | "Open Shortest Path First (OSPF) for IPv6\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1360 | "Link State summary list\n" |
| 1361 | "Link State request list\n" |
| 1362 | "Link State retransmission list\n" |
| 1363 | "Link State Description list (Used to retrans DbDesc)\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1364 | ) |
| 1365 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1366 | DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_val_cmd_vtysh, |
| 1367 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 1368 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1369 | "Specify neighbor router\n" |
| 1370 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 1371 | "Maximum number of prefix accept from this peer\n" |
| 1372 | "maximum no. of prefix limit\n") |
| 1373 | |
| 1374 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_external_inter_cmd_vtysh, |
| 1375 | "distance ospf intra-area <1-255> external <1-255> inter-area <1-255>", |
| 1376 | "Define an administrative distance\n" |
| 1377 | "OSPF Administrative distance\n" |
| 1378 | "Intra-area routes\n" |
| 1379 | "Distance for intra-area routes\n" |
| 1380 | "External routes\n" |
| 1381 | "Distance for external routes\n" |
| 1382 | "Inter-area routes\n" |
| 1383 | "Distance for inter-area routes\n") |
| 1384 | |
| 1385 | DEFSH (VTYSH_BGPD, no_set_atomic_aggregate_cmd_vtysh, |
| 1386 | "no set atomic-aggregate", |
| 1387 | "Negate a command or set its defaults\n" |
| 1388 | "Set values in destination routing protocol\n" |
| 1389 | "BGP atomic aggregate attribute\n" ) |
| 1390 | |
| 1391 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_cmd_vtysh, |
| 1392 | "clear bgp ipv6 external", |
| 1393 | "Reset functions\n" |
| 1394 | "BGP information\n" |
| 1395 | "Address family\n" |
| 1396 | "Clear all external peers\n") |
| 1397 | |
| 1398 | DEFSH (VTYSH_OSPFD, network_area_cmd_vtysh, |
| 1399 | "network A.B.C.D/M area (A.B.C.D|<0-4294967295>)", |
| 1400 | "Enable routing on an IP network\n" |
| 1401 | "OSPF network prefix\n" |
| 1402 | "Set the OSPF area ID\n" |
| 1403 | "OSPF area ID in IP address format\n" |
| 1404 | "OSPF area ID as a decimal value\n") |
| 1405 | |
| 1406 | DEFSH (VTYSH_OSPFD, area_vlink_authtype_cmd_vtysh, |
| 1407 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 1408 | "(authentication|)", |
| 1409 | "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" |
| 1410 | "Enable authentication on this virtual link\n" "dummy string \n") |
| 1411 | |
| 1412 | DEFSH (VTYSH_BGPD, bgp_bestpath_aspath_ignore_cmd_vtysh, |
| 1413 | "bgp bestpath as-path ignore", |
| 1414 | "BGP specific commands\n" |
| 1415 | "Change the default bestpath selection\n" |
| 1416 | "AS-path attribute\n" |
| 1417 | "Ignore as-path length in selecting a route\n") |
| 1418 | |
| 1419 | DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_address_cmd_vtysh, |
| 1420 | "clear ip bgp dampening A.B.C.D", |
| 1421 | "Reset functions\n" |
| 1422 | "IP information\n" |
| 1423 | "BGP information\n" |
| 1424 | "Clear route flap dampening information\n" |
| 1425 | "Network to clear damping information\n") |
| 1426 | |
| 1427 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_metric_cmd_vtysh, |
| 1428 | "redistribute kernel metric <0-16>", |
| 1429 | "Redistribute information from another routing protocol\n" |
| 1430 | "Kernel routes\n" |
| 1431 | "Metric\n" |
| 1432 | "Metric value\n") |
| 1433 | |
| 1434 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_any_cmd_vtysh, |
| 1435 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any any", |
| 1436 | "Negate a command or set its defaults\n" |
| 1437 | "Add an access list entry\n" |
| 1438 | "IP extended access list\n" |
| 1439 | "IP extended access list (expanded range)\n" |
| 1440 | "Specify packets to reject\n" |
| 1441 | "Specify packets to forward\n" |
| 1442 | "Any Internet Protocol\n" |
| 1443 | "Any source host\n" |
| 1444 | "Any destination host\n") |
| 1445 | |
| 1446 | DEFSH (VTYSH_BGPD, bgp_bestpath_med_cmd_vtysh, |
| 1447 | "bgp bestpath med (confed|missing-as-worst)", |
| 1448 | "BGP specific commands\n" |
| 1449 | "Change the default bestpath selection\n" |
| 1450 | "MED attribute\n" |
| 1451 | "Compare MED among confederation paths\n" |
| 1452 | "Treat missing MED as the least preferred one\n") |
| 1453 | |
| 1454 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_all_cmd_vtysh, |
| 1455 | "show ip bgp ipv4 (unicast|multicast) community", |
| 1456 | "Show running system information\n" |
| 1457 | "IP information\n" |
| 1458 | "BGP information\n" |
| 1459 | "Address family\n" |
| 1460 | "Address Family modifier\n" |
| 1461 | "Address Family modifier\n" |
| 1462 | "Display routes matching the communities\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1463 | |
| 1464 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_in_prefix_filter_cmd_vtysh, |
| 1465 | "clear ip bgp peer-group WORD in prefix-filter", |
| 1466 | "Reset functions\n" |
| 1467 | "IP information\n" |
| 1468 | "BGP information\n" |
| 1469 | "Clear all members of peer-group\n" |
| 1470 | "BGP peer-group name\n" |
| 1471 | "Soft reconfig inbound update\n" |
| 1472 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 1473 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1474 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_cmd_vtysh, |
| 1475 | "show ipv6 mbgp", |
| 1476 | "Show running system information\n" |
| 1477 | "IP information\n" |
| 1478 | "MBGP information\n") |
| 1479 | |
| 1480 | DEFSH (VTYSH_BGPD, no_neighbor_unsuppress_map_cmd_vtysh, |
| 1481 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "unsuppress-map WORD", |
| 1482 | "Negate a command or set its defaults\n" |
| 1483 | "Specify neighbor router\n" |
| 1484 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 1485 | "Route-map to selectively unsuppress suppressed routes\n" |
| 1486 | "Name of route map\n") |
| 1487 | |
| 1488 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_routemap_cmd_vtysh, |
| 1489 | "no redistribute ospf6 route-map WORD", |
| 1490 | "Negate a command or set its defaults\n" |
| 1491 | "Redistribute information from another routing protocol\n" |
| 1492 | "IPv6 Open Shortest Path First (OSPFv3)\n" |
| 1493 | "Route map reference\n" |
| 1494 | "Pointer to route-map entries\n") |
| 1495 | |
| 1496 | DEFSH (VTYSH_OSPFD, no_area_default_cost_cmd_vtysh, |
| 1497 | "no area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>", |
| 1498 | "Negate a command or set its defaults\n" |
| 1499 | "OSPF area parameters\n" |
| 1500 | "OSPF area ID in IP address format\n" |
| 1501 | "OSPF area ID as a decimal value\n" |
| 1502 | "Set the summary-default cost of a NSSA or stub area\n" |
| 1503 | "Stub's advertised default summary cost\n") |
| 1504 | |
| 1505 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_summary_cmd_vtysh, |
| 1506 | "show ip prefix-list summary", |
| 1507 | "Show running system information\n" |
| 1508 | "IP information\n" |
| 1509 | "Build a prefix list\n" |
| 1510 | "Summary of prefix lists\n") |
| 1511 | |
| 1512 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_cmd_vtysh, |
| 1513 | "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*|HEX) (A.B.C.D|*|dump|detail)", |
| 1514 | "Show running system information\n" |
| 1515 | "IPv6 Information\n" |
| 1516 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 1517 | "LSA Database\n" |
| 1518 | "Router-LSA\n" |
| 1519 | "Network-LSA\n" |
| 1520 | "AS-External-LSA\n" |
| 1521 | "Intra-Area-Prefix-LSA\n" |
| 1522 | "Inter-Area-Router-LSA\n" |
| 1523 | "Inter-Area-Prefix-LSA\n" |
| 1524 | "Link-LSA\n" |
| 1525 | "All LS Type\n" |
| 1526 | "Specify LS Type by Hex\n" |
| 1527 | "Link State ID\n" |
| 1528 | "All Link State ID\n" |
| 1529 | "Dump raw LSA data in Hex\n" |
| 1530 | "show detail of LSAs\n" |
| 1531 | ) |
| 1532 | |
| 1533 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_summary_name_cmd_vtysh, |
| 1534 | "show ipv6 prefix-list summary WORD", |
| 1535 | "Show running system information\n" |
| 1536 | "IPv6 information\n" |
| 1537 | "Build a prefix list\n" |
| 1538 | "Summary of prefix lists\n" |
| 1539 | "Name of a prefix list\n") |
| 1540 | |
| 1541 | DEFSH (VTYSH_BGPD, set_aggregator_as_cmd_vtysh, |
| 1542 | "set aggregator as <1-65535> A.B.C.D", |
| 1543 | "Set values in destination routing protocol\n" |
| 1544 | "BGP aggregator attribute\n" |
| 1545 | "AS number of aggregator\n" |
| 1546 | "AS number\n" |
| 1547 | "IP address of aggregator\n") |
| 1548 | |
| 1549 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, match_ip_address_prefix_list_cmd_vtysh, |
| 1550 | "match ip address prefix-list WORD", |
| 1551 | "Match values from routing table\n" |
| 1552 | "IP information\n" |
| 1553 | "Match address of route\n" |
| 1554 | "Match entries of prefix-lists\n" |
| 1555 | "IP prefix-list name\n") |
| 1556 | |
| 1557 | DEFSH (VTYSH_OSPFD, area_stub_no_summary_cmd_vtysh, |
| 1558 | "area (A.B.C.D|<0-4294967295>) stub no-summary", |
| 1559 | "OSPF stub parameters\n" |
| 1560 | "OSPF area ID in IP address format\n" |
| 1561 | "OSPF area ID as a decimal value\n" |
| 1562 | "Configure OSPF area as stub\n" |
| 1563 | "Do not inject inter-area routes into stub\n") |
| 1564 | |
| 1565 | DEFSH (VTYSH_BGPD, no_bgp_network_mask_backdoor_cmd_vtysh, |
| 1566 | "no network A.B.C.D mask A.B.C.D backdoor", |
| 1567 | "Negate a command or set its defaults\n" |
| 1568 | "Specify a network to announce via BGP\n" |
| 1569 | "Network number\n" |
| 1570 | "Network mask\n" |
| 1571 | "Network mask\n" |
| 1572 | "Specify a BGP backdoor route\n") |
| 1573 | |
| 1574 | DEFSH (VTYSH_BGPD, no_match_origin_val_cmd_vtysh, |
| 1575 | "no match origin (egp|igp|incomplete)", |
| 1576 | "Negate a command or set its defaults\n" |
| 1577 | "Match values from routing table\n" |
| 1578 | "BGP origin code\n" |
| 1579 | "remote EGP\n" |
| 1580 | "local IGP\n" |
| 1581 | "unknown heritage\n") |
| 1582 | |
| 1583 | DEFSH (VTYSH_RIPD, rip_network_cmd_vtysh, |
| 1584 | "network (A.B.C.D/M|WORD)", |
| 1585 | "Enable routing on an IP network\n" |
| 1586 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 1587 | "Interface name\n") |
| 1588 | |
| 1589 | DEFSH (VTYSH_OSPFD, ip_ospf_cost_cmd_vtysh, |
| 1590 | "ip ospf cost <1-65535>", |
| 1591 | "IP Information\n" |
| 1592 | "OSPF interface commands\n" |
| 1593 | "Interface cost\n" |
| 1594 | "Cost") |
| 1595 | |
| 1596 | DEFSH (VTYSH_BGPD, ipv6_aggregate_address_cmd_vtysh, |
| 1597 | "aggregate-address X:X::X:X/M", |
| 1598 | "Configure BGP aggregate entries\n" |
| 1599 | "Aggregate prefix\n") |
| 1600 | |
| 1601 | DEFSH (VTYSH_BGPD, clear_bgp_as_cmd_vtysh, |
| 1602 | "clear bgp <1-65535>", |
| 1603 | "Reset functions\n" |
| 1604 | "BGP information\n" |
| 1605 | "Clear peers with the AS number\n") |
| 1606 | |
| 1607 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_intra_inter_cmd_vtysh, |
| 1608 | "distance ospf external <1-255> intra-area <1-255> inter-area <1-255>", |
| 1609 | "Define an administrative distance\n" |
| 1610 | "OSPF Administrative distance\n" |
| 1611 | "External routes\n" |
| 1612 | "Distance for external routes\n" |
| 1613 | "Intra-area routes\n" |
| 1614 | "Distance for intra-area routes\n" |
| 1615 | "Inter-area routes\n" |
| 1616 | "Distance for inter-area routes\n") |
| 1617 | |
| 1618 | DEFSH (VTYSH_OSPFD, ospf_cost_cmd_vtysh, |
| 1619 | "ospf cost <1-65535>", |
| 1620 | "OSPF interface commands\n" |
| 1621 | "Interface cost\n" |
| 1622 | "Cost") |
| 1623 | |
| 1624 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_seq_cmd_vtysh, |
| 1625 | "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) (X:X::X:X/M|any)", |
| 1626 | "Negate a command or set its defaults\n" |
| 1627 | "IPv6 information\n" |
| 1628 | "Build a prefix list\n" |
| 1629 | "Name of a prefix list\n" |
| 1630 | "sequence number of an entry\n" |
| 1631 | "Sequence number\n" |
| 1632 | "Specify packets to reject\n" |
| 1633 | "Specify packets to forward\n" |
| 1634 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 1635 | "Any prefix match. Same as \"::0/0 le 128\"\n") |
| 1636 | |
| 1637 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_metric_routemap_cmd_vtysh, |
| 1638 | "default-information originate metric-type (1|2) metric <0-16777214> route-map WORD", |
| 1639 | "Control distribution of default information\n" |
| 1640 | "Distribute a default route\n" |
| 1641 | "OSPF metric type for default routes\n" |
| 1642 | "Set OSPF External Type 1 metrics\n" |
| 1643 | "Set OSPF External Type 2 metrics\n" |
| 1644 | "OSPF default metric\n" |
| 1645 | "OSPF metric\n" |
| 1646 | "Route map reference\n" |
| 1647 | "Pointer to route-map entries\n") |
| 1648 | |
| 1649 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_cmd_vtysh, |
| 1650 | "show ipv6 mbgp X:X::X:X/M", |
| 1651 | "Show running system information\n" |
| 1652 | "IP information\n" |
| 1653 | "MBGP information\n" |
| 1654 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n") |
| 1655 | |
| 1656 | DEFSH (VTYSH_RIPD, no_key_cmd_vtysh, |
| 1657 | "no key <0-2147483647>", |
| 1658 | "Negate a command or set its defaults\n" |
| 1659 | "Delete a key\n" |
| 1660 | "Key identifier number\n") |
| 1661 | |
| 1662 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_ge_cmd_vtysh, |
| 1663 | "no ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32>", |
| 1664 | "Negate a command or set its defaults\n" |
| 1665 | "IP information\n" |
| 1666 | "Build a prefix list\n" |
| 1667 | "Name of a prefix list\n" |
| 1668 | "Specify packets to reject\n" |
| 1669 | "Specify packets to forward\n" |
| 1670 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 1671 | "Minimum prefix length to be matched\n" |
| 1672 | "Minimum prefix length\n") |
| 1673 | |
| 1674 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged4_cmd_vtysh, |
| 1675 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med (as-path|next-hop)", |
| 1676 | "Specify neighbor router\n" |
| 1677 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 1678 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 1679 | "Med attribute\n" |
| 1680 | "As-path attribute\n" |
| 1681 | "Nexthop attribute\n") |
| 1682 | |
| 1683 | DEFSH (VTYSH_RIPNGD, no_debug_ripng_zebra_cmd_vtysh, |
| 1684 | "no debug ripng zebra", |
| 1685 | "Negate a command or set its defaults\n" |
| 1686 | "Debugging functions (see also 'undebug')\n" |
| 1687 | "RIPng configuration\n" |
| 1688 | "Debug option set for ripng and zebra communication\n") |
| 1689 | |
| 1690 | DEFSH (VTYSH_BGPD, no_neighbor_weight_val_cmd_vtysh, |
| 1691 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "weight <0-65535>", |
| 1692 | "Negate a command or set its defaults\n" |
| 1693 | "Specify neighbor router\n" |
| 1694 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 1695 | "Set default weight for routes from this neighbor\n" |
| 1696 | "default weight\n") |
| 1697 | |
| 1698 | DEFSH (VTYSH_RIPD, no_rip_default_information_originate_cmd_vtysh, |
| 1699 | "no default-information originate", |
| 1700 | "Negate a command or set its defaults\n" |
| 1701 | "Control distribution of default route\n" |
| 1702 | "Distribute a default route\n") |
| 1703 | |
| 1704 | DEFSH (VTYSH_BGPD, match_community_exact_cmd_vtysh, |
| 1705 | "match community (<1-99>|<100-199>|WORD) exact-match", |
| 1706 | "Match values from routing table\n" |
| 1707 | "Match BGP community list\n" |
| 1708 | "Community-list number (standard)\n" |
| 1709 | "Community-list number (expanded)\n" |
| 1710 | "Community-list name\n" |
| 1711 | "Do exact matching of communities\n") |
| 1712 | |
| 1713 | DEFSH (VTYSH_BGPD, clear_bgp_as_in_cmd_vtysh, |
| 1714 | "clear bgp <1-65535> in", |
| 1715 | "Reset functions\n" |
| 1716 | "BGP information\n" |
| 1717 | "Clear peers with the AS number\n" |
| 1718 | "Soft reconfig inbound update\n") |
| 1719 | |
| 1720 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_host_cmd_vtysh, |
| 1721 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any host A.B.C.D", |
| 1722 | "Negate a command or set its defaults\n" |
| 1723 | "Add an access list entry\n" |
| 1724 | "IP extended access list\n" |
| 1725 | "IP extended access list (expanded range)\n" |
| 1726 | "Specify packets to reject\n" |
| 1727 | "Specify packets to forward\n" |
| 1728 | "Any Internet Protocol\n" |
| 1729 | "Any source host\n" |
| 1730 | "A single destination host\n" |
| 1731 | "Destination address\n") |
| 1732 | |
| 1733 | DEFSH (VTYSH_BGPD, ipv6_bgp_network_cmd_vtysh, |
| 1734 | "network X:X::X:X/M", |
| 1735 | "Specify a network to announce via BGP\n" |
| 1736 | "IPv6 prefix <network>/<length>\n") |
| 1737 | |
| 1738 | DEFSH (VTYSH_ZEBRA, ip_irdp_preference_cmd_vtysh, |
| 1739 | |
| 1740 | "ip irdp preference <0-2147483647>", |
| 1741 | "IP information\n" |
| 1742 | "ICMP Router discovery on this interface\n" |
| 1743 | "Set default preference level for this interface\n" |
| 1744 | "Preference level\n") |
| 1745 | |
| 1746 | DEFSH (VTYSH_BGPD, bgp_fast_external_failover_cmd_vtysh, |
| 1747 | "bgp fast-external-failover", |
| 1748 | "BGP information\n" |
| 1749 | "Immediately reset session if a link to a directly connected external peer goes down\n") |
| 1750 | |
| 1751 | DEFSH (VTYSH_ZEBRA, ip_route_distance_cmd_vtysh, |
| 1752 | "ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0) <1-255>", |
| 1753 | "IP information\n" |
| 1754 | "Establish static routes\n" |
| 1755 | "IP destination prefix (e.g. 10.0.0.0/8)\n" |
| 1756 | "IP gateway address\n" |
| 1757 | "IP gateway interface name\n" |
| 1758 | "Null interface\n" |
| 1759 | "Distance value for this route\n") |
| 1760 | |
| 1761 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_list_cmd_vtysh, |
| 1762 | "show ipv6 mbgp prefix-list WORD", |
| 1763 | "Show running system information\n" |
| 1764 | "IPv6 information\n" |
| 1765 | "MBGP information\n" |
| 1766 | "Display routes matching the prefix-list\n" |
| 1767 | "IPv6 prefix-list name\n") |
| 1768 | |
| 1769 | DEFSH (VTYSH_BGPD, bgp_network_mask_cmd_vtysh, |
| 1770 | "network A.B.C.D mask A.B.C.D", |
| 1771 | "Specify a network to announce via BGP\n" |
| 1772 | "Network number\n" |
| 1773 | "Network mask\n" |
| 1774 | "Network mask\n") |
| 1775 | |
| 1776 | DEFSH (VTYSH_OSPFD, area_vlink_authtype_md5_cmd_vtysh, |
| 1777 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 1778 | "(authentication|) " |
| 1779 | "(message-digest-key|) <1-255> md5 KEY", |
| 1780 | "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" |
| 1781 | "Enable authentication on this virtual link\n" "dummy string \n" |
| 1782 | "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)") |
| 1783 | |
| 1784 | DEFSH (VTYSH_BGPD, show_bgp_cmd_vtysh, |
| 1785 | "show bgp", |
| 1786 | "Show running system information\n" |
| 1787 | "BGP information\n") |
| 1788 | |
| 1789 | DEFSH (VTYSH_BGPD, bgp_network_mask_backdoor_cmd_vtysh, |
| 1790 | "network A.B.C.D mask A.B.C.D backdoor", |
| 1791 | "Specify a network to announce via BGP\n" |
| 1792 | "Network number\n" |
| 1793 | "Network mask\n" |
| 1794 | "Network mask\n" |
| 1795 | "Specify a BGP backdoor route\n") |
| 1796 | |
| 1797 | DEFSH (VTYSH_RIPD, ip_rip_authentication_string_cmd_vtysh, |
| 1798 | "ip rip authentication string LINE", |
| 1799 | "IP information\n" |
| 1800 | "Routing Information Protocol\n" |
| 1801 | "Authentication control\n" |
| 1802 | "Authentication string\n" |
| 1803 | "Authentication string\n") |
| 1804 | |
| 1805 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_interface_cmd_vtysh, |
| 1806 | "show ipv6 ospf6 interface", |
| 1807 | "Show running system information\n" |
| 1808 | "IPv6 Information\n" |
| 1809 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 1810 | "Interface infomation\n" |
| 1811 | ) |
| 1812 | |
| 1813 | DEFSH (VTYSH_BGPD, no_set_community_none_cmd_vtysh, |
| 1814 | "no set community none", |
| 1815 | "Negate a command or set its defaults\n" |
| 1816 | "Set values in destination routing protocol\n" |
| 1817 | "BGP community attribute\n" |
| 1818 | "No community attribute\n") |
| 1819 | |
| 1820 | DEFSH (VTYSH_BGPD, show_bgp_instance_summary_cmd_vtysh, |
| 1821 | "show bgp view WORD summary", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1822 | "Show running system information\n" |
| 1823 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1824 | "BGP view\n" |
| 1825 | "View name\n" |
| 1826 | "Summary of BGP neighbor status\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1827 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1828 | DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_all_cmd_vtysh, |
| 1829 | "no ip extcommunity-list (<1-99>|<100-199>)", |
| 1830 | "Negate a command or set its defaults\n" |
| 1831 | "IP information\n" |
| 1832 | "Add a extended community list entry\n" |
| 1833 | "Extended Community list number (standard)\n" |
| 1834 | "Extended Community list number (expanded)\n") |
| 1835 | |
| 1836 | DEFSH (VTYSH_BGPD, ipv6_bgp_network_route_map_cmd_vtysh, |
| 1837 | "network X:X::X:X/M route-map WORD", |
| 1838 | "Specify a network to announce via BGP\n" |
| 1839 | "IPv6 prefix <network>/<length>\n" |
| 1840 | "Route-map to modify the attributes\n" |
| 1841 | "Name of the route map\n") |
| 1842 | |
| 1843 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_metric_cmd_vtysh, |
| 1844 | "redistribute connected metric <0-16>", |
| 1845 | "Redistribute information from another routing protocol\n" |
| 1846 | "Connected\n" |
| 1847 | "Metric\n" |
| 1848 | "Metric value\n") |
| 1849 | |
| 1850 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_ge_le_cmd_vtysh, |
| 1851 | "no ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32> le <0-32>", |
| 1852 | "Negate a command or set its defaults\n" |
| 1853 | "IP information\n" |
| 1854 | "Build a prefix list\n" |
| 1855 | "Name of a prefix list\n" |
| 1856 | "Specify packets to reject\n" |
| 1857 | "Specify packets to forward\n" |
| 1858 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 1859 | "Minimum prefix length to be matched\n" |
| 1860 | "Minimum prefix length\n" |
| 1861 | "Maximum prefix length to be matched\n" |
| 1862 | "Maximum prefix length\n") |
| 1863 | |
| 1864 | DEFSH (VTYSH_OSPFD, ip_ospf_authentication_addr_cmd_vtysh, |
| 1865 | "ip ospf authentication A.B.C.D", |
| 1866 | "IP Information\n" |
| 1867 | "OSPF interface commands\n" |
| 1868 | "Enable authentication on this interface\n" |
| 1869 | "Address of interface") |
| 1870 | |
| 1871 | DEFSH (VTYSH_OSPFD, ip_ospf_authentication_key_cmd_vtysh, |
| 1872 | "ip ospf authentication-key AUTH_KEY", |
| 1873 | "IP Information\n" |
| 1874 | "OSPF interface commands\n" |
| 1875 | "Authentication password (key)\n" |
| 1876 | "The OSPF password (key)") |
| 1877 | |
| 1878 | DEFSH (VTYSH_BGPD, show_bgp_neighbor_advertised_route_cmd_vtysh, |
| 1879 | "show bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes", |
| 1880 | "Show running system information\n" |
| 1881 | "BGP information\n" |
| 1882 | "Detailed information on TCP and BGP neighbor connections\n" |
| 1883 | "Neighbor to display information about\n" |
| 1884 | "Neighbor to display information about\n" |
| 1885 | "Display the routes advertised to a BGP neighbor\n") |
| 1886 | |
| 1887 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_name_prefix_cmd_vtysh, |
| 1888 | "clear ip prefix-list WORD A.B.C.D/M", |
| 1889 | "Reset functions\n" |
| 1890 | "IP information\n" |
| 1891 | "Build a prefix list\n" |
| 1892 | "Name of a prefix list\n" |
| 1893 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 1894 | |
| 1895 | DEFSH (VTYSH_BGPD, bgp_client_to_client_reflection_cmd_vtysh, |
| 1896 | "bgp client-to-client reflection", |
| 1897 | "BGP specific commands\n" |
| 1898 | "Configure client to client route reflection\n" |
| 1899 | "reflection of routes allowed\n") |
| 1900 | |
| 1901 | DEFSH (VTYSH_BGPD, clear_bgp_external_soft_in_cmd_vtysh, |
| 1902 | "clear bgp external soft in", |
| 1903 | "Reset functions\n" |
| 1904 | "BGP information\n" |
| 1905 | "Clear all external peers\n" |
| 1906 | "Soft reconfig\n" |
| 1907 | "Soft reconfig inbound update\n") |
| 1908 | |
| 1909 | DEFSH (VTYSH_RIPD, no_rip_redistribute_type_routemap_cmd_vtysh, |
| 1910 | "no redistribute (kernel|connected|static|ospf|bgp) route-map WORD", |
| 1911 | "Negate a command or set its defaults\n" |
| 1912 | "Redistribute information from another routing protocol\n" |
| 1913 | "Kernel routes\n" |
| 1914 | "Connected\n" |
| 1915 | "Static routes\n" |
| 1916 | "Open Shortest Path First (OSPF)\n" |
| 1917 | "Border Gateway Protocol (BGP)\n" |
| 1918 | "Route map reference\n" |
| 1919 | "Pointer to route-map entries\n") |
| 1920 | |
| 1921 | DEFSH (VTYSH_BGPD, no_aggregate_address_mask_summary_as_set_cmd_vtysh, |
| 1922 | "no aggregate-address A.B.C.D A.B.C.D summary-only as-set", |
| 1923 | "Negate a command or set its defaults\n" |
| 1924 | "Configure BGP aggregate entries\n" |
| 1925 | "Aggregate address\n" |
| 1926 | "Aggregate mask\n" |
| 1927 | "Filter more specific routes from updates\n" |
| 1928 | "Generate AS set path information\n") |
| 1929 | |
| 1930 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_tags_cmd_vtysh, |
| 1931 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn tags", |
| 1932 | "Show running system information\n" |
| 1933 | "IP information\n" |
| 1934 | "BGP information\n" |
| 1935 | "Display VPNv4 NLRI specific information\n" |
| 1936 | "Display information for a route distinguisher\n" |
| 1937 | "VPN Route Distinguisher\n" |
| 1938 | "Display BGP tags for prefixes\n") |
| 1939 | |
| 1940 | DEFSH (VTYSH_BGPD, no_set_ecommunity_soo_cmd_vtysh, |
| 1941 | "no set extcommunity soo", |
| 1942 | "Negate a command or set its defaults\n" |
| 1943 | "Set values in destination routing protocol\n" |
| 1944 | "BGP extended community attribute\n" |
| 1945 | "Site-of-Origin extended community\n") |
| 1946 | |
| 1947 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_exact_cmd_vtysh, |
| 1948 | "access-list WORD (deny|permit) A.B.C.D/M exact-match", |
| 1949 | "Add an access list entry\n" |
| 1950 | "IP zebra access-list name\n" |
| 1951 | "Specify packets to reject\n" |
| 1952 | "Specify packets to forward\n" |
| 1953 | "Prefix to match. e.g. 10.0.0.0/8\n" |
| 1954 | "Exact match of the prefixes\n") |
| 1955 | |
| 1956 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_route_cmd_vtysh, |
| 1957 | "show ip bgp ipv4 (unicast|multicast) A.B.C.D", |
| 1958 | "Show running system information\n" |
| 1959 | "IP information\n" |
| 1960 | "BGP information\n" |
| 1961 | "Address family\n" |
| 1962 | "Address Family modifier\n" |
| 1963 | "Address Family modifier\n" |
| 1964 | "Network in the BGP routing table to display\n") |
| 1965 | |
| 1966 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_cmd_vtysh, |
| 1967 | "clear bgp ipv6 *", |
| 1968 | "Reset functions\n" |
| 1969 | "BGP information\n" |
| 1970 | "Address family\n" |
| 1971 | "Clear all peers\n") |
| 1972 | |
| 1973 | DEFSH (VTYSH_BGPD, bgp_confederation_peers_cmd_vtysh, |
| 1974 | "bgp confederation peers .<1-65535>", |
| 1975 | "BGP specific commands\n" |
| 1976 | "AS confederation parameters\n" |
| 1977 | "Peer ASs in BGP confederation\n" |
| 1978 | "AS number\n") |
| 1979 | |
| 1980 | DEFSH (VTYSH_BGPD, no_set_ecommunity_soo_val_cmd_vtysh, |
| 1981 | "no set extcommunity soo .ASN:nn_or_IP-address:nn", |
| 1982 | "Negate a command or set its defaults\n" |
| 1983 | "Set values in destination routing protocol\n" |
| 1984 | "BGP extended community attribute\n" |
| 1985 | "Site-of-Origin extended community\n" |
| 1986 | "VPN extended community\n") |
| 1987 | |
| 1988 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_routemap_cmd_vtysh, |
| 1989 | "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> route-map WORD", |
| 1990 | "Redistribute information from another routing protocol\n" |
| 1991 | "Kernel routes\n" |
| 1992 | "Connected\n" |
| 1993 | "Static routes\n" |
| 1994 | "Routing Information Protocol (RIP)\n" |
| 1995 | "Border Gateway Protocol (BGP)\n" |
| 1996 | "Metric for redistributed routes\n" |
| 1997 | "OSPF default metric\n" |
| 1998 | "Route map reference\n" |
| 1999 | "Pointer to route-map entries\n") |
| 2000 | |
| 2001 | DEFSH (VTYSH_OSPFD, ip_ospf_cost_addr_cmd_vtysh, |
| 2002 | "ip ospf cost <1-65535> A.B.C.D", |
| 2003 | "IP Information\n" |
| 2004 | "OSPF interface commands\n" |
| 2005 | "Interface cost\n" |
| 2006 | "Cost\n" |
| 2007 | "Address of interface") |
| 2008 | |
| 2009 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_in_cmd_vtysh, |
| 2010 | "clear bgp ipv6 external soft in", |
| 2011 | "Reset functions\n" |
| 2012 | "BGP information\n" |
| 2013 | "Address family\n" |
| 2014 | "Clear all external peers\n" |
| 2015 | "Soft reconfig\n" |
| 2016 | "Soft reconfig inbound update\n") |
| 2017 | |
| 2018 | DEFSH (VTYSH_RIPD, show_ip_rip_cmd_vtysh, |
| 2019 | "show ip rip", |
| 2020 | "Show running system information\n" |
| 2021 | "IP information\n" |
| 2022 | "Show RIP routes\n") |
| 2023 | |
| 2024 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_in_cmd_vtysh, |
| 2025 | "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2026 | "Reset functions\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2027 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2028 | "BGP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2029 | "BGP neighbor address to clear\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2030 | "Address family\n" |
| 2031 | "Address Family modifier\n" |
| 2032 | "Address Family modifier\n" |
| 2033 | "Soft reconfig inbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2034 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2035 | DEFSH (VTYSH_RIPD, show_debugging_rip_cmd_vtysh, |
| 2036 | "show debugging rip", |
| 2037 | "Show running system information\n" |
| 2038 | "Debugging functions (see also 'undebug')\n" |
| 2039 | "RIP information\n") |
| 2040 | |
| 2041 | DEFSH (VTYSH_ZEBRA, no_linkdetect_cmd_vtysh, |
| 2042 | "no link-detect", |
| 2043 | "Negate a command or set its defaults\n" |
| 2044 | "Disable link detection on interface\n") |
| 2045 | |
| 2046 | DEFSH (VTYSH_BGPD, no_bgp_network_mask_route_map_cmd_vtysh, |
| 2047 | "no network A.B.C.D mask A.B.C.D route-map WORD", |
| 2048 | "Negate a command or set its defaults\n" |
| 2049 | "Specify a network to announce via BGP\n" |
| 2050 | "Network number\n" |
| 2051 | "Network mask\n" |
| 2052 | "Network mask\n" |
| 2053 | "Route-map to modify the attributes\n" |
| 2054 | "Name of the route map\n") |
| 2055 | |
| 2056 | DEFSH (VTYSH_BGPD, set_local_pref_cmd_vtysh, |
| 2057 | "set local-preference <0-4294967295>", |
| 2058 | "Set values in destination routing protocol\n" |
| 2059 | "BGP local preference path attribute\n" |
| 2060 | "Preference value\n") |
| 2061 | |
| 2062 | DEFSH (VTYSH_BGPD, no_neighbor_activate_cmd_vtysh, |
| 2063 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "activate", |
| 2064 | "Negate a command or set its defaults\n" |
| 2065 | "Specify neighbor router\n" |
| 2066 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 2067 | "Enable the Address Family for this Neighbor\n") |
| 2068 | |
| 2069 | DEFSH (VTYSH_RIPD, no_rip_redistribute_type_metric_cmd_vtysh, |
| 2070 | "no redistribute (kernel|connected|static|ospf|bgp) metric <0-16>", |
| 2071 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2072 | "Redistribute information from another routing protocol\n" |
| 2073 | "Kernel routes\n" |
| 2074 | "Connected\n" |
| 2075 | "Static routes\n" |
| 2076 | "Open Shortest Path First (OSPF)\n" |
| 2077 | "Border Gateway Protocol (BGP)\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2078 | "Metric\n" |
| 2079 | "Metric value\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2080 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2081 | DEFSH (VTYSH_ZEBRA, no_debug_zebra_kernel_cmd_vtysh, |
| 2082 | "no debug zebra kernel", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2083 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2084 | "Debugging functions (see also 'undebug')\n" |
| 2085 | "Zebra configuration\n" |
| 2086 | "Debug option set for zebra between kernel interface\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2087 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2088 | DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_global_val_cmd_vtysh, |
| 2089 | "no set ipv6 next-hop global X:X::X:X", |
| 2090 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2091 | "Set values in destination routing protocol\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2092 | "IPv6 information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2093 | "IPv6 next-hop address\n" |
| 2094 | "IPv6 global address\n" |
| 2095 | "IPv6 address of next hop\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2096 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2097 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_in_cmd_vtysh, |
| 2098 | "clear bgp ipv6 * soft in", |
| 2099 | "Reset functions\n" |
| 2100 | "BGP information\n" |
| 2101 | "Address family\n" |
| 2102 | "Clear all peers\n" |
| 2103 | "Soft reconfig\n" |
| 2104 | "Soft reconfig inbound update\n") |
| 2105 | |
| 2106 | DEFSH (VTYSH_BGPD, show_bgp_community4_cmd_vtysh, |
| 2107 | "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)", |
| 2108 | "Show running system information\n" |
| 2109 | "BGP information\n" |
| 2110 | "Display routes matching the communities\n" |
| 2111 | "community number\n" |
| 2112 | "Do not send outside local AS (well-known community)\n" |
| 2113 | "Do not advertise to any peer (well-known community)\n" |
| 2114 | "Do not export to next AS (well-known community)\n" |
| 2115 | "community number\n" |
| 2116 | "Do not send outside local AS (well-known community)\n" |
| 2117 | "Do not advertise to any peer (well-known community)\n" |
| 2118 | "Do not export to next AS (well-known community)\n" |
| 2119 | "community number\n" |
| 2120 | "Do not send outside local AS (well-known community)\n" |
| 2121 | "Do not advertise to any peer (well-known community)\n" |
| 2122 | "Do not export to next AS (well-known community)\n" |
| 2123 | "community number\n" |
| 2124 | "Do not send outside local AS (well-known community)\n" |
| 2125 | "Do not advertise to any peer (well-known community)\n" |
| 2126 | "Do not export to next AS (well-known community)\n") |
| 2127 | |
| 2128 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh, |
| 2129 | "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X)", |
| 2130 | "Show running system information\n" |
| 2131 | "IP information\n" |
| 2132 | "BGP information\n" |
| 2133 | "Address family\n" |
| 2134 | "Address Family modifier\n" |
| 2135 | "Address Family modifier\n" |
| 2136 | "Detailed information on TCP and BGP neighbor connections\n" |
| 2137 | "Neighbor to display information about\n" |
| 2138 | "Neighbor to display information about\n") |
| 2139 | |
| 2140 | DEFSH (VTYSH_RIPD, no_rip_split_horizon_cmd_vtysh, |
| 2141 | "no ip split-horizon", |
| 2142 | "Negate a command or set its defaults\n" |
| 2143 | "IP information\n" |
| 2144 | "Perform split horizon\n") |
| 2145 | |
| 2146 | DEFSH (VTYSH_BGPD, neighbor_local_as_no_prepend_cmd_vtysh, |
| 2147 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535> no-prepend", |
| 2148 | "Specify neighbor router\n" |
| 2149 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 2150 | "Specify a local-as number\n" |
| 2151 | "AS number used as local AS\n" |
| 2152 | "Do not prepend local-as to updates from ebgp peers\n") |
| 2153 | |
| 2154 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_routemap_cmd_vtysh, |
| 2155 | "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) route-map WORD", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2156 | "Redistribute information from another routing protocol\n" |
| 2157 | "Kernel routes\n" |
| 2158 | "Connected\n" |
| 2159 | "Static routes\n" |
| 2160 | "Routing Information Protocol (RIP)\n" |
| 2161 | "Border Gateway Protocol (BGP)\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2162 | "OSPF exterior metric type for redistributed routes\n" |
| 2163 | "Set OSPF External Type 1 metrics\n" |
| 2164 | "Set OSPF External Type 2 metrics\n" |
| 2165 | "Route map reference\n" |
| 2166 | "Pointer to route-map entries\n") |
| 2167 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2168 | DEFSH (VTYSH_BGPD, no_aggregate_address_mask_as_set_cmd_vtysh, |
| 2169 | "no aggregate-address A.B.C.D A.B.C.D as-set", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2170 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2171 | "Configure BGP aggregate entries\n" |
| 2172 | "Aggregate address\n" |
| 2173 | "Aggregate mask\n" |
| 2174 | "Generate AS set path information\n") |
| 2175 | |
| 2176 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_inter_cmd_vtysh, |
| 2177 | "distance ospf external <1-255> inter-area <1-255>", |
| 2178 | "Define an administrative distance\n" |
| 2179 | "OSPF Administrative distance\n" |
| 2180 | "External routes\n" |
| 2181 | "Distance for external routes\n" |
| 2182 | "Inter-area routes\n" |
| 2183 | "Distance for inter-area routes\n") |
| 2184 | |
| 2185 | DEFSH (VTYSH_RIPD, accept_lifetime_month_day_month_day_cmd_vtysh, |
| 2186 | "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>", |
| 2187 | "Set accept lifetime of the key\n" |
| 2188 | "Time to start\n" |
| 2189 | "Month of the year to start\n" |
| 2190 | "Day of th month to start\n" |
| 2191 | "Year to start\n" |
| 2192 | "Time to expire\n" |
| 2193 | "Month of the year to expire\n" |
| 2194 | "Day of th month to expire\n" |
| 2195 | "Year to expire\n") |
| 2196 | |
| 2197 | DEFSH (VTYSH_BGPD, no_set_originator_id_val_cmd_vtysh, |
| 2198 | "no set originator-id A.B.C.D", |
| 2199 | "Negate a command or set its defaults\n" |
| 2200 | "Set values in destination routing protocol\n" |
| 2201 | "BGP originator ID attribute\n" |
| 2202 | "IP address of originator\n") |
| 2203 | |
| 2204 | DEFSH (VTYSH_BGPD, no_default_attr_localpref_cmd_vtysh, |
| 2205 | "no default-attr local-pref NUMBER", |
| 2206 | "Negate a command or set its defaults\n" |
| 2207 | "Unset default local preference value\n" |
| 2208 | "Unset default local preference value\n" |
| 2209 | "Value\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2210 | |
| 2211 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh, |
| 2212 | "show ip bgp vpnv4 all neighbors A.B.C.D routes", |
| 2213 | "Show running system information\n" |
| 2214 | "IP information\n" |
| 2215 | "BGP information\n" |
| 2216 | "Display VPNv4 NLRI specific information\n" |
| 2217 | "Display information about all VPNv4 NLRIs\n" |
| 2218 | "Detailed information on TCP and BGP neighbor connections\n" |
| 2219 | "Neighbor to display information about\n" |
| 2220 | "Display routes learned from neighbor\n") |
| 2221 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2222 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_routemap_cmd_vtysh, |
| 2223 | "no redistribute bgp metric <0-16> route-map WORD", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2224 | "Negate a command or set its defaults\n" |
| 2225 | "Redistribute information from another routing protocol\n" |
| 2226 | "Border Gateway Protocol (BGP)\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2227 | "Metric\n" |
| 2228 | "Metric value\n" |
| 2229 | "Route map reference\n" |
| 2230 | "Pointer to route-map entries\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2231 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2232 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_routemap_cmd_vtysh, |
| 2233 | "default-information originate route-map WORD", |
| 2234 | "Control distribution of default information\n" |
| 2235 | "Distribute a default route\n" |
| 2236 | "Route map reference\n" |
| 2237 | "Pointer to route-map entries\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2238 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2239 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_list_exact_cmd_vtysh, |
| 2240 | "show ip bgp ipv4 (unicast|multicast) community-list WORD exact-match", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2241 | "Show running system information\n" |
| 2242 | "IP information\n" |
| 2243 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2244 | "Address family\n" |
| 2245 | "Address Family modifier\n" |
| 2246 | "Address Family modifier\n" |
| 2247 | "Display routes matching the community-list\n" |
| 2248 | "community-list name\n" |
| 2249 | "Exact match of the communities\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2250 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2251 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_remark_cmd_vtysh, |
| 2252 | "access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark .LINE", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2253 | "Add an access list entry\n" |
| 2254 | "IP standard access list\n" |
| 2255 | "IP extended access list\n" |
| 2256 | "IP standard access list (expanded range)\n" |
| 2257 | "IP extended access list (expanded range)\n" |
| 2258 | "IP zebra access-list\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2259 | "Access list entry comment\n" |
| 2260 | "Comment up to 100 characters\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2261 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2262 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_cmd_vtysh, |
| 2263 | "show ip bgp ipv4 (unicast|multicast) A.B.C.D/M", |
| 2264 | "Show running system information\n" |
| 2265 | "IP information\n" |
| 2266 | "BGP information\n" |
| 2267 | "Address family\n" |
| 2268 | "Address Family modifier\n" |
| 2269 | "Address Family modifier\n" |
| 2270 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2271 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2272 | DEFSH (VTYSH_BGPD, no_bgp_router_id_cmd_vtysh, |
| 2273 | "no bgp router-id", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2274 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2275 | "BGP information\n" |
| 2276 | "Override configured router identifier\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2277 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2278 | DEFSH (VTYSH_BGPD, dump_bgp_all_interval_cmd_vtysh, |
| 2279 | "dump bgp all PATH INTERVAL", |
| 2280 | "Dump packet\n" |
| 2281 | "BGP packet dump\n" |
| 2282 | "Dump all BGP packets\n" |
| 2283 | "Output filename\n" |
| 2284 | "Interval of output\n") |
| 2285 | |
| 2286 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_filter_list_cmd_vtysh, |
| 2287 | "show ipv6 mbgp filter-list WORD", |
| 2288 | "Show running system information\n" |
| 2289 | "IPv6 information\n" |
| 2290 | "MBGP information\n" |
| 2291 | "Display routes conforming to the filter-list\n" |
| 2292 | "Regular expression access list name\n") |
| 2293 | |
| 2294 | DEFSH (VTYSH_BGPD, dump_bgp_updates_cmd_vtysh, |
| 2295 | "dump bgp updates PATH", |
| 2296 | "Dump packet\n" |
| 2297 | "BGP packet dump\n" |
| 2298 | "Dump BGP updates only\n" |
| 2299 | "Output filename\n") |
| 2300 | |
| 2301 | DEFSH (VTYSH_BGPD, no_bgp_network_backdoor_cmd_vtysh, |
| 2302 | "no network A.B.C.D/M backdoor", |
| 2303 | "Negate a command or set its defaults\n" |
| 2304 | "Specify a network to announce via BGP\n" |
| 2305 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 2306 | "Specify a BGP backdoor route\n") |
| 2307 | |
| 2308 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_in_cmd_vtysh, |
| 2309 | "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2310 | "Reset functions\n" |
| 2311 | "IP information\n" |
| 2312 | "BGP information\n" |
| 2313 | "Clear all members of peer-group\n" |
| 2314 | "BGP peer-group name\n" |
| 2315 | "Address family\n" |
| 2316 | "Address Family modifier\n" |
| 2317 | "Address Family modifier\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2318 | "Soft reconfig inbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2319 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2320 | DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_in_cmd_vtysh, |
| 2321 | "clear bgp (A.B.C.D|X:X::X:X) soft in", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2322 | "Reset functions\n" |
| 2323 | "BGP information\n" |
| 2324 | "BGP neighbor address to clear\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2325 | "BGP IPv6 neighbor to clear\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2326 | "Soft reconfig\n" |
| 2327 | "Soft reconfig inbound update\n") |
| 2328 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2329 | DEFSH (VTYSH_OSPF6D, redistribute_ospf6_cmd_vtysh, |
| 2330 | "redistribute ospf6", |
| 2331 | "Redistribute control\n" |
| 2332 | "OSPF6 route\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2333 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2334 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_ge_le_cmd_vtysh, |
| 2335 | "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32> le <0-32>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2336 | "Negate a command or set its defaults\n" |
| 2337 | "IP information\n" |
| 2338 | "Build a prefix list\n" |
| 2339 | "Name of a prefix list\n" |
| 2340 | "sequence number of an entry\n" |
| 2341 | "Sequence number\n" |
| 2342 | "Specify packets to reject\n" |
| 2343 | "Specify packets to forward\n" |
| 2344 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 2345 | "Minimum prefix length to be matched\n" |
| 2346 | "Minimum prefix length\n" |
| 2347 | "Maximum prefix length to be matched\n" |
| 2348 | "Maximum prefix length\n") |
| 2349 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2350 | DEFSH (VTYSH_OSPFD, no_ip_ospf_dead_interval_cmd_vtysh, |
| 2351 | "no ip ospf dead-interval", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2352 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2353 | "IP Information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2354 | "OSPF interface commands\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2355 | "Interval after which a neighbor is declared dead\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2356 | |
| 2357 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_le_cmd_vtysh, |
| 2358 | "ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32>", |
| 2359 | "IP information\n" |
| 2360 | "Build a prefix list\n" |
| 2361 | "Name of a prefix list\n" |
| 2362 | "Specify packets to reject\n" |
| 2363 | "Specify packets to forward\n" |
| 2364 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 2365 | "Maximum prefix length to be matched\n" |
| 2366 | "Maximum prefix length\n") |
| 2367 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2368 | DEFSH (VTYSH_OSPF6D, router_id_cmd_vtysh, |
| 2369 | "router-id ROUTER_ID", |
| 2370 | "Configure ospf Router-ID.\n" |
| 2371 | "specify by IPv4 address notation(e.g. 0.0.0.0)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2372 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2373 | DEFSH (VTYSH_BGPD, bgp_bestpath_med2_cmd_vtysh, |
| 2374 | "bgp bestpath med confed missing-as-worst", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2375 | "BGP specific commands\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2376 | "Change the default bestpath selection\n" |
| 2377 | "MED attribute\n" |
| 2378 | "Compare MED among confederation paths\n" |
| 2379 | "Treat missing MED as the least preferred one\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2380 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2381 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_in_cmd_vtysh, |
| 2382 | "clear bgp ipv6 * in", |
| 2383 | "Reset functions\n" |
| 2384 | "BGP information\n" |
| 2385 | "Address family\n" |
| 2386 | "Clear all peers\n" |
| 2387 | "Soft reconfig inbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2388 | |
| 2389 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community3_cmd_vtysh, |
| 2390 | "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)", |
| 2391 | "Show running system information\n" |
| 2392 | "BGP information\n" |
| 2393 | "Address family\n" |
| 2394 | "Display routes matching the communities\n" |
| 2395 | "community number\n" |
| 2396 | "Do not send outside local AS (well-known community)\n" |
| 2397 | "Do not advertise to any peer (well-known community)\n" |
| 2398 | "Do not export to next AS (well-known community)\n" |
| 2399 | "community number\n" |
| 2400 | "Do not send outside local AS (well-known community)\n" |
| 2401 | "Do not advertise to any peer (well-known community)\n" |
| 2402 | "Do not export to next AS (well-known community)\n" |
| 2403 | "community number\n" |
| 2404 | "Do not send outside local AS (well-known community)\n" |
| 2405 | "Do not advertise to any peer (well-known community)\n" |
| 2406 | "Do not export to next AS (well-known community)\n") |
| 2407 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2408 | DEFSH (VTYSH_BGPD, ip_extcommunity_list_standard2_cmd_vtysh, |
| 2409 | "ip extcommunity-list <1-99> (deny|permit)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2410 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2411 | "Add a extended community list entry\n" |
| 2412 | "Extended Community list number (standard)\n" |
| 2413 | "Specify community to reject\n" |
| 2414 | "Specify community to accept\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2415 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2416 | DEFSH (VTYSH_OSPFD, passive_interface_addr_cmd_vtysh, |
| 2417 | "passive-interface IFNAME A.B.C.D", |
| 2418 | "Suppress routing updates on an interface\n" |
| 2419 | "Interface's name\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2420 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2421 | DEFSH (VTYSH_BGPD, neighbor_ebgp_multihop_ttl_cmd_vtysh, |
| 2422 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop <1-255>", |
| 2423 | "Specify neighbor router\n" |
| 2424 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 2425 | "Allow EBGP neighbors not on directly connected networks\n" |
| 2426 | "maximum hop count\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2427 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2428 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_longer_cmd_vtysh, |
| 2429 | "show ip bgp flap-statistics A.B.C.D/M longer-prefixes", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2430 | "Show running system information\n" |
| 2431 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2432 | "BGP information\n" |
| 2433 | "Display flap statistics of routes\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2434 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2435 | "Display route and more specific routes\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2436 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2437 | DEFSH (VTYSH_BGPD, no_neighbor_peer_group_cmd_vtysh, |
| 2438 | "no neighbor WORD peer-group", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2439 | "Negate a command or set its defaults\n" |
| 2440 | "Specify neighbor router\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2441 | "Neighbor tag\n" |
| 2442 | "Configure peer-group\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2443 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2444 | DEFSH (VTYSH_ZEBRA, no_ipv6_route_ifname_cmd_vtysh, |
| 2445 | "no ipv6 route X:X::X:X/M X:X::X:X INTERFACE", |
| 2446 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2447 | "IP information\n" |
| 2448 | "Establish static routes\n" |
| 2449 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 2450 | "IPv6 gateway address\n" |
| 2451 | "IPv6 gateway interface name\n") |
| 2452 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2453 | DEFSH (VTYSH_RIPD, rip_distance_source_access_list_cmd_vtysh, |
| 2454 | "distance <1-255> A.B.C.D/M WORD", |
| 2455 | "Administrative distance\n" |
| 2456 | "Distance value\n" |
| 2457 | "IP source prefix\n" |
| 2458 | "Access list name\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2459 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2460 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_rmap_metric_cmd_vtysh, |
| 2461 | "no redistribute (connected|kernel|ospf6|ripng|static) route-map WORD metric <0-4294967295>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2462 | "Negate a command or set its defaults\n" |
| 2463 | "Redistribute information from another routing protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2464 | "Connected\n" |
| 2465 | "Kernel routes\n" |
| 2466 | "Open Shurtest Path First (OSPFv3)\n" |
| 2467 | "Routing Information Protocol (RIPng)\n" |
| 2468 | "Static routes\n" |
| 2469 | "Route map reference\n" |
| 2470 | "Pointer to route-map entries\n" |
| 2471 | "Metric for redistributed routes\n" |
| 2472 | "Default metric\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2473 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2474 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_advertise_prefix_list_cmd_vtysh, |
| 2475 | "ipv6 ospf6 advertise prefix-list WORD", |
| 2476 | "IPv6 Information\n" |
| 2477 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 2478 | "Advertising options\n" |
| 2479 | "Filter prefix using prefix-list\n" |
| 2480 | "Prefix list name\n" |
| 2481 | ) |
| 2482 | |
| 2483 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_transmitdelay_cmd_vtysh, |
| 2484 | "ipv6 ospf6 transmit-delay TRANSMITDELAY", |
| 2485 | "IPv6 Information\n" |
| 2486 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 2487 | "Link state transmit delay\n" |
| 2488 | "<1-65535> Seconds\n" |
| 2489 | ) |
| 2490 | |
| 2491 | DEFSH (VTYSH_BGPD, neighbor_maximum_prefix_cmd_vtysh, |
| 2492 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2493 | "Specify neighbor router\n" |
| 2494 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2495 | "Maximum number of prefix accept from this peer\n" |
| 2496 | "maximum no. of prefix limit\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2497 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2498 | DEFSH (VTYSH_BGPD, vpnv4_network_cmd_vtysh, |
| 2499 | "network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2500 | "Specify a network to announce via BGP\n" |
| 2501 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2502 | "Specify Route Distinguisher\n" |
| 2503 | "VPN Route Distinguisher\n" |
| 2504 | "BGP tag\n" |
| 2505 | "tag value\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2506 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2507 | DEFSH (VTYSH_ZEBRA, show_ipv6_route_addr_cmd_vtysh, |
| 2508 | "show ipv6 route X:X::X:X", |
| 2509 | "Show running system information\n" |
| 2510 | "IP information\n" |
| 2511 | "IPv6 routing table\n" |
| 2512 | "IPv6 Address\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2513 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2514 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbors_peer_cmd_vtysh, |
| 2515 | "show ip bgp neighbors (A.B.C.D|X:X::X:X)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2516 | "Show running system information\n" |
| 2517 | "IP information\n" |
| 2518 | "BGP information\n" |
| 2519 | "Detailed information on TCP and BGP neighbor connections\n" |
| 2520 | "Neighbor to display information about\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2521 | "Neighbor to display information about\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2522 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2523 | DEFSH (VTYSH_OSPFD, debug_ospf_nsm_cmd_vtysh, |
| 2524 | "debug ospf nsm", |
| 2525 | "Debugging functions (see also 'undebug')\n" |
| 2526 | "OSPF information\n" |
| 2527 | "OSPF Neighbor State Machine\n") |
| 2528 | |
| 2529 | DEFSH (VTYSH_OSPFD, ip_ospf_message_digest_key_cmd_vtysh, |
| 2530 | "ip ospf message-digest-key <1-255> md5 KEY", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2531 | "IP Information\n" |
| 2532 | "OSPF interface commands\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2533 | "Message digest authentication password (key)\n" |
| 2534 | "Key ID\n" |
| 2535 | "Use MD5 algorithm\n" |
| 2536 | "The OSPF password (key)") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2537 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2538 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_metric_routemap_cmd_vtysh, |
| 2539 | "redistribute bgp metric <0-16> route-map WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2540 | "Redistribute information from another routing protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2541 | "Border Gateway Protocol (BGP)\n" |
| 2542 | "Metric\n" |
| 2543 | "Metric value\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2544 | "Route map reference\n" |
| 2545 | "Pointer to route-map entries\n") |
| 2546 | |
| 2547 | DEFSH (VTYSH_BGPD, bgp_default_local_preference_cmd_vtysh, |
| 2548 | "bgp default local-preference <0-4294967295>", |
| 2549 | "BGP specific commands\n" |
| 2550 | "Configure BGP defaults\n" |
| 2551 | "local preference (higher=more preferred)\n" |
| 2552 | "Configure default local preference value\n") |
| 2553 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2554 | DEFSH (VTYSH_RIPD, rip_distance_source_cmd_vtysh, |
| 2555 | "distance <1-255> A.B.C.D/M", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2556 | "Administrative distance\n" |
| 2557 | "Distance value\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2558 | "IP source prefix\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2559 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2560 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_seq_le_cmd_vtysh, |
| 2561 | "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128>", |
| 2562 | "IPv6 information\n" |
| 2563 | "Build a prefix list\n" |
| 2564 | "Name of a prefix list\n" |
| 2565 | "sequence number of an entry\n" |
| 2566 | "Sequence number\n" |
| 2567 | "Specify packets to reject\n" |
| 2568 | "Specify packets to forward\n" |
| 2569 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 2570 | "Maximum prefix length to be matched\n" |
| 2571 | "Maximum prefix length\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2572 | |
| 2573 | DEFSH (VTYSH_BGPD, show_bgp_regexp_cmd_vtysh, |
| 2574 | "show bgp regexp .LINE", |
| 2575 | "Show running system information\n" |
| 2576 | "BGP information\n" |
| 2577 | "Display routes matching the AS path regular expression\n" |
| 2578 | "A regular-expression to match the BGP AS paths\n") |
| 2579 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2580 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_regexp_cmd_vtysh, |
| 2581 | "show ipv6 bgp regexp .LINE", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2582 | "Show running system information\n" |
| 2583 | "IP information\n" |
| 2584 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2585 | "Display routes matching the AS path regular expression\n" |
| 2586 | "A regular-expression to match the BGP AS paths\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2587 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2588 | DEFSH (VTYSH_OSPFD, no_ip_ospf_priority_cmd_vtysh, |
| 2589 | "no ip ospf priority", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2590 | "Negate a command or set its defaults\n" |
| 2591 | "IP Information\n" |
| 2592 | "OSPF interface commands\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2593 | "Router priority\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2594 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2595 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_set_ip_nexthop_cmd_vtysh, |
| 2596 | "no set ip next-hop", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2597 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2598 | "Set values in destination routing protocol\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2599 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2600 | "Next hop address\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2601 | |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2602 | DEFSH (VTYSH_OSPFD, ip_ospf_dead_interval_addr_cmd_vtysh, |
| 2603 | "ip ospf dead-interval <1-65535> A.B.C.D", |
| 2604 | "IP Information\n" |
| 2605 | "OSPF interface commands\n" |
| 2606 | "Interval after which a neighbor is declared dead\n" |
| 2607 | "Seconds\n" |
| 2608 | "Address of interface") |
| 2609 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2610 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_name_seq_cmd_vtysh, |
| 2611 | "show ipv6 prefix-list WORD seq <1-4294967295>", |
| 2612 | "Show running system information\n" |
| 2613 | "IPv6 information\n" |
| 2614 | "Build a prefix list\n" |
| 2615 | "Name of a prefix list\n" |
| 2616 | "sequence number of an entry\n" |
| 2617 | "Sequence number\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2618 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2619 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, ipv6_access_list_cmd_vtysh, |
| 2620 | "ipv6 access-list WORD (deny|permit) X:X::X:X/M", |
| 2621 | "IPv6 information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2622 | "Add an access list entry\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2623 | "IPv6 zebra access-list\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2624 | "Specify packets to reject\n" |
| 2625 | "Specify packets to forward\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2626 | "Prefix to match. e.g. 3ffe:506::/32\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2627 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2628 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_cmd_vtysh, |
| 2629 | "clear ip bgp external", |
| 2630 | "Reset functions\n" |
| 2631 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2632 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2633 | "Clear all external peers\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2634 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2635 | DEFSH (VTYSH_OSPFD, no_area_authentication_cmd_vtysh, |
| 2636 | "no area (A.B.C.D|<0-4294967295>) authentication", |
| 2637 | "Negate a command or set its defaults\n" |
| 2638 | "OSPF area parameters\n" |
| 2639 | "OSPF area ID in IP address format\n" |
| 2640 | "OSPF area ID as a decimal value\n" |
| 2641 | "Enable authentication\n") |
| 2642 | |
| 2643 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_ge_le_cmd_vtysh, |
| 2644 | "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32> le <0-32>", |
| 2645 | "IP information\n" |
| 2646 | "Build a prefix list\n" |
| 2647 | "Name of a prefix list\n" |
| 2648 | "sequence number of an entry\n" |
| 2649 | "Sequence number\n" |
| 2650 | "Specify packets to reject\n" |
| 2651 | "Specify packets to forward\n" |
| 2652 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 2653 | "Minimum prefix length to be matched\n" |
| 2654 | "Minimum prefix length\n" |
| 2655 | "Maximum prefix length to be matched\n" |
| 2656 | "Maximum prefix length\n") |
| 2657 | |
| 2658 | DEFSH (VTYSH_BGPD, no_set_aspath_prepend_val_cmd_vtysh, |
| 2659 | "no set as-path prepend .<1-65535>", |
| 2660 | "Negate a command or set its defaults\n" |
| 2661 | "Set values in destination routing protocol\n" |
| 2662 | "Prepend string for a BGP AS-path attribute\n" |
| 2663 | "Prepend to the as-path\n" |
| 2664 | "AS number\n") |
| 2665 | |
| 2666 | DEFSH (VTYSH_OSPFD, area_stub_cmd_vtysh, |
| 2667 | "area (A.B.C.D|<0-4294967295>) stub", |
| 2668 | "OSPF area parameters\n" |
| 2669 | "OSPF area ID in IP address format\n" |
| 2670 | "OSPF area ID as a decimal value\n" |
| 2671 | "Configure OSPF area as stub\n") |
| 2672 | |
| 2673 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_cmd_vtysh, |
| 2674 | "show ipv6 ospf6 database", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2675 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2676 | "IPv6 Information\n" |
| 2677 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 2678 | "LSA Database\n" |
| 2679 | ) |
| 2680 | |
| 2681 | DEFSH (VTYSH_RIPD, no_rip_default_metric_val_cmd_vtysh, |
| 2682 | "no default-metric <1-16>", |
| 2683 | "Negate a command or set its defaults\n" |
| 2684 | "Set a metric of redistribute routes\n" |
| 2685 | "Default metric\n") |
| 2686 | |
| 2687 | DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_cmd_vtysh, |
| 2688 | "show ip bgp A.B.C.D/M", |
| 2689 | "Show running system information\n" |
| 2690 | "IP information\n" |
| 2691 | "BGP information\n" |
| 2692 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 2693 | |
| 2694 | DEFSH (VTYSH_BGPD, clear_bgp_external_in_cmd_vtysh, |
| 2695 | "clear bgp external in", |
| 2696 | "Reset functions\n" |
| 2697 | "BGP information\n" |
| 2698 | "Clear all external peers\n" |
| 2699 | "Soft reconfig inbound update\n") |
| 2700 | |
| 2701 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ip_access_list_name_cmd_vtysh, |
| 2702 | "show ip access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD)", |
| 2703 | "Show running system information\n" |
| 2704 | "IP information\n" |
| 2705 | "List IP access lists\n" |
| 2706 | "IP standard access list\n" |
| 2707 | "IP extended access list\n" |
| 2708 | "IP standard access list (expanded range)\n" |
| 2709 | "IP extended access list (expanded range)\n" |
| 2710 | "IP zebra access-list\n") |
| 2711 | |
| 2712 | DEFSH (VTYSH_BGPD, set_community_delete_cmd_vtysh, |
| 2713 | "set comm-list (<1-99>|<100-199>|WORD) delete", |
| 2714 | "Set values in destination routing protocol\n" |
| 2715 | "set BGP community list (for deletion)\n" |
| 2716 | "Community-list number (standard)\n" |
| 2717 | "Communitly-list number (expanded)\n" |
| 2718 | "Community-list name\n" |
| 2719 | "Delete matching communities\n") |
| 2720 | |
| 2721 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community3_exact_cmd_vtysh, |
| 2722 | "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", |
| 2723 | "Show running system information\n" |
| 2724 | "IPv6 information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2725 | "BGP information\n" |
| 2726 | "Display routes matching the communities\n" |
| 2727 | "community number\n" |
| 2728 | "Do not send outside local AS (well-known community)\n" |
| 2729 | "Do not advertise to any peer (well-known community)\n" |
| 2730 | "Do not export to next AS (well-known community)\n" |
| 2731 | "community number\n" |
| 2732 | "Do not send outside local AS (well-known community)\n" |
| 2733 | "Do not advertise to any peer (well-known community)\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2734 | "Do not export to next AS (well-known community)\n" |
| 2735 | "community number\n" |
| 2736 | "Do not send outside local AS (well-known community)\n" |
| 2737 | "Do not advertise to any peer (well-known community)\n" |
| 2738 | "Do not export to next AS (well-known community)\n" |
| 2739 | "Exact match of the communities") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2740 | |
| 2741 | DEFSH (VTYSH_BGPD, no_ip_community_list_all_cmd_vtysh, |
| 2742 | "no ip community-list (WORD|<1-99>|<100-199>)", |
| 2743 | "Negate a command or set its defaults\n" |
| 2744 | "IP information\n" |
| 2745 | "Add a community list entry\n" |
| 2746 | "Community list name\n" |
| 2747 | "Community list number (standard)\n" |
| 2748 | "Community list number (expanded)\n") |
| 2749 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2750 | DEFSH (VTYSH_RIPD, rip_redistribute_rip_cmd_vtysh, |
| 2751 | "redistribute rip", |
| 2752 | "Redistribute information from another routing protocol\n" |
| 2753 | "Routing Information Protocol (RIP)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2754 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2755 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_hellointerval_cmd_vtysh, |
| 2756 | "ipv6 ospf6 hello-interval HELLO_INTERVAL", |
| 2757 | "IPv6 Information\n" |
| 2758 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 2759 | "Time between HELLO packets\n" |
| 2760 | "<1-65535> Seconds\n" |
| 2761 | ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2762 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2763 | DEFSH (VTYSH_RIPNGD, no_ripng_passive_interface_cmd_vtysh, |
| 2764 | "no passive-interface IFNAME", |
| 2765 | "Negate a command or set its defaults\n" |
| 2766 | "Suppress routing updates on an interface\n" |
| 2767 | "Interface name\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2768 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2769 | DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_backdoor_cmd_vtysh, |
| 2770 | "no network A.B.C.D backdoor", |
| 2771 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2772 | "Specify a network to announce via BGP\n" |
| 2773 | "Network number\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2774 | "Specify a BGP backdoor route\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2775 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2776 | DEFSH (VTYSH_ZEBRA, multicast_cmd_vtysh, |
| 2777 | "multicast", |
| 2778 | "Set multicast flag to interface\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2779 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2780 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_inter_intra_cmd_vtysh, |
| 2781 | "distance ospf external <1-255> inter-area <1-255> intra-area <1-255>", |
| 2782 | "Define an administrative distance\n" |
| 2783 | "OSPF Administrative distance\n" |
| 2784 | "External routes\n" |
| 2785 | "Distance for external routes\n" |
| 2786 | "Inter-area routes\n" |
| 2787 | "Distance for inter-area routes\n" |
| 2788 | "Intra-area routes\n" |
| 2789 | "Distance for intra-area routes\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2790 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2791 | DEFSH (VTYSH_RIPD, rip_redistribute_type_cmd_vtysh, |
| 2792 | "redistribute (kernel|connected|static|ospf|bgp)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2793 | "Redistribute information from another routing protocol\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2794 | "Kernel routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2795 | "Connected\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2796 | "Static routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2797 | "Open Shortest Path First (OSPF)\n" |
| 2798 | "Border Gateway Protocol (BGP)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2799 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2800 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_host_cmd_vtysh, |
| 2801 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D host A.B.C.D", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2802 | "Add an access list entry\n" |
| 2803 | "IP extended access list\n" |
| 2804 | "IP extended access list (expanded range)\n" |
| 2805 | "Specify packets to reject\n" |
| 2806 | "Specify packets to forward\n" |
| 2807 | "Any Internet Protocol\n" |
| 2808 | "A single source host\n" |
| 2809 | "Source address\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2810 | "A single destination host\n" |
| 2811 | "Destination address\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2812 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2813 | DEFSH (VTYSH_BGPD, bgp_config_type_cmd_vtysh, |
| 2814 | "bgp config-type (cisco|zebra)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2815 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2816 | "Configuration type\n" |
| 2817 | "cisco\n" |
| 2818 | "zebra\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2819 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2820 | DEFSH (VTYSH_BGPD, show_ip_bgp_community2_exact_cmd_vtysh, |
| 2821 | "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2822 | "Show running system information\n" |
| 2823 | "IP information\n" |
| 2824 | "BGP information\n" |
| 2825 | "Display routes matching the communities\n" |
| 2826 | "community number\n" |
| 2827 | "Do not send outside local AS (well-known community)\n" |
| 2828 | "Do not advertise to any peer (well-known community)\n" |
| 2829 | "Do not export to next AS (well-known community)\n" |
| 2830 | "community number\n" |
| 2831 | "Do not send outside local AS (well-known community)\n" |
| 2832 | "Do not advertise to any peer (well-known community)\n" |
| 2833 | "Do not export to next AS (well-known community)\n" |
| 2834 | "Exact match of the communities") |
| 2835 | |
| 2836 | DEFSH (VTYSH_BGPD, show_ip_bgp_view_cmd_vtysh, |
| 2837 | "show ip bgp view WORD", |
| 2838 | "Show running system information\n" |
| 2839 | "IP information\n" |
| 2840 | "BGP information\n" |
| 2841 | "BGP view\n" |
| 2842 | "BGP view name\n") |
| 2843 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2844 | DEFSH (VTYSH_BGPD, clear_ip_bgp_dampening_address_mask_cmd_vtysh, |
| 2845 | "clear ip bgp dampening A.B.C.D A.B.C.D", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2846 | "Reset functions\n" |
| 2847 | "IP information\n" |
| 2848 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2849 | "Clear route flap dampening information\n" |
| 2850 | "Network to clear damping information\n" |
| 2851 | "Network mask\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2852 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2853 | DEFSH (VTYSH_OSPFD, area_authentication_message_digest_cmd_vtysh, |
| 2854 | "area (A.B.C.D|<0-4294967295>) authentication message-digest", |
| 2855 | "OSPF area parameters\n" |
| 2856 | "Enable authentication\n" |
| 2857 | "Use message-digest authentication\n") |
| 2858 | |
| 2859 | DEFSH (VTYSH_OSPFD, no_area_range_advertise_cost_cmd_vtysh, |
| 2860 | "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>", |
| 2861 | "Negate a command or set its defaults\n" |
| 2862 | "OSPF area parameters\n" |
| 2863 | "OSPF area ID in IP address format\n" |
| 2864 | "OSPF area ID as a decimal value\n" |
| 2865 | "Summarize routes matching address/mask (border routers only)\n" |
| 2866 | "Area range prefix\n" |
| 2867 | "Advertise this range (default)\n" |
| 2868 | "User specified metric for this range\n" |
| 2869 | "Advertised metric for this range\n") |
| 2870 | |
| 2871 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_flapping_cmd_vtysh, |
| 2872 | "show ipv6 ospf6 route flapping", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 2873 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2874 | "IPv6 Information\n" |
| 2875 | "Open Shortest Path First (OSPF) for IPv6\n") |
| 2876 | |
| 2877 | DEFSH (VTYSH_RIPD, no_rip_neighbor_cmd_vtysh, |
| 2878 | "no neighbor A.B.C.D", |
| 2879 | "Negate a command or set its defaults\n" |
| 2880 | "Specify a neighbor router\n" |
| 2881 | "Neighbor address\n") |
| 2882 | |
| 2883 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_metric_routemap_cmd_vtysh, |
| 2884 | "redistribute connected metric <0-16> route-map WORD", |
| 2885 | "Redistribute information from another routing protocol\n" |
| 2886 | "Connected\n" |
| 2887 | "Metric\n" |
| 2888 | "Metric value\n" |
| 2889 | "Route map reference\n" |
| 2890 | "Pointer to route-map entries\n") |
| 2891 | |
| 2892 | DEFSH (VTYSH_BGPD, no_bgp_deterministic_med_cmd_vtysh, |
| 2893 | "no bgp deterministic-med", |
| 2894 | "Negate a command or set its defaults\n" |
| 2895 | "BGP specific commands\n" |
| 2896 | "Pick the best-MED path among paths advertised from the neighboring AS\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2897 | |
| 2898 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community4_exact_cmd_vtysh, |
| 2899 | "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", |
| 2900 | "Show running system information\n" |
| 2901 | "IP information\n" |
| 2902 | "BGP information\n" |
| 2903 | "Address family\n" |
| 2904 | "Address Family modifier\n" |
| 2905 | "Address Family modifier\n" |
| 2906 | "Display routes matching the communities\n" |
| 2907 | "community number\n" |
| 2908 | "Do not send outside local AS (well-known community)\n" |
| 2909 | "Do not advertise to any peer (well-known community)\n" |
| 2910 | "Do not export to next AS (well-known community)\n" |
| 2911 | "community number\n" |
| 2912 | "Do not send outside local AS (well-known community)\n" |
| 2913 | "Do not advertise to any peer (well-known community)\n" |
| 2914 | "Do not export to next AS (well-known community)\n" |
| 2915 | "community number\n" |
| 2916 | "Do not send outside local AS (well-known community)\n" |
| 2917 | "Do not advertise to any peer (well-known community)\n" |
| 2918 | "Do not export to next AS (well-known community)\n" |
| 2919 | "community number\n" |
| 2920 | "Do not send outside local AS (well-known community)\n" |
| 2921 | "Do not advertise to any peer (well-known community)\n" |
| 2922 | "Do not export to next AS (well-known community)\n" |
| 2923 | "Exact match of the communities") |
| 2924 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2925 | DEFSH (VTYSH_BGPD, no_set_aggregator_as_cmd_vtysh, |
| 2926 | "no set aggregator as", |
| 2927 | "Negate a command or set its defaults\n" |
| 2928 | "Set values in destination routing protocol\n" |
| 2929 | "BGP aggregator attribute\n" |
| 2930 | "AS number of aggregator\n") |
| 2931 | |
| 2932 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_soft_cmd_vtysh, |
| 2933 | "clear bgp ipv6 * soft", |
| 2934 | "Reset functions\n" |
| 2935 | "BGP information\n" |
| 2936 | "Address family\n" |
| 2937 | "Clear all peers\n" |
| 2938 | "Soft reconfig\n") |
| 2939 | |
| 2940 | DEFSH (VTYSH_OSPFD, area_vlink_param1_cmd_vtysh, |
| 2941 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 2942 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>", |
| 2943 | "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" |
| 2944 | "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") |
| 2945 | |
| 2946 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_cmd_vtysh, |
| 2947 | "no redistribute (connected|kernel|ospf|rip|static)", |
| 2948 | "Negate a command or set its defaults\n" |
| 2949 | "Redistribute information from another routing protocol\n" |
| 2950 | "Connected\n" |
| 2951 | "Kernel routes\n" |
| 2952 | "Open Shurtest Path First (OSPF)\n" |
| 2953 | "Routing Information Protocol (RIP)\n" |
| 2954 | "Static routes\n") |
| 2955 | |
| 2956 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_in_cmd_vtysh, |
| 2957 | "clear ip bgp external ipv4 (unicast|multicast) soft in", |
| 2958 | "Reset functions\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2959 | "IP information\n" |
| 2960 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2961 | "Clear all external peers\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2962 | "Address family\n" |
| 2963 | "Address Family modifier\n" |
| 2964 | "Address Family modifier\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2965 | "Soft reconfig\n" |
| 2966 | "Soft reconfig inbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2967 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2968 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_cmd_vtysh, |
| 2969 | "ipv6 prefix-list WORD (deny|permit) (X:X::X:X/M|any)", |
| 2970 | "IPv6 information\n" |
| 2971 | "Build a prefix list\n" |
| 2972 | "Name of a prefix list\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2973 | "Specify packets to reject\n" |
| 2974 | "Specify packets to forward\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2975 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 2976 | "Any prefix match. Same as \"::0/0 le 128\"\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2977 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2978 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_cmd_vtysh, |
| 2979 | "clear ip bgp * vpnv4 unicast soft", |
| 2980 | "Reset functions\n" |
| 2981 | "IP information\n" |
| 2982 | "BGP information\n" |
| 2983 | "Clear all peers\n" |
| 2984 | "Address family\n" |
| 2985 | "Address Family Modifier\n" |
| 2986 | "Soft reconfig\n") |
| 2987 | |
| 2988 | DEFSH (VTYSH_BGPD, debug_bgp_keepalive_cmd_vtysh, |
| 2989 | "debug bgp keepalives", |
| 2990 | "Debugging functions (see also 'undebug')\n" |
| 2991 | "BGP information\n" |
| 2992 | "BGP keepalives\n") |
| 2993 | |
| 2994 | DEFSH (VTYSH_BGPD, no_router_bgp_cmd_vtysh, |
| 2995 | "no router bgp <1-65535>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2996 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2997 | "Enable a routing process\n" |
| 2998 | "BGP information\n" |
| 2999 | "AS number\n") |
| 3000 | |
| 3001 | DEFSH (VTYSH_ZEBRA, ipv6_route_ifname_pref_cmd_vtysh, |
| 3002 | "ipv6 route X:X::X:X/M X:X::X:X INTERFACE <1-255>", |
| 3003 | "IP information\n" |
| 3004 | "Establish static routes\n" |
| 3005 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 3006 | "IPv6 gateway address\n" |
| 3007 | "IPv6 gateway interface name\n" |
| 3008 | "Distance value for this prefix\n") |
| 3009 | |
| 3010 | DEFSH (VTYSH_OSPFD, no_ip_ospf_transmit_delay_addr_cmd_vtysh, |
| 3011 | "no ip ospf transmit-delay A.B.C.D", |
| 3012 | "Negate a command or set its defaults\n" |
| 3013 | "IP Information\n" |
| 3014 | "OSPF interface commands\n" |
| 3015 | "Link state transmit delay\n" |
| 3016 | "Address of interface") |
| 3017 | |
| 3018 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_ge_cmd_vtysh, |
| 3019 | "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128>", |
| 3020 | "IPv6 information\n" |
| 3021 | "Build a prefix list\n" |
| 3022 | "Name of a prefix list\n" |
| 3023 | "Specify packets to reject\n" |
| 3024 | "Specify packets to forward\n" |
| 3025 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 3026 | "Minimum prefix length to be matched\n" |
| 3027 | "Minimum prefix length\n") |
| 3028 | |
| 3029 | DEFSH (VTYSH_OSPFD, ospf_distance_cmd_vtysh, |
| 3030 | "distance <1-255>", |
| 3031 | "Define an administrative distance\n" |
| 3032 | "OSPF Administrative distance\n") |
| 3033 | |
| 3034 | DEFSH (VTYSH_OSPFD, area_range_advertise_cost_cmd_vtysh, |
| 3035 | "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3036 | "OSPF area parameters\n" |
| 3037 | "OSPF area ID in IP address format\n" |
| 3038 | "OSPF area ID as a decimal value\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3039 | "Summarize routes matching address/mask (border routers only)\n" |
| 3040 | "Area range prefix\n" |
| 3041 | "Advertise this range (default)\n" |
| 3042 | "User specified metric for this range\n" |
| 3043 | "Advertised metric for this range\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3044 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3045 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_remark_cmd_vtysh, |
| 3046 | "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD) remark", |
| 3047 | "Negate a command or set its defaults\n" |
| 3048 | "Add an access list entry\n" |
| 3049 | "IP standard access list\n" |
| 3050 | "IP extended access list\n" |
| 3051 | "IP standard access list (expanded range)\n" |
| 3052 | "IP extended access list (expanded range)\n" |
| 3053 | "IP zebra access-list\n" |
| 3054 | "Access list entry comment\n") |
| 3055 | |
| 3056 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_routemap_cmd_vtysh, |
| 3057 | "no redistribute connected route-map WORD", |
| 3058 | "Negate a command or set its defaults\n" |
| 3059 | "Redistribute information from another routing protocol\n" |
| 3060 | "Connected\n" |
| 3061 | "Route map reference\n" |
| 3062 | "Pointer to route-map entries\n") |
| 3063 | |
| 3064 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged5_cmd_vtysh, |
| 3065 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path next-hop med", |
| 3066 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3067 | "Specify neighbor router\n" |
| 3068 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3069 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 3070 | "As-path attribute\n" |
| 3071 | "Nexthop attribute\n" |
| 3072 | "Med attribute\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3073 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3074 | DEFSH (VTYSH_OSPFD, no_ospf_distance_ospf_cmd_vtysh, |
| 3075 | "no distance ospf", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3076 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3077 | "Define an administrative distance\n" |
| 3078 | "OSPF Administrative distance\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3079 | "OSPF Distance\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3080 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3081 | DEFSH (VTYSH_ZEBRA, no_ip_route_distance_cmd_vtysh, |
| 3082 | "no ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0) <1-255>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3083 | "Negate a command or set its defaults\n" |
| 3084 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3085 | "Establish static routes\n" |
| 3086 | "IP destination prefix (e.g. 10.0.0.0/8)\n" |
| 3087 | "IP gateway address\n" |
| 3088 | "IP gateway interface name\n" |
| 3089 | "Null interface\n" |
| 3090 | "Distance value for this route\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3091 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3092 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_cmd_vtysh, |
| 3093 | "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3094 | "Redistribute information from another routing protocol\n" |
| 3095 | "Kernel routes\n" |
| 3096 | "Connected\n" |
| 3097 | "Static routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3098 | "Routing Information Protocol (RIP)\n" |
| 3099 | "Border Gateway Protocol (BGP)\n" |
| 3100 | "Metric for redistributed routes\n" |
| 3101 | "OSPF default metric\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 3102 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3103 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighbor_cmd_vtysh, |
| 3104 | "show ipv6 ospf6 neighbor", |
| 3105 | "Show running system information\n" |
| 3106 | "IPv6 Information\n" |
| 3107 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 3108 | "Neighbor list\n" |
| 3109 | ) |
| 3110 | |
| 3111 | DEFSH (VTYSH_RIPD, key_string_cmd_vtysh, |
| 3112 | "key-string LINE", |
| 3113 | "Set key string\n" |
| 3114 | "The key\n") |
| 3115 | |
| 3116 | DEFSH (VTYSH_BGPD, no_neighbor_enforce_multihop_cmd_vtysh, |
| 3117 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "enforce-multihop", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 3118 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3119 | "Specify neighbor router\n" |
| 3120 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3121 | "Enforce EBGP neighbors perform multihop\n") |
| 3122 | |
| 3123 | DEFSH (VTYSH_RIPNGD, debug_ripng_events_cmd_vtysh, |
| 3124 | "debug ripng events", |
| 3125 | "Debugging functions (see also 'undebug')\n" |
| 3126 | "RIPng configuration\n" |
| 3127 | "Debug option set for ripng events\n") |
| 3128 | |
| 3129 | DEFSH (VTYSH_OSPF6D, no_redistribute_ospf6_cmd_vtysh, |
| 3130 | "no redistribute ospf6", |
| 3131 | "Negate a command or set its defaults\n" |
| 3132 | "Redistribute control\n" |
| 3133 | "OSPF6 route\n") |
| 3134 | |
| 3135 | DEFSH (VTYSH_BGPD, neighbor_description_cmd_vtysh, |
| 3136 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "description .LINE", |
| 3137 | "Specify neighbor router\n" |
| 3138 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3139 | "Neighbor specific description\n" |
| 3140 | "Up to 80 characters describing this neighbor\n") |
| 3141 | |
| 3142 | DEFSH (VTYSH_ZEBRA, no_ipv6_route_pref_cmd_vtysh, |
| 3143 | "no ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE) <1-255>", |
| 3144 | "Negate a command or set its defaults\n" |
| 3145 | "IP information\n" |
| 3146 | "Establish static routes\n" |
| 3147 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 3148 | "IPv6 gateway address\n" |
| 3149 | "IPv6 gateway interface name\n" |
| 3150 | "Distance value for this prefix\n") |
| 3151 | |
| 3152 | DEFSH (VTYSH_OSPF6D, flap_damping_route_cmd_vtysh, |
| 3153 | "flap-damping route <0-4294967295> <0-4294967295> " |
| 3154 | "<0-4294967295> <0-4294967295>", |
| 3155 | "enable flap dampening\n" |
| 3156 | "enable route flap dampening\n" |
| 3157 | "half-life in second\n" |
| 3158 | "reuse value\n" |
| 3159 | "suppress value\n" |
| 3160 | "t-hold in second (maximum time that the target can be damped)\n" |
| 3161 | ) |
| 3162 | |
| 3163 | DEFSH (VTYSH_OSPFD, debug_ospf_packet_send_recv_cmd_vtysh, |
| 3164 | "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)", |
| 3165 | "Debugging functions\n" |
| 3166 | "OSPF information\n" |
| 3167 | "OSPF packets\n" |
| 3168 | "OSPF Hello\n" |
| 3169 | "OSPF Database Description\n" |
| 3170 | "OSPF Link State Request\n" |
| 3171 | "OSPF Link State Update\n" |
| 3172 | "OSPF Link State Acknowledgment\n" |
| 3173 | "OSPF all packets\n" |
| 3174 | "Packet sent\n" |
| 3175 | "Packet received\n" |
| 3176 | "Detail information\n") |
| 3177 | |
| 3178 | DEFSH (VTYSH_OSPFD, area_range_cmd_vtysh, |
| 3179 | "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M", |
| 3180 | "OSPF area parameters\n" |
| 3181 | "OSPF area ID in IP address format\n" |
| 3182 | "OSPF area ID as a decimal value\n" |
| 3183 | "Summarize routes matching address/mask (border routers only)\n" |
| 3184 | "Area range prefix\n") |
| 3185 | |
| 3186 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_seq_le_ge_cmd_vtysh, |
| 3187 | "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128> ge <0-128>", |
| 3188 | "IPv6 information\n" |
| 3189 | "Build a prefix list\n" |
| 3190 | "Name of a prefix list\n" |
| 3191 | "sequence number of an entry\n" |
| 3192 | "Sequence number\n" |
| 3193 | "Specify packets to reject\n" |
| 3194 | "Specify packets to forward\n" |
| 3195 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 3196 | "Maximum prefix length to be matched\n" |
| 3197 | "Maximum prefix length\n" |
| 3198 | "Minimum prefix length to be matched\n" |
| 3199 | "Minimum prefix length\n") |
| 3200 | |
| 3201 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_in_prefix_filter_cmd_vtysh, |
| 3202 | "clear ip bgp external ipv4 (unicast|multicast) in prefix-filter", |
| 3203 | "Reset functions\n" |
| 3204 | "IP information\n" |
| 3205 | "BGP information\n" |
| 3206 | "Clear all external peers\n" |
| 3207 | "Address family\n" |
| 3208 | "Address Family modifier\n" |
| 3209 | "Address Family modifier\n" |
| 3210 | "Soft reconfig inbound update\n" |
| 3211 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 3212 | |
| 3213 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_any_mask_cmd_vtysh, |
| 3214 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip any A.B.C.D A.B.C.D", |
| 3215 | "Negate a command or set its defaults\n" |
| 3216 | "Add an access list entry\n" |
| 3217 | "IP extended access list\n" |
| 3218 | "IP extended access list (expanded range)\n" |
| 3219 | "Specify packets to reject\n" |
| 3220 | "Specify packets to forward\n" |
| 3221 | "Any Internet Protocol\n" |
| 3222 | "Any source host\n" |
| 3223 | "Destination address\n" |
| 3224 | "Destination Wildcard bits\n") |
| 3225 | |
| 3226 | DEFSH (VTYSH_RIPD, no_ip_rip_authentication_key_chain2_cmd_vtysh, |
| 3227 | "no ip rip authentication key-chain LINE", |
| 3228 | "Negate a command or set its defaults\n" |
| 3229 | "IP information\n" |
| 3230 | "Routing Information Protocol\n" |
| 3231 | "Authentication control\n" |
| 3232 | "Authentication key-chain\n" |
| 3233 | "name of key-chain\n") |
| 3234 | |
| 3235 | DEFSH (VTYSH_BGPD, show_ip_bgp_cidr_only_cmd_vtysh, |
| 3236 | "show ip bgp cidr-only", |
| 3237 | "Show running system information\n" |
| 3238 | "IP information\n" |
| 3239 | "BGP information\n" |
| 3240 | "Display only routes with non-natural netmasks\n") |
| 3241 | |
| 3242 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_description_cmd_vtysh, |
| 3243 | "no ipv6 prefix-list WORD description", |
| 3244 | "Negate a command or set its defaults\n" |
| 3245 | "IPv6 information\n" |
| 3246 | "Build a prefix list\n" |
| 3247 | "Name of a prefix list\n" |
| 3248 | "Prefix-list specific description\n") |
| 3249 | |
| 3250 | DEFSH (VTYSH_RIPD, no_ip_rip_send_version_num_cmd_vtysh, |
| 3251 | "no ip rip send version (1|2)", |
| 3252 | "Negate a command or set its defaults\n" |
| 3253 | "IP information\n" |
| 3254 | "Routing Information Protocol\n" |
| 3255 | "Advertisement transmission\n" |
| 3256 | "Version control\n" |
| 3257 | "Version 1\n" |
| 3258 | "Version 2\n") |
| 3259 | |
| 3260 | DEFSH (VTYSH_OSPFD, no_refresh_timer_cmd_vtysh, |
| 3261 | "no refresh timer", |
| 3262 | "Adjust refresh parameters\n" |
| 3263 | "Unset refresh timer\n") |
| 3264 | |
| 3265 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_routemap_cmd_vtysh, |
| 3266 | "redistribute ospf6 route-map WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 3267 | "Redistribute information from another routing protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3268 | "IPv6 Open Shortest Path First (OSPFv3)\n" |
| 3269 | "Route map reference\n" |
| 3270 | "Pointer to route-map entries\n") |
| 3271 | |
| 3272 | DEFSH (VTYSH_ZEBRA, no_shutdown_if_cmd_vtysh, |
| 3273 | "no shutdown", |
| 3274 | "Negate a command or set its defaults\n" |
| 3275 | "Shutdown the selected interface\n") |
| 3276 | |
| 3277 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_in_cmd_vtysh, |
| 3278 | "clear ip bgp view WORD * soft in", |
| 3279 | "Reset functions\n" |
| 3280 | "IP information\n" |
| 3281 | "BGP information\n" |
| 3282 | "BGP view\n" |
| 3283 | "view name\n" |
| 3284 | "Clear all peers\n" |
| 3285 | "Soft reconfig\n" |
| 3286 | "Soft reconfig inbound update\n") |
| 3287 | |
| 3288 | DEFSH (VTYSH_BGPD, show_ip_extcommunity_list_arg_cmd_vtysh, |
| 3289 | "show ip extcommunity-list (<1-199>|WORD)", |
| 3290 | "Show running system information\n" |
| 3291 | "IP information\n" |
| 3292 | "List extended-community list\n" |
| 3293 | "Extcommunity-list number\n" |
| 3294 | "Extcommunity-list name\n") |
| 3295 | |
| 3296 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_cmd_vtysh, |
| 3297 | "clear bgp ipv6 peer-group WORD", |
| 3298 | "Reset functions\n" |
| 3299 | "BGP information\n" |
| 3300 | "Address family\n" |
| 3301 | "Clear all members of peer-group\n" |
| 3302 | "BGP peer-group name\n") |
| 3303 | |
| 3304 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_exact_cmd_vtysh, |
| 3305 | "no access-list WORD (deny|permit) A.B.C.D/M exact-match", |
| 3306 | "Negate a command or set its defaults\n" |
| 3307 | "Add an access list entry\n" |
| 3308 | "IP zebra access-list name\n" |
| 3309 | "Specify packets to reject\n" |
| 3310 | "Specify packets to forward\n" |
| 3311 | "Prefix to match. e.g. 10.0.0.0/8\n" |
| 3312 | "Exact match of the prefixes\n") |
| 3313 | |
| 3314 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_in_cmd_vtysh, |
| 3315 | "clear ip bgp A.B.C.D soft in", |
| 3316 | "Reset functions\n" |
| 3317 | "IP information\n" |
| 3318 | "BGP information\n" |
| 3319 | "BGP neighbor address to clear\n" |
| 3320 | "Soft reconfig\n" |
| 3321 | "Soft reconfig inbound update\n") |
| 3322 | |
| 3323 | DEFSH (VTYSH_OSPFD, no_ip_ospf_cost_addr_cmd_vtysh, |
| 3324 | "no ip ospf cost A.B.C.D", |
| 3325 | "Negate a command or set its defaults\n" |
| 3326 | "IP Information\n" |
| 3327 | "OSPF interface commands\n" |
| 3328 | "Interface cost\n" |
| 3329 | "Address of interface") |
| 3330 | |
| 3331 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, rmap_onmatch_next_cmd_vtysh, |
| 3332 | "on-match next", |
| 3333 | "Exit policy on matches\n" |
| 3334 | "Next clause\n") |
| 3335 | |
| 3336 | DEFSH (VTYSH_ZEBRA, ipv6_route_cmd_vtysh, |
| 3337 | "ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE)", |
| 3338 | "IP information\n" |
| 3339 | "Establish static routes\n" |
| 3340 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 3341 | "IPv6 gateway address\n" |
| 3342 | "IPv6 gateway interface name\n") |
| 3343 | |
| 3344 | DEFSH (VTYSH_BGPD, neighbor_enforce_multihop_cmd_vtysh, |
| 3345 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "enforce-multihop", |
| 3346 | "Specify neighbor router\n" |
| 3347 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3348 | "Enforce EBGP neighbors perform multihop\n") |
| 3349 | |
| 3350 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_router_cmd_vtysh, |
| 3351 | "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>|detail)", |
| 3352 | "Show running system information\n" |
| 3353 | "IPv6 Information\n" |
| 3354 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 3355 | "Inter Area topology information\n" |
| 3356 | "Specify Router-ID\n" |
| 3357 | "Specify Router-ID\n" |
| 3358 | "Detailed information\n" |
| 3359 | ) |
| 3360 | |
| 3361 | DEFSH (VTYSH_OSPFD, debug_ospf_packet_all_cmd_vtysh, |
| 3362 | "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)", |
| 3363 | "Debugging functions (see also 'undebug')\n" |
| 3364 | "OSPF information\n" |
| 3365 | "OSPF packets\n" |
| 3366 | "OSPF Hello\n" |
| 3367 | "OSPF Database Description\n" |
| 3368 | "OSPF Link State Request\n" |
| 3369 | "OSPF Link State Update\n" |
| 3370 | "OSPF Link State Acknowledgment\n" |
| 3371 | "OSPF all packets\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3372 | |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 3373 | DEFSH (VTYSH_ZEBRA, no_ip_route_mask_distance_cmd_vtysh, |
| 3374 | "no ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0) <1-255>", |
| 3375 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3376 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 3377 | "Establish static routes\n" |
| 3378 | "IP destination prefix\n" |
| 3379 | "IP destination prefix mask\n" |
| 3380 | "IP gateway address\n" |
| 3381 | "IP gateway interface name\n" |
| 3382 | "Null interface\n" |
| 3383 | "Distance value for this route\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3384 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 3385 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_in_prefix_filter_cmd_vtysh, |
| 3386 | "clear ip bgp <1-65535> in prefix-filter", |
| 3387 | "Reset functions\n" |
| 3388 | "IP information\n" |
| 3389 | "BGP information\n" |
| 3390 | "Clear peers with the AS number\n" |
| 3391 | "Soft reconfig inbound update\n" |
| 3392 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 3393 | |
| 3394 | DEFSH (VTYSH_BGPD, no_match_aspath_cmd_vtysh, |
| 3395 | "no match as-path", |
| 3396 | "Negate a command or set its defaults\n" |
| 3397 | "Match values from routing table\n" |
| 3398 | "Match BGP AS path list\n") |
| 3399 | |
| 3400 | DEFSH (VTYSH_RIPD, no_debug_rip_events_cmd_vtysh, |
| 3401 | "no debug rip events", |
| 3402 | "Negate a command or set its defaults\n" |
| 3403 | "Debugging functions (see also 'undebug')\n" |
| 3404 | "RIP information\n" |
| 3405 | "RIP events\n") |
| 3406 | |
| 3407 | DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_cmd_vtysh, |
| 3408 | "no network A.B.C.D", |
| 3409 | "Negate a command or set its defaults\n" |
| 3410 | "Specify a network to announce via BGP\n" |
| 3411 | "Network number\n") |
| 3412 | |
| 3413 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged5_cmd_vtysh, |
| 3414 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path next-hop med", |
| 3415 | "Specify neighbor router\n" |
| 3416 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3417 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 3418 | "As-path attribute\n" |
| 3419 | "Nexthop attribute\n" |
| 3420 | "Med attribute\n") |
| 3421 | |
| 3422 | DEFSH (VTYSH_RIPD, rip_default_information_originate_cmd_vtysh, |
| 3423 | "default-information originate", |
| 3424 | "Control distribution of default route\n" |
| 3425 | "Distribute a default route\n") |
| 3426 | |
| 3427 | DEFSH (VTYSH_OSPFD, no_ospf_abr_type_cmd_vtysh, |
| 3428 | "no ospf abr-type (cisco|ibm|shortcut)", |
| 3429 | "Negate a command or set its defaults\n" |
| 3430 | "OSPF specific commands\n" |
| 3431 | "Set OSPF ABR type\n" |
| 3432 | "Alternative ABR, cisco implementation\n" |
| 3433 | "Alternative ABR, IBM implementation\n" |
| 3434 | "Shortcut ABR\n") |
| 3435 | |
| 3436 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_rmap_cmd_vtysh, |
| 3437 | "no redistribute (connected|kernel|ospf6|ripng|static) route-map WORD", |
| 3438 | "Negate a command or set its defaults\n" |
| 3439 | "Redistribute information from another routing protocol\n" |
| 3440 | "Connected\n" |
| 3441 | "Kernel routes\n" |
| 3442 | "Open Shurtest Path First (OSPFv3)\n" |
| 3443 | "Routing Information Protocol (RIPng)\n" |
| 3444 | "Static routes\n" |
| 3445 | "Route map reference\n" |
| 3446 | "Pointer to route-map entries\n") |
| 3447 | |
| 3448 | DEFSH (VTYSH_OSPFD, no_ospf_transmit_delay_cmd_vtysh, |
| 3449 | "no ospf transmit-delay", |
| 3450 | "Negate a command or set its defaults\n" |
| 3451 | "OSPF interface commands\n" |
| 3452 | "Link state transmit delay\n") |
| 3453 | |
| 3454 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, ipv6_access_list_remark_cmd_vtysh, |
| 3455 | "ipv6 access-list WORD remark .LINE", |
| 3456 | "IPv6 information\n" |
| 3457 | "Add an access list entry\n" |
| 3458 | "IPv6 zebra access-list\n" |
| 3459 | "Access list entry comment\n" |
| 3460 | "Comment up to 100 characters\n") |
| 3461 | |
| 3462 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_detail_cmd_vtysh, |
| 3463 | "show ipv6 prefix-list detail", |
| 3464 | "Show running system information\n" |
| 3465 | "IPv6 information\n" |
| 3466 | "Build a prefix list\n" |
| 3467 | "Detail of prefix lists\n") |
| 3468 | |
| 3469 | DEFSH (VTYSH_BGPD, ip_extcommunity_list_standard_cmd_vtysh, |
| 3470 | "ip extcommunity-list <1-99> (deny|permit) .AA:NN", |
| 3471 | "IP information\n" |
| 3472 | "Add a extended community list entry\n" |
| 3473 | "Extended Community list number (standard)\n" |
| 3474 | "Specify community to reject\n" |
| 3475 | "Specify community to accept\n" |
| 3476 | "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n") |
| 3477 | |
| 3478 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community3_exact_cmd_vtysh, |
| 3479 | "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", |
| 3480 | "Show running system information\n" |
| 3481 | "IPv6 information\n" |
| 3482 | "MBGP information\n" |
| 3483 | "Display routes matching the communities\n" |
| 3484 | "community number\n" |
| 3485 | "Do not send outside local AS (well-known community)\n" |
| 3486 | "Do not advertise to any peer (well-known community)\n" |
| 3487 | "Do not export to next AS (well-known community)\n" |
| 3488 | "community number\n" |
| 3489 | "Do not send outside local AS (well-known community)\n" |
| 3490 | "Do not advertise to any peer (well-known community)\n" |
| 3491 | "Do not export to next AS (well-known community)\n" |
| 3492 | "community number\n" |
| 3493 | "Do not send outside local AS (well-known community)\n" |
| 3494 | "Do not advertise to any peer (well-known community)\n" |
| 3495 | "Do not export to next AS (well-known community)\n" |
| 3496 | "Exact match of the communities") |
| 3497 | |
| 3498 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_ge_le_cmd_vtysh, |
| 3499 | "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128> le <0-128>", |
| 3500 | "Negate a command or set its defaults\n" |
| 3501 | "IPv6 information\n" |
| 3502 | "Build a prefix list\n" |
| 3503 | "Name of a prefix list\n" |
| 3504 | "Specify packets to reject\n" |
| 3505 | "Specify packets to forward\n" |
| 3506 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 3507 | "Minimum prefix length to be matched\n" |
| 3508 | "Minimum prefix length\n" |
| 3509 | "Maximum prefix length to be matched\n" |
| 3510 | "Maximum prefix length\n") |
| 3511 | |
| 3512 | DEFSH (VTYSH_OSPFD, no_ip_ospf_retransmit_interval_cmd_vtysh, |
| 3513 | "no ip ospf retransmit-interval", |
| 3514 | "Negate a command or set its defaults\n" |
| 3515 | "IP Information\n" |
| 3516 | "OSPF interface commands\n" |
| 3517 | "Time between retransmitting lost link state advertisements\n") |
| 3518 | |
| 3519 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community2_cmd_vtysh, |
| 3520 | "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)", |
| 3521 | "Show running system information\n" |
| 3522 | "IPv6 information\n" |
| 3523 | "BGP information\n" |
| 3524 | "Display routes matching the communities\n" |
| 3525 | "community number\n" |
| 3526 | "Do not send outside local AS (well-known community)\n" |
| 3527 | "Do not advertise to any peer (well-known community)\n" |
| 3528 | "Do not export to next AS (well-known community)\n" |
| 3529 | "community number\n" |
| 3530 | "Do not send outside local AS (well-known community)\n" |
| 3531 | "Do not advertise to any peer (well-known community)\n" |
| 3532 | "Do not export to next AS (well-known community)\n") |
| 3533 | |
| 3534 | DEFSH (VTYSH_BGPD, aggregate_address_mask_as_set_summary_cmd_vtysh, |
| 3535 | "aggregate-address A.B.C.D A.B.C.D as-set summary-only", |
| 3536 | "Configure BGP aggregate entries\n" |
| 3537 | "Aggregate address\n" |
| 3538 | "Aggregate mask\n" |
| 3539 | "Generate AS set path information\n" |
| 3540 | "Filter more specific routes from updates\n") |
| 3541 | |
| 3542 | DEFSH (VTYSH_BGPD, no_aggregate_address_mask_cmd_vtysh, |
| 3543 | "no aggregate-address A.B.C.D A.B.C.D", |
| 3544 | "Negate a command or set its defaults\n" |
| 3545 | "Configure BGP aggregate entries\n" |
| 3546 | "Aggregate address\n" |
| 3547 | "Aggregate mask\n") |
| 3548 | |
| 3549 | DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_longer_cmd_vtysh, |
| 3550 | "show ip bgp A.B.C.D/M longer-prefixes", |
| 3551 | "Show running system information\n" |
| 3552 | "IP information\n" |
| 3553 | "BGP information\n" |
| 3554 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 3555 | "Display route and more specific routes\n") |
| 3556 | |
| 3557 | DEFSH (VTYSH_BGPD, set_metric_cmd_vtysh, |
| 3558 | "set metric (<0-4294967295>|<+/-metric>)", |
| 3559 | "Set values in destination routing protocol\n" |
| 3560 | "Metric value for destination routing protocol\n" |
| 3561 | "Metric value\n" |
| 3562 | "Add or subtract metric\n") |
| 3563 | |
| 3564 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_cmd_vtysh, |
| 3565 | "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export)", |
| 3566 | "Show running system information\n" |
| 3567 | "IPv6 information\n" |
| 3568 | "BGP information\n" |
| 3569 | "Display routes matching the communities\n" |
| 3570 | "community number\n" |
| 3571 | "Do not send outside local AS (well-known community)\n" |
| 3572 | "Do not advertise to any peer (well-known community)\n" |
| 3573 | "Do not export to next AS (well-known community)\n") |
| 3574 | |
| 3575 | DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_routes_cmd_vtysh, |
| 3576 | "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) routes", |
| 3577 | "Show running system information\n" |
| 3578 | "IPv6 information\n" |
| 3579 | "BGP information\n" |
| 3580 | "Detailed information on TCP and BGP neighbor connections\n" |
| 3581 | "Neighbor to display information about\n" |
| 3582 | "Neighbor to display information about\n" |
| 3583 | "Display routes learned from neighbor\n") |
| 3584 | |
| 3585 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_description_arg_cmd_vtysh, |
| 3586 | "no ip prefix-list WORD description .LINE", |
| 3587 | "Negate a command or set its defaults\n" |
| 3588 | "IP information\n" |
| 3589 | "Build a prefix list\n" |
| 3590 | "Name of a prefix list\n" |
| 3591 | "Prefix-list specific description\n" |
| 3592 | "Up to 80 characters describing this prefix-list\n") |
| 3593 | |
| 3594 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbors_cmd_vtysh, |
| 3595 | "show ip bgp neighbors", |
| 3596 | "Show running system information\n" |
| 3597 | "IP information\n" |
| 3598 | "BGP information\n" |
| 3599 | "Detailed information on TCP and BGP neighbor connections\n") |
| 3600 | |
| 3601 | DEFSH (VTYSH_BGPD, neighbor_advertise_interval_cmd_vtysh, |
| 3602 | "neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval <0-600>", |
| 3603 | "Specify neighbor router\n" |
| 3604 | "Neighbor address\nIPv6 address\n" |
| 3605 | "Minimum interval between sending BGP routing updates\n" |
| 3606 | "time in seconds\n") |
| 3607 | |
| 3608 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_cmd_vtysh, |
| 3609 | "clear ip bgp external soft", |
| 3610 | "Reset functions\n" |
| 3611 | "IP information\n" |
| 3612 | "BGP information\n" |
| 3613 | "Clear all external peers\n" |
| 3614 | "Soft reconfig\n") |
| 3615 | |
| 3616 | DEFSH (VTYSH_BGPD, no_neighbor_remove_private_as_cmd_vtysh, |
| 3617 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "remove-private-AS", |
| 3618 | "Negate a command or set its defaults\n" |
| 3619 | "Specify neighbor router\n" |
| 3620 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3621 | "Remove private AS number from outbound updates\n") |
| 3622 | |
| 3623 | DEFSH (VTYSH_RIPD, no_ip_rip_send_version_cmd_vtysh, |
| 3624 | "no ip rip send version", |
| 3625 | "Negate a command or set its defaults\n" |
| 3626 | "IP information\n" |
| 3627 | "Routing Information Protocol\n" |
| 3628 | "Advertisement transmission\n" |
| 3629 | "Version control\n") |
| 3630 | |
| 3631 | DEFSH (VTYSH_BGPD, clear_bgp_external_in_prefix_filter_cmd_vtysh, |
| 3632 | "clear bgp external in prefix-filter", |
| 3633 | "Reset functions\n" |
| 3634 | "BGP information\n" |
| 3635 | "Clear all external peers\n" |
| 3636 | "Soft reconfig inbound update\n" |
| 3637 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 3638 | |
| 3639 | DEFSH (VTYSH_BGPD, show_ip_bgp_route_cmd_vtysh, |
| 3640 | "show ip bgp A.B.C.D", |
| 3641 | "Show running system information\n" |
| 3642 | "IP information\n" |
| 3643 | "BGP information\n" |
| 3644 | "Network in the BGP routing table to display\n") |
| 3645 | |
| 3646 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, clear_ipv6_prefix_list_name_cmd_vtysh, |
| 3647 | "clear ipv6 prefix-list WORD", |
| 3648 | "Reset functions\n" |
| 3649 | "IPv6 information\n" |
| 3650 | "Build a prefix list\n" |
| 3651 | "Name of a prefix list\n") |
| 3652 | |
| 3653 | DEFSH (VTYSH_BGPD, no_neighbor_timers_cmd_vtysh, |
| 3654 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "timers", |
| 3655 | "Negate a command or set its defaults\n" |
| 3656 | "Specify neighbor router\n" |
| 3657 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3658 | "BGP per neighbor timers\n") |
| 3659 | |
| 3660 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_in_cmd_vtysh, |
| 3661 | "clear ip bgp peer-group WORD soft in", |
| 3662 | "Reset functions\n" |
| 3663 | "IP information\n" |
| 3664 | "BGP information\n" |
| 3665 | "Clear all members of peer-group\n" |
| 3666 | "BGP peer-group name\n" |
| 3667 | "Soft reconfig\n" |
| 3668 | "Soft reconfig inbound update\n") |
| 3669 | |
| 3670 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_routemap_cmd_vtysh, |
| 3671 | "default-information originate always metric-type (1|2) route-map WORD", |
| 3672 | "Control distribution of default information\n" |
| 3673 | "Distribute a default route\n" |
| 3674 | "Always advertise default route\n" |
| 3675 | "OSPF metric type for default routes\n" |
| 3676 | "Set OSPF External Type 1 metrics\n" |
| 3677 | "Set OSPF External Type 2 metrics\n" |
| 3678 | "Route map reference\n" |
| 3679 | "Pointer to route-map entries\n") |
| 3680 | |
| 3681 | DEFSH (VTYSH_BGPD, ip_extcommunity_list_expanded_cmd_vtysh, |
| 3682 | "ip extcommunity-list <100-199> (deny|permit) .LINE", |
| 3683 | "IP information\n" |
| 3684 | "Add a extended community list entry\n" |
| 3685 | "Extended Community list number (expanded)\n" |
| 3686 | "Specify community to reject\n" |
| 3687 | "Specify community to accept\n" |
| 3688 | "An ordered list as a regular-expression\n") |
| 3689 | |
| 3690 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, ipv6_access_list_exact_cmd_vtysh, |
| 3691 | "ipv6 access-list WORD (deny|permit) X:X::X:X/M exact-match", |
| 3692 | "IPv6 information\n" |
| 3693 | "Add an access list entry\n" |
| 3694 | "IPv6 zebra access-list\n" |
| 3695 | "Specify packets to reject\n" |
| 3696 | "Specify packets to forward\n" |
| 3697 | "Prefix to match. e.g. 3ffe:506::/32\n" |
| 3698 | "Exact match of the prefixes\n") |
| 3699 | |
| 3700 | DEFSH (VTYSH_BGPD, show_ip_community_list_arg_cmd_vtysh, |
| 3701 | "show ip community-list (<1-199>|WORD)", |
| 3702 | "Show running system information\n" |
| 3703 | "IP information\n" |
| 3704 | "List community-list\n" |
| 3705 | "Community-list number\n" |
| 3706 | "Community-list name\n") |
| 3707 | |
| 3708 | DEFSH (VTYSH_BGPD, bgp_timers_cmd_vtysh, |
| 3709 | "timers bgp <0-65535> <0-65535>", |
| 3710 | "Adjust routing timers\n" |
| 3711 | "BGP timers\n" |
| 3712 | "Keepalive interval\n" |
| 3713 | "Holdtime\n") |
| 3714 | |
| 3715 | DEFSH (VTYSH_RIPD, rip_neighbor_cmd_vtysh, |
| 3716 | "neighbor A.B.C.D", |
| 3717 | "Specify a neighbor router\n" |
| 3718 | "Neighbor address\n") |
| 3719 | |
| 3720 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_first_match_cmd_vtysh, |
| 3721 | "show ipv6 prefix-list WORD X:X::X:X/M first-match", |
| 3722 | "Show running system information\n" |
| 3723 | "IPv6 information\n" |
| 3724 | "Build a prefix list\n" |
| 3725 | "Name of a prefix list\n" |
| 3726 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 3727 | "First matched prefix\n") |
| 3728 | |
| 3729 | DEFSH (VTYSH_BGPD, neighbor_shutdown_cmd_vtysh, |
| 3730 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "shutdown", |
| 3731 | "Specify neighbor router\n" |
| 3732 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3733 | "Administratively shut down this neighbor\n") |
| 3734 | |
| 3735 | DEFSH (VTYSH_BGPD, no_debug_bgp_fsm_cmd_vtysh, |
| 3736 | "no debug bgp fsm", |
| 3737 | "Negate a command or set its defaults\n" |
| 3738 | "Debugging functions (see also 'undebug')\n" |
| 3739 | "BGP information\n" |
| 3740 | "Finite State Machine\n") |
| 3741 | |
| 3742 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_in_cmd_vtysh, |
| 3743 | "clear bgp ipv6 <1-65535> soft in", |
| 3744 | "Reset functions\n" |
| 3745 | "BGP information\n" |
| 3746 | "Address family\n" |
| 3747 | "Clear peers with the AS number\n" |
| 3748 | "Soft reconfig\n" |
| 3749 | "Soft reconfig inbound update\n") |
| 3750 | |
| 3751 | DEFSH (VTYSH_BGPD, neighbor_weight_cmd_vtysh, |
| 3752 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "weight <0-65535>", |
| 3753 | "Specify neighbor router\n" |
| 3754 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 3755 | "Set default weight for routes from this neighbor\n" |
| 3756 | "default weight\n") |
| 3757 | |
| 3758 | DEFSH (VTYSH_BGPD, neighbor_transparent_nexthop_cmd_vtysh, |
| 3759 | "neighbor (A.B.C.D|X:X::X:X) " "transparent-nexthop", |
| 3760 | "Specify neighbor router\n" |
| 3761 | "Neighbor address\nIPv6 address\n" |
| 3762 | "Do not change nexthop even peer is EBGP peer\n") |
| 3763 | |
| 3764 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_cmd_vtysh, |
| 3765 | "clear ip bgp A.B.C.D soft", |
| 3766 | "Reset functions\n" |
| 3767 | "IP information\n" |
| 3768 | "BGP information\n" |
| 3769 | "BGP neighbor address to clear\n" |
| 3770 | "Soft reconfig\n") |
| 3771 | |
| 3772 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh, |
| 3773 | "show ip bgp vpnv4 all neighbors A.B.C.D", |
| 3774 | "Show running system information\n" |
| 3775 | "IP information\n" |
| 3776 | "BGP information\n" |
| 3777 | "Display VPNv4 NLRI specific information\n" |
| 3778 | "Display information about all VPNv4 NLRIs\n" |
| 3779 | "Detailed information on TCP and BGP neighbor connections\n" |
| 3780 | "Neighbor to display information about\n") |
| 3781 | |
| 3782 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_list_cmd_vtysh, |
| 3783 | "show ipv6 bgp community-list WORD", |
| 3784 | "Show running system information\n" |
| 3785 | "IPv6 information\n" |
| 3786 | "BGP information\n" |
| 3787 | "Display routes matching the community-list\n" |
| 3788 | "community-list name\n") |
| 3789 | |
| 3790 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_in_cmd_vtysh, |
| 3791 | "clear ip bgp A.B.C.D vpnv4 unicast soft in", |
| 3792 | "Reset functions\n" |
| 3793 | "IP information\n" |
| 3794 | "BGP information\n" |
| 3795 | "BGP neighbor address to clear\n" |
| 3796 | "Address family\n" |
| 3797 | "Address Family Modifier\n" |
| 3798 | "Soft reconfig\n" |
| 3799 | "Soft reconfig inbound update\n") |
| 3800 | |
| 3801 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_le_cmd_vtysh, |
| 3802 | "no ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32>", |
| 3803 | "Negate a command or set its defaults\n" |
| 3804 | "IP information\n" |
| 3805 | "Build a prefix list\n" |
| 3806 | "Name of a prefix list\n" |
| 3807 | "Specify packets to reject\n" |
| 3808 | "Specify packets to forward\n" |
| 3809 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 3810 | "Maximum prefix length to be matched\n" |
| 3811 | "Maximum prefix length\n") |
| 3812 | |
| 3813 | DEFSH (VTYSH_BGPD, no_bgp_bestpath_med2_cmd_vtysh, |
| 3814 | "no bgp bestpath med confed missing-as-worst", |
| 3815 | "Negate a command or set its defaults\n" |
| 3816 | "BGP specific commands\n" |
| 3817 | "Change the default bestpath selection\n" |
| 3818 | "MED attribute\n" |
| 3819 | "Compare MED among confederation paths\n" |
| 3820 | "Treat missing MED as the least preferred one\n") |
| 3821 | |
| 3822 | DEFSH (VTYSH_OSPFD, no_ospf_priority_cmd_vtysh, |
| 3823 | "no ospf priority", |
| 3824 | "Negate a command or set its defaults\n" |
| 3825 | "OSPF interface commands\n" |
| 3826 | "Router priority\n") |
| 3827 | |
| 3828 | DEFSH (VTYSH_BGPD, bgp_network_mask_natural_cmd_vtysh, |
| 3829 | "network A.B.C.D", |
| 3830 | "Specify a network to announce via BGP\n" |
| 3831 | "Network number\n") |
| 3832 | |
| 3833 | DEFSH (VTYSH_BGPD, no_synchronization_cmd_vtysh, |
| 3834 | "no synchronization", |
| 3835 | "Negate a command or set its defaults\n" |
| 3836 | "Perform IGP synchronization\n") |
| 3837 | |
| 3838 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, set_ip_nexthop_cmd_vtysh, |
| 3839 | "set ip next-hop A.B.C.D", |
| 3840 | "Set values in destination routing protocol\n" |
| 3841 | "IP information\n" |
| 3842 | "Next hop address\n" |
| 3843 | "IP address of next hop\n") |
| 3844 | |
| 3845 | DEFSH (VTYSH_RIPD, no_rip_version_val_cmd_vtysh, |
| 3846 | "no version <1-2>", |
| 3847 | "Negate a command or set its defaults\n" |
| 3848 | "Set routing protocol version\n" |
| 3849 | "version\n") |
| 3850 | |
| 3851 | DEFSH (VTYSH_BGPD, no_bgp_scan_time_cmd_vtysh, |
| 3852 | "no bgp scan-time", |
| 3853 | "Negate a command or set its defaults\n" |
| 3854 | "BGP specific commands\n" |
| 3855 | "Configure background scanner interval\n") |
| 3856 | |
| 3857 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_cmd_vtysh, |
| 3858 | "no redistribute connected metric", |
| 3859 | "Negate a command or set its defaults\n" |
| 3860 | "Redistribute information from another routing protocol\n" |
| 3861 | "Connected\n" |
| 3862 | "Metric\n") |
| 3863 | |
| 3864 | DEFSH (VTYSH_OSPF6D, debug_ospf6_all_cmd_vtysh, |
| 3865 | "debug ospf6 all", |
| 3866 | "Debugging functions (see also 'undebug')\n" |
| 3867 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 3868 | "Turn on ALL OSPFv3 debugging\n") |
| 3869 | |
| 3870 | DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_key_addr_cmd_vtysh, |
| 3871 | "no ip ospf authentication-key A.B.C.D", |
| 3872 | "Negate a command or set its defaults\n" |
| 3873 | "IP Information\n" |
| 3874 | "OSPF interface commands\n" |
| 3875 | "Authentication password (key)\n" |
| 3876 | "Address of interface") |
| 3877 | |
| 3878 | DEFSH (VTYSH_RIPNGD, no_ripng_route_cmd_vtysh, |
| 3879 | "no route IPV6ADDR", |
| 3880 | "Negate a command or set its defaults\n" |
| 3881 | "Static route setup\n" |
| 3882 | "Delete static RIPng route announcement\n") |
| 3883 | |
| 3884 | DEFSH (VTYSH_OSPFD, no_area_range_substitute_cmd_vtysh, |
| 3885 | "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M", |
| 3886 | "Negate a command or set its defaults\n" |
| 3887 | "OSPF area parameters\n" |
| 3888 | "OSPF area ID in IP address format\n" |
| 3889 | "OSPF area ID as a decimal value\n" |
| 3890 | "Summarize routes matching address/mask (border routers only)\n" |
| 3891 | "Area range prefix\n" |
| 3892 | "Announce area range as another prefix\n" |
| 3893 | "Network prefix to be announced instead of range\n") |
| 3894 | |
| 3895 | DEFSH (VTYSH_OSPFD, debug_ospf_nsm_sub_cmd_vtysh, |
| 3896 | "debug ospf nsm (status|events|timers)", |
| 3897 | "Debugging functions (see also 'undebug')\n" |
| 3898 | "OSPF information\n" |
| 3899 | "OSPF Neighbor State Machine\n" |
| 3900 | "NSM Status Information\n" |
| 3901 | "NSM Event Information\n" |
| 3902 | "NSM Timer Information\n") |
| 3903 | |
| 3904 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_out_cmd_vtysh, |
| 3905 | "clear ip bgp <1-65535> vpnv4 unicast soft out", |
| 3906 | "Reset functions\n" |
| 3907 | "IP information\n" |
| 3908 | "BGP information\n" |
| 3909 | "Clear peers with the AS number\n" |
| 3910 | "Address family\n" |
| 3911 | "Address Family modifier\n" |
| 3912 | "Soft reconfig\n" |
| 3913 | "Soft reconfig outbound update\n") |
| 3914 | |
| 3915 | DEFSH (VTYSH_BGPD, no_debug_bgp_all_cmd_vtysh, |
| 3916 | "no debug all bgp", |
| 3917 | "Negate a command or set its defaults\n" |
| 3918 | "Debugging functions (see also 'undebug')\n" |
| 3919 | "Enable all debugging\n" |
| 3920 | "BGP information\n") |
| 3921 | |
| 3922 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_out_cmd_vtysh, |
| 3923 | "clear ip bgp * vpnv4 unicast soft out", |
| 3924 | "Reset functions\n" |
| 3925 | "IP information\n" |
| 3926 | "BGP information\n" |
| 3927 | "Clear all peers\n" |
| 3928 | "Address family\n" |
| 3929 | "Address Family Modifier\n" |
| 3930 | "Soft reconfig\n" |
| 3931 | "Soft reconfig outbound update\n") |
| 3932 | |
| 3933 | DEFSH (VTYSH_BGPD, no_bgp_distance_cmd_vtysh, |
| 3934 | "no distance bgp <1-255> <1-255> <1-255>", |
| 3935 | "Negate a command or set its defaults\n" |
| 3936 | "Define an administrative distance\n" |
| 3937 | "BGP distance\n" |
| 3938 | "Distance for routes external to the AS\n" |
| 3939 | "Distance for routes internal to the AS\n" |
| 3940 | "Distance for local routes\n") |
| 3941 | |
| 3942 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_out_cmd_vtysh, |
| 3943 | "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft out", |
| 3944 | "Reset functions\n" |
| 3945 | "IP information\n" |
| 3946 | "BGP information\n" |
| 3947 | "Clear all members of peer-group\n" |
| 3948 | "BGP peer-group name\n" |
| 3949 | "Address family\n" |
| 3950 | "Address Family modifier\n" |
| 3951 | "Address Family modifier\n" |
| 3952 | "Soft reconfig\n" |
| 3953 | "Soft reconfig outbound update\n") |
| 3954 | |
| 3955 | DEFSH (VTYSH_RIPD, no_rip_timers_cmd_vtysh, |
| 3956 | "no timers basic", |
| 3957 | "Negate a command or set its defaults\n" |
| 3958 | "Adjust routing timers\n" |
| 3959 | "Basic routing protocol update timers\n") |
| 3960 | |
| 3961 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_passive_cmd_vtysh, |
| 3962 | "ipv6 ospf6 passive", |
| 3963 | "IPv6 Information\n" |
| 3964 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 3965 | "passive interface: No Adjacency will be formed on this I/F\n" |
| 3966 | ) |
| 3967 | |
| 3968 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_external_intra_cmd_vtysh, |
| 3969 | "distance ospf inter-area <1-255> external <1-255> intra-area <1-255>", |
| 3970 | "Define an administrative distance\n" |
| 3971 | "OSPF Administrative distance\n" |
| 3972 | "Inter-area routes\n" |
| 3973 | "Distance for inter-area routes\n" |
| 3974 | "External routes\n" |
| 3975 | "Distance for external routes\n" |
| 3976 | "Intra-area routes\n" |
| 3977 | "Distance for intra-area routes\n") |
| 3978 | |
| 3979 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_metric_routemap_cmd_vtysh, |
| 3980 | "default-information originate always metric-type (1|2) metric <0-16777214> route-map WORD", |
| 3981 | "Control distribution of default information\n" |
| 3982 | "Distribute a default route\n" |
| 3983 | "Always advertise default route\n" |
| 3984 | "OSPF metric type for default routes\n" |
| 3985 | "Set OSPF External Type 1 metrics\n" |
| 3986 | "Set OSPF External Type 2 metrics\n" |
| 3987 | "OSPF default metric\n" |
| 3988 | "OSPF metric\n" |
| 3989 | "Route map reference\n" |
| 3990 | "Pointer to route-map entries\n") |
| 3991 | |
| 3992 | DEFSH (VTYSH_RIPNGD, no_debug_ripng_events_cmd_vtysh, |
| 3993 | "no debug ripng events", |
| 3994 | "Negate a command or set its defaults\n" |
| 3995 | "Debugging functions (see also 'undebug')\n" |
| 3996 | "RIPng configuration\n" |
| 3997 | "Debug option set for ripng events\n") |
| 3998 | |
| 3999 | DEFSH (VTYSH_RIPD, accept_lifetime_duration_month_day_cmd_vtysh, |
| 4000 | "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> duration <1-2147483646>", |
| 4001 | "Set accept lifetime of the key\n" |
| 4002 | "Time to start\n" |
| 4003 | "Month of the year to start\n" |
| 4004 | "Day of th month to start\n" |
| 4005 | "Year to start\n" |
| 4006 | "Duration of the key\n" |
| 4007 | "Duration seconds\n") |
| 4008 | |
| 4009 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_metric_routemap_cmd_vtysh, |
| 4010 | "redistribute ospf6 metric <0-16> route-map WORD", |
| 4011 | "Redistribute information from another routing protocol\n" |
| 4012 | "IPv6 Open Shortest Path First (OSPFv3)\n" |
| 4013 | "Metric\n" |
| 4014 | "Metric value\n" |
| 4015 | "Route map reference\n" |
| 4016 | "Pointer to route-map entries\n") |
| 4017 | |
| 4018 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_match_metric_cmd_vtysh, |
| 4019 | "no match metric", |
| 4020 | "Negate a command or set its defaults\n" |
| 4021 | "Match values from routing table\n" |
| 4022 | "Match metric of route\n") |
| 4023 | |
| 4024 | DEFSH (VTYSH_RIPD, match_ip_next_hop_cmd_vtysh, |
| 4025 | "match ip next-hop WORD", |
| 4026 | "Match values from routing table\n" |
| 4027 | "IP information\n" |
| 4028 | "Match next-hop address of route\n" |
| 4029 | "IP access-list name\n") |
| 4030 | |
| 4031 | DEFSH (VTYSH_ZEBRA, ip_irdp_cmd_vtysh, |
| 4032 | "ip irdp", |
| 4033 | "IP information\n" |
| 4034 | "ICMP Router discovery on this interface\n") |
| 4035 | |
| 4036 | DEFSH (VTYSH_BGPD, aggregate_address_summary_only_cmd_vtysh, |
| 4037 | "aggregate-address A.B.C.D/M summary-only", |
| 4038 | "Configure BGP aggregate entries\n" |
| 4039 | "Aggregate prefix\n" |
| 4040 | "Filter more specific routes from updates\n") |
| 4041 | |
| 4042 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_in_prefix_filter_cmd_vtysh, |
| 4043 | "clear bgp ipv6 <1-65535> in prefix-filter", |
| 4044 | "Reset functions\n" |
| 4045 | "BGP information\n" |
| 4046 | "Address family\n" |
| 4047 | "Clear peers with the AS number\n" |
| 4048 | "Soft reconfig inbound update\n" |
| 4049 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 4050 | |
| 4051 | DEFSH (VTYSH_BGPD, no_bgp_network_route_map_cmd_vtysh, |
| 4052 | "no network A.B.C.D/M route-map WORD", |
| 4053 | "Negate a command or set its defaults\n" |
| 4054 | "Specify a network to announce via BGP\n" |
| 4055 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 4056 | "Route-map to modify the attributes\n" |
| 4057 | "Name of the route map\n") |
| 4058 | |
| 4059 | DEFSH (VTYSH_BGPD, show_ip_bgp_instance_neighbors_peer_cmd_vtysh, |
| 4060 | "show ip bgp view WORD neighbors (A.B.C.D|X:X::X:X)", |
| 4061 | "Show running system information\n" |
| 4062 | "IP information\n" |
| 4063 | "BGP information\n" |
| 4064 | "BGP view\n" |
| 4065 | "View name\n" |
| 4066 | "Detailed information on TCP and BGP neighbor connections\n" |
| 4067 | "Neighbor to display information about\n" |
| 4068 | "Neighbor to display information about\n") |
| 4069 | |
| 4070 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_cmd_vtysh, |
| 4071 | "no redistribute connected", |
| 4072 | "Negate a command or set its defaults\n" |
| 4073 | "Redistribute information from another routing protocol\n" |
| 4074 | "Connected\n") |
| 4075 | |
| 4076 | DEFSH (VTYSH_BGPD, aggregate_address_summary_as_set_cmd_vtysh, |
| 4077 | "aggregate-address A.B.C.D/M summary-only as-set", |
| 4078 | "Configure BGP aggregate entries\n" |
| 4079 | "Aggregate prefix\n" |
| 4080 | "Filter more specific routes from updates\n" |
| 4081 | "Generate AS set path information\n") |
| 4082 | |
| 4083 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_in_cmd_vtysh, |
| 4084 | "clear ip bgp external in", |
| 4085 | "Reset functions\n" |
| 4086 | "IP information\n" |
| 4087 | "BGP information\n" |
| 4088 | "Clear all external peers\n" |
| 4089 | "Soft reconfig inbound update\n") |
| 4090 | |
| 4091 | DEFSH (VTYSH_RIPD, no_debug_rip_packet_direct_cmd_vtysh, |
| 4092 | "no debug rip packet (recv|send)", |
| 4093 | "Negate a command or set its defaults\n" |
| 4094 | "Debugging functions (see also 'undebug')\n" |
| 4095 | "RIP information\n" |
| 4096 | "RIP packet\n" |
| 4097 | "RIP option set for receive packet\n" |
| 4098 | "RIP option set for send packet\n") |
| 4099 | |
| 4100 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community2_exact_cmd_vtysh, |
| 4101 | "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 4102 | "Show running system information\n" |
| 4103 | "BGP information\n" |
| 4104 | "Address family\n" |
| 4105 | "Display routes matching the communities\n" |
| 4106 | "community number\n" |
| 4107 | "Do not send outside local AS (well-known community)\n" |
| 4108 | "Do not advertise to any peer (well-known community)\n" |
| 4109 | "Do not export to next AS (well-known community)\n" |
| 4110 | "community number\n" |
| 4111 | "Do not send outside local AS (well-known community)\n" |
| 4112 | "Do not advertise to any peer (well-known community)\n" |
| 4113 | "Do not export to next AS (well-known community)\n" |
| 4114 | "Exact match of the communities") |
| 4115 | |
| 4116 | DEFSH (VTYSH_BGPD, no_neighbor_nexthop_self_cmd_vtysh, |
| 4117 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "next-hop-self", |
| 4118 | "Negate a command or set its defaults\n" |
| 4119 | "Specify neighbor router\n" |
| 4120 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 4121 | "Disable the next hop calculation for this neighbor\n") |
| 4122 | |
| 4123 | DEFSH (VTYSH_OSPFD, area_range_not_advertise_cmd_vtysh, |
| 4124 | "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M not-advertise", |
| 4125 | "OSPF area parameters\n" |
| 4126 | "OSPF area ID in IP address format\n" |
| 4127 | "OSPF area ID as a decimal value\n" |
| 4128 | "Summarize routes matching address/mask (border routers only)\n" |
| 4129 | "Area range prefix\n" |
| 4130 | "DoNotAdvertise this range\n") |
| 4131 | |
| 4132 | DEFSH (VTYSH_RIPD, no_ip_rip_authentication_mode_type_cmd_vtysh, |
| 4133 | "no ip rip authentication mode (md5|text)", |
| 4134 | "Negate a command or set its defaults\n" |
| 4135 | "IP information\n" |
| 4136 | "Routing Information Protocol\n" |
| 4137 | "Authentication control\n" |
| 4138 | "Authentication mode\n" |
| 4139 | "Keyed message digest\n" |
| 4140 | "Clear text authentication\n") |
| 4141 | |
| 4142 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_summary_cmd_vtysh, |
| 4143 | "show ipv6 prefix-list summary", |
| 4144 | "Show running system information\n" |
| 4145 | "IPv6 information\n" |
| 4146 | "Build a prefix list\n" |
| 4147 | "Summary of prefix lists\n") |
| 4148 | |
| 4149 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_any_cmd_vtysh, |
| 4150 | "no access-list WORD (deny|permit) any", |
| 4151 | "Negate a command or set its defaults\n" |
| 4152 | "Add an access list entry\n" |
| 4153 | "IP zebra access-list name\n" |
| 4154 | "Specify packets to reject\n" |
| 4155 | "Specify packets to forward\n" |
| 4156 | "Prefix to match. e.g. 10.0.0.0/8\n") |
| 4157 | |
| 4158 | DEFSH (VTYSH_BGPD, bgp_bestpath_med3_cmd_vtysh, |
| 4159 | "bgp bestpath med missing-as-worst confed", |
| 4160 | "BGP specific commands\n" |
| 4161 | "Change the default bestpath selection\n" |
| 4162 | "MED attribute\n" |
| 4163 | "Treat missing MED as the least preferred one\n" |
| 4164 | "Compare MED among confederation paths\n") |
| 4165 | |
| 4166 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community4_cmd_vtysh, |
| 4167 | "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)", |
| 4168 | "Show running system information\n" |
| 4169 | "BGP information\n" |
| 4170 | "Address family\n" |
| 4171 | "Display routes matching the communities\n" |
| 4172 | "community number\n" |
| 4173 | "Do not send outside local AS (well-known community)\n" |
| 4174 | "Do not advertise to any peer (well-known community)\n" |
| 4175 | "Do not export to next AS (well-known community)\n" |
| 4176 | "community number\n" |
| 4177 | "Do not send outside local AS (well-known community)\n" |
| 4178 | "Do not advertise to any peer (well-known community)\n" |
| 4179 | "Do not export to next AS (well-known community)\n" |
| 4180 | "community number\n" |
| 4181 | "Do not send outside local AS (well-known community)\n" |
| 4182 | "Do not advertise to any peer (well-known community)\n" |
| 4183 | "Do not export to next AS (well-known community)\n" |
| 4184 | "community number\n" |
| 4185 | "Do not send outside local AS (well-known community)\n" |
| 4186 | "Do not advertise to any peer (well-known community)\n" |
| 4187 | "Do not export to next AS (well-known community)\n") |
| 4188 | |
| 4189 | DEFSH (VTYSH_OSPFD, ip_ospf_retransmit_interval_addr_cmd_vtysh, |
| 4190 | "ip ospf retransmit-interval <3-65535> A.B.C.D", |
| 4191 | "IP Information\n" |
| 4192 | "OSPF interface commands\n" |
| 4193 | "Time between retransmitting lost link state advertisements\n" |
| 4194 | "Seconds\n" |
| 4195 | "Address of interface") |
| 4196 | |
| 4197 | DEFSH (VTYSH_RIPD, match_ip_address_cmd_vtysh, |
| 4198 | "match ip address WORD", |
| 4199 | "Match values from routing table\n" |
| 4200 | "IP information\n" |
| 4201 | "Match address of route\n" |
| 4202 | "IP access-list name\n") |
| 4203 | |
| 4204 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_deadinterval_cmd_vtysh, |
| 4205 | "ipv6 ospf6 dead-interval ROUTER_DEAD_INTERVAL", |
| 4206 | "IPv6 Information\n" |
| 4207 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 4208 | "Interval after which a neighbor is declared dead\n" |
| 4209 | "<1-65535> Seconds\n" |
| 4210 | ) |
| 4211 | |
| 4212 | DEFSH (VTYSH_OSPFD, debug_ospf_zebra_sub_cmd_vtysh, |
| 4213 | "debug ospf zebra (interface|redistribute)", |
| 4214 | "Debugging functions (see also 'undebug')\n" |
| 4215 | "OSPF information\n" |
| 4216 | "OSPF Zebra information\n" |
| 4217 | "Zebra interface\n" |
| 4218 | "Zebra redistribute\n") |
| 4219 | |
| 4220 | DEFSH (VTYSH_BGPD, match_aspath_cmd_vtysh, |
| 4221 | "match as-path WORD", |
| 4222 | "Match values from routing table\n" |
| 4223 | "Match BGP AS path list\n" |
| 4224 | "AS path access-list name\n") |
| 4225 | |
| 4226 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_cidr_only_cmd_vtysh, |
| 4227 | "show ip bgp flap-statistics cidr-only", |
| 4228 | "Show running system information\n" |
| 4229 | "IP information\n" |
| 4230 | "BGP information\n" |
| 4231 | "Display flap statistics of routes\n" |
| 4232 | "Display only routes with non-natural netmasks\n") |
| 4233 | |
| 4234 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_description_arg_cmd_vtysh, |
| 4235 | "no ipv6 prefix-list WORD description .LINE", |
| 4236 | "Negate a command or set its defaults\n" |
| 4237 | "IPv6 information\n" |
| 4238 | "Build a prefix list\n" |
| 4239 | "Name of a prefix list\n" |
| 4240 | "Prefix-list specific description\n" |
| 4241 | "Up to 80 characters describing this prefix-list\n") |
| 4242 | |
| 4243 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_in_prefix_filter_cmd_vtysh, |
| 4244 | "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in prefix-filter", |
| 4245 | "Reset functions\n" |
| 4246 | "IP information\n" |
| 4247 | "BGP information\n" |
| 4248 | "Clear all members of peer-group\n" |
| 4249 | "BGP peer-group name\n" |
| 4250 | "Address family\n" |
| 4251 | "Address Family modifier\n" |
| 4252 | "Address Family modifier\n" |
| 4253 | "Soft reconfig inbound update\n" |
| 4254 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 4255 | |
| 4256 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_cmd_vtysh, |
| 4257 | "clear ip bgp * soft", |
| 4258 | "Reset functions\n" |
| 4259 | "IP information\n" |
| 4260 | "BGP information\n" |
| 4261 | "Clear all peers\n" |
| 4262 | "Soft reconfig\n") |
| 4263 | |
| 4264 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_metric_routemap_cmd_vtysh, |
| 4265 | "redistribute static metric <0-16> route-map WORD", |
| 4266 | "Redistribute information from another routing protocol\n" |
| 4267 | "Static routes\n" |
| 4268 | "Metric\n" |
| 4269 | "Metric value\n" |
| 4270 | "Route map reference\n" |
| 4271 | "Pointer to route-map entries\n") |
| 4272 | |
| 4273 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_rmap_metric_cmd_vtysh, |
| 4274 | "redistribute (connected|kernel|ospf6|ripng|static) route-map WORD metric <0-4294967295>", |
| 4275 | "Redistribute information from another routing protocol\n" |
| 4276 | "Connected\n" |
| 4277 | "Kernel routes\n" |
| 4278 | "Open Shurtest Path First (OSPFv3)\n" |
| 4279 | "Routing Information Protocol (RIPng)\n" |
| 4280 | "Static routes\n" |
| 4281 | "Route map reference\n" |
| 4282 | "Pointer to route-map entries\n" |
| 4283 | "Metric for redistributed routes\n" |
| 4284 | "Default metric\n") |
| 4285 | |
| 4286 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_route_map_cmd_vtysh, |
| 4287 | "show bgp ipv6 route-map WORD", |
| 4288 | "Show running system information\n" |
| 4289 | "BGP information\n" |
| 4290 | "Address family\n" |
| 4291 | "Display routes matching the route-map\n" |
| 4292 | "A route-map to match on\n") |
| 4293 | |
| 4294 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_prefix_list_cmd_vtysh, |
| 4295 | "no match ip next-hop prefix-list", |
| 4296 | "Negate a command or set its defaults\n" |
| 4297 | "Match values from routing table\n" |
| 4298 | "IP information\n" |
| 4299 | "Match next-hop address of route\n" |
| 4300 | "Match entries of prefix-lists\n") |
| 4301 | |
| 4302 | DEFSH (VTYSH_BGPD, no_neighbor_set_peer_group_cmd_vtysh, |
| 4303 | "no neighbor (A.B.C.D|X:X::X:X) " "peer-group WORD", |
| 4304 | "Negate a command or set its defaults\n" |
| 4305 | "Specify neighbor router\n" |
| 4306 | "Neighbor address\nIPv6 address\n" |
| 4307 | "Member of the peer-group\n" |
| 4308 | "peer-group name\n") |
| 4309 | |
| 4310 | DEFSH (VTYSH_BGPD, show_bgp_neighbor_routes_cmd_vtysh, |
| 4311 | "show bgp neighbors (A.B.C.D|X:X::X:X) routes", |
| 4312 | "Show running system information\n" |
| 4313 | "BGP information\n" |
| 4314 | "Detailed information on TCP and BGP neighbor connections\n" |
| 4315 | "Neighbor to display information about\n" |
| 4316 | "Neighbor to display information about\n" |
| 4317 | "Display routes learned from neighbor\n") |
| 4318 | |
| 4319 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_prefix_cmd_vtysh, |
| 4320 | "show ipv6 ospf6 route (X::X|detail)", |
| 4321 | "Show running system information\n" |
| 4322 | "IPv6 Information\n" |
| 4323 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 4324 | "Routing table\n" |
| 4325 | "match IPv6 prefix\n" |
| 4326 | ) |
| 4327 | |
| 4328 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_cmd_vtysh, |
| 4329 | "redistribute bgp", |
| 4330 | "Redistribute information from another routing protocol\n" |
| 4331 | "Border Gateway Protocol (BGP)\n") |
| 4332 | |
| 4333 | DEFSH (VTYSH_ZEBRA, ip_irdp_multicast_cmd_vtysh, |
| 4334 | "ip irdp multicast", |
| 4335 | "IP information\n" |
| 4336 | "ICMP Router discovery on this interface\n" |
| 4337 | "Send IRDP advertisement to the multicast address\n") |
| 4338 | |
| 4339 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_host_mask_cmd_vtysh, |
| 4340 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D A.B.C.D A.B.C.D", |
| 4341 | "Add an access list entry\n" |
| 4342 | "IP extended access list\n" |
| 4343 | "IP extended access list (expanded range)\n" |
| 4344 | "Specify packets to reject\n" |
| 4345 | "Specify packets to forward\n" |
| 4346 | "Any Internet Protocol\n" |
| 4347 | "A single source host\n" |
| 4348 | "Source address\n" |
| 4349 | "Destination address\n" |
| 4350 | "Destination Wildcard bits\n") |
| 4351 | |
| 4352 | DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_authkey_cmd_vtysh, |
| 4353 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 4354 | "(authentication|) " |
| 4355 | "(authentication-key|)", |
| 4356 | "Negate a command or set its defaults\n" |
| 4357 | "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" |
| 4358 | "Enable authentication on this virtual link\n" "dummy string \n" |
| 4359 | "Authentication password (key)\n" "The OSPF password (key)") |
| 4360 | |
| 4361 | DEFSH (VTYSH_BGPD, debug_bgp_events_cmd_vtysh, |
| 4362 | "debug bgp events", |
| 4363 | "Debugging functions (see also 'undebug')\n" |
| 4364 | "BGP information\n" |
| 4365 | "BGP events\n") |
| 4366 | |
| 4367 | DEFSH (VTYSH_OSPFD, no_area_vlink_param1_cmd_vtysh, |
| 4368 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 4369 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval)", |
| 4370 | "Negate a command or set its defaults\n" |
| 4371 | "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" |
| 4372 | "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") |
| 4373 | |
| 4374 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_ge_cmd_vtysh, |
| 4375 | "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32>", |
| 4376 | "Negate a command or set its defaults\n" |
| 4377 | "IP information\n" |
| 4378 | "Build a prefix list\n" |
| 4379 | "Name of a prefix list\n" |
| 4380 | "sequence number of an entry\n" |
| 4381 | "Sequence number\n" |
| 4382 | "Specify packets to reject\n" |
| 4383 | "Specify packets to forward\n" |
| 4384 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 4385 | "Minimum prefix length to be matched\n" |
| 4386 | "Minimum prefix length\n") |
| 4387 | |
| 4388 | DEFSH (VTYSH_RIPNGD, debug_ripng_packet_cmd_vtysh, |
| 4389 | "debug ripng packet", |
| 4390 | "Debugging functions (see also 'undebug')\n" |
| 4391 | "RIPng configuration\n" |
| 4392 | "Debug option set for ripng packet\n") |
| 4393 | |
| 4394 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_out_cmd_vtysh, |
| 4395 | "clear ip bgp <1-65535> out", |
| 4396 | "Reset functions\n" |
| 4397 | "IP information\n" |
| 4398 | "BGP information\n" |
| 4399 | "Clear peers with the AS number\n" |
| 4400 | "Soft reconfig outbound update\n") |
| 4401 | |
| 4402 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_cmd_vtysh, |
| 4403 | "no redistribute static metric", |
| 4404 | "Negate a command or set its defaults\n" |
| 4405 | "Redistribute information from another routing protocol\n" |
| 4406 | "Static routes\n" |
| 4407 | "Metric\n") |
| 4408 | |
| 4409 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_routemap_cmd_vtysh, |
| 4410 | "redistribute (kernel|connected|static|rip|bgp) route-map WORD", |
| 4411 | "Redistribute information from another routing protocol\n" |
| 4412 | "Kernel routes\n" |
| 4413 | "Connected\n" |
| 4414 | "Static routes\n" |
| 4415 | "Routing Information Protocol (RIP)\n" |
| 4416 | "Border Gateway Protocol (BGP)\n" |
| 4417 | "Route map reference\n" |
| 4418 | "Pointer to route-map entries\n") |
| 4419 | |
| 4420 | DEFSH (VTYSH_BGPD, show_bgp_community2_exact_cmd_vtysh, |
| 4421 | "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 4422 | "Show running system information\n" |
| 4423 | "BGP information\n" |
| 4424 | "Display routes matching the communities\n" |
| 4425 | "community number\n" |
| 4426 | "Do not send outside local AS (well-known community)\n" |
| 4427 | "Do not advertise to any peer (well-known community)\n" |
| 4428 | "Do not export to next AS (well-known community)\n" |
| 4429 | "community number\n" |
| 4430 | "Do not send outside local AS (well-known community)\n" |
| 4431 | "Do not advertise to any peer (well-known community)\n" |
| 4432 | "Do not export to next AS (well-known community)\n" |
| 4433 | "Exact match of the communities") |
| 4434 | |
| 4435 | DEFSH (VTYSH_BGPD, clear_bgp_external_soft_cmd_vtysh, |
| 4436 | "clear bgp external soft", |
| 4437 | "Reset functions\n" |
| 4438 | "BGP information\n" |
| 4439 | "Clear all external peers\n" |
| 4440 | "Soft reconfig\n") |
| 4441 | |
| 4442 | DEFSH (VTYSH_BGPD, no_ipv6_aggregate_address_cmd_vtysh, |
| 4443 | "no aggregate-address X:X::X:X/M", |
| 4444 | "Negate a command or set its defaults\n" |
| 4445 | "Configure BGP aggregate entries\n" |
| 4446 | "Aggregate prefix\n") |
| 4447 | |
| 4448 | DEFSH (VTYSH_BGPD, clear_bgp_all_in_prefix_filter_cmd_vtysh, |
| 4449 | "clear bgp * in prefix-filter", |
| 4450 | "Reset functions\n" |
| 4451 | "BGP information\n" |
| 4452 | "Clear all peers\n" |
| 4453 | "Soft reconfig inbound update\n" |
| 4454 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 4455 | |
| 4456 | DEFSH (VTYSH_BGPD, no_neighbor_timers_connect_val_cmd_vtysh, |
| 4457 | "no neighbor (A.B.C.D|X:X::X:X) " "timers connect <0-65535>", |
| 4458 | "Negate a command or set its defaults\n" |
| 4459 | "Specify neighbor router\n" |
| 4460 | "Neighbor address\nIPv6 address\n" |
| 4461 | "BGP per neighbor timers\n" |
| 4462 | "BGP connect timer\n" |
| 4463 | "Connect timer\n") |
| 4464 | |
| 4465 | DEFSH (VTYSH_OSPFD, no_auto_cost_reference_bandwidth_cmd_vtysh, |
| 4466 | "no auto-cost reference-bandwidth", |
| 4467 | "Negate a command or set its defaults\n" |
| 4468 | "Calculate OSPF interface cost according to bandwidth\n" |
| 4469 | "Use reference bandwidth method to assign OSPF cost\n") |
| 4470 | |
| 4471 | DEFSH (VTYSH_BGPD, show_ip_bgp_cmd_vtysh, |
| 4472 | "show ip bgp", |
| 4473 | "Show running system information\n" |
| 4474 | "IP information\n" |
| 4475 | "BGP information\n") |
| 4476 | |
| 4477 | DEFSH (VTYSH_OSPFD, ip_ospf_message_digest_key_addr_cmd_vtysh, |
| 4478 | "ip ospf message-digest-key <1-255> md5 KEY A.B.C.D", |
| 4479 | "IP Information\n" |
| 4480 | "OSPF interface commands\n" |
| 4481 | "Message digest authentication password (key)\n" |
| 4482 | "Key ID\n" |
| 4483 | "Use MD5 algorithm\n" |
| 4484 | "The OSPF password (key)" |
| 4485 | "Address of interface") |
| 4486 | |
| 4487 | DEFSH (VTYSH_BGPD, show_debugging_bgp_cmd_vtysh, |
| 4488 | "show debugging bgp", |
| 4489 | "Show running system information\n" |
| 4490 | "Debugging functions (see also 'undebug')\n" |
| 4491 | "BGP information\n") |
| 4492 | |
| 4493 | DEFSH (VTYSH_OSPFD|VTYSH_OSPF6D, ospf6_routemap_set_metric_type_cmd_vtysh, |
| 4494 | "set metric-type (type-1|type-2)", |
| 4495 | "Set value\n" |
| 4496 | "Type of metric\n" |
| 4497 | "OSPF6 external type 1 metric\n" |
| 4498 | "OSPF6 external type 2 metric\n") |
| 4499 | |
| 4500 | DEFSH (VTYSH_BGPD, aggregate_address_mask_summary_only_cmd_vtysh, |
| 4501 | "aggregate-address A.B.C.D A.B.C.D summary-only", |
| 4502 | "Configure BGP aggregate entries\n" |
| 4503 | "Aggregate address\n" |
| 4504 | "Aggregate mask\n" |
| 4505 | "Filter more specific routes from updates\n") |
| 4506 | |
| 4507 | DEFSH (VTYSH_BGPD, no_neighbor_passive_cmd_vtysh, |
| 4508 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "passive", |
| 4509 | "Negate a command or set its defaults\n" |
| 4510 | "Specify neighbor router\n" |
| 4511 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 4512 | "Don't send open messages to this neighbor\n") |
| 4513 | |
| 4514 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_cmd_vtysh, |
| 4515 | "access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D A.B.C.D", |
| 4516 | "Add an access list entry\n" |
| 4517 | "IP standard access list\n" |
| 4518 | "IP standard access list (expanded range)\n" |
| 4519 | "Specify packets to reject\n" |
| 4520 | "Specify packets to forward\n" |
| 4521 | "Address to match\n" |
| 4522 | "Wildcard bits\n") |
| 4523 | |
| 4524 | DEFSH (VTYSH_ZEBRA, no_zebra_interface_cmd_vtysh, |
| 4525 | "no interface IFNAME", |
| 4526 | "Delete a pseudo interface's configuration\n" |
| 4527 | "Interface's name\n") |
| 4528 | |
| 4529 | DEFSH (VTYSH_RIPD, debug_rip_zebra_cmd_vtysh, |
| 4530 | "debug rip zebra", |
| 4531 | "Debugging functions (see also 'undebug')\n" |
| 4532 | "RIP information\n" |
| 4533 | "RIP and ZEBRA communication\n") |
| 4534 | |
| 4535 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_mask_any_cmd_vtysh, |
| 4536 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D any", |
| 4537 | "Negate a command or set its defaults\n" |
| 4538 | "Add an access list entry\n" |
| 4539 | "IP extended access list\n" |
| 4540 | "IP extended access list (expanded range)\n" |
| 4541 | "Specify packets to reject\n" |
| 4542 | "Specify packets to forward\n" |
| 4543 | "Any Internet Protocol\n" |
| 4544 | "Source address\n" |
| 4545 | "Source wildcard bits\n" |
| 4546 | "Any destination host\n") |
| 4547 | |
| 4548 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_paths_cmd_vtysh, |
| 4549 | "show ip bgp ipv4 (unicast|multicast) paths", |
| 4550 | "Show running system information\n" |
| 4551 | "IP information\n" |
| 4552 | "BGP information\n" |
| 4553 | "Address family\n" |
| 4554 | "Address Family modifier\n" |
| 4555 | "Address Family modifier\n" |
| 4556 | "Path information\n") |
| 4557 | |
| 4558 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_metric_routemap_cmd_vtysh, |
| 4559 | "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214> route-map WORD", |
| 4560 | "Redistribute information from another routing protocol\n" |
| 4561 | "Kernel routes\n" |
| 4562 | "Connected\n" |
| 4563 | "Static routes\n" |
| 4564 | "Routing Information Protocol (RIP)\n" |
| 4565 | "Border Gateway Protocol (BGP)\n" |
| 4566 | "OSPF exterior metric type for redistributed routes\n" |
| 4567 | "Set OSPF External Type 1 metrics\n" |
| 4568 | "Set OSPF External Type 2 metrics\n" |
| 4569 | "Metric for redistributed routes\n" |
| 4570 | "OSPF default metric\n" |
| 4571 | "Route map reference\n" |
| 4572 | "Pointer to route-map entries\n") |
| 4573 | |
| 4574 | DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_out_cmd_vtysh, |
| 4575 | "clear bgp peer-group WORD soft out", |
| 4576 | "Reset functions\n" |
| 4577 | "BGP information\n" |
| 4578 | "Clear all members of peer-group\n" |
| 4579 | "BGP peer-group name\n" |
| 4580 | "Soft reconfig\n" |
| 4581 | "Soft reconfig outbound update\n") |
| 4582 | |
| 4583 | DEFSH (VTYSH_OSPFD, no_area_filter_list_cmd_vtysh, |
| 4584 | "no area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)", |
| 4585 | "Negate a command or set its defaults\n" |
| 4586 | "OSPF area parameters\n" |
| 4587 | "OSPF area ID in IP address format\n" |
| 4588 | "OSPF area ID as a decimal value\n" |
| 4589 | "Filter networks between OSPF areas\n" |
| 4590 | "Filter prefixes between OSPF areas\n" |
| 4591 | "Name of an IP prefix-list\n" |
| 4592 | "Filter networks sent to this area\n" |
| 4593 | "Filter networks sent from this area\n") |
| 4594 | |
| 4595 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_route_cmd_vtysh, |
| 4596 | "show ipv6 bgp X:X::X:X", |
| 4597 | "Show running system information\n" |
| 4598 | "IP information\n" |
| 4599 | "BGP information\n" |
| 4600 | "Network in the BGP routing table to display\n") |
| 4601 | |
| 4602 | DEFSH (VTYSH_BGPD, bgp_network_mask_natural_backdoor_cmd_vtysh, |
| 4603 | "network A.B.C.D backdoor", |
| 4604 | "Specify a network to announce via BGP\n" |
| 4605 | "Network number\n" |
| 4606 | "Specify a BGP backdoor route\n") |
| 4607 | |
| 4608 | DEFSH (VTYSH_RIPD, rip_route_cmd_vtysh, |
| 4609 | "route A.B.C.D/M", |
| 4610 | "RIP static route configuration\n" |
| 4611 | "IP prefix <network>/<length>\n") |
| 4612 | |
| 4613 | DEFSH (VTYSH_OSPFD, no_ospf_cost_cmd_vtysh, |
| 4614 | "no ospf cost", |
| 4615 | "Negate a command or set its defaults\n" |
| 4616 | "OSPF interface commands\n" |
| 4617 | "Interface cost\n") |
| 4618 | |
| 4619 | DEFSH (VTYSH_BGPD, clear_bgp_all_soft_out_cmd_vtysh, |
| 4620 | "clear bgp * soft out", |
| 4621 | "Reset functions\n" |
| 4622 | "BGP information\n" |
| 4623 | "Clear all peers\n" |
| 4624 | "Soft reconfig\n" |
| 4625 | "Soft reconfig outbound update\n") |
| 4626 | |
| 4627 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_sequence_number_cmd_vtysh, |
| 4628 | "ipv6 prefix-list sequence-number", |
| 4629 | "IPv6 information\n" |
| 4630 | "Build a prefix list\n" |
| 4631 | "Include/exclude sequence numbers in NVGEN\n") |
| 4632 | |
| 4633 | DEFSH (VTYSH_RIPD, no_debug_rip_packet_cmd_vtysh, |
| 4634 | "no debug rip packet", |
| 4635 | "Negate a command or set its defaults\n" |
| 4636 | "Debugging functions (see also 'undebug')\n" |
| 4637 | "RIP information\n" |
| 4638 | "RIP packet\n") |
| 4639 | |
| 4640 | DEFSH (VTYSH_ZEBRA, show_ip_route_prefix_longer_cmd_vtysh, |
| 4641 | "show ip route A.B.C.D/M longer-prefixes", |
| 4642 | "Show running system information\n" |
| 4643 | "IP information\n" |
| 4644 | "IP routing table\n" |
| 4645 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 4646 | "Show route matching the specified Network/Mask pair only\n") |
| 4647 | |
| 4648 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, show_ipv6_access_list_name_cmd_vtysh, |
| 4649 | "show ipv6 access-list WORD", |
| 4650 | "Show running system information\n" |
| 4651 | "IPv6 information\n" |
| 4652 | "List IPv6 access lists\n" |
| 4653 | "IPv6 zebra access-list\n") |
| 4654 | |
| 4655 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ripng_cmd_vtysh, |
| 4656 | "no redistribute ripng", |
| 4657 | "Negate a command or set its defaults\n" |
| 4658 | "Redistribute information from another routing protocol\n" |
| 4659 | "RIPng route\n") |
| 4660 | |
| 4661 | DEFSH (VTYSH_BGPD, no_set_community_val_cmd_vtysh, |
| 4662 | "no set community .AA:NN", |
| 4663 | "Negate a command or set its defaults\n" |
| 4664 | "Set values in destination routing protocol\n" |
| 4665 | "BGP community attribute\n" |
| 4666 | "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n") |
| 4667 | |
| 4668 | DEFSH (VTYSH_BGPD, clear_bgp_peer_group_out_cmd_vtysh, |
| 4669 | "clear bgp peer-group WORD out", |
| 4670 | "Reset functions\n" |
| 4671 | "BGP information\n" |
| 4672 | "Clear all members of peer-group\n" |
| 4673 | "BGP peer-group name\n" |
| 4674 | "Soft reconfig outbound update\n") |
| 4675 | |
| 4676 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_longer_cmd_vtysh, |
| 4677 | "show ipv6 prefix-list WORD X:X::X:X/M longer", |
| 4678 | "Show running system information\n" |
| 4679 | "IPv6 information\n" |
| 4680 | "Build a prefix list\n" |
| 4681 | "Name of a prefix list\n" |
| 4682 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 4683 | "Lookup longer prefix\n") |
| 4684 | |
| 4685 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_metric_cmd_vtysh, |
| 4686 | "no redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295>", |
| 4687 | "Negate a command or set its defaults\n" |
| 4688 | "Redistribute information from another routing protocol\n" |
| 4689 | "Connected\n" |
| 4690 | "Kernel routes\n" |
| 4691 | "Open Shurtest Path First (OSPF)\n" |
| 4692 | "Routing Information Protocol (RIP)\n" |
| 4693 | "Static routes\n" |
| 4694 | "Metric for redistributed routes\n" |
| 4695 | "Default metric\n") |
| 4696 | |
| 4697 | DEFSH (VTYSH_OSPFD, area_vlink_authkey_cmd_vtysh, |
| 4698 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 4699 | "(authentication-key|) AUTH_KEY", |
| 4700 | "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" |
| 4701 | "Authentication password (key)\n" "The OSPF password (key)") |
| 4702 | |
| 4703 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_list_cmd_vtysh, |
| 4704 | "show ip bgp flap-statistics prefix-list WORD", |
| 4705 | "Show running system information\n" |
| 4706 | "IP information\n" |
| 4707 | "BGP information\n" |
| 4708 | "Display flap statistics of routes\n" |
| 4709 | "Display routes conforming to the prefix-list\n" |
| 4710 | "IP prefix-list name\n") |
| 4711 | |
| 4712 | DEFSH (VTYSH_RIPNGD, no_ripng_aggregate_address_cmd_vtysh, |
| 4713 | "no aggregate-address X:X::X:X/M", |
| 4714 | "Negate a command or set its defaults\n" |
| 4715 | "Delete aggregate RIPng route announcement\n" |
| 4716 | "Aggregate network") |
| 4717 | |
| 4718 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh, |
| 4719 | "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) routes", |
| 4720 | "Show running system information\n" |
| 4721 | "IP information\n" |
| 4722 | "BGP information\n" |
| 4723 | "Address family\n" |
| 4724 | "Address Family modifier\n" |
| 4725 | "Address Family modifier\n" |
| 4726 | "Detailed information on TCP and BGP neighbor connections\n" |
| 4727 | "Neighbor to display information about\n" |
| 4728 | "Neighbor to display information about\n" |
| 4729 | "Display routes learned from neighbor\n") |
| 4730 | |
| 4731 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_retransmitinterval_cmd_vtysh, |
| 4732 | "ipv6 ospf6 retransmit-interval RXMTINTERVAL", |
| 4733 | "IPv6 Information\n" |
| 4734 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 4735 | "Time between retransmitting lost link state advertisements\n" |
| 4736 | "<1-65535> Seconds\n" |
| 4737 | ) |
| 4738 | |
| 4739 | DEFSH (VTYSH_RIPD, debug_rip_packet_detail_cmd_vtysh, |
| 4740 | "debug rip packet (recv|send) detail", |
| 4741 | "Debugging functions (see also 'undebug')\n" |
| 4742 | "RIP information\n" |
| 4743 | "RIP packet\n" |
| 4744 | "RIP receive packet\n" |
| 4745 | "RIP send packet\n" |
| 4746 | "Detailed information display\n") |
| 4747 | |
| 4748 | DEFSH (VTYSH_ZEBRA, show_ip_route_protocol_cmd_vtysh, |
| 4749 | "show ip route (bgp|connected|kernel|ospf|rip|static)", |
| 4750 | "Show running system information\n" |
| 4751 | "IP information\n" |
| 4752 | "IP routing table\n" |
| 4753 | "Border Gateway Protocol (BGP)\n" |
| 4754 | "Connected\n" |
| 4755 | "Kernel\n" |
| 4756 | "Open Shortest Path First (OSPF)\n" |
| 4757 | "Routing Information Protocol (RIP)\n" |
| 4758 | "Static routes\n") |
| 4759 | |
| 4760 | DEFSH (VTYSH_BGPD, no_bgp_client_to_client_reflection_cmd_vtysh, |
| 4761 | "no bgp client-to-client reflection", |
| 4762 | "Negate a command or set its defaults\n" |
| 4763 | "BGP specific commands\n" |
| 4764 | "Configure client to client route reflection\n" |
| 4765 | "reflection of routes allowed\n") |
| 4766 | |
| 4767 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_rmap_onmatch_next_cmd_vtysh, |
| 4768 | "no on-match next", |
| 4769 | "Negate a command or set its defaults\n" |
| 4770 | "Exit policy on matches\n" |
| 4771 | "Next clause\n") |
| 4772 | |
| 4773 | DEFSH (VTYSH_BGPD, no_bgp_multiple_instance_cmd_vtysh, |
| 4774 | "no bgp multiple-instance", |
| 4775 | "Negate a command or set its defaults\n" |
| 4776 | "BGP information\n" |
| 4777 | "BGP multiple instance\n") |
| 4778 | |
| 4779 | DEFSH (VTYSH_OSPFD, no_debug_ospf_nsm_sub_cmd_vtysh, |
| 4780 | "no debug ospf nsm (status|events|timers)", |
| 4781 | "Negate a command or set its defaults\n" |
| 4782 | "Debugging functions\n" |
| 4783 | "OSPF information\n" |
| 4784 | "OSPF Interface State Machine\n" |
| 4785 | "NSM Status Information\n" |
| 4786 | "NSM Event Information\n" |
| 4787 | "NSM Timer Information\n") |
| 4788 | |
| 4789 | DEFSH (VTYSH_OSPFD, area_vlink_param2_cmd_vtysh, |
| 4790 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 4791 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> " |
| 4792 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>", |
| 4793 | "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" |
| 4794 | "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" |
| 4795 | "Time between HELLO packets\n" "Time between retransmitting lost link state advertisements\n" "Link state transmit delay\n" "Interval after which a neighbor is declared dead\n" "Seconds\n") |
| 4796 | |
| 4797 | DEFSH (VTYSH_BGPD, bgp_distance_cmd_vtysh, |
| 4798 | "distance bgp <1-255> <1-255> <1-255>", |
| 4799 | "Define an administrative distance\n" |
| 4800 | "BGP distance\n" |
| 4801 | "Distance for routes external to the AS\n" |
| 4802 | "Distance for routes internal to the AS\n" |
| 4803 | "Distance for local routes\n") |
| 4804 | |
| 4805 | DEFSH (VTYSH_BGPD, clear_bgp_peer_group_soft_cmd_vtysh, |
| 4806 | "clear bgp peer-group WORD soft", |
| 4807 | "Reset functions\n" |
| 4808 | "BGP information\n" |
| 4809 | "Clear all members of peer-group\n" |
| 4810 | "BGP peer-group name\n" |
| 4811 | "Soft reconfig\n") |
| 4812 | |
| 4813 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_metric_rmap_cmd_vtysh, |
| 4814 | "no redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295> route-map WORD", |
| 4815 | "Negate a command or set its defaults\n" |
| 4816 | "Redistribute information from another routing protocol\n" |
| 4817 | "Connected\n" |
| 4818 | "Kernel routes\n" |
| 4819 | "Open Shurtest Path First (OSPF)\n" |
| 4820 | "Routing Information Protocol (RIP)\n" |
| 4821 | "Static routes\n" |
| 4822 | "Metric for redistributed routes\n" |
| 4823 | "Default metric\n" |
| 4824 | "Route map reference\n" |
| 4825 | "Pointer to route-map entries\n") |
| 4826 | |
| 4827 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_any_cmd_vtysh, |
| 4828 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D any", |
| 4829 | "Negate a command or set its defaults\n" |
| 4830 | "Add an access list entry\n" |
| 4831 | "IP extended access list\n" |
| 4832 | "IP extended access list (expanded range)\n" |
| 4833 | "Specify packets to reject\n" |
| 4834 | "Specify packets to forward\n" |
| 4835 | "Any Internet Protocol\n" |
| 4836 | "A single source host\n" |
| 4837 | "Source address\n" |
| 4838 | "Any destination host\n") |
| 4839 | |
| 4840 | DEFSH (VTYSH_BGPD, show_ip_bgp_attr_info_cmd_vtysh, |
| 4841 | "show ip bgp attribute-info", |
| 4842 | "Show running system information\n" |
| 4843 | "IP information\n" |
| 4844 | "BGP information\n" |
| 4845 | "List all bgp attribute information\n") |
| 4846 | |
| 4847 | DEFSH (VTYSH_RIPNGD, no_default_information_originate_cmd_vtysh, |
| 4848 | "no default-information originate", |
| 4849 | "Negate a command or set its defaults\n" |
| 4850 | "Default route information\n" |
| 4851 | "Distribute default route\n") |
| 4852 | |
| 4853 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_host_cmd_vtysh, |
| 4854 | "no access-list (<1-99>|<1300-1999>) (deny|permit) host A.B.C.D", |
| 4855 | "Negate a command or set its defaults\n" |
| 4856 | "Add an access list entry\n" |
| 4857 | "IP standard access list\n" |
| 4858 | "IP standard access list (expanded range)\n" |
| 4859 | "Specify packets to reject\n" |
| 4860 | "Specify packets to forward\n" |
| 4861 | "A single host address\n" |
| 4862 | "Address to match\n") |
| 4863 | |
| 4864 | DEFSH (VTYSH_RIPD, show_ip_protocols_rip_cmd_vtysh, |
| 4865 | "show ip protocols", |
| 4866 | "Show running system information\n" |
| 4867 | "IP information\n" |
| 4868 | "IP routing protocol process parameters and statistics\n") |
| 4869 | |
| 4870 | DEFSH (VTYSH_RIPD, send_lifetime_day_month_day_month_cmd_vtysh, |
| 4871 | "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>", |
| 4872 | "Set send lifetime of the key\n" |
| 4873 | "Time to start\n" |
| 4874 | "Day of th month to start\n" |
| 4875 | "Month of the year to start\n" |
| 4876 | "Year to start\n" |
| 4877 | "Time to expire\n" |
| 4878 | "Day of th month to expire\n" |
| 4879 | "Month of the year to expire\n" |
| 4880 | "Year to expire\n") |
| 4881 | |
| 4882 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_cmd_vtysh, |
| 4883 | "show ipv6 ospf6 topology", |
| 4884 | "Show running system information\n" |
| 4885 | "IPv6 Information\n" |
| 4886 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 4887 | "Inter Area topology information\n" |
| 4888 | ) |
| 4889 | |
| 4890 | DEFSH (VTYSH_OSPFD, no_area_stub_no_summary_cmd_vtysh, |
| 4891 | "no area (A.B.C.D|<0-4294967295>) stub no-summary", |
| 4892 | "Negate a command or set its defaults\n" |
| 4893 | "OSPF area parameters\n" |
| 4894 | "OSPF area ID in IP address format\n" |
| 4895 | "OSPF area ID as a decimal value\n" |
| 4896 | "Configure OSPF area as stub\n" |
| 4897 | "Do not inject inter-area routes into area\n") |
| 4898 | |
| 4899 | DEFSH (VTYSH_OSPFD, no_ospf_redistribute_source_cmd_vtysh, |
| 4900 | "no redistribute (kernel|connected|static|rip|bgp)", |
| 4901 | "Negate a command or set its defaults\n" |
| 4902 | "Redistribute information from another routing protocol\n" |
| 4903 | "Kernel routes\n" |
| 4904 | "Connected\n" |
| 4905 | "Static routes\n" |
| 4906 | "Routing Information Protocol (RIP)\n" |
| 4907 | "Border Gateway Protocol (BGP)\n") |
| 4908 | |
| 4909 | DEFSH (VTYSH_RIPD, ip_rip_receive_version_cmd_vtysh, |
| 4910 | "ip rip receive version (1|2)", |
| 4911 | "IP information\n" |
| 4912 | "Routing Information Protocol\n" |
| 4913 | "Advertisement reception\n" |
| 4914 | "Version control\n" |
| 4915 | "RIP version 1\n" |
| 4916 | "RIP version 2\n") |
| 4917 | |
| 4918 | DEFSH (VTYSH_OSPFD, ip_ospf_priority_addr_cmd_vtysh, |
| 4919 | "ip ospf priority <0-255> A.B.C.D", |
| 4920 | "IP Information\n" |
| 4921 | "OSPF interface commands\n" |
| 4922 | "Router priority\n" |
| 4923 | "Priority\n" |
| 4924 | "Address of interface") |
| 4925 | |
| 4926 | DEFSH (VTYSH_ZEBRA, debug_zebra_events_cmd_vtysh, |
| 4927 | "debug zebra events", |
| 4928 | "Debugging functions (see also 'undebug')\n" |
| 4929 | "Zebra configuration\n" |
| 4930 | "Debug option set for zebra events\n") |
| 4931 | |
| 4932 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_cmd_vtysh, |
| 4933 | "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export)", |
| 4934 | "Show running system information\n" |
| 4935 | "BGP information\n" |
| 4936 | "Address family\n" |
| 4937 | "Display routes matching the communities\n" |
| 4938 | "community number\n" |
| 4939 | "Do not send outside local AS (well-known community)\n" |
| 4940 | "Do not advertise to any peer (well-known community)\n" |
| 4941 | "Do not export to next AS (well-known community)\n") |
| 4942 | |
| 4943 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, match_metric_cmd_vtysh, |
| 4944 | "match metric <0-4294967295>", |
| 4945 | "Match values from routing table\n" |
| 4946 | "Match metric of route\n" |
| 4947 | "Metric value\n") |
| 4948 | |
| 4949 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_longer_cmd_vtysh, |
| 4950 | "show bgp ipv6 X:X::X:X/M longer-prefixes", |
| 4951 | "Show running system information\n" |
| 4952 | "BGP information\n" |
| 4953 | "Address family\n" |
| 4954 | "IPv6 prefix <network>/<length>\n" |
| 4955 | "Display route and more specific routes\n") |
| 4956 | |
| 4957 | DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_passive_cmd_vtysh, |
| 4958 | "no ipv6 ospf6 passive", |
| 4959 | "Negate a command or set its defaults\n" |
| 4960 | "IPv6 Information\n" |
| 4961 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 4962 | "passive interface: No Adjacency will be formed on this I/F\n" |
| 4963 | ) |
| 4964 | |
| 4965 | DEFSH (VTYSH_RIPD, accept_lifetime_infinite_day_month_cmd_vtysh, |
| 4966 | "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> infinite", |
| 4967 | "Set accept lifetime of the key\n" |
| 4968 | "Time to start\n" |
| 4969 | "Day of th month to start\n" |
| 4970 | "Month of the year to start\n" |
| 4971 | "Year to start\n" |
| 4972 | "Never expires") |
| 4973 | |
| 4974 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged6_cmd_vtysh, |
| 4975 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path med next-hop", |
| 4976 | "Negate a command or set its defaults\n" |
| 4977 | "Specify neighbor router\n" |
| 4978 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 4979 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 4980 | "As-path attribute\n" |
| 4981 | "Med attribute\n" |
| 4982 | "Nexthop attribute\n") |
| 4983 | |
| 4984 | DEFSH (VTYSH_OSPFD, no_area_import_list_cmd_vtysh, |
| 4985 | "no area (A.B.C.D|<0-4294967295>) import-list NAME", |
| 4986 | "Negate a command or set its defaults\n" |
| 4987 | "OSPF area parameters\n" |
| 4988 | "OSPF area ID in IP address format\n" |
| 4989 | "OSPF area ID as a decimal value\n" |
| 4990 | "Unset the filter for networks announced to other areas\n" |
| 4991 | "Name of the access-list\n") |
| 4992 | |
| 4993 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_seq_ge_cmd_vtysh, |
| 4994 | "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128>", |
| 4995 | "Negate a command or set its defaults\n" |
| 4996 | "IPv6 information\n" |
| 4997 | "Build a prefix list\n" |
| 4998 | "Name of a prefix list\n" |
| 4999 | "sequence number of an entry\n" |
| 5000 | "Sequence number\n" |
| 5001 | "Specify packets to reject\n" |
| 5002 | "Specify packets to forward\n" |
| 5003 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 5004 | "Minimum prefix length to be matched\n" |
| 5005 | "Minimum prefix length\n") |
| 5006 | |
| 5007 | DEFSH (VTYSH_BGPD, neighbor_route_reflector_client_cmd_vtysh, |
| 5008 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-reflector-client", |
| 5009 | "Specify neighbor router\n" |
| 5010 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5011 | "Configure a neighbor as Route Reflector client\n") |
| 5012 | |
| 5013 | DEFSH (VTYSH_BGPD, show_bgp_community_list_cmd_vtysh, |
| 5014 | "show bgp community-list WORD", |
| 5015 | "Show running system information\n" |
| 5016 | "BGP information\n" |
| 5017 | "Display routes matching the community-list\n" |
| 5018 | "community-list name\n") |
| 5019 | |
| 5020 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_ripng_cmd_vtysh, |
| 5021 | "redistribute ripng", |
| 5022 | "Redistribute information from another routing protocol\n" |
| 5023 | "RIPng route\n") |
| 5024 | |
| 5025 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_host_cmd_vtysh, |
| 5026 | "access-list (<1-99>|<1300-1999>) (deny|permit) host A.B.C.D", |
| 5027 | "Add an access list entry\n" |
| 5028 | "IP standard access list\n" |
| 5029 | "IP standard access list (expanded range)\n" |
| 5030 | "Specify packets to reject\n" |
| 5031 | "Specify packets to forward\n" |
| 5032 | "A single host address\n" |
| 5033 | "Address to match\n") |
| 5034 | |
| 5035 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_metric_cmd_vtysh, |
| 5036 | "redistribute bgp metric <0-16>", |
| 5037 | "Redistribute information from another routing protocol\n" |
| 5038 | "Border Gateway Protocol (BGP)\n" |
| 5039 | "Metric\n" |
| 5040 | "Metric value\n") |
| 5041 | |
| 5042 | DEFSH (VTYSH_OSPF6D|VTYSH_BGPD, match_ipv6_address_prefix_list_cmd_vtysh, |
| 5043 | "match ipv6 address prefix-list WORD", |
| 5044 | "Match values from routing table\n" |
| 5045 | "IPv6 information\n" |
| 5046 | "Match address of route\n" |
| 5047 | "Match entries of prefix-lists\n" |
| 5048 | "IP prefix-list name\n") |
| 5049 | |
| 5050 | DEFSH (VTYSH_BGPD, show_bgp_neighbor_received_prefix_filter_cmd_vtysh, |
| 5051 | "show bgp neighbors (A.B.C.D|X:X::X:X) received prefix-filter", |
| 5052 | "Show running system information\n" |
| 5053 | "BGP information\n" |
| 5054 | "Detailed information on TCP and BGP neighbor connections\n" |
| 5055 | "Neighbor to display information about\n" |
| 5056 | "Neighbor to display information about\n" |
| 5057 | "Display information received from a BGP neighbor\n" |
| 5058 | "Display the prefixlist filter\n") |
| 5059 | |
| 5060 | DEFSH (VTYSH_BGPD, show_ip_bgp_instance_neighbors_cmd_vtysh, |
| 5061 | "show ip bgp view WORD neighbors", |
| 5062 | "Show running system information\n" |
| 5063 | "IP information\n" |
| 5064 | "BGP information\n" |
| 5065 | "BGP view\n" |
| 5066 | "View name\n" |
| 5067 | "Detailed information on TCP and BGP neighbor connections\n") |
| 5068 | |
| 5069 | DEFSH (VTYSH_OSPF6D, show_zebra_cmd_vtysh, |
| 5070 | "show zebra", |
| 5071 | "Show running system information\n" |
| 5072 | "Zebra information\n") |
| 5073 | |
| 5074 | DEFSH (VTYSH_BGPD, clear_bgp_peer_out_cmd_vtysh, |
| 5075 | "clear bgp (A.B.C.D|X:X::X:X) out", |
| 5076 | "Reset functions\n" |
| 5077 | "BGP information\n" |
| 5078 | "BGP neighbor address to clear\n" |
| 5079 | "BGP IPv6 neighbor to clear\n" |
| 5080 | "Soft reconfig outbound update\n") |
| 5081 | |
| 5082 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_description_cmd_vtysh, |
| 5083 | "no ip prefix-list WORD description", |
| 5084 | "Negate a command or set its defaults\n" |
| 5085 | "IP information\n" |
| 5086 | "Build a prefix list\n" |
| 5087 | "Name of a prefix list\n" |
| 5088 | "Prefix-list specific description\n") |
| 5089 | |
| 5090 | DEFSH (VTYSH_ZEBRA, no_ip_forwarding_cmd_vtysh, |
| 5091 | "no ip forwarding", |
| 5092 | "Negate a command or set its defaults\n" |
| 5093 | "IP information\n" |
| 5094 | "Turn off IP forwarding") |
| 5095 | |
| 5096 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_bgp_routemap_cmd_vtysh, |
| 5097 | "redistribute bgp route-map WORD", |
| 5098 | "Redistribute information from another routing protocol\n" |
| 5099 | "Border Gateway Protocol (BGP)\n" |
| 5100 | "Route map reference\n" |
| 5101 | "Pointer to route-map entries\n") |
| 5102 | |
| 5103 | DEFSH (VTYSH_BGPD, no_debug_bgp_update_cmd_vtysh, |
| 5104 | "no debug bgp updates", |
| 5105 | "Negate a command or set its defaults\n" |
| 5106 | "Debugging functions (see also 'undebug')\n" |
| 5107 | "BGP information\n" |
| 5108 | "BGP updates\n") |
| 5109 | |
| 5110 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_cmd_vtysh, |
| 5111 | "no redistribute ospf6", |
| 5112 | "Negate a command or set its defaults\n" |
| 5113 | "Redistribute information from another routing protocol\n" |
| 5114 | "IPv6 Open Shortest Path First (OSPFv3)\n") |
| 5115 | |
| 5116 | DEFSH (VTYSH_ZEBRA, no_ip_address_cmd_vtysh, |
| 5117 | "no ip address A.B.C.D/M", |
| 5118 | "Negate a command or set its defaults\n" |
| 5119 | "Interface Internet Protocol config commands\n" |
| 5120 | "Set the IP address of an interface\n" |
| 5121 | "IP Address (e.g. 10.0.0.1/8)") |
| 5122 | |
| 5123 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_route_map_cmd_vtysh, |
| 5124 | "show ip bgp ipv4 (unicast|multicast) route-map WORD", |
| 5125 | "Show running system information\n" |
| 5126 | "IP information\n" |
| 5127 | "BGP information\n" |
| 5128 | "Address family\n" |
| 5129 | "Address Family modifier\n" |
| 5130 | "Address Family modifier\n" |
| 5131 | "Display routes matching the route-map\n" |
| 5132 | "A route-map to match on\n") |
| 5133 | |
| 5134 | DEFSH (VTYSH_ZEBRA, no_ipv6_address_cmd_vtysh, |
| 5135 | "no ipv6 address X:X::X:X/M", |
| 5136 | "Negate a command or set its defaults\n" |
| 5137 | "Interface Internet Protocol config commands\n" |
| 5138 | "Set the IP address of an interface\n" |
| 5139 | "IPv6 address (e.g. 3ffe:506::1/48)\n") |
| 5140 | |
| 5141 | DEFSH (VTYSH_BGPD, no_neighbor_shutdown_cmd_vtysh, |
| 5142 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "shutdown", |
| 5143 | "Negate a command or set its defaults\n" |
| 5144 | "Specify neighbor router\n" |
| 5145 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5146 | "Administratively shut down this neighbor\n") |
| 5147 | |
| 5148 | DEFSH (VTYSH_RIPD, no_ip_rip_authentication_string2_cmd_vtysh, |
| 5149 | "no ip rip authentication string LINE", |
| 5150 | "Negate a command or set its defaults\n" |
| 5151 | "IP information\n" |
| 5152 | "Routing Information Protocol\n" |
| 5153 | "Authentication control\n" |
| 5154 | "Authentication string\n" |
| 5155 | "Authentication string\n") |
| 5156 | |
| 5157 | DEFSH (VTYSH_OSPFD, ip_ospf_network_cmd_vtysh, |
| 5158 | "ip ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)", |
| 5159 | "IP Information\n" |
| 5160 | "OSPF interface commands\n" |
| 5161 | "Network type\n" |
| 5162 | "Specify OSPF broadcast multi-access network\n" |
| 5163 | "Specify OSPF NBMA network\n" |
| 5164 | "Specify OSPF point-to-multipoint network\n" |
| 5165 | "Specify OSPF point-to-point network\n") |
| 5166 | |
| 5167 | DEFSH (VTYSH_BGPD, neighbor_send_community_type_cmd_vtysh, |
| 5168 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community (both|extended|standard)", |
| 5169 | "Specify neighbor router\n" |
| 5170 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5171 | "Send Community attribute to this neighbor\n" |
| 5172 | "Send Standard and Extended Community attributes\n" |
| 5173 | "Send Extended Community attributes\n" |
| 5174 | "Send Standard Community attributes\n") |
| 5175 | |
| 5176 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_cmd_vtysh, |
| 5177 | "no redistribute kernel metric", |
| 5178 | "Negate a command or set its defaults\n" |
| 5179 | "Redistribute information from another routing protocol\n" |
| 5180 | "Kernel routes\n" |
| 5181 | "Metric\n") |
| 5182 | |
| 5183 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_rmap_cmd_vtysh, |
| 5184 | "redistribute (connected|kernel|ospf|rip|static) route-map WORD", |
| 5185 | "Redistribute information from another routing protocol\n" |
| 5186 | "Connected\n" |
| 5187 | "Kernel routes\n" |
| 5188 | "Open Shurtest Path First (OSPF)\n" |
| 5189 | "Routing Information Protocol (RIP)\n" |
| 5190 | "Static routes\n" |
| 5191 | "Route map reference\n" |
| 5192 | "Pointer to route-map entries\n") |
| 5193 | |
| 5194 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_le_cmd_vtysh, |
| 5195 | "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128>", |
| 5196 | "IPv6 information\n" |
| 5197 | "Build a prefix list\n" |
| 5198 | "Name of a prefix list\n" |
| 5199 | "Specify packets to reject\n" |
| 5200 | "Specify packets to forward\n" |
| 5201 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 5202 | "Maximum prefix length to be matched\n" |
| 5203 | "Maximum prefix length\n") |
| 5204 | |
| 5205 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_cmd_vtysh, |
| 5206 | "redistribute (kernel|connected|static|rip|bgp)", |
| 5207 | "Redistribute information from another routing protocol\n" |
| 5208 | "Kernel routes\n" |
| 5209 | "Connected\n" |
| 5210 | "Static routes\n" |
| 5211 | "Routing Information Protocol (RIP)\n" |
| 5212 | "Border Gateway Protocol (BGP)\n") |
| 5213 | |
| 5214 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, show_ipv6_access_list_cmd_vtysh, |
| 5215 | "show ipv6 access-list", |
| 5216 | "Show running system information\n" |
| 5217 | "IPv6 information\n" |
| 5218 | "List IPv6 access lists\n") |
| 5219 | |
| 5220 | DEFSH (VTYSH_BGPD, match_ecommunity_cmd_vtysh, |
| 5221 | "match extcommunity (<1-99>|<100-199>|WORD)", |
| 5222 | "Match values from routing table\n" |
| 5223 | "Match BGP/VPN extended community list\n" |
| 5224 | "Extended community-list number (standard)\n" |
| 5225 | "Extended community-list number (expanded)\n" |
| 5226 | "Extended community-list name\n") |
| 5227 | |
| 5228 | DEFSH (VTYSH_BGPD, no_neighbor_override_capability_cmd_vtysh, |
| 5229 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "override-capability", |
| 5230 | "Negate a command or set its defaults\n" |
| 5231 | "Specify neighbor router\n" |
| 5232 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5233 | "Override capability negotiation result\n") |
| 5234 | |
| 5235 | DEFSH (VTYSH_ZEBRA, linkdetect_cmd_vtysh, |
| 5236 | "link-detect", |
| 5237 | "Enable link detection on interface\n") |
| 5238 | |
| 5239 | DEFSH (VTYSH_BGPD, undebug_bgp_update_cmd_vtysh, |
| 5240 | "undebug bgp updates", |
| 5241 | "Disable debugging functions (see also 'debug')\n" |
| 5242 | "BGP information\n" |
| 5243 | "BGP updates\n") |
| 5244 | |
| 5245 | DEFSH (VTYSH_RIPNGD, no_debug_ripng_packet_cmd_vtysh, |
| 5246 | "no debug ripng packet", |
| 5247 | "Negate a command or set its defaults\n" |
| 5248 | "Debugging functions (see also 'undebug')\n" |
| 5249 | "RIPng configuration\n" |
| 5250 | "Debug option set for ripng packet\n") |
| 5251 | |
| 5252 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_list_cmd_vtysh, |
| 5253 | "show ip bgp ipv4 (unicast|multicast) prefix-list WORD", |
| 5254 | "Show running system information\n" |
| 5255 | "IP information\n" |
| 5256 | "BGP information\n" |
| 5257 | "Address family\n" |
| 5258 | "Address Family modifier\n" |
| 5259 | "Address Family modifier\n" |
| 5260 | "Display routes conforming to the prefix-list\n" |
| 5261 | "IP prefix-list name\n") |
| 5262 | |
| 5263 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community2_cmd_vtysh, |
| 5264 | "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)", |
| 5265 | "Show running system information\n" |
| 5266 | "IP information\n" |
| 5267 | "BGP information\n" |
| 5268 | "Address family\n" |
| 5269 | "Address Family modifier\n" |
| 5270 | "Address Family modifier\n" |
| 5271 | "Display routes matching the communities\n" |
| 5272 | "community number\n" |
| 5273 | "Do not send outside local AS (well-known community)\n" |
| 5274 | "Do not advertise to any peer (well-known community)\n" |
| 5275 | "Do not export to next AS (well-known community)\n" |
| 5276 | "community number\n" |
| 5277 | "Do not send outside local AS (well-known community)\n" |
| 5278 | "Do not advertise to any peer (well-known community)\n" |
| 5279 | "Do not export to next AS (well-known community)\n") |
| 5280 | |
| 5281 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged6_cmd_vtysh, |
| 5282 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path med next-hop", |
| 5283 | "Specify neighbor router\n" |
| 5284 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5285 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 5286 | "As-path attribute\n" |
| 5287 | "Med attribute\n" |
| 5288 | "Nexthop attribute\n") |
| 5289 | |
| 5290 | DEFSH (VTYSH_OSPFD, no_timers_spf_cmd_vtysh, |
| 5291 | "no timers spf", |
| 5292 | "Negate a command or set its defaults\n" |
| 5293 | "Adjust routing timers\n" |
| 5294 | "OSPF SPF timers\n") |
| 5295 | |
| 5296 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_filter_list_cmd_vtysh, |
| 5297 | "show ip bgp flap-statistics filter-list WORD", |
| 5298 | "Show running system information\n" |
| 5299 | "IP information\n" |
| 5300 | "BGP information\n" |
| 5301 | "Display flap statistics of routes\n" |
| 5302 | "Display routes conforming to the filter-list\n" |
| 5303 | "Regular expression access list name\n") |
| 5304 | |
| 5305 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh, |
| 5306 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D advertised-routes", |
| 5307 | "Show running system information\n" |
| 5308 | "IP information\n" |
| 5309 | "BGP information\n" |
| 5310 | "Display VPNv4 NLRI specific information\n" |
| 5311 | "Display information for a route distinguisher\n" |
| 5312 | "VPN Route Distinguisher\n" |
| 5313 | "Detailed information on TCP and BGP neighbor connections\n" |
| 5314 | "Neighbor to display information about\n" |
| 5315 | "Display the routes advertised to a BGP neighbor\n") |
| 5316 | |
| 5317 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_routemap_cmd_vtysh, |
| 5318 | "no redistribute kernel route-map WORD", |
| 5319 | "Negate a command or set its defaults\n" |
| 5320 | "Redistribute information from another routing protocol\n" |
| 5321 | "Kernel routes\n" |
| 5322 | "Route map reference\n" |
| 5323 | "Pointer to route-map entries\n") |
| 5324 | |
| 5325 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_route_cmd_vtysh, |
| 5326 | "show ip bgp vpnv4 all A.B.C.D", |
| 5327 | "Show running system information\n" |
| 5328 | "IP information\n" |
| 5329 | "BGP information\n" |
| 5330 | "Display VPNv4 NLRI specific information\n" |
| 5331 | "Display information about all VPNv4 NLRIs\n" |
| 5332 | "Network in the BGP routing table to display\n") |
| 5333 | |
| 5334 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_regexp_cmd_vtysh, |
| 5335 | "show bgp ipv6 regexp .LINE", |
| 5336 | "Show running system information\n" |
| 5337 | "BGP information\n" |
| 5338 | "Address family\n" |
| 5339 | "Display routes matching the AS path regular expression\n" |
| 5340 | "A regular-expression to match the BGP AS paths\n") |
| 5341 | |
| 5342 | DEFSH (VTYSH_OSPFD, no_passive_interface_addr_cmd_vtysh, |
| 5343 | "no passive-interface IFNAME A.B.C.D", |
| 5344 | "Negate a command or set its defaults\n" |
| 5345 | "Allow routing updates on an interface\n" |
| 5346 | "Interface's name\n") |
| 5347 | |
| 5348 | DEFSH (VTYSH_OSPFD, ospf_authentication_key_cmd_vtysh, |
| 5349 | "ospf authentication-key AUTH_KEY", |
| 5350 | "OSPF interface commands\n" |
| 5351 | "Authentication password (key)\n" |
| 5352 | "The OSPF password (key)") |
| 5353 | |
| 5354 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_priority_cmd_vtysh, |
| 5355 | "ipv6 ospf6 priority PRIORITY", |
| 5356 | "IPv6 Information\n" |
| 5357 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 5358 | "Router priority\n" |
| 5359 | "<0-255> Priority\n" |
| 5360 | ) |
| 5361 | |
| 5362 | DEFSH (VTYSH_OSPFD, no_area_vlink_md5_cmd_vtysh, |
| 5363 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 5364 | "(message-digest-key|) <1-255>", |
| 5365 | "Negate a command or set its defaults\n" |
| 5366 | "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" |
| 5367 | "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)") |
| 5368 | |
| 5369 | DEFSH (VTYSH_RIPD, no_rip_distance_source_access_list_cmd_vtysh, |
| 5370 | "no distance <1-255> A.B.C.D/M WORD", |
| 5371 | "Negate a command or set its defaults\n" |
| 5372 | "Administrative distance\n" |
| 5373 | "Distance value\n" |
| 5374 | "IP source prefix\n" |
| 5375 | "Access list name\n") |
| 5376 | |
| 5377 | DEFSH (VTYSH_OSPFD, no_ospf_router_id_cmd_vtysh, |
| 5378 | "no ospf router-id", |
| 5379 | "Negate a command or set its defaults\n" |
| 5380 | "OSPF specific commands\n" |
| 5381 | "router-id for the OSPF process\n") |
| 5382 | |
| 5383 | DEFSH (VTYSH_BGPD, bgp_bestpath_compare_router_id_cmd_vtysh, |
| 5384 | "bgp bestpath compare-routerid", |
| 5385 | "BGP specific commands\n" |
| 5386 | "Change the default bestpath selection\n" |
| 5387 | "Compare router-id for identical EBGP paths\n") |
| 5388 | |
| 5389 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_val_cmd_vtysh, |
| 5390 | "no redistribute bgp metric <0-16>", |
| 5391 | "Negate a command or set its defaults\n" |
| 5392 | "Redistribute information from another routing protocol\n" |
| 5393 | "Border Gateway Protocol (BGP)\n" |
| 5394 | "Metric\n" |
| 5395 | "Metric value\n") |
| 5396 | |
| 5397 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community3_cmd_vtysh, |
| 5398 | "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)", |
| 5399 | "Show running system information\n" |
| 5400 | "IPv6 information\n" |
| 5401 | "BGP information\n" |
| 5402 | "Display routes matching the communities\n" |
| 5403 | "community number\n" |
| 5404 | "Do not send outside local AS (well-known community)\n" |
| 5405 | "Do not advertise to any peer (well-known community)\n" |
| 5406 | "Do not export to next AS (well-known community)\n" |
| 5407 | "community number\n" |
| 5408 | "Do not send outside local AS (well-known community)\n" |
| 5409 | "Do not advertise to any peer (well-known community)\n" |
| 5410 | "Do not export to next AS (well-known community)\n" |
| 5411 | "community number\n" |
| 5412 | "Do not send outside local AS (well-known community)\n" |
| 5413 | "Do not advertise to any peer (well-known community)\n" |
| 5414 | "Do not export to next AS (well-known community)\n") |
| 5415 | |
| 5416 | DEFSH (VTYSH_ZEBRA, debug_zebra_packet_direct_cmd_vtysh, |
| 5417 | "debug zebra packet (recv|send)", |
| 5418 | "Debugging functions (see also 'undebug')\n" |
| 5419 | "Zebra configuration\n" |
| 5420 | "Debug option set for zebra packet\n" |
| 5421 | "Debug option set for receive packet\n" |
| 5422 | "Debug option set for send packet\n") |
| 5423 | |
| 5424 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_router_cmd_vtysh, |
| 5425 | "show ipv6 ospf6 area A.B.C.D topology (A.B.C.D|<0-4294967295>|detail)", |
| 5426 | "Show running system information\n" |
| 5427 | "IPv6 Information\n" |
| 5428 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 5429 | "Area information\n" |
| 5430 | "Area ID (as an IPv4 notation)\n" |
| 5431 | "Shortest Path First tree information\n" |
| 5432 | "Displays SPF topology table\n" |
| 5433 | "Specify Router-ID\n" |
| 5434 | "Specify Router-ID\n" |
| 5435 | ) |
| 5436 | |
| 5437 | DEFSH (VTYSH_OSPFD, no_router_id_cmd_vtysh, |
| 5438 | "no router-id", |
| 5439 | "Negate a command or set its defaults\n" |
| 5440 | "router-id for the OSPF process\n") |
| 5441 | |
| 5442 | DEFSH (VTYSH_BGPD, set_ipv6_nexthop_global_cmd_vtysh, |
| 5443 | "set ipv6 next-hop global X:X::X:X", |
| 5444 | "Set values in destination routing protocol\n" |
| 5445 | "IPv6 information\n" |
| 5446 | "IPv6 next-hop address\n" |
| 5447 | "IPv6 global address\n" |
| 5448 | "IPv6 address of next hop\n") |
| 5449 | |
| 5450 | DEFSH (VTYSH_RIPNGD, no_debug_ripng_packet_direct_cmd_vtysh, |
| 5451 | "no debug ripng packet (recv|send)", |
| 5452 | "Negate a command or set its defaults\n" |
| 5453 | "Debugging functions (see also 'undebug')\n" |
| 5454 | "RIPng configuration\n" |
| 5455 | "Debug option set for ripng packet\n" |
| 5456 | "Debug option set for receive packet\n" |
| 5457 | "Debug option set for send packet\n") |
| 5458 | |
| 5459 | DEFSH (VTYSH_RIPD, send_lifetime_infinite_month_day_cmd_vtysh, |
| 5460 | "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> infinite", |
| 5461 | "Set send lifetime of the key\n" |
| 5462 | "Time to start\n" |
| 5463 | "Month of the year to start\n" |
| 5464 | "Day of th month to start\n" |
| 5465 | "Year to start\n" |
| 5466 | "Never expires") |
| 5467 | |
| 5468 | DEFSH (VTYSH_BGPD, no_set_local_pref_val_cmd_vtysh, |
| 5469 | "no set local-preference <0-4294967295>", |
| 5470 | "Negate a command or set its defaults\n" |
| 5471 | "Set values in destination routing protocol\n" |
| 5472 | "BGP local preference path attribute\n" |
| 5473 | "Preference value\n") |
| 5474 | |
| 5475 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_cmd_vtysh, |
| 5476 | "redistribute ospf6", |
| 5477 | "Redistribute information from another routing protocol\n" |
| 5478 | "IPv6 Open Shortest Path First (OSPFv3)\n") |
| 5479 | |
| 5480 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_any_cmd_vtysh, |
| 5481 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip any any", |
| 5482 | "Add an access list entry\n" |
| 5483 | "IP extended access list\n" |
| 5484 | "IP extended access list (expanded range)\n" |
| 5485 | "Specify packets to reject\n" |
| 5486 | "Specify packets to forward\n" |
| 5487 | "Any Internet Protocol\n" |
| 5488 | "Any source host\n" |
| 5489 | "Any destination host\n") |
| 5490 | |
| 5491 | DEFSH (VTYSH_BGPD, no_neighbor_local_as_val_cmd_vtysh, |
| 5492 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535>", |
| 5493 | "Negate a command or set its defaults\n" |
| 5494 | "Specify neighbor router\n" |
| 5495 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5496 | "Specify a local-as number\n" |
| 5497 | "AS number used as local AS\n") |
| 5498 | |
| 5499 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_mask_host_cmd_vtysh, |
| 5500 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D host A.B.C.D", |
| 5501 | "Add an access list entry\n" |
| 5502 | "IP extended access list\n" |
| 5503 | "IP extended access list (expanded range)\n" |
| 5504 | "Specify packets to reject\n" |
| 5505 | "Specify packets to forward\n" |
| 5506 | "Any Internet Protocol\n" |
| 5507 | "Source address\n" |
| 5508 | "Source wildcard bits\n" |
| 5509 | "A single destination host\n" |
| 5510 | "Destination address\n") |
| 5511 | |
| 5512 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_name_cmd_vtysh, |
| 5513 | "show ip prefix-list WORD", |
| 5514 | "Show running system information\n" |
| 5515 | "IP information\n" |
| 5516 | "Build a prefix list\n" |
| 5517 | "Name of a prefix list\n") |
| 5518 | |
| 5519 | DEFSH (VTYSH_ZEBRA, show_ipv6_route_prefix_cmd_vtysh, |
| 5520 | "show ipv6 route X:X::X:X/M", |
| 5521 | "Show running system information\n" |
| 5522 | "IP information\n" |
| 5523 | "IPv6 routing table\n" |
| 5524 | "IPv6 prefix\n") |
| 5525 | |
| 5526 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_soft_cmd_vtysh, |
| 5527 | "clear ip bgp A.B.C.D vpnv4 unicast soft", |
| 5528 | "Reset functions\n" |
| 5529 | "IP information\n" |
| 5530 | "BGP information\n" |
| 5531 | "BGP neighbor address to clear\n" |
| 5532 | "Address family\n" |
| 5533 | "Address Family Modifier\n" |
| 5534 | "Soft reconfig\n") |
| 5535 | |
| 5536 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_next_hop_cmd_vtysh, |
| 5537 | "no match ip next-hop", |
| 5538 | "Negate a command or set its defaults\n" |
| 5539 | "Match values from routing table\n" |
| 5540 | "IP information\n" |
| 5541 | "Match next-hop address of route\n") |
| 5542 | |
| 5543 | DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_addr_cmd_vtysh, |
| 5544 | "no ip ospf authentication A.B.C.D", |
| 5545 | "Negate a command or set its defaults\n" |
| 5546 | "IP Information\n" |
| 5547 | "OSPF interface commands\n" |
| 5548 | "Enable authentication on this interface\n" |
| 5549 | "Address of interface") |
| 5550 | |
| 5551 | DEFSH (VTYSH_OSPF6D, ospf6_routemap_no_set_forwarding_cmd_vtysh, |
| 5552 | "no set forwarding-address X:X::X:X", |
| 5553 | "Negate a command or set its defaults\n" |
| 5554 | "Set value\n" |
| 5555 | "Forwarding Address\n" |
| 5556 | "IPv6 Address\n") |
| 5557 | |
| 5558 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community2_cmd_vtysh, |
| 5559 | "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)", |
| 5560 | "Show running system information\n" |
| 5561 | "IPv6 information\n" |
| 5562 | "MBGP information\n" |
| 5563 | "Display routes matching the communities\n" |
| 5564 | "community number\n" |
| 5565 | "Do not send outside local AS (well-known community)\n" |
| 5566 | "Do not advertise to any peer (well-known community)\n" |
| 5567 | "Do not export to next AS (well-known community)\n" |
| 5568 | "community number\n" |
| 5569 | "Do not send outside local AS (well-known community)\n" |
| 5570 | "Do not advertise to any peer (well-known community)\n" |
| 5571 | "Do not export to next AS (well-known community)\n") |
| 5572 | |
| 5573 | DEFSH (VTYSH_OSPFD, no_area_range_cost_cmd_vtysh, |
| 5574 | "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>", |
| 5575 | "Negate a command or set its defaults\n" |
| 5576 | "OSPF area parameters\n" |
| 5577 | "OSPF area ID in IP address format\n" |
| 5578 | "OSPF area ID as a decimal value\n" |
| 5579 | "Summarize routes matching address/mask (border routers only)\n" |
| 5580 | "Area range prefix\n" |
| 5581 | "User specified metric for this range\n" |
| 5582 | "Advertised metric for this range\n") |
| 5583 | |
| 5584 | DEFSH (VTYSH_RIPD, ip_rip_authentication_key_chain_cmd_vtysh, |
| 5585 | "ip rip authentication key-chain LINE", |
| 5586 | "IP information\n" |
| 5587 | "Routing Information Protocol\n" |
| 5588 | "Authentication control\n" |
| 5589 | "Authentication key-chain\n" |
| 5590 | "name of key-chain\n") |
| 5591 | |
| 5592 | DEFSH (VTYSH_BGPD, no_neighbor_distribute_list_cmd_vtysh, |
| 5593 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "distribute-list (<1-199>|<1300-2699>|WORD) (in|out)", |
| 5594 | "Negate a command or set its defaults\n" |
| 5595 | "Specify neighbor router\n" |
| 5596 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5597 | "Filter updates to/from this neighbor\n" |
| 5598 | "IP access-list number\n" |
| 5599 | "IP access-list number (expanded range)\n" |
| 5600 | "IP Access-list name\n" |
| 5601 | "Filter incoming updates\n" |
| 5602 | "Filter outgoing updates\n") |
| 5603 | |
| 5604 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_metric_cmd_vtysh, |
| 5605 | "no redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295>", |
| 5606 | "Negate a command or set its defaults\n" |
| 5607 | "Redistribute information from another routing protocol\n" |
| 5608 | "Connected\n" |
| 5609 | "Kernel routes\n" |
| 5610 | "Open Shurtest Path First (OSPFv3)\n" |
| 5611 | "Routing Information Protocol (RIPng)\n" |
| 5612 | "Static routes\n" |
| 5613 | "Metric for redistributed routes\n" |
| 5614 | "Default metric\n") |
| 5615 | |
| 5616 | DEFSH (VTYSH_OSPFD, no_area_vlink_authkey_cmd_vtysh, |
| 5617 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 5618 | "(authentication-key|)", |
| 5619 | "Negate a command or set its defaults\n" |
| 5620 | "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" |
| 5621 | "Authentication password (key)\n" "The OSPF password (key)") |
| 5622 | |
| 5623 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_cmd_vtysh, |
| 5624 | "show ipv6 prefix-list", |
| 5625 | "Show running system information\n" |
| 5626 | "IPv6 information\n" |
| 5627 | "Build a prefix list\n") |
| 5628 | |
| 5629 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_longer_cmd_vtysh, |
| 5630 | "show ip prefix-list WORD A.B.C.D/M longer", |
| 5631 | "Show running system information\n" |
| 5632 | "IP information\n" |
| 5633 | "Build a prefix list\n" |
| 5634 | "Name of a prefix list\n" |
| 5635 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 5636 | "Lookup longer prefix\n") |
| 5637 | |
| 5638 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_intra_external_cmd_vtysh, |
| 5639 | "distance ospf inter-area <1-255> intra-area <1-255> external <1-255>", |
| 5640 | "Define an administrative distance\n" |
| 5641 | "OSPF Administrative distance\n" |
| 5642 | "Inter-area routes\n" |
| 5643 | "Distance for inter-area routes\n" |
| 5644 | "Intra-area routes\n" |
| 5645 | "Distance for intra-area routes\n" |
| 5646 | "External routes\n" |
| 5647 | "Distance for external routes\n") |
| 5648 | |
| 5649 | DEFSH (VTYSH_BGPD, no_bgp_bestpath_med3_cmd_vtysh, |
| 5650 | "no bgp bestpath med missing-as-worst confed", |
| 5651 | "Negate a command or set its defaults\n" |
| 5652 | "BGP specific commands\n" |
| 5653 | "Change the default bestpath selection\n" |
| 5654 | "MED attribute\n" |
| 5655 | "Treat missing MED as the least preferred one\n" |
| 5656 | "Compare MED among confederation paths\n") |
| 5657 | |
| 5658 | DEFSH (VTYSH_RIPNGD, debug_ripng_packet_direct_cmd_vtysh, |
| 5659 | "debug ripng packet (recv|send)", |
| 5660 | "Debugging functions (see also 'undebug')\n" |
| 5661 | "RIPng configuration\n" |
| 5662 | "Debug option set for ripng packet\n" |
| 5663 | "Debug option set for receive packet\n" |
| 5664 | "Debug option set for send packet\n") |
| 5665 | |
| 5666 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_in_cmd_vtysh, |
| 5667 | "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft in", |
| 5668 | "Reset functions\n" |
| 5669 | "IP information\n" |
| 5670 | "BGP information\n" |
| 5671 | "Clear all members of peer-group\n" |
| 5672 | "BGP peer-group name\n" |
| 5673 | "Address family\n" |
| 5674 | "Address Family modifier\n" |
| 5675 | "Address Family modifier\n" |
| 5676 | "Soft reconfig\n" |
| 5677 | "Soft reconfig inbound update\n") |
| 5678 | |
| 5679 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_soft_out_cmd_vtysh, |
| 5680 | "clear ip bgp * soft out", |
| 5681 | "Reset functions\n" |
| 5682 | "IP information\n" |
| 5683 | "BGP information\n" |
| 5684 | "Clear all peers\n" |
| 5685 | "Soft reconfig\n" |
| 5686 | "Soft reconfig outbound update\n") |
| 5687 | |
| 5688 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh, |
| 5689 | "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) received prefix-filter", |
| 5690 | "Show running system information\n" |
| 5691 | "BGP information\n" |
| 5692 | "Address family\n" |
| 5693 | "Detailed information on TCP and BGP neighbor connections\n" |
| 5694 | "Neighbor to display information about\n" |
| 5695 | "Neighbor to display information about\n" |
| 5696 | "Display information received from a BGP neighbor\n" |
| 5697 | "Display the prefixlist filter\n") |
| 5698 | |
| 5699 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_cmd_vtysh, |
| 5700 | "clear ip bgp * ipv4 (unicast|multicast) soft", |
| 5701 | "Reset functions\n" |
| 5702 | "IP information\n" |
| 5703 | "BGP information\n" |
| 5704 | "Clear all peers\n" |
| 5705 | "Address family\n" |
| 5706 | "Address Family Modifier\n" |
| 5707 | "Address Family Modifier\n" |
| 5708 | "Soft reconfig\n") |
| 5709 | |
| 5710 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_out_cmd_vtysh, |
| 5711 | "clear ip bgp * ipv4 (unicast|multicast) soft out", |
| 5712 | "Reset functions\n" |
| 5713 | "IP information\n" |
| 5714 | "BGP information\n" |
| 5715 | "Clear all peers\n" |
| 5716 | "Address family\n" |
| 5717 | "Address Family modifier\n" |
| 5718 | "Address Family modifier\n" |
| 5719 | "Soft reconfig\n" |
| 5720 | "Soft reconfig outbound update\n") |
| 5721 | |
| 5722 | DEFSH (VTYSH_RIPD, accept_lifetime_day_month_day_month_cmd_vtysh, |
| 5723 | "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>", |
| 5724 | "Set accept lifetime of the key\n" |
| 5725 | "Time to start\n" |
| 5726 | "Day of th month to start\n" |
| 5727 | "Month of the year to start\n" |
| 5728 | "Year to start\n" |
| 5729 | "Time to expire\n" |
| 5730 | "Day of th month to expire\n" |
| 5731 | "Month of the year to expire\n" |
| 5732 | "Year to expire\n") |
| 5733 | |
| 5734 | DEFSH (VTYSH_BGPD, no_bgp_cluster_id_cmd_vtysh, |
| 5735 | "no bgp cluster-id", |
| 5736 | "Negate a command or set its defaults\n" |
| 5737 | "BGP information\n" |
| 5738 | "Configure Route-Reflector Cluster-id\n") |
| 5739 | |
| 5740 | DEFSH (VTYSH_BGPD, neighbor_maximum_prefix_warning_cmd_vtysh, |
| 5741 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295> warning-only", |
| 5742 | "Specify neighbor router\n" |
| 5743 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 5744 | "Maximum number of prefix accept from this peer\n" |
| 5745 | "maximum no. of prefix limit\n" |
| 5746 | "Only give warning message when limit is exceeded\n") |
| 5747 | |
| 5748 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_cmd_vtysh, |
| 5749 | "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export)", |
| 5750 | "Show running system information\n" |
| 5751 | "IP information\n" |
| 5752 | "BGP information\n" |
| 5753 | "Address family\n" |
| 5754 | "Address Family modifier\n" |
| 5755 | "Address Family modifier\n" |
| 5756 | "Display routes matching the communities\n" |
| 5757 | "community number\n" |
| 5758 | "Do not send outside local AS (well-known community)\n" |
| 5759 | "Do not advertise to any peer (well-known community)\n" |
| 5760 | "Do not export to next AS (well-known community)\n") |
| 5761 | |
| 5762 | DEFSH (VTYSH_OSPFD, no_area_stub_cmd_vtysh, |
| 5763 | "no area (A.B.C.D|<0-4294967295>) stub", |
| 5764 | "Negate a command or set its defaults\n" |
| 5765 | "OSPF area parameters\n" |
| 5766 | "OSPF area ID in IP address format\n" |
| 5767 | "OSPF area ID as a decimal value\n" |
| 5768 | "Configure OSPF area as stub\n") |
| 5769 | |
| 5770 | DEFSH (VTYSH_ZEBRA, no_debug_zebra_events_cmd_vtysh, |
| 5771 | "no debug zebra events", |
| 5772 | "Negate a command or set its defaults\n" |
| 5773 | "Debugging functions (see also 'undebug')\n" |
| 5774 | "Zebra configuration\n" |
| 5775 | "Debug option set for zebra events\n") |
| 5776 | |
| 5777 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_in_cmd_vtysh, |
| 5778 | "clear bgp ipv6 peer-group WORD in", |
| 5779 | "Reset functions\n" |
| 5780 | "BGP information\n" |
| 5781 | "Address family\n" |
| 5782 | "Clear all members of peer-group\n" |
| 5783 | "BGP peer-group name\n" |
| 5784 | "Soft reconfig inbound update\n") |
| 5785 | |
| 5786 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_list_cmd_vtysh, |
| 5787 | "show ipv6 bgp prefix-list WORD", |
| 5788 | "Show running system information\n" |
| 5789 | "IPv6 information\n" |
| 5790 | "BGP information\n" |
| 5791 | "Display routes matching the prefix-list\n" |
| 5792 | "IPv6 prefix-list name\n") |
| 5793 | |
| 5794 | DEFSH (VTYSH_BGPD, no_bgp_distance2_cmd_vtysh, |
| 5795 | "no distance bgp", |
| 5796 | "Negate a command or set its defaults\n" |
| 5797 | "Define an administrative distance\n" |
| 5798 | "BGP distance\n") |
| 5799 | |
| 5800 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_in_cmd_vtysh, |
| 5801 | "clear bgp ipv6 external WORD in", |
| 5802 | "Reset functions\n" |
| 5803 | "BGP information\n" |
| 5804 | "Address family\n" |
| 5805 | "Clear all external peers\n" |
| 5806 | "Soft reconfig inbound update\n") |
| 5807 | |
| 5808 | DEFSH (VTYSH_BGPD, no_set_aggregator_as_val_cmd_vtysh, |
| 5809 | "no set aggregator as <1-65535> A.B.C.D", |
| 5810 | "Negate a command or set its defaults\n" |
| 5811 | "Set values in destination routing protocol\n" |
| 5812 | "BGP aggregator attribute\n" |
| 5813 | "AS number of aggregator\n" |
| 5814 | "AS number\n" |
| 5815 | "IP address of aggregator\n") |
| 5816 | |
| 5817 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_type_routemap_cmd_vtysh, |
| 5818 | "default-information originate metric <0-16777214> metric-type (1|2) route-map WORD", |
| 5819 | "Control distribution of default information\n" |
| 5820 | "Distribute a default route\n" |
| 5821 | "OSPF default metric\n" |
| 5822 | "OSPF metric\n" |
| 5823 | "OSPF metric type for default routes\n" |
| 5824 | "Set OSPF External Type 1 metrics\n" |
| 5825 | "Set OSPF External Type 2 metrics\n" |
| 5826 | "Route map reference\n" |
| 5827 | "Pointer to route-map entries\n") |
| 5828 | |
| 5829 | DEFSH (VTYSH_BGPD, ip_community_list_name_standard_cmd_vtysh, |
| 5830 | "ip community-list standard WORD (deny|permit) .AA:NN", |
| 5831 | "IP information\n" |
| 5832 | "Add a community list entry\n" |
| 5833 | "Add a standard community-list entry\n" |
| 5834 | "Community list name\n" |
| 5835 | "Specify community to reject\n" |
| 5836 | "Specify community to accept\n" |
| 5837 | "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n") |
| 5838 | |
| 5839 | DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_self_cmd_vtysh, |
| 5840 | "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") (self-originate|)", |
| 5841 | "Show running system information\n" |
| 5842 | "IP information\n" |
| 5843 | "OSPF information\n" |
| 5844 | "Database summary\n" |
| 5845 | "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" "" |
| 5846 | "Self-originated link states\n") |
| 5847 | |
| 5848 | DEFSH (VTYSH_BGPD, bgp_router_id_cmd_vtysh, |
| 5849 | "bgp router-id A.B.C.D", |
| 5850 | "BGP information\n" |
| 5851 | "Override configured router identifier\n" |
| 5852 | "Manually configured router identifier\n") |
| 5853 | |
| 5854 | DEFSH (VTYSH_ZEBRA, show_ip_forwarding_cmd_vtysh, |
| 5855 | "show ip forwarding", |
| 5856 | "Show running system information\n" |
| 5857 | "IP information\n" |
| 5858 | "IP forwarding status\n") |
| 5859 | |
| 5860 | DEFSH (VTYSH_BGPD, ip_community_list_standard_cmd_vtysh, |
| 5861 | "ip community-list <1-99> (deny|permit) .AA:NN", |
| 5862 | "IP information\n" |
| 5863 | "Add a community list entry\n" |
| 5864 | "Community list number (standard)\n" |
| 5865 | "Specify community to reject\n" |
| 5866 | "Specify community to accept\n" |
| 5867 | "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n") |
| 5868 | |
| 5869 | DEFSH (VTYSH_OSPF6D, debug_ospf6_damp_cmd_vtysh, |
| 5870 | "debug ospf6 damp", |
| 5871 | "Debugging functions (see also 'undebug')\n" |
| 5872 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 5873 | "Flap-dampening information\n" |
| 5874 | ) |
| 5875 | |
| 5876 | DEFSH (VTYSH_ZEBRA, no_multicast_cmd_vtysh, |
| 5877 | "no multicast", |
| 5878 | "Negate a command or set its defaults\n" |
| 5879 | "Unset multicast flag to interface\n") |
| 5880 | |
| 5881 | DEFSH (VTYSH_BGPD, show_ip_bgp_instance_ipv4_summary_cmd_vtysh, |
| 5882 | "show ip bgp view WORD ipv4 (unicast|multicast) summary", |
| 5883 | "Show running system information\n" |
| 5884 | "IP information\n" |
| 5885 | "BGP information\n" |
| 5886 | "BGP view\n" |
| 5887 | "View name\n" |
| 5888 | "Address family\n" |
| 5889 | "Address Family modifier\n" |
| 5890 | "Address Family modifier\n" |
| 5891 | "Summary of BGP neighbor status\n") |
| 5892 | |
| 5893 | DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_cmd_vtysh, |
| 5894 | "clear bgp (A.B.C.D|X:X::X:X) soft", |
| 5895 | "Reset functions\n" |
| 5896 | "BGP information\n" |
| 5897 | "BGP neighbor address to clear\n" |
| 5898 | "BGP IPv6 neighbor to clear\n" |
| 5899 | "Soft reconfig\n") |
| 5900 | |
| 5901 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_cmd_vtysh, |
| 5902 | "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", |
| 5903 | "Add an access list entry\n" |
| 5904 | "IP extended access list\n" |
| 5905 | "IP extended access list (expanded range)\n" |
| 5906 | "Specify packets to reject\n" |
| 5907 | "Specify packets to forward\n" |
| 5908 | "Any Internet Protocol\n" |
| 5909 | "Source address\n" |
| 5910 | "Source wildcard bits\n" |
| 5911 | "Destination address\n" |
| 5912 | "Destination Wildcard bits\n") |
| 5913 | |
| 5914 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_filter_list_cmd_vtysh, |
| 5915 | "show ip bgp ipv4 (unicast|multicast) filter-list WORD", |
| 5916 | "Show running system information\n" |
| 5917 | "IP information\n" |
| 5918 | "BGP information\n" |
| 5919 | "Address family\n" |
| 5920 | "Address Family modifier\n" |
| 5921 | "Address Family modifier\n" |
| 5922 | "Display routes conforming to the filter-list\n" |
| 5923 | "Regular expression access list name\n") |
| 5924 | |
| 5925 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_summary_cmd_vtysh, |
| 5926 | "show ip bgp ipv4 (unicast|multicast) summary", |
| 5927 | "Show running system information\n" |
| 5928 | "IP information\n" |
| 5929 | "BGP information\n" |
| 5930 | "Address family\n" |
| 5931 | "Address Family modifier\n" |
| 5932 | "Address Family modifier\n" |
| 5933 | "Summary of BGP neighbor status\n") |
| 5934 | |
| 5935 | DEFSH (VTYSH_RIPD, no_rip_redistribute_type_metric_routemap_cmd_vtysh, |
| 5936 | "no redistribute (kernel|connected|static|ospf|bgp) metric <0-16> route-map WORD", |
| 5937 | "Negate a command or set its defaults\n" |
| 5938 | "Redistribute information from another routing protocol\n" |
| 5939 | "Kernel routes\n" |
| 5940 | "Connected\n" |
| 5941 | "Static routes\n" |
| 5942 | "Open Shortest Path First (OSPF)\n" |
| 5943 | "Border Gateway Protocol (BGP)\n" |
| 5944 | "Metric\n" |
| 5945 | "Metric value\n" |
| 5946 | "Route map reference\n" |
| 5947 | "Pointer to route-map entries\n") |
| 5948 | |
| 5949 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_cmd_vtysh, |
| 5950 | "clear ip bgp external ipv4 (unicast|multicast) soft", |
| 5951 | "Reset functions\n" |
| 5952 | "IP information\n" |
| 5953 | "BGP information\n" |
| 5954 | "Clear all external peers\n" |
| 5955 | "Address family\n" |
| 5956 | "Address Family modifier\n" |
| 5957 | "Address Family modifier\n" |
| 5958 | "Soft reconfig\n") |
| 5959 | |
| 5960 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_out_cmd_vtysh, |
| 5961 | "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft out", |
| 5962 | "Reset functions\n" |
| 5963 | "BGP information\n" |
| 5964 | "Address family\n" |
| 5965 | "BGP neighbor address to clear\n" |
| 5966 | "BGP IPv6 neighbor to clear\n" |
| 5967 | "Soft reconfig\n" |
| 5968 | "Soft reconfig outbound update\n") |
| 5969 | |
| 5970 | DEFSH (VTYSH_OSPFD, show_ip_ospf_route_cmd_vtysh, |
| 5971 | "show ip ospf route", |
| 5972 | "Show running system information\n" |
| 5973 | "IP information\n" |
| 5974 | "OSPF information\n" |
| 5975 | "OSPF routing table\n") |
| 5976 | |
| 5977 | DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_cmd_vtysh, |
| 5978 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 5979 | "(authentication|) (message-digest|null)", |
| 5980 | "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" |
| 5981 | "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n") |
| 5982 | |
| 5983 | DEFSH (VTYSH_BGPD, no_bgp_network_cmd_vtysh, |
| 5984 | "no network A.B.C.D/M", |
| 5985 | "Negate a command or set its defaults\n" |
| 5986 | "Specify a network to announce via BGP\n" |
| 5987 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 5988 | |
| 5989 | DEFSH (VTYSH_BGPD, no_ip_as_path_cmd_vtysh, |
| 5990 | "no ip as-path access-list WORD (deny|permit) .LINE", |
| 5991 | "Negate a command or set its defaults\n" |
| 5992 | "IP information\n" |
| 5993 | "BGP autonomous system path filter\n" |
| 5994 | "Specify an access list name\n" |
| 5995 | "Regular expression access list name\n" |
| 5996 | "Specify packets to reject\n" |
| 5997 | "Specify packets to forward\n" |
| 5998 | "A regular-expression to match the BGP AS paths\n") |
| 5999 | |
| 6000 | DEFSH (VTYSH_BGPD, neighbor_distribute_list_cmd_vtysh, |
| 6001 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "distribute-list (<1-199>|<1300-2699>|WORD) (in|out)", |
| 6002 | "Specify neighbor router\n" |
| 6003 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 6004 | "Filter updates to/from this neighbor\n" |
| 6005 | "IP access-list number\n" |
| 6006 | "IP access-list number (expanded range)\n" |
| 6007 | "IP Access-list name\n" |
| 6008 | "Filter incoming updates\n" |
| 6009 | "Filter outgoing updates\n") |
| 6010 | |
| 6011 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_le_ge_cmd_vtysh, |
| 6012 | "ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32> ge <0-32>", |
| 6013 | "IP information\n" |
| 6014 | "Build a prefix list\n" |
| 6015 | "Name of a prefix list\n" |
| 6016 | "Specify packets to reject\n" |
| 6017 | "Specify packets to forward\n" |
| 6018 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 6019 | "Maximum prefix length to be matched\n" |
| 6020 | "Maximum prefix length\n" |
| 6021 | "Minimum prefix length to be matched\n" |
| 6022 | "Minimum prefix length\n") |
| 6023 | |
| 6024 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, no_ipv6_access_list_all_cmd_vtysh, |
| 6025 | "no ipv6 access-list WORD", |
| 6026 | "Negate a command or set its defaults\n" |
| 6027 | "IPv6 information\n" |
| 6028 | "Add an access list entry\n" |
| 6029 | "IPv6 zebra access-list\n") |
| 6030 | |
| 6031 | DEFSH (VTYSH_BGPD, ip_community_list_name_expanded_cmd_vtysh, |
| 6032 | "ip community-list expanded WORD (deny|permit) .LINE", |
| 6033 | "IP information\n" |
| 6034 | "Add a community list entry\n" |
| 6035 | "Add an expanded community-list entry\n" |
| 6036 | "Community list name\n" |
| 6037 | "Specify community to reject\n" |
| 6038 | "Specify community to accept\n" |
| 6039 | "An ordered list as a regular-expression\n") |
| 6040 | |
| 6041 | DEFSH (VTYSH_BGPD, neighbor_timers_connect_cmd_vtysh, |
| 6042 | "neighbor (A.B.C.D|X:X::X:X) " "timers connect <0-65535>", |
| 6043 | "Specify neighbor router\n" |
| 6044 | "Neighbor address\nIPv6 address\n" |
| 6045 | "BGP per neighbor timers\n" |
| 6046 | "BGP connect timer\n" |
| 6047 | "Connect timer\n") |
| 6048 | |
| 6049 | DEFSH (VTYSH_ZEBRA, ipv6_address_cmd_vtysh, |
| 6050 | "ipv6 address X:X::X:X/M", |
| 6051 | "Interface Internet Protocol config commands\n" |
| 6052 | "Set the IP address of an interface\n" |
| 6053 | "IPv6 address (e.g. 3ffe:506::1/48)\n") |
| 6054 | |
| 6055 | DEFSH (VTYSH_BGPD, ip_community_list_expanded_cmd_vtysh, |
| 6056 | "ip community-list <100-199> (deny|permit) .LINE", |
| 6057 | "IP information\n" |
| 6058 | "Add a community list entry\n" |
| 6059 | "Community list number (expanded)\n" |
| 6060 | "Specify community to reject\n" |
| 6061 | "Specify community to accept\n" |
| 6062 | "An ordered list as a regular-expression\n") |
| 6063 | |
| 6064 | DEFSH (VTYSH_RIPD, rip_offset_list_ifname_cmd_vtysh, |
| 6065 | "offset-list WORD (in|out) <0-16> IFNAME", |
| 6066 | "Modify RIP metric\n" |
| 6067 | "Access-list name\n" |
| 6068 | "For incoming updates\n" |
| 6069 | "For outgoing updates\n" |
| 6070 | "Metric value\n" |
| 6071 | "Interface to match\n") |
| 6072 | |
| 6073 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_prefix_longer_cmd_vtysh, |
| 6074 | "show ipv6 mbgp X:X::X:X/M longer-prefixes", |
| 6075 | "Show running system information\n" |
| 6076 | "IPv6 information\n" |
| 6077 | "MBGP information\n" |
| 6078 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 6079 | "Display route and more specific routes\n") |
| 6080 | |
| 6081 | DEFSH (VTYSH_OSPFD, debug_ospf_ism_sub_cmd_vtysh, |
| 6082 | "debug ospf ism (status|events|timers)", |
| 6083 | "Debugging functions (see also 'undebug')\n" |
| 6084 | "OSPF information\n" |
| 6085 | "OSPF Interface State Machine\n" |
| 6086 | "ISM Status Information\n" |
| 6087 | "ISM Event Information\n" |
| 6088 | "ISM TImer Information\n") |
| 6089 | |
| 6090 | DEFSH (VTYSH_BGPD, neighbor_send_community_cmd_vtysh, |
| 6091 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community", |
| 6092 | "Specify neighbor router\n" |
| 6093 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 6094 | "Send Community attribute to this neighbor\n") |
| 6095 | |
| 6096 | DEFSH (VTYSH_BGPD, show_bgp_route_map_cmd_vtysh, |
| 6097 | "show bgp route-map WORD", |
| 6098 | "Show running system information\n" |
| 6099 | "BGP information\n" |
| 6100 | "Display routes matching the route-map\n" |
| 6101 | "A route-map to match on\n") |
| 6102 | |
| 6103 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_route_cmd_vtysh, |
| 6104 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn A.B.C.D", |
| 6105 | "Show running system information\n" |
| 6106 | "IP information\n" |
| 6107 | "BGP information\n" |
| 6108 | "Display VPNv4 NLRI specific information\n" |
| 6109 | "Display information for a route distinguisher\n" |
| 6110 | "VPN Route Distinguisher\n" |
| 6111 | "Network in the BGP routing table to display\n") |
| 6112 | |
| 6113 | DEFSH (VTYSH_ZEBRA, no_ipv6_route_ifname_pref_cmd_vtysh, |
| 6114 | "no ipv6 route X:X::X:X/M X:X::X:X INTERFACE <1-255>", |
| 6115 | "Negate a command or set its defaults\n" |
| 6116 | "IP information\n" |
| 6117 | "Establish static routes\n" |
| 6118 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 6119 | "IPv6 gateway address\n" |
| 6120 | "IPv6 gateway interface name\n" |
| 6121 | "Distance value for this prefix\n") |
| 6122 | |
| 6123 | DEFSH (VTYSH_BGPD, dump_bgp_updates_interval_cmd_vtysh, |
| 6124 | "dump bgp updates PATH INTERVAL", |
| 6125 | "Dump packet\n" |
| 6126 | "BGP packet dump\n" |
| 6127 | "Dump BGP updates only\n" |
| 6128 | "Output filename\n" |
| 6129 | "Interval of output\n") |
| 6130 | |
| 6131 | DEFSH (VTYSH_BGPD, no_bgp_confederation_identifier_arg_cmd_vtysh, |
| 6132 | "no bgp confederation identifier <1-65535>", |
| 6133 | "Negate a command or set its defaults\n" |
| 6134 | "BGP specific commands\n" |
| 6135 | "AS confederation parameters\n" |
| 6136 | "AS number\n" |
| 6137 | "Set routing domain confederation AS\n") |
| 6138 | |
| 6139 | DEFSH (VTYSH_OSPFD, neighbor_priority_poll_interval_cmd_vtysh, |
| 6140 | "neighbor A.B.C.D priority <0-255> poll-interval <1-65535>", |
| 6141 | "Specify neighbor router\n" |
| 6142 | "Neighbor IP address\n" |
| 6143 | "Neighbor Priority\n" |
| 6144 | "Priority\n" |
| 6145 | "Dead Neighbor Polling interval\n" |
| 6146 | "Seconds\n") |
| 6147 | |
| 6148 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_cmd_vtysh, |
| 6149 | "show ipv6 ospf6 database (router|network|as-external|intra-prefix|inter-prefix|inter-router|link|*|HEX|dump|detail)", |
| 6150 | "Show running system information\n" |
| 6151 | "IPv6 Information\n" |
| 6152 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 6153 | "LSA Database\n" |
| 6154 | "Router-LSA\n" |
| 6155 | "Network-LSA\n" |
| 6156 | "AS-External-LSA\n" |
| 6157 | "Intra-Area-Prefix-LSA\n" |
| 6158 | "Inter-Area-Router-LSA\n" |
| 6159 | "Inter-Area-Prefix-LSA\n" |
| 6160 | "Link-LSA\n" |
| 6161 | "All LS Type\n" |
| 6162 | "Specify LS Type by Hex\n" |
| 6163 | "Dump raw LSA data in Hex\n" |
| 6164 | "show detail of LSAs\n" |
| 6165 | ) |
| 6166 | |
| 6167 | DEFSH (VTYSH_BGPD, no_neighbor_route_server_client_cmd_vtysh, |
| 6168 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-server-client", |
| 6169 | "Negate a command or set its defaults\n" |
| 6170 | "Specify neighbor router\n" |
| 6171 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 6172 | "Configure a neighbor as Route Server client\n") |
| 6173 | |
| 6174 | DEFSH (VTYSH_BGPD, show_ip_bgp_community_all_cmd_vtysh, |
| 6175 | "show ip bgp community", |
| 6176 | "Show running system information\n" |
| 6177 | "IP information\n" |
| 6178 | "BGP information\n" |
| 6179 | "Display routes matching the communities\n") |
| 6180 | |
| 6181 | DEFSH (VTYSH_OSPFD, ospf_message_digest_key_cmd_vtysh, |
| 6182 | "ospf message-digest-key <1-255> md5 KEY", |
| 6183 | "OSPF interface commands\n" |
| 6184 | "Message digest authentication password (key)\n" |
| 6185 | "Key ID\n" |
| 6186 | "Use MD5 algorithm\n" |
| 6187 | "The OSPF password (key)") |
| 6188 | |
| 6189 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_soft_in_cmd_vtysh, |
| 6190 | "clear ip bgp * ipv4 (unicast|multicast) soft in", |
| 6191 | "Reset functions\n" |
| 6192 | "IP information\n" |
| 6193 | "BGP information\n" |
| 6194 | "Clear all peers\n" |
| 6195 | "Address family\n" |
| 6196 | "Address Family modifier\n" |
| 6197 | "Address Family modifier\n" |
| 6198 | "Soft reconfig\n" |
| 6199 | "Soft reconfig inbound update\n") |
| 6200 | |
| 6201 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_in_prefix_filter_cmd_vtysh, |
| 6202 | "clear bgp ipv6 (A.B.C.D|X:X::X:X) in prefix-filter", |
| 6203 | "Reset functions\n" |
| 6204 | "BGP information\n" |
| 6205 | "Address family\n" |
| 6206 | "BGP neighbor address to clear\n" |
| 6207 | "BGP IPv6 neighbor to clear\n" |
| 6208 | "Soft reconfig inbound update\n" |
| 6209 | "Push out the existing ORF prefix-list\n") |
| 6210 | |
| 6211 | DEFSH (VTYSH_BGPD, no_match_community_cmd_vtysh, |
| 6212 | "no match community", |
| 6213 | "Negate a command or set its defaults\n" |
| 6214 | "Match values from routing table\n" |
| 6215 | "Match BGP community list\n") |
| 6216 | |
| 6217 | DEFSH (VTYSH_RIPD, rip_redistribute_type_metric_cmd_vtysh, |
| 6218 | "redistribute (kernel|connected|static|ospf|bgp) metric <0-16>", |
| 6219 | "Redistribute information from another routing protocol\n" |
| 6220 | "Kernel routes\n" |
| 6221 | "Connected\n" |
| 6222 | "Static routes\n" |
| 6223 | "Open Shortest Path First (OSPF)\n" |
| 6224 | "Border Gateway Protocol (BGP)\n" |
| 6225 | "Metric\n" |
| 6226 | "Metric value\n") |
| 6227 | |
| 6228 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_summary_cmd_vtysh, |
| 6229 | "show ip bgp vpnv4 all summary", |
| 6230 | "Show running system information\n" |
| 6231 | "IP information\n" |
| 6232 | "BGP information\n" |
| 6233 | "Display VPNv4 NLRI specific information\n" |
| 6234 | "Display information about all VPNv4 NLRIs\n" |
| 6235 | "Summary of BGP neighbor status\n") |
| 6236 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6237 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community2_exact_cmd_vtysh, |
| 6238 | "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", |
| 6239 | "Show running system information\n" |
| 6240 | "IP information\n" |
| 6241 | "BGP information\n" |
| 6242 | "Address family\n" |
| 6243 | "Address Family modifier\n" |
| 6244 | "Address Family modifier\n" |
| 6245 | "Display routes matching the communities\n" |
| 6246 | "community number\n" |
| 6247 | "Do not send outside local AS (well-known community)\n" |
| 6248 | "Do not advertise to any peer (well-known community)\n" |
| 6249 | "Do not export to next AS (well-known community)\n" |
| 6250 | "community number\n" |
| 6251 | "Do not send outside local AS (well-known community)\n" |
| 6252 | "Do not advertise to any peer (well-known community)\n" |
| 6253 | "Do not export to next AS (well-known community)\n" |
| 6254 | "Exact match of the communities") |
| 6255 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6256 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_regexp_cmd_vtysh, |
| 6257 | "show ipv6 mbgp regexp .LINE", |
| 6258 | "Show running system information\n" |
| 6259 | "IP information\n" |
| 6260 | "BGP information\n" |
| 6261 | "Display routes matching the AS path regular expression\n" |
| 6262 | "A regular-expression to match the MBGP AS paths\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6263 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6264 | DEFSH (VTYSH_BGPD, no_set_community_delete_cmd_vtysh, |
| 6265 | "no set comm-list", |
| 6266 | "Negate a command or set its defaults\n" |
| 6267 | "Set values in destination routing protocol\n" |
| 6268 | "set BGP community list (for deletion)\n") |
| 6269 | |
| 6270 | DEFSH (VTYSH_OSPFD, no_debug_ospf_zebra_cmd_vtysh, |
| 6271 | "no debug ospf zebra", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6272 | "Negate a command or set its defaults\n" |
| 6273 | "Debugging functions (see also 'undebug')\n" |
| 6274 | "OSPF information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6275 | "OSPF Zebra information\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6276 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6277 | DEFSH (VTYSH_ZEBRA, debug_zebra_packet_cmd_vtysh, |
| 6278 | "debug zebra packet", |
| 6279 | "Debugging functions (see also 'undebug')\n" |
| 6280 | "Zebra configuration\n" |
| 6281 | "Debug option set for zebra packet\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6282 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6283 | DEFSH (VTYSH_RIPD, no_rip_redistribute_rip_cmd_vtysh, |
| 6284 | "no redistribute rip", |
| 6285 | "Negate a command or set its defaults\n" |
| 6286 | "Redistribute information from another routing protocol\n" |
| 6287 | "Routing Information Protocol (RIP)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6288 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6289 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_type_cmd_vtysh, |
| 6290 | "default-information originate metric <0-16777214> metric-type (1|2)", |
| 6291 | "Control distribution of default information\n" |
| 6292 | "Distribute a default route\n" |
| 6293 | "OSPF default metric\n" |
| 6294 | "OSPF metric\n" |
| 6295 | "OSPF metric type for default routes\n" |
| 6296 | "Set OSPF External Type 1 metrics\n" |
| 6297 | "Set OSPF External Type 2 metrics\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6298 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6299 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_out_cmd_vtysh, |
| 6300 | "clear ip bgp * ipv4 (unicast|multicast) out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6301 | "Reset functions\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6302 | "IP information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6303 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6304 | "Clear all peers\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6305 | "Address family\n" |
| 6306 | "Address Family modifier\n" |
| 6307 | "Address Family modifier\n" |
| 6308 | "Soft reconfig outbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6309 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6310 | DEFSH (VTYSH_RIPD, no_rip_version_cmd_vtysh, |
| 6311 | "no version", |
| 6312 | "Negate a command or set its defaults\n" |
| 6313 | "Set routing protocol version\n") |
| 6314 | |
| 6315 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_cmd_vtysh, |
| 6316 | "show ipv6 ospf6 area A.B.C.D topology", |
| 6317 | "Show running system information\n" |
| 6318 | "IPv6 Information\n" |
| 6319 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 6320 | "Area information\n" |
| 6321 | "Area ID (as an IPv4 notation)\n" |
| 6322 | "Shortest Path First tree information\n" |
| 6323 | "Displays SPF topology table\n") |
| 6324 | |
| 6325 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_match_metric_val_cmd_vtysh, |
| 6326 | "no match metric <0-4294967295>", |
| 6327 | "Negate a command or set its defaults\n" |
| 6328 | "Match values from routing table\n" |
| 6329 | "Match metric of route\n" |
| 6330 | "Metric value\n") |
| 6331 | |
| 6332 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_prefix_cmd_vtysh, |
| 6333 | "show ip bgp flap-statistics A.B.C.D/M", |
| 6334 | "Show running system information\n" |
| 6335 | "IP information\n" |
| 6336 | "BGP information\n" |
| 6337 | "Display flap statistics of routes\n" |
| 6338 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 6339 | |
| 6340 | DEFSH (VTYSH_BGPD, bgp_always_compare_med_cmd_vtysh, |
| 6341 | "bgp always-compare-med", |
| 6342 | "BGP specific commands\n" |
| 6343 | "Allow comparing MED from different neighbors\n") |
| 6344 | |
| 6345 | DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_out_cmd_vtysh, |
| 6346 | "clear bgp view WORD * soft out", |
| 6347 | "Reset functions\n" |
| 6348 | "BGP information\n" |
| 6349 | "BGP view\n" |
| 6350 | "view name\n" |
| 6351 | "Clear all peers\n" |
| 6352 | "Soft reconfig\n" |
| 6353 | "Soft reconfig outbound update\n") |
| 6354 | |
| 6355 | DEFSH (VTYSH_OSPFD, no_area_vlink_param2_cmd_vtysh, |
| 6356 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 6357 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) " |
| 6358 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval)", |
| 6359 | "Negate a command or set its defaults\n" |
| 6360 | "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" |
| 6361 | "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" |
| 6362 | "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") |
| 6363 | |
| 6364 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh, |
| 6365 | "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) advertised-routes", |
| 6366 | "Show running system information\n" |
| 6367 | "IP information\n" |
| 6368 | "BGP information\n" |
| 6369 | "Address family\n" |
| 6370 | "Address Family modifier\n" |
| 6371 | "Address Family modifier\n" |
| 6372 | "Detailed information on TCP and BGP neighbor connections\n" |
| 6373 | "Neighbor to display information about\n" |
| 6374 | "Neighbor to display information about\n" |
| 6375 | "Display the routes advertised to a BGP neighbor\n") |
| 6376 | |
| 6377 | DEFSH (VTYSH_RIPD, rip_offset_list_cmd_vtysh, |
| 6378 | "offset-list WORD (in|out) <0-16>", |
| 6379 | "Modify RIP metric\n" |
| 6380 | "Access-list name\n" |
| 6381 | "For incoming updates\n" |
| 6382 | "For outgoing updates\n" |
| 6383 | "Metric value\n") |
| 6384 | |
| 6385 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_out_cmd_vtysh, |
| 6386 | "clear bgp ipv6 <1-65535> out", |
| 6387 | "Reset functions\n" |
| 6388 | "BGP information\n" |
| 6389 | "Address family\n" |
| 6390 | "Clear peers with the AS number\n" |
| 6391 | "Soft reconfig outbound update\n") |
| 6392 | |
| 6393 | DEFSH (VTYSH_BGPD, dump_bgp_routes_cmd_vtysh, |
| 6394 | "dump bgp routes-mrt PATH", |
| 6395 | "Dump packet\n" |
| 6396 | "BGP packet dump\n" |
| 6397 | "Dump whole BGP routing table\n" |
| 6398 | "Output filename\n") |
| 6399 | |
| 6400 | DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_md5_cmd_vtysh, |
| 6401 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 6402 | "(authentication|) " |
| 6403 | "(message-digest-key|)", |
| 6404 | "Negate a command or set its defaults\n" |
| 6405 | "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" |
| 6406 | "Enable authentication on this virtual link\n" "dummy string \n" |
| 6407 | "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)") |
| 6408 | |
| 6409 | DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_advertise_prefix_list_cmd_vtysh, |
| 6410 | "no ipv6 ospf6 advertise prefix-list", |
| 6411 | "Negate a command or set its defaults\n" |
| 6412 | "IPv6 Information\n" |
| 6413 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 6414 | "Advertising options\n" |
| 6415 | "Filter prefix using prefix-list\n" |
| 6416 | ) |
| 6417 | |
| 6418 | DEFSH (VTYSH_OSPF6D, show_ipv6_route_ospf6_external_cmd_vtysh, |
| 6419 | "show ipv6 ospf6 route redistribute", |
| 6420 | "Show running system information\n" |
| 6421 | "IPv6 Information\n" |
| 6422 | "Routing Table\n" |
| 6423 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 6424 | "redistributing External information\n" |
| 6425 | ) |
| 6426 | |
| 6427 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh, |
| 6428 | "show ip bgp vpnv4 all neighbors A.B.C.D advertised-routes", |
| 6429 | "Show running system information\n" |
| 6430 | "IP information\n" |
| 6431 | "BGP information\n" |
| 6432 | "Display VPNv4 NLRI specific information\n" |
| 6433 | "Display information about all VPNv4 NLRIs\n" |
| 6434 | "Detailed information on TCP and BGP neighbor connections\n" |
| 6435 | "Neighbor to display information about\n" |
| 6436 | "Display the routes advertised to a BGP neighbor\n") |
| 6437 | |
| 6438 | DEFSH (VTYSH_RIPD, rip_passive_interface_cmd_vtysh, |
| 6439 | "passive-interface IFNAME", |
| 6440 | "Suppress routing updates on an interface\n" |
| 6441 | "Interface name\n") |
| 6442 | |
| 6443 | DEFSH (VTYSH_OSPFD, no_debug_ospf_lsa_cmd_vtysh, |
| 6444 | "no debug ospf lsa", |
| 6445 | "Negate a command or set its defaults\n" |
| 6446 | "Debugging functions (see also 'undebug')\n" |
| 6447 | "OSPF information\n" |
| 6448 | "OSPF Link State Advertisement\n") |
| 6449 | |
| 6450 | DEFSH (VTYSH_RIPNGD, no_ripng_network_cmd_vtysh, |
| 6451 | "no network IF_OR_ADDR", |
| 6452 | "Negate a command or set its defaults\n" |
| 6453 | "RIPng enable on specified interface or network.\n" |
| 6454 | "Interface or address") |
| 6455 | |
| 6456 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_type_cmd_vtysh, |
| 6457 | "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2)", |
| 6458 | "Redistribute information from another routing protocol\n" |
| 6459 | "Kernel routes\n" |
| 6460 | "Connected\n" |
| 6461 | "Static routes\n" |
| 6462 | "Routing Information Protocol (RIP)\n" |
| 6463 | "Border Gateway Protocol (BGP)\n" |
| 6464 | "Metric for redistributed routes\n" |
| 6465 | "OSPF default metric\n" |
| 6466 | "OSPF exterior metric type for redistributed routes\n" |
| 6467 | "Set OSPF External Type 1 metrics\n" |
| 6468 | "Set OSPF External Type 2 metrics\n") |
| 6469 | |
| 6470 | DEFSH (VTYSH_BGPD, clear_bgp_external_soft_out_cmd_vtysh, |
| 6471 | "clear bgp external soft out", |
| 6472 | "Reset functions\n" |
| 6473 | "BGP information\n" |
| 6474 | "Clear all external peers\n" |
| 6475 | "Soft reconfig\n" |
| 6476 | "Soft reconfig outbound update\n") |
| 6477 | |
| 6478 | DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_standard_cmd_vtysh, |
| 6479 | "no ip extcommunity-list standard WORD (deny|permit) .AA:NN", |
| 6480 | "Negate a command or set its defaults\n" |
| 6481 | "IP information\n" |
| 6482 | "Add a extended community list entry\n" |
| 6483 | "Specify standard extcommunity-list\n" |
| 6484 | "Extended Community list name\n" |
| 6485 | "Specify community to reject\n" |
| 6486 | "Specify community to accept\n" |
| 6487 | "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n") |
| 6488 | |
| 6489 | DEFSH (VTYSH_OSPFD, no_ospf_default_metric_cmd_vtysh, |
| 6490 | "no default-metric", |
| 6491 | "Negate a command or set its defaults\n" |
| 6492 | "Set metric of redistributed routes\n") |
| 6493 | |
| 6494 | DEFSH (VTYSH_BGPD, show_ip_bgp_paths_cmd_vtysh, |
| 6495 | "show ip bgp paths", |
| 6496 | "Show running system information\n" |
| 6497 | "IP information\n" |
| 6498 | "BGP information\n" |
| 6499 | "Path information\n") |
| 6500 | |
| 6501 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_advertised_route_cmd_vtysh, |
| 6502 | "show ip bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes", |
| 6503 | "Show running system information\n" |
| 6504 | "IP information\n" |
| 6505 | "BGP information\n" |
| 6506 | "Detailed information on TCP and BGP neighbor connections\n" |
| 6507 | "Neighbor to display information about\n" |
| 6508 | "Neighbor to display information about\n" |
| 6509 | "Display the routes advertised to a BGP neighbor\n") |
| 6510 | |
| 6511 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_cmd_vtysh, |
| 6512 | "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2)", |
| 6513 | "Redistribute information from another routing protocol\n" |
| 6514 | "Kernel routes\n" |
| 6515 | "Connected\n" |
| 6516 | "Static routes\n" |
| 6517 | "Routing Information Protocol (RIP)\n" |
| 6518 | "Border Gateway Protocol (BGP)\n" |
| 6519 | "OSPF exterior metric type for redistributed routes\n" |
| 6520 | "Set OSPF External Type 1 metrics\n" |
| 6521 | "Set OSPF External Type 2 metrics\n") |
| 6522 | |
| 6523 | DEFSH (VTYSH_BGPD, match_ipv6_next_hop_cmd_vtysh, |
| 6524 | "match ipv6 next-hop X:X::X:X", |
| 6525 | "Match values from routing table\n" |
| 6526 | "IPv6 information\n" |
| 6527 | "Match IPv6 next-hop address of route\n" |
| 6528 | "IPv6 address of next hop\n") |
| 6529 | |
| 6530 | DEFSH (VTYSH_OSPFD, ip_ospf_transmit_delay_cmd_vtysh, |
| 6531 | "ip ospf transmit-delay <1-65535>", |
| 6532 | "IP Information\n" |
| 6533 | "OSPF interface commands\n" |
| 6534 | "Link state transmit delay\n" |
| 6535 | "Seconds\n") |
| 6536 | |
| 6537 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_soft_in_cmd_vtysh, |
| 6538 | "clear ip bgp <1-65535> vpnv4 unicast soft in", |
| 6539 | "Reset functions\n" |
| 6540 | "IP information\n" |
| 6541 | "BGP information\n" |
| 6542 | "Clear peers with the AS number\n" |
| 6543 | "Address family\n" |
| 6544 | "Address Family modifier\n" |
| 6545 | "Soft reconfig\n" |
| 6546 | "Soft reconfig inbound update\n") |
| 6547 | |
| 6548 | DEFSH (VTYSH_RIPD, rip_redistribute_type_routemap_cmd_vtysh, |
| 6549 | "redistribute (kernel|connected|static|ospf|bgp) route-map WORD", |
| 6550 | "Redistribute information from another routing protocol\n" |
| 6551 | "Kernel routes\n" |
| 6552 | "Connected\n" |
| 6553 | "Static routes\n" |
| 6554 | "Open Shortest Path First (OSPF)\n" |
| 6555 | "Border Gateway Protocol (BGP)\n" |
| 6556 | "Route map reference\n" |
| 6557 | "Pointer to route-map entries\n") |
| 6558 | |
| 6559 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_filter_list_cmd_vtysh, |
| 6560 | "show ipv6 bgp filter-list WORD", |
| 6561 | "Show running system information\n" |
| 6562 | "IPv6 information\n" |
| 6563 | "BGP information\n" |
| 6564 | "Display routes conforming to the filter-list\n" |
| 6565 | "Regular expression access list name\n") |
| 6566 | |
| 6567 | DEFSH (VTYSH_BGPD, show_bgp_instance_ipv6_summary_cmd_vtysh, |
| 6568 | "show bgp view WORD ipv6 summary", |
| 6569 | "Show running system information\n" |
| 6570 | "BGP information\n" |
| 6571 | "BGP view\n" |
| 6572 | "View name\n" |
| 6573 | "Address family\n" |
| 6574 | "Summary of BGP neighbor status\n") |
| 6575 | |
| 6576 | DEFSH (VTYSH_OSPFD, no_area_export_list_cmd_vtysh, |
| 6577 | "no area (A.B.C.D|<0-4294967295>) export-list NAME", |
| 6578 | "Negate a command or set its defaults\n" |
| 6579 | "OSPF area parameters\n" |
| 6580 | "OSPF area ID in IP address format\n" |
| 6581 | "OSPF area ID as a decimal value\n" |
| 6582 | "Unset the filter for networks announced to other areas\n" |
| 6583 | "Name of the access-list\n") |
| 6584 | |
| 6585 | DEFSH (VTYSH_BGPD, bgp_distance_source_cmd_vtysh, |
| 6586 | "distance <1-255> A.B.C.D/M", |
| 6587 | "Define an administrative distance\n" |
| 6588 | "Administrative distance\n" |
| 6589 | "IP source prefix\n") |
| 6590 | |
| 6591 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh, |
| 6592 | "show ip bgp neighbors (A.B.C.D|X:X::X:X) received prefix-filter", |
| 6593 | "Show running system information\n" |
| 6594 | "IP information\n" |
| 6595 | "BGP information\n" |
| 6596 | "Detailed information on TCP and BGP neighbor connections\n" |
| 6597 | "Neighbor to display information about\n" |
| 6598 | "Neighbor to display information about\n" |
| 6599 | "Display information received from a BGP neighbor\n" |
| 6600 | "Display the prefixlist filter\n") |
| 6601 | |
| 6602 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_routes_cmd_vtysh, |
| 6603 | "show ip bgp neighbors (A.B.C.D|X:X::X:X) routes", |
| 6604 | "Show running system information\n" |
| 6605 | "IP information\n" |
| 6606 | "BGP information\n" |
| 6607 | "Detailed information on TCP and BGP neighbor connections\n" |
| 6608 | "Neighbor to display information about\n" |
| 6609 | "Neighbor to display information about\n" |
| 6610 | "Display routes learned from neighbor\n") |
| 6611 | |
| 6612 | DEFSH (VTYSH_BGPD, no_set_origin_cmd_vtysh, |
| 6613 | "no set origin", |
| 6614 | "Negate a command or set its defaults\n" |
| 6615 | "Set values in destination routing protocol\n" |
| 6616 | "BGP origin code\n") |
| 6617 | |
| 6618 | DEFSH (VTYSH_BGPD, no_set_community_delete_val_cmd_vtysh, |
| 6619 | "no set comm-list (<1-99>|<100-199>|WORD) delete", |
| 6620 | "Negate a command or set its defaults\n" |
| 6621 | "Set values in destination routing protocol\n" |
| 6622 | "set BGP community list (for deletion)\n" |
| 6623 | "Community-list number (standard)\n" |
| 6624 | "Communitly-list number (expanded)\n" |
| 6625 | "Community-list name\n" |
| 6626 | "Delete matching communities\n") |
| 6627 | |
| 6628 | DEFSH (VTYSH_BGPD, no_bgp_bestpath_aspath_ignore_cmd_vtysh, |
| 6629 | "no bgp bestpath as-path ignore", |
| 6630 | "Negate a command or set its defaults\n" |
| 6631 | "BGP specific commands\n" |
| 6632 | "Change the default bestpath selection\n" |
| 6633 | "AS-path attribute\n" |
| 6634 | "Ignore as-path length in selecting a route\n") |
| 6635 | |
| 6636 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_exact_cmd_vtysh, |
| 6637 | "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 6638 | "Show running system information\n" |
| 6639 | "IPv6 information\n" |
| 6640 | "MBGP information\n" |
| 6641 | "Display routes matching the communities\n" |
| 6642 | "community number\n" |
| 6643 | "Do not send outside local AS (well-known community)\n" |
| 6644 | "Do not advertise to any peer (well-known community)\n" |
| 6645 | "Do not export to next AS (well-known community)\n" |
| 6646 | "Exact match of the communities") |
| 6647 | |
| 6648 | DEFSH (VTYSH_BGPD, show_ip_bgp_scan_cmd_vtysh, |
| 6649 | "show ip bgp scan", |
| 6650 | "Show running system information\n" |
| 6651 | "IP information\n" |
| 6652 | "BGP information\n" |
| 6653 | "BGP scan status\n") |
| 6654 | |
| 6655 | DEFSH (VTYSH_BGPD, no_bgp_cluster_id_arg_cmd_vtysh, |
| 6656 | "no bgp cluster-id A.B.C.D", |
| 6657 | "Negate a command or set its defaults\n" |
| 6658 | "BGP information\n" |
| 6659 | "Configure Route-Reflector Cluster-id\n" |
| 6660 | "Route-Reflector Cluster-id in IP address format\n") |
| 6661 | |
| 6662 | DEFSH (VTYSH_OSPFD, no_area_shortcut_cmd_vtysh, |
| 6663 | "no area (A.B.C.D|<0-4294967295>) shortcut (enable|disable)", |
| 6664 | "Negate a command or set its defaults\n" |
| 6665 | "OSPF area parameters\n" |
| 6666 | "OSPF area ID in IP address format\n" |
| 6667 | "OSPF area ID as a decimal value\n" |
| 6668 | "Deconfigure the area's shortcutting mode\n" |
| 6669 | "Deconfigure enabled shortcutting through the area\n" |
| 6670 | "Deconfigure disabled shortcutting through the area\n") |
| 6671 | |
| 6672 | DEFSH (VTYSH_OSPF6D, interface_area_passive_cmd_vtysh, |
| 6673 | "interface IFNAME area A.B.C.D passive", |
| 6674 | "Enable routing on an IPv6 interface\n" |
| 6675 | "Interface name(e.g. ep0)\n" |
| 6676 | "Set the OSPF6 area ID\n" |
| 6677 | "OSPF6 area ID in IPv4 address notation\n" |
| 6678 | "Suppress routing updates on an interface\n" |
| 6679 | ) |
| 6680 | |
| 6681 | DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_cmd_vtysh, |
| 6682 | "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") A.B.C.D", |
| 6683 | "Show running system information\n" |
| 6684 | "IP information\n" |
| 6685 | "OSPF information\n" |
| 6686 | "Database summary\n" |
| 6687 | "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" "" |
| 6688 | "Link State ID (as an IP address)\n") |
| 6689 | |
| 6690 | DEFSH (VTYSH_BGPD, no_bgp_confederation_peers_cmd_vtysh, |
| 6691 | "no bgp confederation peers .<1-65535>", |
| 6692 | "Negate a command or set its defaults\n" |
| 6693 | "BGP specific commands\n" |
| 6694 | "AS confederation parameters\n" |
| 6695 | "Peer ASs in BGP confederation\n" |
| 6696 | "AS number\n") |
| 6697 | |
| 6698 | DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_expanded_cmd_vtysh, |
| 6699 | "no ip extcommunity-list expanded WORD (deny|permit) .LINE", |
| 6700 | "Negate a command or set its defaults\n" |
| 6701 | "IP information\n" |
| 6702 | "Add a extended community list entry\n" |
| 6703 | "Specify expanded extcommunity-list\n" |
| 6704 | "Community list name\n" |
| 6705 | "Specify community to reject\n" |
| 6706 | "Specify community to accept\n" |
| 6707 | "An ordered list as a regular-expression\n") |
| 6708 | |
| 6709 | DEFSH (VTYSH_BGPD, show_bgp_community_list_exact_cmd_vtysh, |
| 6710 | "show bgp community-list WORD exact-match", |
| 6711 | "Show running system information\n" |
| 6712 | "BGP information\n" |
| 6713 | "Display routes matching the community-list\n" |
| 6714 | "community-list name\n" |
| 6715 | "Exact match of the communities\n") |
| 6716 | |
| 6717 | DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_received_routes_cmd_vtysh, |
| 6718 | "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) received-routes", |
| 6719 | "Show running system information\n" |
| 6720 | "IPv6 information\n" |
| 6721 | "BGP information\n" |
| 6722 | "Detailed information on TCP and BGP neighbor connections\n" |
| 6723 | "Neighbor to display information about\n" |
| 6724 | "Neighbor to display information about\n" |
| 6725 | "Display the received routes from neighbor\n") |
| 6726 | |
| 6727 | DEFSH (VTYSH_OSPFD, no_ospf_hello_interval_cmd_vtysh, |
| 6728 | "no ospf hello-interval", |
| 6729 | "Negate a command or set its defaults\n" |
| 6730 | "OSPF interface commands\n" |
| 6731 | "Time between HELLO packets\n") |
| 6732 | |
| 6733 | DEFSH (VTYSH_BGPD, no_set_weight_cmd_vtysh, |
| 6734 | "no set weight", |
| 6735 | "Negate a command or set its defaults\n" |
| 6736 | "Set values in destination routing protocol\n" |
| 6737 | "BGP weight for routing table\n") |
| 6738 | |
| 6739 | DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_int_detail_cmd_vtysh, |
| 6740 | "show ip ospf neighbor A.B.C.D detail", |
| 6741 | "Show running system information\n" |
| 6742 | "IP information\n" |
| 6743 | "OSPF information\n" |
| 6744 | "Neighbor list\n" |
| 6745 | "Interface address\n" |
| 6746 | "detail of all neighbors") |
| 6747 | |
| 6748 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_list_cmd_vtysh, |
| 6749 | "show bgp ipv6 community-list WORD", |
| 6750 | "Show running system information\n" |
| 6751 | "BGP information\n" |
| 6752 | "Address family\n" |
| 6753 | "Display routes matching the community-list\n" |
| 6754 | "community-list name\n") |
| 6755 | |
| 6756 | DEFSH (VTYSH_BGPD, clear_bgp_peer_group_in_prefix_filter_cmd_vtysh, |
| 6757 | "clear bgp peer-group WORD in prefix-filter", |
| 6758 | "Reset functions\n" |
| 6759 | "BGP information\n" |
| 6760 | "Clear all members of peer-group\n" |
| 6761 | "BGP peer-group name\n" |
| 6762 | "Soft reconfig inbound update\n" |
| 6763 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 6764 | |
| 6765 | DEFSH (VTYSH_BGPD, set_ecommunity_rt_cmd_vtysh, |
| 6766 | "set extcommunity rt .ASN:nn_or_IP-address:nn", |
| 6767 | "Set values in destination routing protocol\n" |
| 6768 | "BGP extended community attribute\n" |
| 6769 | "Route Target extened communityt\n" |
| 6770 | "VPN extended community\n") |
| 6771 | |
| 6772 | DEFSH (VTYSH_BGPD, no_neighbor_description_cmd_vtysh, |
| 6773 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "description", |
| 6774 | "Negate a command or set its defaults\n" |
| 6775 | "Specify neighbor router\n" |
| 6776 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 6777 | "Neighbor specific description\n") |
| 6778 | |
| 6779 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_le_cmd_vtysh, |
| 6780 | "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32>", |
| 6781 | "Negate a command or set its defaults\n" |
| 6782 | "IP information\n" |
| 6783 | "Build a prefix list\n" |
| 6784 | "Name of a prefix list\n" |
| 6785 | "sequence number of an entry\n" |
| 6786 | "Sequence number\n" |
| 6787 | "Specify packets to reject\n" |
| 6788 | "Specify packets to forward\n" |
| 6789 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 6790 | "Maximum prefix length to be matched\n" |
| 6791 | "Maximum prefix length\n") |
| 6792 | |
| 6793 | DEFSH (VTYSH_OSPFD, area_vlink_md5_cmd_vtysh, |
| 6794 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 6795 | "(message-digest-key|) <1-255> md5 KEY", |
| 6796 | "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" |
| 6797 | "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)") |
| 6798 | |
| 6799 | DEFSH (VTYSH_ZEBRA, no_ipv6_forwarding_cmd_vtysh, |
| 6800 | "no ipv6 forwarding", |
| 6801 | "Negate a command or set its defaults\n" |
| 6802 | "IP information\n" |
| 6803 | "Doesn't forward IPv6 protocol packet") |
| 6804 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6805 | DEFSH (VTYSH_BGPD, show_bgp_community_cmd_vtysh, |
| 6806 | "show bgp community (AA:NN|local-AS|no-advertise|no-export)", |
| 6807 | "Show running system information\n" |
| 6808 | "BGP information\n" |
| 6809 | "Display routes matching the communities\n" |
| 6810 | "community number\n" |
| 6811 | "Do not send outside local AS (well-known community)\n" |
| 6812 | "Do not advertise to any peer (well-known community)\n" |
| 6813 | "Do not export to next AS (well-known community)\n") |
| 6814 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6815 | DEFSH (VTYSH_OSPFD, ospf_router_id_cmd_vtysh, |
| 6816 | "ospf router-id A.B.C.D", |
| 6817 | "OSPF specific commands\n" |
| 6818 | "router-id for the OSPF process\n" |
| 6819 | "OSPF router-id in IP address format\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6820 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6821 | DEFSH (VTYSH_BGPD, show_bgp_community_exact_cmd_vtysh, |
| 6822 | "show bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 6823 | "Show running system information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6824 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6825 | "Display routes matching the communities\n" |
| 6826 | "community number\n" |
| 6827 | "Do not send outside local AS (well-known community)\n" |
| 6828 | "Do not advertise to any peer (well-known community)\n" |
| 6829 | "Do not export to next AS (well-known community)\n" |
| 6830 | "Exact match of the communities") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6831 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6832 | DEFSH (VTYSH_BGPD, no_neighbor_capability_orf_prefix_cmd_vtysh, |
| 6833 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability orf prefix-list (both|send|receive)", |
| 6834 | "Negate a command or set its defaults\n" |
| 6835 | "Specify neighbor router\n" |
| 6836 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 6837 | "Advertise capability to the peer\n" |
| 6838 | "Advertise ORF capability to the peer\n" |
| 6839 | "Advertise prefixlist ORF capability to this neighbor\n" |
| 6840 | "Capability to SEND and RECEIVE the ORF to/from this neighbor\n" |
| 6841 | "Capability to RECEIVE the ORF from this neighbor\n" |
| 6842 | "Capability to SEND the ORF to this neighbor\n") |
| 6843 | |
| 6844 | DEFSH (VTYSH_OSPFD, no_area_vlink_cmd_vtysh, |
| 6845 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D", |
| 6846 | "Negate a command or set its defaults\n" |
| 6847 | "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") |
| 6848 | |
| 6849 | DEFSH (VTYSH_OSPFD, ip_ospf_hello_interval_addr_cmd_vtysh, |
| 6850 | "ip ospf hello-interval <1-65535> A.B.C.D", |
| 6851 | "IP Information\n" |
| 6852 | "OSPF interface commands\n" |
| 6853 | "Time between HELLO packets\n" |
| 6854 | "Seconds\n" |
| 6855 | "Address of interface") |
| 6856 | |
| 6857 | DEFSH (VTYSH_BGPD, no_aggregate_address_mask_summary_only_cmd_vtysh, |
| 6858 | "no aggregate-address A.B.C.D A.B.C.D summary-only", |
| 6859 | "Negate a command or set its defaults\n" |
| 6860 | "Configure BGP aggregate entries\n" |
| 6861 | "Aggregate address\n" |
| 6862 | "Aggregate mask\n" |
| 6863 | "Filter more specific routes from updates\n") |
| 6864 | |
| 6865 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_intra_cmd_vtysh, |
| 6866 | "distance ospf external <1-255> intra-area <1-255>", |
| 6867 | "Define an administrative distance\n" |
| 6868 | "OSPF Administrative distance\n" |
| 6869 | "External routes\n" |
| 6870 | "Distance for external routes\n" |
| 6871 | "Intra-area routes\n" |
| 6872 | "Distance for intra-area routes\n") |
| 6873 | |
| 6874 | DEFSH (VTYSH_OSPFD, area_vlink_param3_cmd_vtysh, |
| 6875 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 6876 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> " |
| 6877 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> " |
| 6878 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>", |
| 6879 | "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" |
| 6880 | "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" |
| 6881 | "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" |
| 6882 | "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") |
| 6883 | |
| 6884 | DEFSH (VTYSH_BGPD, neighbor_soft_reconfiguration_cmd_vtysh, |
| 6885 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "soft-reconfiguration inbound", |
| 6886 | "Specify neighbor router\n" |
| 6887 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 6888 | "Per neighbor soft reconfiguration\n" |
| 6889 | "Allow inbound soft reconfiguration for this neighbor\n") |
| 6890 | |
| 6891 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, no_ipv6_access_list_exact_cmd_vtysh, |
| 6892 | "no ipv6 access-list WORD (deny|permit) X:X::X:X/M exact-match", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6893 | "Negate a command or set its defaults\n" |
| 6894 | "IPv6 information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6895 | "Add an access list entry\n" |
| 6896 | "IPv6 zebra access-list\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6897 | "Specify packets to reject\n" |
| 6898 | "Specify packets to forward\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6899 | "Prefix to match. e.g. 3ffe:506::/32\n" |
| 6900 | "Exact match of the prefixes\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6901 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6902 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_metric_rmap_cmd_vtysh, |
| 6903 | "redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295> route-map WORD", |
| 6904 | "Redistribute information from another routing protocol\n" |
| 6905 | "Connected\n" |
| 6906 | "Kernel routes\n" |
| 6907 | "Open Shurtest Path First (OSPF)\n" |
| 6908 | "Routing Information Protocol (RIP)\n" |
| 6909 | "Static routes\n" |
| 6910 | "Metric for redistributed routes\n" |
| 6911 | "Default metric\n" |
| 6912 | "Route map reference\n" |
| 6913 | "Pointer to route-map entries\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6914 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6915 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_in_prefix_filter_cmd_vtysh, |
| 6916 | "clear ip bgp external in prefix-filter", |
| 6917 | "Reset functions\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6918 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6919 | "BGP information\n" |
| 6920 | "Clear all external peers\n" |
| 6921 | "Soft reconfig inbound update\n" |
| 6922 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6923 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6924 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_cmd_vtysh, |
| 6925 | "no redistribute (connected|kernel|ospf6|ripng|static)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 6926 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6927 | "Redistribute information from another routing protocol\n" |
| 6928 | "Connected\n" |
| 6929 | "Kernel routes\n" |
| 6930 | "Open Shurtest Path First (OSPFv3)\n" |
| 6931 | "Routing Information Protocol (RIPng)\n" |
| 6932 | "Static routes\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6933 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6934 | DEFSH (VTYSH_ZEBRA, show_ipv6_route_cmd_vtysh, |
| 6935 | "show ipv6 route", |
| 6936 | "Show running system information\n" |
| 6937 | "IP information\n" |
| 6938 | "IPv6 routing table\n") |
| 6939 | |
| 6940 | DEFSH (VTYSH_BGPD, no_bgp_fast_external_failover_cmd_vtysh, |
| 6941 | "no bgp fast-external-failover", |
| 6942 | "Negate a command or set its defaults\n" |
| 6943 | "BGP information\n" |
| 6944 | "Immediately reset session if a link to a directly connected external peer goes down\n") |
| 6945 | |
| 6946 | DEFSH (VTYSH_BGPD, no_aggregate_address_mask_as_set_summary_cmd_vtysh, |
| 6947 | "no aggregate-address A.B.C.D A.B.C.D as-set summary-only", |
| 6948 | "Negate a command or set its defaults\n" |
| 6949 | "Configure BGP aggregate entries\n" |
| 6950 | "Aggregate address\n" |
| 6951 | "Aggregate mask\n" |
| 6952 | "Generate AS set path information\n" |
| 6953 | "Filter more specific routes from updates\n") |
| 6954 | |
| 6955 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_out_cmd_vtysh, |
| 6956 | "clear ip bgp external soft out", |
| 6957 | "Reset functions\n" |
| 6958 | "IP information\n" |
| 6959 | "BGP information\n" |
| 6960 | "Clear all external peers\n" |
| 6961 | "Soft reconfig\n" |
| 6962 | "Soft reconfig outbound update\n") |
| 6963 | |
| 6964 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_summary_cmd_vtysh, |
| 6965 | "show bgp ipv6 summary", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6966 | "Show running system information\n" |
| 6967 | "BGP information\n" |
| 6968 | "Address family\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6969 | "Summary of BGP neighbor status\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6970 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6971 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_regexp_cmd_vtysh, |
| 6972 | "show ip bgp ipv4 (unicast|multicast) regexp .LINE", |
| 6973 | "Show running system information\n" |
| 6974 | "IP information\n" |
| 6975 | "BGP information\n" |
| 6976 | "Address family\n" |
| 6977 | "Address Family modifier\n" |
| 6978 | "Address Family modifier\n" |
| 6979 | "Display routes matching the AS path regular expression\n" |
| 6980 | "A regular-expression to match the BGP AS paths\n") |
| 6981 | |
| 6982 | DEFSH (VTYSH_OSPFD, no_area_vlink_authtype_cmd_vtysh, |
| 6983 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 6984 | "(authentication|)", |
| 6985 | "Negate a command or set its defaults\n" |
| 6986 | "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" |
| 6987 | "Enable authentication on this virtual link\n" "dummy string \n") |
| 6988 | |
| 6989 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_out_cmd_vtysh, |
| 6990 | "clear ip bgp * vpnv4 unicast out", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6991 | "Reset functions\n" |
| 6992 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6993 | "BGP information\n" |
| 6994 | "Clear all peers\n" |
| 6995 | "Address family\n" |
| 6996 | "Address Family Modifier\n" |
| 6997 | "Soft reconfig outbound update\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 6998 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 6999 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged7_cmd_vtysh, |
| 7000 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop med as-path", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7001 | "Negate a command or set its defaults\n" |
| 7002 | "Specify neighbor router\n" |
| 7003 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7004 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 7005 | "Nexthop attribute\n" |
| 7006 | "Med attribute\n" |
| 7007 | "As-path attribute\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7008 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7009 | DEFSH (VTYSH_BGPD, no_ipv6_bgp_network_route_map_cmd_vtysh, |
| 7010 | "no network X:X::X:X/M route-map WORD", |
| 7011 | "Negate a command or set its defaults\n" |
| 7012 | "Specify a network to announce via BGP\n" |
| 7013 | "IPv6 prefix <network>/<length>\n" |
| 7014 | "Route-map to modify the attributes\n" |
| 7015 | "Name of the route map\n") |
| 7016 | |
| 7017 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_cmd_vtysh, |
| 7018 | "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft", |
| 7019 | "Reset functions\n" |
| 7020 | "IP information\n" |
| 7021 | "BGP information\n" |
| 7022 | "BGP neighbor address to clear\n" |
| 7023 | "Address family\n" |
| 7024 | "Address Family Modifier\n" |
| 7025 | "Address Family Modifier\n" |
| 7026 | "Soft reconfig\n") |
| 7027 | |
| 7028 | DEFSH (VTYSH_BGPD, neighbor_ebgp_multihop_cmd_vtysh, |
| 7029 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop", |
| 7030 | "Specify neighbor router\n" |
| 7031 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7032 | "Allow EBGP neighbors not on directly connected networks\n") |
| 7033 | |
| 7034 | DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_key_cmd_vtysh, |
| 7035 | "no ip ospf authentication-key", |
| 7036 | "Negate a command or set its defaults\n" |
| 7037 | "IP Information\n" |
| 7038 | "OSPF interface commands\n" |
| 7039 | "Authentication password (key)\n") |
| 7040 | |
| 7041 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh, |
| 7042 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D routes", |
| 7043 | "Show running system information\n" |
| 7044 | "IP information\n" |
| 7045 | "BGP information\n" |
| 7046 | "Display VPNv4 NLRI specific information\n" |
| 7047 | "Display information for a route distinguisher\n" |
| 7048 | "VPN Route Distinguisher\n" |
| 7049 | "Detailed information on TCP and BGP neighbor connections\n" |
| 7050 | "Neighbor to display information about\n" |
| 7051 | "Display routes learned from neighbor\n") |
| 7052 | |
| 7053 | DEFSH (VTYSH_OSPFD, no_debug_ospf_ism_sub_cmd_vtysh, |
| 7054 | "no debug ospf ism (status|events|timers)", |
| 7055 | "Negate a command or set its defaults\n" |
| 7056 | "Debugging functions\n" |
| 7057 | "OSPF information\n" |
| 7058 | "OSPF Interface State Machine\n" |
| 7059 | "ISM Status Information\n" |
| 7060 | "ISM Event Information\n" |
| 7061 | "ISM Timer Information\n") |
| 7062 | |
| 7063 | DEFSH (VTYSH_OSPFD, refresh_timer_cmd_vtysh, |
| 7064 | "refresh timer <10-1800>", |
| 7065 | "Adjust refresh parameters\n" |
| 7066 | "Set refresh timer\n" |
| 7067 | "Timer value in seconds\n") |
| 7068 | |
| 7069 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_inter_cmd_vtysh, |
| 7070 | "distance ospf intra-area <1-255> inter-area <1-255>", |
| 7071 | "Define an administrative distance\n" |
| 7072 | "OSPF Administrative distance\n" |
| 7073 | "Intra-area routes\n" |
| 7074 | "Distance for intra-area routes\n" |
| 7075 | "Inter-area routes\n" |
| 7076 | "Distance for inter-area routes\n") |
| 7077 | |
| 7078 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_val_cmd_vtysh, |
| 7079 | "no redistribute ospf6 metric <0-16>", |
| 7080 | "Negate a command or set its defaults\n" |
| 7081 | "Redistribute information from another routing protocol\n" |
| 7082 | "IPv6 Open Shortest Path First (OSPFv3)\n" |
| 7083 | "Metric\n" |
| 7084 | "Metric value\n") |
| 7085 | |
| 7086 | DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_local_val_cmd_vtysh, |
| 7087 | "no set ipv6 next-hop local X:X::X:X", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7088 | "Negate a command or set its defaults\n" |
| 7089 | "Set values in destination routing protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7090 | "IPv6 information\n" |
| 7091 | "IPv6 next-hop address\n" |
| 7092 | "IPv6 local address\n" |
| 7093 | "IPv6 address of next hop\n") |
| 7094 | |
| 7095 | DEFSH (VTYSH_BGPD, ip_community_list_name_standard2_cmd_vtysh, |
| 7096 | "ip community-list standard WORD (deny|permit)", |
| 7097 | "IP information\n" |
| 7098 | "Add a community list entry\n" |
| 7099 | "Add a standard community-list entry\n" |
| 7100 | "Community list name\n" |
| 7101 | "Specify community to reject\n" |
| 7102 | "Specify community to accept\n") |
| 7103 | |
| 7104 | DEFSH (VTYSH_BGPD, no_neighbor_capability_route_refresh_cmd_vtysh, |
| 7105 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "capability route-refresh", |
| 7106 | "Negate a command or set its defaults\n" |
| 7107 | "Specify neighbor router\n" |
| 7108 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7109 | "Advertise capability to the peer\n" |
| 7110 | "Advertise route-refresh capability to this neighbor\n") |
| 7111 | |
| 7112 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_cmd_vtysh, |
| 7113 | "no access-list WORD (deny|permit) A.B.C.D/M", |
| 7114 | "Negate a command or set its defaults\n" |
| 7115 | "Add an access list entry\n" |
| 7116 | "IP zebra access-list name\n" |
| 7117 | "Specify packets to reject\n" |
| 7118 | "Specify packets to forward\n" |
| 7119 | "Prefix to match. e.g. 10.0.0.0/8\n") |
| 7120 | |
| 7121 | DEFSH (VTYSH_ZEBRA, show_zebra_client_cmd_vtysh, |
| 7122 | "show zebra client", |
| 7123 | "Show running system information\n" |
| 7124 | "Zebra information" |
| 7125 | "Client information") |
| 7126 | |
| 7127 | DEFSH (VTYSH_BGPD, neighbor_allowas_in_arg_cmd_vtysh, |
| 7128 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in <1-10>", |
| 7129 | "Specify neighbor router\n" |
| 7130 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7131 | "Accept as-path with my AS present in it\n" |
| 7132 | "Number of occurances of AS number\n") |
| 7133 | |
| 7134 | DEFSH (VTYSH_BGPD, bgp_cluster_id_cmd_vtysh, |
| 7135 | "bgp cluster-id A.B.C.D", |
| 7136 | "BGP information\n" |
| 7137 | "Configure Route-Reflector Cluster-id\n" |
| 7138 | "Route-Reflector Cluster-id in IP address format\n") |
| 7139 | |
| 7140 | DEFSH (VTYSH_BGPD, no_router_bgp_view_cmd_vtysh, |
| 7141 | "no router bgp <1-65535> view WORD", |
| 7142 | "Negate a command or set its defaults\n" |
| 7143 | "Enable a routing process\n" |
| 7144 | "BGP information\n" |
| 7145 | "AS number\n" |
| 7146 | "BGP view\n" |
| 7147 | "view name\n") |
| 7148 | |
| 7149 | DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_send_recv_cmd_vtysh, |
| 7150 | "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)", |
| 7151 | "Negate a command or set its defaults\n" |
| 7152 | "Debugging functions\n" |
| 7153 | "OSPF information\n" |
| 7154 | "OSPF packets\n" |
| 7155 | "OSPF Hello\n" |
| 7156 | "OSPF Database Description\n" |
| 7157 | "OSPF Link State Request\n" |
| 7158 | "OSPF Link State Update\n" |
| 7159 | "OSPF Link State Acknowledgment\n" |
| 7160 | "OSPF all packets\n" |
| 7161 | "Packet sent\n" |
| 7162 | "Packet received\n" |
| 7163 | "Detail Information\n") |
| 7164 | |
| 7165 | DEFSH (VTYSH_BGPD, no_set_community_cmd_vtysh, |
| 7166 | "no set community", |
| 7167 | "Negate a command or set its defaults\n" |
| 7168 | "Set values in destination routing protocol\n" |
| 7169 | "BGP community attribute\n") |
| 7170 | |
| 7171 | DEFSH (VTYSH_OSPFD|VTYSH_OSPF6D, ospf6_routemap_no_set_metric_type_cmd_vtysh, |
| 7172 | "no set metric-type (type-1|type-2)", |
| 7173 | "Negate a command or set its defaults\n" |
| 7174 | "Set value\n" |
| 7175 | "Type of metric\n" |
| 7176 | "OSPF6 external type 1 metric\n" |
| 7177 | "OSPF6 external type 2 metric\n") |
| 7178 | |
| 7179 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_name_seq_cmd_vtysh, |
| 7180 | "show ip prefix-list WORD seq <1-4294967295>", |
| 7181 | "Show running system information\n" |
| 7182 | "IP information\n" |
| 7183 | "Build a prefix list\n" |
| 7184 | "Name of a prefix list\n" |
| 7185 | "sequence number of an entry\n" |
| 7186 | "Sequence number\n") |
| 7187 | |
| 7188 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_in_cmd_vtysh, |
| 7189 | "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft in", |
| 7190 | "Reset functions\n" |
| 7191 | "IP information\n" |
| 7192 | "BGP information\n" |
| 7193 | "Clear peers with the AS number\n" |
| 7194 | "Address family\n" |
| 7195 | "Address Family modifier\n" |
| 7196 | "Address Family modifier\n" |
| 7197 | "Soft reconfig\n" |
| 7198 | "Soft reconfig inbound update\n") |
| 7199 | |
| 7200 | DEFSH (VTYSH_OSPFD, ospf_rfc1583_flag_cmd_vtysh, |
| 7201 | "ospf rfc1583compatibility", |
| 7202 | "OSPF specific commands\n" |
| 7203 | "Enable the RFC1583Compatibility flag\n") |
| 7204 | |
| 7205 | DEFSH (VTYSH_ZEBRA, no_debug_zebra_packet_cmd_vtysh, |
| 7206 | "no debug zebra packet", |
| 7207 | "Negate a command or set its defaults\n" |
| 7208 | "Debugging functions (see also 'undebug')\n" |
| 7209 | "Zebra configuration\n" |
| 7210 | "Debug option set for zebra packet\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7211 | |
| 7212 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community4_exact_cmd_vtysh, |
| 7213 | "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", |
| 7214 | "Show running system information\n" |
| 7215 | "IPv6 information\n" |
| 7216 | "BGP information\n" |
| 7217 | "Display routes matching the communities\n" |
| 7218 | "community number\n" |
| 7219 | "Do not send outside local AS (well-known community)\n" |
| 7220 | "Do not advertise to any peer (well-known community)\n" |
| 7221 | "Do not export to next AS (well-known community)\n" |
| 7222 | "community number\n" |
| 7223 | "Do not send outside local AS (well-known community)\n" |
| 7224 | "Do not advertise to any peer (well-known community)\n" |
| 7225 | "Do not export to next AS (well-known community)\n" |
| 7226 | "community number\n" |
| 7227 | "Do not send outside local AS (well-known community)\n" |
| 7228 | "Do not advertise to any peer (well-known community)\n" |
| 7229 | "Do not export to next AS (well-known community)\n" |
| 7230 | "community number\n" |
| 7231 | "Do not send outside local AS (well-known community)\n" |
| 7232 | "Do not advertise to any peer (well-known community)\n" |
| 7233 | "Do not export to next AS (well-known community)\n" |
| 7234 | "Exact match of the communities") |
| 7235 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7236 | DEFSH (VTYSH_RIPD, ip_rip_authentication_mode_cmd_vtysh, |
| 7237 | "ip rip authentication mode (md5|text)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7238 | "IP information\n" |
| 7239 | "Routing Information Protocol\n" |
| 7240 | "Authentication control\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7241 | "Authentication mode\n" |
| 7242 | "Keyed message digest\n" |
| 7243 | "Clear text authentication\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7244 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7245 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_exact_cmd_vtysh, |
| 7246 | "show ip bgp ipv4 (unicast|multicast) community (AA:NN|local-AS|no-advertise|no-export) exact-match", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7247 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7248 | "IP information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7249 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7250 | "Address family\n" |
| 7251 | "Address Family modifier\n" |
| 7252 | "Address Family modifier\n" |
| 7253 | "Display routes matching the communities\n" |
| 7254 | "community number\n" |
| 7255 | "Do not send outside local AS (well-known community)\n" |
| 7256 | "Do not advertise to any peer (well-known community)\n" |
| 7257 | "Do not export to next AS (well-known community)\n" |
| 7258 | "Exact match of the communities") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 7259 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7260 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_soft_cmd_vtysh, |
| 7261 | "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft", |
| 7262 | "Reset functions\n" |
| 7263 | "IP information\n" |
| 7264 | "BGP information\n" |
| 7265 | "Clear peers with the AS number\n" |
| 7266 | "Address family\n" |
| 7267 | "Address Family Modifier\n" |
| 7268 | "Address Family Modifier\n" |
| 7269 | "Soft reconfig\n") |
| 7270 | |
| 7271 | DEFSH (VTYSH_OSPFD, ospf_abr_type_cmd_vtysh, |
| 7272 | "ospf abr-type (cisco|ibm|shortcut|standard)", |
| 7273 | "OSPF specific commands\n" |
| 7274 | "Set OSPF ABR type\n" |
| 7275 | "Alternative ABR, cisco implementation\n" |
| 7276 | "Alternative ABR, IBM implementation\n" |
| 7277 | "Shortcut ABR\n" |
| 7278 | "Standard behavior (RFC2328)\n") |
| 7279 | |
| 7280 | DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_cmd_vtysh, |
| 7281 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix", |
| 7282 | "Negate a command or set its defaults\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 7283 | "Specify neighbor router\n" |
| 7284 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7285 | "Maximum number of prefix accept from this peer\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 7286 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7287 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_cmd_vtysh, |
| 7288 | "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft", |
| 7289 | "Reset functions\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 7290 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7291 | "Address family\n" |
| 7292 | "BGP neighbor address to clear\n" |
| 7293 | "BGP IPv6 neighbor to clear\n" |
| 7294 | "Soft reconfig\n") |
| 7295 | |
| 7296 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_type_cmd_vtysh, |
| 7297 | "default-information originate always metric <0-16777214> metric-type (1|2)", |
| 7298 | "Control distribution of default information\n" |
| 7299 | "Distribute a default route\n" |
| 7300 | "Always advertise default route\n" |
| 7301 | "OSPF default metric\n" |
| 7302 | "OSPF metric\n" |
| 7303 | "OSPF metric type for default routes\n" |
| 7304 | "Set OSPF External Type 1 metrics\n" |
| 7305 | "Set OSPF External Type 2 metrics\n") |
| 7306 | |
| 7307 | DEFSH (VTYSH_BGPD, neighbor_strict_capability_cmd_vtysh, |
| 7308 | "neighbor (A.B.C.D|X:X::X:X) " "strict-capability-match", |
| 7309 | "Specify neighbor router\n" |
| 7310 | "Neighbor address\nIPv6 address\n" |
| 7311 | "Strict capability negotiation match\n") |
| 7312 | |
| 7313 | DEFSH (VTYSH_BGPD, show_ip_bgp_community3_exact_cmd_vtysh, |
| 7314 | "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", |
| 7315 | "Show running system information\n" |
| 7316 | "IP information\n" |
| 7317 | "BGP information\n" |
| 7318 | "Display routes matching the communities\n" |
| 7319 | "community number\n" |
| 7320 | "Do not send outside local AS (well-known community)\n" |
| 7321 | "Do not advertise to any peer (well-known community)\n" |
| 7322 | "Do not export to next AS (well-known community)\n" |
| 7323 | "community number\n" |
| 7324 | "Do not send outside local AS (well-known community)\n" |
| 7325 | "Do not advertise to any peer (well-known community)\n" |
| 7326 | "Do not export to next AS (well-known community)\n" |
| 7327 | "community number\n" |
| 7328 | "Do not send outside local AS (well-known community)\n" |
| 7329 | "Do not advertise to any peer (well-known community)\n" |
| 7330 | "Do not export to next AS (well-known community)\n" |
| 7331 | "Exact match of the communities") |
| 7332 | |
| 7333 | DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_cmd_vtysh, |
| 7334 | "clear bgp view WORD * soft", |
| 7335 | "Reset functions\n" |
| 7336 | "BGP information\n" |
| 7337 | "BGP view\n" |
| 7338 | "view name\n" |
| 7339 | "Clear all peers\n" |
| 7340 | "Soft reconfig\n") |
| 7341 | |
| 7342 | DEFSH (VTYSH_BGPD, clear_bgp_peer_in_cmd_vtysh, |
| 7343 | "clear bgp (A.B.C.D|X:X::X:X) in", |
| 7344 | "Reset functions\n" |
| 7345 | "BGP information\n" |
| 7346 | "BGP neighbor address to clear\n" |
| 7347 | "BGP IPv6 neighbor to clear\n" |
| 7348 | "Soft reconfig inbound update\n") |
| 7349 | |
| 7350 | DEFSH (VTYSH_BGPD, no_neighbor_version_cmd_vtysh, |
| 7351 | "no neighbor (A.B.C.D|X:X::X:X) " "version", |
| 7352 | "Negate a command or set its defaults\n" |
| 7353 | "Specify neighbor router\n" |
| 7354 | "Neighbor address\nIPv6 address\n" |
| 7355 | "Neighbor's BGP version\n") |
| 7356 | |
| 7357 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_prefix_cmd_vtysh, |
| 7358 | "show ipv6 prefix-list WORD X:X::X:X/M", |
| 7359 | "Show running system information\n" |
| 7360 | "IPv6 information\n" |
| 7361 | "Build a prefix list\n" |
| 7362 | "Name of a prefix list\n" |
| 7363 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n") |
| 7364 | |
| 7365 | DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_advertised_route_cmd_vtysh, |
| 7366 | "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) advertised-routes", |
| 7367 | "Show running system information\n" |
| 7368 | "IPv6 information\n" |
| 7369 | "MBGP information\n" |
| 7370 | "Detailed information on TCP and BGP neighbor connections\n" |
| 7371 | "Neighbor to display information about\n" |
| 7372 | "Neighbor to display information about\n" |
| 7373 | "Display the routes advertised to a BGP neighbor\n") |
| 7374 | |
| 7375 | DEFSH (VTYSH_ZEBRA, show_ip_route_addr_cmd_vtysh, |
| 7376 | "show ip route A.B.C.D", |
| 7377 | "Show running system information\n" |
| 7378 | "IP information\n" |
| 7379 | "IP routing table\n" |
| 7380 | "Network in the IP routing table to display\n") |
| 7381 | |
| 7382 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_seq_le_cmd_vtysh, |
| 7383 | "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128>", |
| 7384 | "Negate a command or set its defaults\n" |
| 7385 | "IPv6 information\n" |
| 7386 | "Build a prefix list\n" |
| 7387 | "Name of a prefix list\n" |
| 7388 | "sequence number of an entry\n" |
| 7389 | "Sequence number\n" |
| 7390 | "Specify packets to reject\n" |
| 7391 | "Specify packets to forward\n" |
| 7392 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 7393 | "Maximum prefix length to be matched\n" |
| 7394 | "Maximum prefix length\n") |
| 7395 | |
| 7396 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_list_cmd_vtysh, |
| 7397 | "show ipv6 mbgp community-list WORD", |
| 7398 | "Show running system information\n" |
| 7399 | "IPv6 information\n" |
| 7400 | "MBGP information\n" |
| 7401 | "Display routes matching the community-list\n" |
| 7402 | "community-list name\n") |
| 7403 | |
| 7404 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community3_cmd_vtysh, |
| 7405 | "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)", |
| 7406 | "Show running system information\n" |
| 7407 | "IP information\n" |
| 7408 | "BGP information\n" |
| 7409 | "Address family\n" |
| 7410 | "Address Family modifier\n" |
| 7411 | "Address Family modifier\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7412 | "Display routes matching the communities\n" |
| 7413 | "community number\n" |
| 7414 | "Do not send outside local AS (well-known community)\n" |
| 7415 | "Do not advertise to any peer (well-known community)\n" |
| 7416 | "Do not export to next AS (well-known community)\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 7417 | "community number\n" |
| 7418 | "Do not send outside local AS (well-known community)\n" |
| 7419 | "Do not advertise to any peer (well-known community)\n" |
| 7420 | "Do not export to next AS (well-known community)\n" |
| 7421 | "community number\n" |
| 7422 | "Do not send outside local AS (well-known community)\n" |
| 7423 | "Do not advertise to any peer (well-known community)\n" |
| 7424 | "Do not export to next AS (well-known community)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7425 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7426 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged7_cmd_vtysh, |
| 7427 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop med as-path", |
| 7428 | "Specify neighbor router\n" |
| 7429 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7430 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 7431 | "Nexthop attribute\n" |
| 7432 | "Med attribute\n" |
| 7433 | "As-path attribute\n") |
| 7434 | |
| 7435 | DEFSH (VTYSH_BGPD, neighbor_default_originate_rmap_cmd_vtysh, |
| 7436 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate route-map WORD", |
| 7437 | "Specify neighbor router\n" |
| 7438 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7439 | "Originate default route to this neighbor\n" |
| 7440 | "Route-map to specify criteria to originate default\n" |
| 7441 | "route-map name\n") |
| 7442 | |
| 7443 | DEFSH (VTYSH_OSPFD, ip_ospf_priority_cmd_vtysh, |
| 7444 | "ip ospf priority <0-255>", |
| 7445 | "IP Information\n" |
| 7446 | "OSPF interface commands\n" |
| 7447 | "Router priority\n" |
| 7448 | "Priority\n") |
| 7449 | |
| 7450 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_routemap_cmd_vtysh, |
| 7451 | "no redistribute connected metric <0-16> route-map WORD", |
| 7452 | "Negate a command or set its defaults\n" |
| 7453 | "Redistribute information from another routing protocol\n" |
| 7454 | "Connected\n" |
| 7455 | "Metric\n" |
| 7456 | "Metric value\n" |
| 7457 | "Route map reference\n" |
| 7458 | "Pointer to route-map entries\n") |
| 7459 | |
| 7460 | DEFSH (VTYSH_BGPD, neighbor_allowas_in_cmd_vtysh, |
| 7461 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "allowas-in", |
| 7462 | "Specify neighbor router\n" |
| 7463 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7464 | "Accept as-path with my AS present in it\n") |
| 7465 | |
| 7466 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_out_cmd_vtysh, |
| 7467 | "clear ip bgp external ipv4 (unicast|multicast) out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7468 | "Reset functions\n" |
| 7469 | "IP information\n" |
| 7470 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7471 | "Clear all external peers\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7472 | "Address family\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7473 | "Address Family modifier\n" |
| 7474 | "Address Family modifier\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7475 | "Soft reconfig outbound update\n") |
| 7476 | |
| 7477 | DEFSH (VTYSH_BGPD, bgp_distance_source_access_list_cmd_vtysh, |
| 7478 | "distance <1-255> A.B.C.D/M WORD", |
| 7479 | "Define an administrative distance\n" |
| 7480 | "Administrative distance\n" |
| 7481 | "IP source prefix\n" |
| 7482 | "Access list name\n") |
| 7483 | |
| 7484 | DEFSH (VTYSH_BGPD, show_ip_bgp_regexp_cmd_vtysh, |
| 7485 | "show ip bgp regexp .LINE", |
| 7486 | "Show running system information\n" |
| 7487 | "IP information\n" |
| 7488 | "BGP information\n" |
| 7489 | "Display routes matching the AS path regular expression\n" |
| 7490 | "A regular-expression to match the BGP AS paths\n") |
| 7491 | |
| 7492 | DEFSH (VTYSH_BGPD, clear_bgp_all_in_cmd_vtysh, |
| 7493 | "clear bgp * in", |
| 7494 | "Reset functions\n" |
| 7495 | "BGP information\n" |
| 7496 | "Clear all peers\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7497 | "Soft reconfig inbound update\n") |
| 7498 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7499 | DEFSH (VTYSH_OSPF6D, show_debug_ospf6_cmd_vtysh, |
| 7500 | "show debugging ospf6", |
| 7501 | "Show running system information\n" |
| 7502 | "Debugging functions (see also 'undebug')\n" |
| 7503 | "Open Shortest Path First (OSPF) for IPv6\n") |
| 7504 | |
| 7505 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community4_cmd_vtysh, |
| 7506 | "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)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7507 | "Show running system information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7508 | "IPv6 information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7509 | "BGP information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7510 | "Display routes matching the communities\n" |
| 7511 | "community number\n" |
| 7512 | "Do not send outside local AS (well-known community)\n" |
| 7513 | "Do not advertise to any peer (well-known community)\n" |
| 7514 | "Do not export to next AS (well-known community)\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7515 | "community number\n" |
| 7516 | "Do not send outside local AS (well-known community)\n" |
| 7517 | "Do not advertise to any peer (well-known community)\n" |
| 7518 | "Do not export to next AS (well-known community)\n" |
| 7519 | "community number\n" |
| 7520 | "Do not send outside local AS (well-known community)\n" |
| 7521 | "Do not advertise to any peer (well-known community)\n" |
| 7522 | "Do not export to next AS (well-known community)\n" |
| 7523 | "community number\n" |
| 7524 | "Do not send outside local AS (well-known community)\n" |
| 7525 | "Do not advertise to any peer (well-known community)\n" |
| 7526 | "Do not export to next AS (well-known community)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7527 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7528 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_summary_cmd_vtysh, |
| 7529 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn summary", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7530 | "Show running system information\n" |
| 7531 | "IP information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7532 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7533 | "Display VPNv4 NLRI specific information\n" |
| 7534 | "Display information for a route distinguisher\n" |
| 7535 | "VPN Route Distinguisher\n" |
| 7536 | "Summary of BGP neighbor status\n") |
| 7537 | |
| 7538 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_in_cmd_vtysh, |
| 7539 | "clear ip bgp A.B.C.D in", |
| 7540 | "Reset functions\n" |
| 7541 | "IP information\n" |
| 7542 | "BGP information\n" |
| 7543 | "BGP neighbor address to clear\n" |
| 7544 | "Soft reconfig inbound update\n") |
| 7545 | |
| 7546 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged_cmd_vtysh, |
| 7547 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged", |
| 7548 | "Specify neighbor router\n" |
| 7549 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7550 | "BGP attribute is propagated unchanged to this neighbor\n") |
| 7551 | |
| 7552 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_out_cmd_vtysh, |
| 7553 | "clear bgp ipv6 peer-group WORD out", |
| 7554 | "Reset functions\n" |
| 7555 | "BGP information\n" |
| 7556 | "Address family\n" |
| 7557 | "Clear all members of peer-group\n" |
| 7558 | "BGP peer-group name\n" |
| 7559 | "Soft reconfig outbound update\n") |
| 7560 | |
| 7561 | DEFSH (VTYSH_BGPD, debug_bgp_fsm_cmd_vtysh, |
| 7562 | "debug bgp fsm", |
| 7563 | "Debugging functions (see also 'undebug')\n" |
| 7564 | "BGP information\n" |
| 7565 | "BGP Finite State Machine\n") |
| 7566 | |
| 7567 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_cmd_vtysh, |
| 7568 | "no redistribute bgp", |
| 7569 | "Negate a command or set its defaults\n" |
| 7570 | "Redistribute information from another routing protocol\n" |
| 7571 | "Border Gateway Protocol (BGP)\n") |
| 7572 | |
| 7573 | DEFSH (VTYSH_RIPD, rip_timers_cmd_vtysh, |
| 7574 | "timers basic <5-2147483647> <5-2147483647> <5-2147483647>", |
| 7575 | "Adjust routing timers\n" |
| 7576 | "Basic routing protocol update timers\n" |
| 7577 | "Routing table update timer value in second. Default is 30.\n" |
| 7578 | "Routing information timeout timer. Default is 180.\n" |
| 7579 | "Garbage collection timer. Default is 120.\n") |
| 7580 | |
| 7581 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_seq_ge_le_cmd_vtysh, |
| 7582 | "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M ge <0-128> le <0-128>", |
| 7583 | "IPv6 information\n" |
| 7584 | "Build a prefix list\n" |
| 7585 | "Name of a prefix list\n" |
| 7586 | "sequence number of an entry\n" |
| 7587 | "Sequence number\n" |
| 7588 | "Specify packets to reject\n" |
| 7589 | "Specify packets to forward\n" |
| 7590 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 7591 | "Minimum prefix length to be matched\n" |
| 7592 | "Minimum prefix length\n" |
| 7593 | "Maximum prefix length to be matched\n" |
| 7594 | "Maximum prefix length\n") |
| 7595 | |
| 7596 | DEFSH (VTYSH_BGPD, old_ipv6_aggregate_address_cmd_vtysh, |
| 7597 | "ipv6 bgp aggregate-address X:X::X:X/M", |
| 7598 | "IPv6 information\n" |
| 7599 | "BGP information\n" |
| 7600 | "Configure BGP aggregate entries\n" |
| 7601 | "Aggregate prefix\n") |
| 7602 | |
| 7603 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_in_cmd_vtysh, |
| 7604 | "clear ip bgp view WORD * ipv4 (unicast|multicast) soft in", |
| 7605 | "Reset functions\n" |
| 7606 | "IP information\n" |
| 7607 | "BGP information\n" |
| 7608 | "BGP view\n" |
| 7609 | "view name\n" |
| 7610 | "Clear all peers\n" |
| 7611 | "Address family\n" |
| 7612 | "Address Family modifier\n" |
| 7613 | "Address Family modifier\n" |
| 7614 | "Soft reconfig\n" |
| 7615 | "Soft reconfig inbound update\n") |
| 7616 | |
| 7617 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged1_cmd_vtysh, |
| 7618 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged (as-path|next-hop|med)", |
| 7619 | "Negate a command or set its defaults\n" |
| 7620 | "Specify neighbor router\n" |
| 7621 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7622 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 7623 | "As-path attribute\n" |
| 7624 | "Nexthop attribute\n" |
| 7625 | "Med attribute\n") |
| 7626 | |
| 7627 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD, no_match_interface_cmd_vtysh, |
| 7628 | "no match interface", |
| 7629 | "Negate a command or set its defaults\n" |
| 7630 | "Match values from routing table\n" |
| 7631 | "Match first hop interface of route\n") |
| 7632 | |
| 7633 | DEFSH (VTYSH_ZEBRA, show_ipv6_route_prefix_longer_cmd_vtysh, |
| 7634 | "show ipv6 route X:X::X:X/M longer-prefixes", |
| 7635 | "Show running system information\n" |
| 7636 | "IP information\n" |
| 7637 | "IPv6 routing table\n" |
| 7638 | "IPv6 prefix\n" |
| 7639 | "Show route matching the specified Network/Mask pair only\n") |
| 7640 | |
| 7641 | DEFSH (VTYSH_OSPFD, ospf_priority_cmd_vtysh, |
| 7642 | "ospf priority <0-255>", |
| 7643 | "OSPF interface commands\n" |
| 7644 | "Router priority\n" |
| 7645 | "Priority\n") |
| 7646 | |
| 7647 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_description_cmd_vtysh, |
| 7648 | "ipv6 prefix-list WORD description .LINE", |
| 7649 | "IPv6 information\n" |
| 7650 | "Build a prefix list\n" |
| 7651 | "Name of a prefix list\n" |
| 7652 | "Prefix-list specific description\n" |
| 7653 | "Up to 80 characters describing this prefix-list\n") |
| 7654 | |
| 7655 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_all_cmd_vtysh, |
| 7656 | "show bgp ipv6 community", |
| 7657 | "Show running system information\n" |
| 7658 | "BGP information\n" |
| 7659 | "Address family\n" |
| 7660 | "Display routes matching the communities\n") |
| 7661 | |
| 7662 | DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_name_all_cmd_vtysh, |
| 7663 | "no ip extcommunity-list (standard|expanded) WORD", |
| 7664 | "Negate a command or set its defaults\n" |
| 7665 | "IP information\n" |
| 7666 | "Add a extended community list entry\n" |
| 7667 | "Specify standard extcommunity-list\n" |
| 7668 | "Specify expanded extcommunity-list\n" |
| 7669 | "Extended Community list name\n") |
| 7670 | |
| 7671 | DEFSH (VTYSH_BGPD, no_neighbor_advertise_interval_cmd_vtysh, |
| 7672 | "no neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval", |
| 7673 | "Negate a command or set its defaults\n" |
| 7674 | "Specify neighbor router\n" |
| 7675 | "Neighbor address\nIPv6 address\n" |
| 7676 | "Minimum interval between sending BGP routing updates\n") |
| 7677 | |
| 7678 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community3_cmd_vtysh, |
| 7679 | "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)", |
| 7680 | "Show running system information\n" |
| 7681 | "IPv6 information\n" |
| 7682 | "MBGP information\n" |
| 7683 | "Display routes matching the communities\n" |
| 7684 | "community number\n" |
| 7685 | "Do not send outside local AS (well-known community)\n" |
| 7686 | "Do not advertise to any peer (well-known community)\n" |
| 7687 | "Do not export to next AS (well-known community)\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 | |
| 7697 | DEFSH (VTYSH_RIPD, send_lifetime_duration_day_month_cmd_vtysh, |
| 7698 | "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> duration <1-2147483646>", |
| 7699 | "Set send lifetime of the key\n" |
| 7700 | "Time to start\n" |
| 7701 | "Day of th month to start\n" |
| 7702 | "Month of the year to start\n" |
| 7703 | "Year to start\n" |
| 7704 | "Duration of the key\n" |
| 7705 | "Duration seconds\n") |
| 7706 | |
| 7707 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_cmd_vtysh, |
| 7708 | "ip prefix-list WORD seq <1-4294967295> (deny|permit) (A.B.C.D/M|any)", |
| 7709 | "IP information\n" |
| 7710 | "Build a prefix list\n" |
| 7711 | "Name of a prefix list\n" |
| 7712 | "sequence number of an entry\n" |
| 7713 | "Sequence number\n" |
| 7714 | "Specify packets to reject\n" |
| 7715 | "Specify packets to forward\n" |
| 7716 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 7717 | "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n") |
| 7718 | |
| 7719 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_prefix_cmd_vtysh, |
| 7720 | "no ip prefix-list WORD (deny|permit) (A.B.C.D/M|any)", |
| 7721 | "Negate a command or set its defaults\n" |
| 7722 | "IP information\n" |
| 7723 | "Build a prefix list\n" |
| 7724 | "Name of a prefix list\n" |
| 7725 | "Specify packets to reject\n" |
| 7726 | "Specify packets to forward\n" |
| 7727 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 7728 | "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n") |
| 7729 | |
| 7730 | DEFSH (VTYSH_BGPD, clear_bgp_as_soft_cmd_vtysh, |
| 7731 | "clear bgp <1-65535> soft", |
| 7732 | "Reset functions\n" |
| 7733 | "BGP information\n" |
| 7734 | "Clear peers with the AS number\n" |
| 7735 | "Soft reconfig\n") |
| 7736 | |
| 7737 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_cmd_vtysh, |
| 7738 | "show bgp ipv6", |
| 7739 | "Show running system information\n" |
| 7740 | "BGP information\n" |
| 7741 | "Address family\n") |
| 7742 | |
| 7743 | DEFSH (VTYSH_BGPD, no_neighbor_ebgp_multihop_ttl_cmd_vtysh, |
| 7744 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop <1-255>", |
| 7745 | "Negate a command or set its defaults\n" |
| 7746 | "Specify neighbor router\n" |
| 7747 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7748 | "Allow EBGP neighbors not on directly connected networks\n" |
| 7749 | "maximum hop count\n") |
| 7750 | |
| 7751 | DEFSH (VTYSH_BGPD, bgp_scan_time_cmd_vtysh, |
| 7752 | "bgp scan-time <5-60>", |
| 7753 | "BGP specific commands\n" |
| 7754 | "Configure background scanner interval\n" |
| 7755 | "Scanner interval (seconds)\n") |
| 7756 | |
| 7757 | DEFSH (VTYSH_OSPFD, no_ip_ospf_message_digest_key_addr_cmd_vtysh, |
| 7758 | "no ip ospf message-digest-key <1-255> A.B.C.D", |
| 7759 | "Negate a command or set its defaults\n" |
| 7760 | "IP Information\n" |
| 7761 | "OSPF interface commands\n" |
| 7762 | "Message digest authentication password (key)\n" |
| 7763 | "Key ID\n" |
| 7764 | "Address of interface") |
| 7765 | |
| 7766 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_name_cmd_vtysh, |
| 7767 | "show ipv6 prefix-list WORD", |
| 7768 | "Show running system information\n" |
| 7769 | "IPv6 information\n" |
| 7770 | "Build a prefix list\n" |
| 7771 | "Name of a prefix list\n") |
| 7772 | |
| 7773 | DEFSH (VTYSH_RIPNGD, show_debugging_ripng_cmd_vtysh, |
| 7774 | "show debugging ripng", |
| 7775 | "Show running system information\n" |
| 7776 | "RIPng configuration\n" |
| 7777 | "Debugging information\n") |
| 7778 | |
| 7779 | DEFSH (VTYSH_BGPD, ip_community_list_standard2_cmd_vtysh, |
| 7780 | "ip community-list <1-99> (deny|permit)", |
| 7781 | "IP information\n" |
| 7782 | "Add a community list entry\n" |
| 7783 | "Community list number (standard)\n" |
| 7784 | "Specify community to reject\n" |
| 7785 | "Specify community to accept\n") |
| 7786 | |
| 7787 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, show_ip_access_list_cmd_vtysh, |
| 7788 | "show ip access-list", |
| 7789 | "Show running system information\n" |
| 7790 | "IP information\n" |
| 7791 | "List IP access lists\n") |
| 7792 | |
| 7793 | DEFSH (VTYSH_BGPD, ipv6_bgp_neighbor_advertised_route_cmd_vtysh, |
| 7794 | "show ipv6 bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes", |
| 7795 | "Show running system information\n" |
| 7796 | "IPv6 information\n" |
| 7797 | "BGP information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7798 | "Detailed information on TCP and BGP neighbor connections\n" |
| 7799 | "Neighbor to display information about\n" |
| 7800 | "Neighbor to display information about\n" |
| 7801 | "Display the routes advertised to a BGP neighbor\n") |
| 7802 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7803 | DEFSH (VTYSH_BGPD, no_set_origin_val_cmd_vtysh, |
| 7804 | "no set origin (egp|igp|incomplete)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7805 | "Negate a command or set its defaults\n" |
| 7806 | "Set values in destination routing protocol\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7807 | "BGP origin code\n" |
| 7808 | "remote EGP\n" |
| 7809 | "local IGP\n" |
| 7810 | "unknown heritage\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7811 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7812 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_route_cmd_vtysh, |
| 7813 | "show ipv6 ospf6 area A.B.C.D route", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7814 | "Show running system information\n" |
| 7815 | "IPv6 Information\n" |
| 7816 | "Open Shortest Path First (OSPF) for IPv6\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7817 | "Area information\n" |
| 7818 | "Area ID (as an IPv4 notation)\n" |
| 7819 | "Routing Table\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7820 | ) |
| 7821 | |
| 7822 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_routes_cmd_vtysh, |
| 7823 | "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) routes", |
| 7824 | "Show running system information\n" |
| 7825 | "BGP information\n" |
| 7826 | "Address family\n" |
| 7827 | "Detailed information on TCP and BGP neighbor connections\n" |
| 7828 | "Neighbor to display information about\n" |
| 7829 | "Neighbor to display information about\n" |
| 7830 | "Display routes learned from neighbor\n") |
| 7831 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7832 | DEFSH (VTYSH_OSPFD, debug_ospf_lsa_cmd_vtysh, |
| 7833 | "debug ospf lsa", |
| 7834 | "Debugging functions (see also 'undebug')\n" |
| 7835 | "OSPF information\n" |
| 7836 | "OSPF Link State Advertisement\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7837 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7838 | DEFSH (VTYSH_BGPD, no_neighbor_dont_capability_negotiate_cmd_vtysh, |
| 7839 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "dont-capability-negotiate", |
| 7840 | "Negate a command or set its defaults\n" |
| 7841 | "Specify neighbor router\n" |
| 7842 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7843 | "Do not perform capability negotiation\n") |
| 7844 | |
| 7845 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_cmd_vtysh, |
| 7846 | "clear ip bgp view WORD * soft", |
| 7847 | "Reset functions\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7848 | "IP information\n" |
| 7849 | "BGP information\n" |
| 7850 | "BGP view\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7851 | "view name\n" |
| 7852 | "Clear all peers\n" |
| 7853 | "Soft reconfig\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7854 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7855 | DEFSH (VTYSH_OSPFD, ip_ospf_dead_interval_cmd_vtysh, |
| 7856 | "ip ospf dead-interval <1-65535>", |
| 7857 | "IP Information\n" |
| 7858 | "OSPF interface commands\n" |
| 7859 | "Interval after which a neighbor is declared dead\n" |
| 7860 | "Seconds\n") |
| 7861 | |
| 7862 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_cmd_vtysh, |
| 7863 | "distance ospf inter-area <1-255>", |
| 7864 | "Define an administrative distance\n" |
| 7865 | "OSPF Administrative distance\n" |
| 7866 | "Inter-area routes\n" |
| 7867 | "Distance for inter-area routes\n") |
| 7868 | |
| 7869 | DEFSH (VTYSH_OSPFD, no_ip_ospf_message_digest_key_cmd_vtysh, |
| 7870 | "no ip ospf message-digest-key <1-255>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7871 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7872 | "IP Information\n" |
| 7873 | "OSPF interface commands\n" |
| 7874 | "Message digest authentication password (key)\n" |
| 7875 | "Key ID\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7876 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7877 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_cmd_vtysh, |
| 7878 | "clear ip bgp peer-group WORD soft", |
| 7879 | "Reset functions\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7880 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 7881 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7882 | "Clear all members of peer-group\n" |
| 7883 | "BGP peer-group name\n" |
| 7884 | "Soft reconfig\n") |
| 7885 | |
| 7886 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_ospf6_metric_cmd_vtysh, |
| 7887 | "redistribute ospf6 metric <0-16>", |
| 7888 | "Redistribute information from another routing protocol\n" |
| 7889 | "IPv6 Open Shortest Path First (OSPFv3)\n" |
| 7890 | "Metric\n" |
| 7891 | "Metric value\n") |
| 7892 | |
| 7893 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_cmd_vtysh, |
| 7894 | "clear ip bgp <1-65535> soft", |
| 7895 | "Reset functions\n" |
| 7896 | "IP information\n" |
| 7897 | "BGP information\n" |
| 7898 | "Clear peers with the AS number\n" |
| 7899 | "Soft reconfig\n") |
| 7900 | |
| 7901 | DEFSH (VTYSH_OSPFD, no_debug_ospf_zebra_sub_cmd_vtysh, |
| 7902 | "no debug ospf zebra (interface|redistribute)", |
| 7903 | "Negate a command or set its defaults\n" |
| 7904 | "Debugging functions (see also 'undebug')\n" |
| 7905 | "OSPF information\n" |
| 7906 | "OSPF Zebra information\n" |
| 7907 | "Zebra interface\n" |
| 7908 | "Zebra redistribute\n") |
| 7909 | |
| 7910 | DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_cmd_vtysh, |
| 7911 | "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" "|max-age|self-originate)", |
| 7912 | "Show running system information\n" |
| 7913 | "IP information\n" |
| 7914 | "OSPF information\n" |
| 7915 | "Database summary\n" |
| 7916 | "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" "" |
| 7917 | "LSAs in MaxAge list\n" |
| 7918 | "Self-originated link states\n") |
| 7919 | |
| 7920 | DEFSH (VTYSH_BGPD, neighbor_prefix_list_cmd_vtysh, |
| 7921 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "prefix-list WORD (in|out)", |
| 7922 | "Specify neighbor router\n" |
| 7923 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7924 | "Filter updates to/from this neighbor\n" |
| 7925 | "Name of a prefix list\n" |
| 7926 | "Filter incoming updates\n" |
| 7927 | "Filter outgoing updates\n") |
| 7928 | |
| 7929 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_cmd_vtysh, |
| 7930 | "no ip prefix-list WORD", |
| 7931 | "Negate a command or set its defaults\n" |
| 7932 | "IP information\n" |
| 7933 | "Build a prefix list\n" |
| 7934 | "Name of a prefix list\n") |
| 7935 | |
| 7936 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_standard_nomask_cmd_vtysh, |
| 7937 | "access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D", |
| 7938 | "Add an access list entry\n" |
| 7939 | "IP standard access list\n" |
| 7940 | "IP standard access list (expanded range)\n" |
| 7941 | "Specify packets to reject\n" |
| 7942 | "Specify packets to forward\n" |
| 7943 | "Address to match\n") |
| 7944 | |
| 7945 | DEFSH (VTYSH_BGPD, neighbor_default_originate_cmd_vtysh, |
| 7946 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate", |
| 7947 | "Specify neighbor router\n" |
| 7948 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 7949 | "Originate default route to this neighbor\n") |
| 7950 | |
| 7951 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_cmd_vtysh, |
| 7952 | "default-information originate always metric <0-16777214>", |
| 7953 | "Control distribution of default information\n" |
| 7954 | "Distribute a default route\n" |
| 7955 | "Always advertise default route\n" |
| 7956 | "OSPF default metric\n" |
| 7957 | "OSPF metric\n" |
| 7958 | "OSPF metric type for default routes\n") |
| 7959 | |
| 7960 | DEFSH (VTYSH_RIPD, no_rip_route_cmd_vtysh, |
| 7961 | "no route A.B.C.D/M", |
| 7962 | "Negate a command or set its defaults\n" |
| 7963 | "RIP static route configuration\n" |
| 7964 | "IP prefix <network>/<length>\n") |
| 7965 | |
| 7966 | DEFSH (VTYSH_RIPD, rip_default_metric_cmd_vtysh, |
| 7967 | "default-metric <1-16>", |
| 7968 | "Set a metric of redistribute routes\n" |
| 7969 | "Default metric\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 7970 | |
| 7971 | DEFSH (VTYSH_OSPFD, no_ip_ospf_dead_interval_addr_cmd_vtysh, |
| 7972 | "no ip ospf dead-interval A.B.C.D", |
| 7973 | "Negate a command or set its defaults\n" |
| 7974 | "IP Information\n" |
| 7975 | "OSPF interface commands\n" |
| 7976 | "Interval after which a neighbor is declared dead\n" |
| 7977 | "Address of interface") |
| 7978 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 7979 | DEFSH (VTYSH_RIPNGD, show_ipv6_ripng_cmd_vtysh, |
| 7980 | "show ipv6 ripng", |
| 7981 | "Show running system information\n" |
| 7982 | "IP information\n" |
| 7983 | "Show RIPng routes\n") |
| 7984 | |
| 7985 | DEFSH (VTYSH_OSPFD, ospf_compatible_rfc1583_cmd_vtysh, |
| 7986 | "compatible rfc1583", |
| 7987 | "OSPF compatibility list\n" |
| 7988 | "compatible with RFC 1583\n") |
| 7989 | |
| 7990 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_routemap_cmd_vtysh, |
| 7991 | "no redistribute static route-map WORD", |
| 7992 | "Negate a command or set its defaults\n" |
| 7993 | "Redistribute information from another routing protocol\n" |
| 7994 | "Static routes\n" |
| 7995 | "Route map reference\n" |
| 7996 | "Pointer to route-map entries\n") |
| 7997 | |
| 7998 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged1_cmd_vtysh, |
| 7999 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged (as-path|next-hop|med)", |
| 8000 | "Specify neighbor router\n" |
| 8001 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 8002 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 8003 | "As-path attribute\n" |
| 8004 | "Nexthop attribute\n" |
| 8005 | "Med attribute\n") |
| 8006 | |
| 8007 | DEFSH (VTYSH_BGPD, dump_bgp_routes_interval_cmd_vtysh, |
| 8008 | "dump bgp routes-mrt PATH INTERVAL", |
| 8009 | "Dump packet\n" |
| 8010 | "BGP packet dump\n" |
| 8011 | "Dump whole BGP routing table\n" |
| 8012 | "Output filename\n" |
| 8013 | "Interval of output\n") |
| 8014 | |
| 8015 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_routemap_cmd_vtysh, |
| 8016 | "redistribute kernel route-map WORD", |
| 8017 | "Redistribute information from another routing protocol\n" |
| 8018 | "Kernel routes\n" |
| 8019 | "Route map reference\n" |
| 8020 | "Pointer to route-map entries\n") |
| 8021 | |
| 8022 | DEFSH (VTYSH_OSPFD, ip_ospf_authentication_args_cmd_vtysh, |
| 8023 | "ip ospf authentication (null|message-digest)", |
| 8024 | "IP Information\n" |
| 8025 | "OSPF interface commands\n" |
| 8026 | "Enable authentication on this interface\n" |
| 8027 | "Use null authentication\n" |
| 8028 | "Use message-digest authentication\n") |
| 8029 | |
| 8030 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community4_exact_cmd_vtysh, |
| 8031 | "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", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8032 | "Show running system information\n" |
| 8033 | "IPv6 information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8034 | "MBGP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8035 | "Display routes matching the communities\n" |
| 8036 | "community number\n" |
| 8037 | "Do not send outside local AS (well-known community)\n" |
| 8038 | "Do not advertise to any peer (well-known community)\n" |
| 8039 | "Do not export to next AS (well-known community)\n" |
| 8040 | "community number\n" |
| 8041 | "Do not send outside local AS (well-known community)\n" |
| 8042 | "Do not advertise to any peer (well-known community)\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8043 | "Do not export to next AS (well-known community)\n" |
| 8044 | "community number\n" |
| 8045 | "Do not send outside local AS (well-known community)\n" |
| 8046 | "Do not advertise to any peer (well-known community)\n" |
| 8047 | "Do not export to next AS (well-known community)\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8048 | "community number\n" |
| 8049 | "Do not send outside local AS (well-known community)\n" |
| 8050 | "Do not advertise to any peer (well-known community)\n" |
| 8051 | "Do not export to next AS (well-known community)\n" |
| 8052 | "Exact match of the communities") |
| 8053 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8054 | DEFSH (VTYSH_BGPD, clear_bgp_as_soft_out_cmd_vtysh, |
| 8055 | "clear bgp <1-65535> soft out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8056 | "Reset functions\n" |
| 8057 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8058 | "Clear peers with the AS number\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8059 | "Soft reconfig\n" |
| 8060 | "Soft reconfig outbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8061 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8062 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh, |
| 8063 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8064 | "Show running system information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8065 | "IP information\n" |
| 8066 | "BGP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8067 | "Display VPNv4 NLRI specific information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8068 | "Display information for a route distinguisher\n" |
| 8069 | "VPN Route Distinguisher\n" |
| 8070 | "Detailed information on TCP and BGP neighbor connections\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8071 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8072 | DEFSH (VTYSH_OSPFD, neighbor_poll_interval_cmd_vtysh, |
| 8073 | "neighbor A.B.C.D poll-interval <1-65535>", |
| 8074 | "Specify neighbor router\n" |
| 8075 | "Neighbor IP address\n" |
| 8076 | "Dead Neighbor Polling interval\n" |
| 8077 | "Seconds\n") |
| 8078 | |
| 8079 | DEFSH (VTYSH_RIPNGD, no_ripng_timers_cmd_vtysh, |
| 8080 | "no timers basic", |
| 8081 | "Negate a command or set its defaults\n" |
| 8082 | "RIPng timers setup\n" |
| 8083 | "Basic timer\n") |
| 8084 | |
| 8085 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_cmd_vtysh, |
| 8086 | "show ip prefix-list", |
| 8087 | "Show running system information\n" |
| 8088 | "IP information\n" |
| 8089 | "Build a prefix list\n") |
| 8090 | |
| 8091 | DEFSH (VTYSH_BGPD, no_match_community_val_cmd_vtysh, |
| 8092 | "no match community (<1-99>|<100-199>|WORD)", |
| 8093 | "Negate a command or set its defaults\n" |
| 8094 | "Match values from routing table\n" |
| 8095 | "Match BGP community list\n" |
| 8096 | "Community-list number (standard)\n" |
| 8097 | "Community-list number (expanded)\n" |
| 8098 | "Community-list name\n") |
| 8099 | |
| 8100 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_set_ip_nexthop_val_cmd_vtysh, |
| 8101 | "no set ip next-hop A.B.C.D", |
| 8102 | "Negate a command or set its defaults\n" |
| 8103 | "Set values in destination routing protocol\n" |
| 8104 | "IP information\n" |
| 8105 | "Next hop address\n" |
| 8106 | "IP address of next hop\n") |
| 8107 | |
| 8108 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_sequence_number_cmd_vtysh, |
| 8109 | "no ip prefix-list sequence-number", |
| 8110 | "Negate a command or set its defaults\n" |
| 8111 | "IP information\n" |
| 8112 | "Build a prefix list\n" |
| 8113 | "Include/exclude sequence numbers in NVGEN\n") |
| 8114 | |
| 8115 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_in_cmd_vtysh, |
| 8116 | "clear bgp ipv6 <1-65535> in", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8117 | "Reset functions\n" |
| 8118 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8119 | "Address family\n" |
| 8120 | "Clear peers with the AS number\n" |
| 8121 | "Soft reconfig inbound update\n") |
| 8122 | |
| 8123 | DEFSH (VTYSH_RIPD, no_ip_rip_receive_version_cmd_vtysh, |
| 8124 | "no ip rip receive version", |
| 8125 | "Negate a command or set its defaults\n" |
| 8126 | "IP information\n" |
| 8127 | "Routing Information Protocol\n" |
| 8128 | "Advertisement reception\n" |
| 8129 | "Version control\n") |
| 8130 | |
| 8131 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_cmd_vtysh, |
| 8132 | "default-information originate always", |
| 8133 | "Control distribution of default information\n" |
| 8134 | "Distribute a default route\n" |
| 8135 | "Always advertise default route\n") |
| 8136 | |
| 8137 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_in_cmd_vtysh, |
| 8138 | "clear ip bgp * vpnv4 unicast in", |
| 8139 | "Reset functions\n" |
| 8140 | "IP information\n" |
| 8141 | "BGP information\n" |
| 8142 | "Clear all peers\n" |
| 8143 | "Address family\n" |
| 8144 | "Address Family Modifier\n" |
| 8145 | "Soft reconfig inbound update\n") |
| 8146 | |
| 8147 | DEFSH (VTYSH_OSPF6D, no_ipv6_ospf6_advertise_force_prefix_cmd_vtysh, |
| 8148 | "no ipv6 ospf6 advertise force-prefix", |
| 8149 | "Negate a command or set its defaults\n" |
| 8150 | "IPv6 Information\n" |
| 8151 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 8152 | "Advertising options\n" |
| 8153 | "Force to advertise prefix, applicable if Loopback or P-to-P\n" |
| 8154 | ) |
| 8155 | |
| 8156 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh, |
| 8157 | "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) received-routes", |
| 8158 | "Show running system information\n" |
| 8159 | "IP information\n" |
| 8160 | "BGP information\n" |
| 8161 | "Address family\n" |
| 8162 | "Address Family modifier\n" |
| 8163 | "Address Family modifier\n" |
| 8164 | "Detailed information on TCP and BGP neighbor connections\n" |
| 8165 | "Neighbor to display information about\n" |
| 8166 | "Neighbor to display information about\n" |
| 8167 | "Display the received routes from neighbor\n") |
| 8168 | |
| 8169 | DEFSH (VTYSH_BGPD, no_debug_bgp_normal_cmd_vtysh, |
| 8170 | "no debug bgp", |
| 8171 | "Negate a command or set its defaults\n" |
| 8172 | "Debugging functions (see also 'undebug')\n" |
| 8173 | "BGP information\n") |
| 8174 | |
| 8175 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_out_cmd_vtysh, |
| 8176 | "clear ip bgp A.B.C.D vpnv4 unicast out", |
| 8177 | "Reset functions\n" |
| 8178 | "IP information\n" |
| 8179 | "BGP information\n" |
| 8180 | "BGP neighbor address to clear\n" |
| 8181 | "Address family\n" |
| 8182 | "Address Family Modifier\n" |
| 8183 | "Soft reconfig outbound update\n") |
| 8184 | |
| 8185 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_routemap_cmd_vtysh, |
| 8186 | "default-information originate always metric <0-16777214> route-map WORD", |
| 8187 | "Control distribution of default information\n" |
| 8188 | "Distribute a default route\n" |
| 8189 | "Always advertise default route\n" |
| 8190 | "OSPF default metric\n" |
| 8191 | "OSPF metric\n" |
| 8192 | "Route map reference\n" |
| 8193 | "Pointer to route-map entries\n") |
| 8194 | |
| 8195 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_cmd_vtysh, |
| 8196 | "default-information originate metric <0-16777214>", |
| 8197 | "Control distribution of default information\n" |
| 8198 | "Distribute a default route\n" |
| 8199 | "OSPF default metric\n" |
| 8200 | "OSPF metric\n") |
| 8201 | |
| 8202 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_summary_cmd_vtysh, |
| 8203 | "show ipv6 mbgp summary", |
| 8204 | "Show running system information\n" |
| 8205 | "IPv6 information\n" |
| 8206 | "MBGP information\n" |
| 8207 | "Summary of BGP neighbor status\n") |
| 8208 | |
| 8209 | DEFSH (VTYSH_OSPFD, no_refresh_timer_val_cmd_vtysh, |
| 8210 | "no refresh timer <10-1800>", |
| 8211 | "Adjust refresh parameters\n" |
| 8212 | "Unset refresh timer\n" |
| 8213 | "Timer value in seconds\n") |
| 8214 | |
| 8215 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_cmd_vtysh, |
| 8216 | "no access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D A.B.C.D", |
| 8217 | "Negate a command or set its defaults\n" |
| 8218 | "Add an access list entry\n" |
| 8219 | "IP standard access list\n" |
| 8220 | "IP standard access list (expanded range)\n" |
| 8221 | "Specify packets to reject\n" |
| 8222 | "Specify packets to forward\n" |
| 8223 | "Address to match\n" |
| 8224 | "Wildcard bits\n") |
| 8225 | |
| 8226 | DEFSH (VTYSH_ZEBRA, shutdown_if_cmd_vtysh, |
| 8227 | "shutdown", |
| 8228 | "Shutdown the selected interface\n") |
| 8229 | |
| 8230 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv6_metric_rmap_cmd_vtysh, |
| 8231 | "no redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295> route-map WORD", |
| 8232 | "Negate a command or set its defaults\n" |
| 8233 | "Redistribute information from another routing protocol\n" |
| 8234 | "Connected\n" |
| 8235 | "Kernel routes\n" |
| 8236 | "Open Shurtest Path First (OSPFv3)\n" |
| 8237 | "Routing Information Protocol (RIPng)\n" |
| 8238 | "Static routes\n" |
| 8239 | "Metric for redistributed routes\n" |
| 8240 | "Default metric\n" |
| 8241 | "Route map reference\n" |
| 8242 | "Pointer to route-map entries\n") |
| 8243 | |
| 8244 | DEFSH (VTYSH_BGPD, no_neighbor_route_reflector_client_cmd_vtysh, |
| 8245 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-reflector-client", |
| 8246 | "Negate a command or set its defaults\n" |
| 8247 | "Specify neighbor router\n" |
| 8248 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 8249 | "Configure a neighbor as Route Reflector client\n") |
| 8250 | |
| 8251 | DEFSH (VTYSH_RIPD, no_rip_distance_source_cmd_vtysh, |
| 8252 | "no distance <1-255> A.B.C.D/M", |
| 8253 | "Negate a command or set its defaults\n" |
| 8254 | "Administrative distance\n" |
| 8255 | "Distance value\n" |
| 8256 | "IP source prefix\n") |
| 8257 | |
| 8258 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_soft_out_cmd_vtysh, |
| 8259 | "clear ip bgp view WORD * soft out", |
| 8260 | "Reset functions\n" |
| 8261 | "IP information\n" |
| 8262 | "BGP information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8263 | "BGP view\n" |
| 8264 | "view name\n" |
| 8265 | "Clear all peers\n" |
| 8266 | "Soft reconfig\n" |
| 8267 | "Soft reconfig outbound update\n") |
| 8268 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8269 | DEFSH (VTYSH_OSPFD, no_debug_ospf_event_cmd_vtysh, |
| 8270 | "no debug ospf event", |
| 8271 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8272 | "Debugging functions (see also 'undebug')\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8273 | "OSPF information\n" |
| 8274 | "OSPF event information\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8275 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8276 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_cmd_vtysh, |
| 8277 | "clear ip bgp (A.B.C.D|X:X::X:X)", |
| 8278 | "Reset functions\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8279 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8280 | "BGP information\n" |
| 8281 | "BGP neighbor IP address to clear\n" |
| 8282 | "BGP IPv6 neighbor to clear\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8283 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8284 | DEFSH (VTYSH_BGPD, show_ip_bgp_dampened_paths_cmd_vtysh, |
| 8285 | "show ip bgp dampened-paths", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8286 | "Show running system information\n" |
| 8287 | "IP information\n" |
| 8288 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8289 | "Display paths suppressed due to dampening\n") |
| 8290 | |
| 8291 | DEFSH (VTYSH_BGPD, no_debug_bgp_filter_cmd_vtysh, |
| 8292 | "no debug bgp filters", |
| 8293 | "Negate a command or set its defaults\n" |
| 8294 | "Debugging functions (see also 'undebug')\n" |
| 8295 | "BGP information\n" |
| 8296 | "BGP filters\n") |
| 8297 | |
| 8298 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_cmd_vtysh, |
| 8299 | "clear ip prefix-list", |
| 8300 | "Reset functions\n" |
| 8301 | "IP information\n" |
| 8302 | "Build a prefix list\n") |
| 8303 | |
| 8304 | DEFSH (VTYSH_BGPD, no_aggregate_address_summary_as_set_cmd_vtysh, |
| 8305 | "no aggregate-address A.B.C.D/M summary-only as-set", |
| 8306 | "Negate a command or set its defaults\n" |
| 8307 | "Configure BGP aggregate entries\n" |
| 8308 | "Aggregate prefix\n" |
| 8309 | "Filter more specific routes from updates\n" |
| 8310 | "Generate AS set path information\n") |
| 8311 | |
| 8312 | DEFSH (VTYSH_RIPD, debug_rip_events_cmd_vtysh, |
| 8313 | "debug rip events", |
| 8314 | "Debugging functions (see also 'undebug')\n" |
| 8315 | "RIP information\n" |
| 8316 | "RIP events\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8317 | |
| 8318 | DEFSH (VTYSH_OSPFD, no_ospf_distribute_list_out_cmd_vtysh, |
| 8319 | "no distribute-list WORD out (kernel|connected|static|rip|bgp)", |
| 8320 | "Negate a command or set its defaults\n" |
| 8321 | "Filter networks in routing updates\n" |
| 8322 | "Access-list name\n" |
| 8323 | "Filter outgoing routing updates\n" |
| 8324 | "Kernel routes\n" |
| 8325 | "Connected\n" |
| 8326 | "Static routes\n" |
| 8327 | "Routing Information Protocol (RIP)\n" |
| 8328 | "Border Gateway Protocol (BGP)\n") |
| 8329 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8330 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_prefix_cmd_vtysh, |
| 8331 | "no ipv6 prefix-list WORD (deny|permit) (X:X::X:X/M|any)", |
| 8332 | "Negate a command or set its defaults\n" |
| 8333 | "IPv6 information\n" |
| 8334 | "Build a prefix list\n" |
| 8335 | "Name of a prefix list\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8336 | "Specify packets to reject\n" |
| 8337 | "Specify packets to forward\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8338 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 8339 | "Any prefix match. Same as \"::0/0 le 128\"\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8340 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8341 | DEFSH (VTYSH_BGPD, no_set_ecommunity_rt_cmd_vtysh, |
| 8342 | "no set extcommunity rt", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8343 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8344 | "Set values in destination routing protocol\n" |
| 8345 | "BGP extended community attribute\n" |
| 8346 | "Route Target extened communityt\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8347 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8348 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged10_cmd_vtysh, |
| 8349 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med as-path next-hop", |
| 8350 | "Negate a command or set its defaults\n" |
| 8351 | "Specify neighbor router\n" |
| 8352 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 8353 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 8354 | "Med attribute\n" |
| 8355 | "As-path attribute\n" |
| 8356 | "Nexthop attribute\n") |
| 8357 | |
| 8358 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_soft_cmd_vtysh, |
| 8359 | "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8360 | "Reset functions\n" |
| 8361 | "IP information\n" |
| 8362 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8363 | "Clear all members of peer-group\n" |
| 8364 | "BGP peer-group name\n" |
| 8365 | "Address family\n" |
| 8366 | "Address Family modifier\n" |
| 8367 | "Address Family modifier\n" |
| 8368 | "Soft reconfig\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8369 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8370 | DEFSH (VTYSH_BGPD, undebug_bgp_normal_cmd_vtysh, |
| 8371 | "undebug bgp", |
| 8372 | "Disable debugging functions (see also 'debug')\n" |
| 8373 | "BGP information\n") |
| 8374 | |
| 8375 | DEFSH (VTYSH_OSPFD, no_ip_ospf_retransmit_interval_addr_cmd_vtysh, |
| 8376 | "no ip ospf retransmit-interval A.B.C.D", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8377 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8378 | "IP Information\n" |
| 8379 | "OSPF interface commands\n" |
| 8380 | "Time between retransmitting lost link state advertisements\n" |
| 8381 | "Address of interface") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8382 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8383 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_routemap_cmd_vtysh, |
| 8384 | "no redistribute bgp route-map WORD", |
| 8385 | "Negate a command or set its defaults\n" |
| 8386 | "Redistribute information from another routing protocol\n" |
| 8387 | "Border Gateway Protocol (BGP)\n" |
| 8388 | "Route map reference\n" |
| 8389 | "Pointer to route-map entries\n") |
| 8390 | |
| 8391 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_in_prefix_filter_cmd_vtysh, |
| 8392 | "clear ip bgp * in prefix-filter", |
| 8393 | "Reset functions\n" |
| 8394 | "IP information\n" |
| 8395 | "BGP information\n" |
| 8396 | "Clear all peers\n" |
| 8397 | "Soft reconfig inbound update\n" |
| 8398 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 8399 | |
| 8400 | DEFSH (VTYSH_BGPD, neighbor_transparent_as_cmd_vtysh, |
| 8401 | "neighbor (A.B.C.D|X:X::X:X) " "transparent-as", |
| 8402 | "Specify neighbor router\n" |
| 8403 | "Neighbor address\nIPv6 address\n" |
| 8404 | "Do not append my AS number even peer is EBGP peer\n") |
| 8405 | |
| 8406 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, no_ipv6_access_list_remark_cmd_vtysh, |
| 8407 | "no ipv6 access-list WORD remark", |
| 8408 | "Negate a command or set its defaults\n" |
| 8409 | "IPv6 information\n" |
| 8410 | "Add an access list entry\n" |
| 8411 | "IPv6 zebra access-list\n" |
| 8412 | "Access list entry comment\n") |
| 8413 | |
| 8414 | DEFSH (VTYSH_BGPD, no_match_community_exact_cmd_vtysh, |
| 8415 | "no match community (<1-99>|<100-199>|WORD) exact-match", |
| 8416 | "Negate a command or set its defaults\n" |
| 8417 | "Match values from routing table\n" |
| 8418 | "Match BGP community list\n" |
| 8419 | "Community-list number (standard)\n" |
| 8420 | "Community-list number (expanded)\n" |
| 8421 | "Community-list name\n" |
| 8422 | "Do exact matching of communities\n") |
| 8423 | |
| 8424 | DEFSH (VTYSH_OSPFD, no_area_vlink_param3_cmd_vtysh, |
| 8425 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 8426 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) " |
| 8427 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) " |
| 8428 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval)", |
| 8429 | "Negate a command or set its defaults\n" |
| 8430 | "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" |
| 8431 | "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" |
| 8432 | "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" |
| 8433 | "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") |
| 8434 | |
| 8435 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_in_prefix_filter_cmd_vtysh, |
| 8436 | "clear ip bgp <1-65535> ipv4 (unicast|multicast) in prefix-filter", |
| 8437 | "Reset functions\n" |
| 8438 | "IP information\n" |
| 8439 | "BGP information\n" |
| 8440 | "Clear peers with the AS number\n" |
| 8441 | "Address family\n" |
| 8442 | "Address Family modifier\n" |
| 8443 | "Address Family modifier\n" |
| 8444 | "Soft reconfig inbound update\n" |
| 8445 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 8446 | |
| 8447 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_out_cmd_vtysh, |
| 8448 | "clear bgp ipv6 external WORD out", |
| 8449 | "Reset functions\n" |
| 8450 | "BGP information\n" |
| 8451 | "Address family\n" |
| 8452 | "Clear all external peers\n" |
| 8453 | "Soft reconfig outbound update\n") |
| 8454 | |
| 8455 | DEFSH (VTYSH_OSPFD, ip_ospf_authentication_cmd_vtysh, |
| 8456 | "ip ospf authentication", |
| 8457 | "IP Information\n" |
| 8458 | "OSPF interface commands\n" |
| 8459 | "Enable authentication on this interface\n") |
| 8460 | |
| 8461 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_inter_intra_cmd_vtysh, |
| 8462 | "distance ospf inter-area <1-255> intra-area <1-255>", |
| 8463 | "Define an administrative distance\n" |
| 8464 | "OSPF Administrative distance\n" |
| 8465 | "Inter-area routes\n" |
| 8466 | "Distance for inter-area routes\n" |
| 8467 | "Intra-area routes\n" |
| 8468 | "Distance for intra-area routes\n") |
| 8469 | |
| 8470 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_out_cmd_vtysh, |
| 8471 | "clear ip bgp <1-65535> vpnv4 unicast out", |
| 8472 | "Reset functions\n" |
| 8473 | "IP information\n" |
| 8474 | "BGP information\n" |
| 8475 | "Clear peers with the AS number\n" |
| 8476 | "Address family\n" |
| 8477 | "Address Family modifier\n" |
| 8478 | "Soft reconfig outbound update\n") |
| 8479 | |
| 8480 | DEFSH (VTYSH_BGPD, show_bgp_summary_cmd_vtysh, |
| 8481 | "show bgp summary", |
| 8482 | "Show running system information\n" |
| 8483 | "BGP information\n" |
| 8484 | "Summary of BGP neighbor status\n") |
| 8485 | |
| 8486 | DEFSH (VTYSH_BGPD, bgp_deterministic_med_cmd_vtysh, |
| 8487 | "bgp deterministic-med", |
| 8488 | "BGP specific commands\n" |
| 8489 | "Pick the best-MED path among paths advertised from the neighboring AS\n") |
| 8490 | |
| 8491 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_le_ge_cmd_vtysh, |
| 8492 | "ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128> ge <0-128>", |
| 8493 | "IPv6 information\n" |
| 8494 | "Build a prefix list\n" |
| 8495 | "Name of a prefix list\n" |
| 8496 | "Specify packets to reject\n" |
| 8497 | "Specify packets to forward\n" |
| 8498 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 8499 | "Maximum prefix length to be matched\n" |
| 8500 | "Maximum prefix length\n" |
| 8501 | "Minimum prefix length to be matched\n" |
| 8502 | "Minimum prefix length\n") |
| 8503 | |
| 8504 | DEFSH (VTYSH_BGPD, undebug_bgp_filter_cmd_vtysh, |
| 8505 | "undebug bgp filters", |
| 8506 | "Disable debugging functions (see also 'debug')\n" |
| 8507 | "BGP information\n" |
| 8508 | "BGP filters\n") |
| 8509 | |
| 8510 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_cmd_vtysh, |
| 8511 | "show ipv6 ospf6", |
| 8512 | "Show running system information\n" |
| 8513 | "IPv6 Information\n" |
| 8514 | "Open Shortest Path First (OSPF) for IPv6\n") |
| 8515 | |
| 8516 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_in_prefix_filter_cmd_vtysh, |
| 8517 | "clear bgp ipv6 external in prefix-filter", |
| 8518 | "Reset functions\n" |
| 8519 | "BGP information\n" |
| 8520 | "Address family\n" |
| 8521 | "Clear all external peers\n" |
| 8522 | "Soft reconfig inbound update\n" |
| 8523 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 8524 | |
| 8525 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_spf_node_cmd_vtysh, |
| 8526 | "show ipv6 ospf6 area A.B.C.D spf node", |
| 8527 | "Show running system information\n" |
| 8528 | "IPv6 Information\n" |
| 8529 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 8530 | "Area information\n" |
| 8531 | "Area ID (as an IPv4 notation)\n" |
| 8532 | "Shortest Path First caculation\n" |
| 8533 | "vertex infomation\n" |
| 8534 | ) |
| 8535 | |
| 8536 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_cmd_vtysh, |
| 8537 | "redistribute (connected|kernel|ospf|rip|static)", |
| 8538 | "Redistribute information from another routing protocol\n" |
| 8539 | "Connected\n" |
| 8540 | "Kernel routes\n" |
| 8541 | "Open Shurtest Path First (OSPF)\n" |
| 8542 | "Routing Information Protocol (RIP)\n" |
| 8543 | "Static routes\n") |
| 8544 | |
| 8545 | DEFSH (VTYSH_BGPD, neighbor_filter_list_cmd_vtysh, |
| 8546 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "filter-list WORD (in|out)", |
| 8547 | "Specify neighbor router\n" |
| 8548 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 8549 | "Establish BGP filters\n" |
| 8550 | "AS path access-list name\n" |
| 8551 | "Filter incoming routes\n" |
| 8552 | "Filter outgoing routes\n") |
| 8553 | |
| 8554 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged10_cmd_vtysh, |
| 8555 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med as-path next-hop", |
| 8556 | "Specify neighbor router\n" |
| 8557 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 8558 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 8559 | "Med attribute\n" |
| 8560 | "As-path attribute\n" |
| 8561 | "Nexthop attribute\n") |
| 8562 | |
| 8563 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, clear_ip_prefix_list_name_cmd_vtysh, |
| 8564 | "clear ip prefix-list WORD", |
| 8565 | "Reset functions\n" |
| 8566 | "IP information\n" |
| 8567 | "Build a prefix list\n" |
| 8568 | "Name of a prefix list\n") |
| 8569 | |
| 8570 | DEFSH (VTYSH_ZEBRA, show_ip_route_cmd_vtysh, |
| 8571 | "show ip route", |
| 8572 | "Show running system information\n" |
| 8573 | "IP information\n" |
| 8574 | "IP routing table\n") |
| 8575 | |
| 8576 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_cmd_vtysh, |
| 8577 | "redistribute connected", |
| 8578 | "Redistribute information from another routing protocol\n" |
| 8579 | "Connected\n") |
| 8580 | |
| 8581 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_cmd_vtysh, |
| 8582 | "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export)", |
| 8583 | "Show running system information\n" |
| 8584 | "IPv6 information\n" |
| 8585 | "MBGP information\n" |
| 8586 | "Display routes matching the communities\n" |
| 8587 | "community number\n" |
| 8588 | "Do not send outside local AS (well-known community)\n" |
| 8589 | "Do not advertise to any peer (well-known community)\n" |
| 8590 | "Do not export to next AS (well-known community)\n") |
| 8591 | |
| 8592 | DEFSH (VTYSH_BGPD, ip_community_list_cmd_vtysh, |
| 8593 | "ip community-list WORD (deny|permit) .AA:NN", |
| 8594 | "IP information\n" |
| 8595 | "Add a community list entry\n" |
| 8596 | "Community list name\n" |
| 8597 | "Specify community to reject\n" |
| 8598 | "Specify community to accept\n" |
| 8599 | "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n") |
| 8600 | |
| 8601 | DEFSH (VTYSH_BGPD, clear_bgp_peer_in_prefix_filter_cmd_vtysh, |
| 8602 | "clear bgp (A.B.C.D|X:X::X:X) in prefix-filter", |
| 8603 | "Reset functions\n" |
| 8604 | "BGP information\n" |
| 8605 | "BGP neighbor address to clear\n" |
| 8606 | "BGP IPv6 neighbor to clear\n" |
| 8607 | "Soft reconfig inbound update\n" |
| 8608 | "Push out the existing ORF prefix-list\n") |
| 8609 | |
| 8610 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_intra_external_cmd_vtysh, |
| 8611 | "distance ospf intra-area <1-255> external <1-255>", |
| 8612 | "Define an administrative distance\n" |
| 8613 | "OSPF Administrative distance\n" |
| 8614 | "Intra-area routes\n" |
| 8615 | "Distance for intra-area routes\n" |
| 8616 | "External routes\n" |
| 8617 | "Distance for external routes\n") |
| 8618 | |
| 8619 | DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_received_routes_cmd_vtysh, |
| 8620 | "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) received-routes", |
| 8621 | "Show running system information\n" |
| 8622 | "IPv6 information\n" |
| 8623 | "MBGP information\n" |
| 8624 | "Detailed information on TCP and BGP neighbor connections\n" |
| 8625 | "Neighbor to display information about\n" |
| 8626 | "Neighbor to display information about\n" |
| 8627 | "Display the received routes from neighbor\n") |
| 8628 | |
| 8629 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_metric_type_routemap_cmd_vtysh, |
| 8630 | "default-information originate always metric <0-16777214> metric-type (1|2) route-map WORD", |
| 8631 | "Control distribution of default information\n" |
| 8632 | "Distribute a default route\n" |
| 8633 | "Always advertise default route\n" |
| 8634 | "OSPF default metric\n" |
| 8635 | "OSPF metric\n" |
| 8636 | "OSPF metric type for default routes\n" |
| 8637 | "Set OSPF External Type 1 metrics\n" |
| 8638 | "Set OSPF External Type 2 metrics\n" |
| 8639 | "Route map reference\n" |
| 8640 | "Pointer to route-map entries\n") |
| 8641 | |
| 8642 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_cmd_vtysh, |
| 8643 | "no ip prefix-list WORD seq <1-4294967295> (deny|permit) (A.B.C.D/M|any)", |
| 8644 | "Negate a command or set its defaults\n" |
| 8645 | "IP information\n" |
| 8646 | "Build a prefix list\n" |
| 8647 | "Name of a prefix list\n" |
| 8648 | "sequence number of an entry\n" |
| 8649 | "Sequence number\n" |
| 8650 | "Specify packets to reject\n" |
| 8651 | "Specify packets to forward\n" |
| 8652 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 8653 | "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n") |
| 8654 | |
| 8655 | DEFSH (VTYSH_OSPF6D, interface_area_plist_passive_cmd_vtysh, |
| 8656 | "interface IFNAME area A.B.C.D prefix-list WORD passive", |
| 8657 | "Enable routing on an IPv6 interface\n" |
| 8658 | "Interface name(e.g. ep0)\n" |
| 8659 | "Set the OSPF6 area ID\n" |
| 8660 | "OSPF6 area ID in IPv4 address notation\n" |
| 8661 | "Advertise I/F Address only match entries of prefix-list\n" |
| 8662 | "IPv6 prefix-list name\n" |
| 8663 | "IPv6 prefix-list name\n" |
| 8664 | "Suppress routing updates on an interface\n" |
| 8665 | ) |
| 8666 | |
| 8667 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_seq_le_ge_cmd_vtysh, |
| 8668 | "no ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) X:X::X:X/M le <0-128> ge <0-128>", |
| 8669 | "Negate a command or set its defaults\n" |
| 8670 | "IPv6 information\n" |
| 8671 | "Build a prefix list\n" |
| 8672 | "Name of a prefix list\n" |
| 8673 | "sequence number of an entry\n" |
| 8674 | "Sequence number\n" |
| 8675 | "Specify packets to reject\n" |
| 8676 | "Specify packets to forward\n" |
| 8677 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 8678 | "Maximum prefix length to be matched\n" |
| 8679 | "Maximum prefix length\n" |
| 8680 | "Minimum prefix length to be matched\n" |
| 8681 | "Minimum prefix length\n") |
| 8682 | |
| 8683 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_in_prefix_filter_cmd_vtysh, |
| 8684 | "clear bgp ipv6 * in prefix-filter", |
| 8685 | "Reset functions\n" |
| 8686 | "BGP information\n" |
| 8687 | "Address family\n" |
| 8688 | "Clear all peers\n" |
| 8689 | "Soft reconfig inbound update\n" |
| 8690 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 8691 | |
| 8692 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh, |
| 8693 | "show ip bgp vpnv4 all neighbors", |
| 8694 | "Show running system information\n" |
| 8695 | "IP information\n" |
| 8696 | "BGP information\n" |
| 8697 | "Display VPNv4 NLRI specific information\n" |
| 8698 | "Display information about all VPNv4 NLRIs\n" |
| 8699 | "Detailed information on TCP and BGP neighbor connections\n") |
| 8700 | |
| 8701 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbors_cmd_vtysh, |
| 8702 | "show bgp ipv6 neighbors", |
| 8703 | "Show running system information\n" |
| 8704 | "BGP information\n" |
| 8705 | "Address family\n" |
| 8706 | "Detailed information on TCP and BGP neighbor connections\n") |
| 8707 | |
| 8708 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_routemap_cmd_vtysh, |
| 8709 | "no redistribute kernel metric <0-16> route-map WORD", |
| 8710 | "Negate a command or set its defaults\n" |
| 8711 | "Redistribute information from another routing protocol\n" |
| 8712 | "Kernel routes\n" |
| 8713 | "Metric\n" |
| 8714 | "Metric value\n" |
| 8715 | "Route map reference\n" |
| 8716 | "Pointer to route-map entries\n") |
| 8717 | |
| 8718 | DEFSH (VTYSH_BGPD, old_no_ipv6_aggregate_address_summary_only_cmd_vtysh, |
| 8719 | "no ipv6 bgp aggregate-address X:X::X:X/M summary-only", |
| 8720 | "Negate a command or set its defaults\n" |
| 8721 | "IPv6 information\n" |
| 8722 | "BGP information\n" |
| 8723 | "Configure BGP aggregate entries\n" |
| 8724 | "Aggregate prefix\n" |
| 8725 | "Filter more specific routes from updates\n") |
| 8726 | |
| 8727 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_summary_cmd_vtysh, |
| 8728 | "show ipv6 bgp summary", |
| 8729 | "Show running system information\n" |
| 8730 | "IPv6 information\n" |
| 8731 | "BGP information\n" |
| 8732 | "Summary of BGP neighbor status\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8733 | |
| 8734 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_in_prefix_filter_cmd_vtysh, |
| 8735 | "clear ip bgp view WORD * in prefix-filter", |
| 8736 | "Reset functions\n" |
| 8737 | "IP information\n" |
| 8738 | "BGP information\n" |
| 8739 | "BGP view\n" |
| 8740 | "view name\n" |
| 8741 | "Clear all peers\n" |
| 8742 | "Soft reconfig inbound update\n" |
| 8743 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 8744 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8745 | DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_standard_cmd_vtysh, |
| 8746 | "no ip extcommunity-list <1-99> (deny|permit) .AA:NN", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8747 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8748 | "IP information\n" |
| 8749 | "Add a extended community list entry\n" |
| 8750 | "Extended Community list number (standard)\n" |
| 8751 | "Specify community to reject\n" |
| 8752 | "Specify community to accept\n" |
| 8753 | "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8754 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8755 | DEFSH (VTYSH_OSPFD, ospf_distribute_list_out_cmd_vtysh, |
| 8756 | "distribute-list WORD out (kernel|connected|static|rip|bgp)", |
| 8757 | "Filter networks in routing updates\n" |
| 8758 | "Access-list name\n" |
| 8759 | "Filter outgoing routing updates\n" |
| 8760 | "Kernel routes\n" |
| 8761 | "Connected\n" |
| 8762 | "Static routes\n" |
| 8763 | "Routing Information Protocol (RIP)\n" |
| 8764 | "Border Gateway Protocol (BGP)\n") |
| 8765 | |
| 8766 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, no_ipv6_access_list_remark_arg_cmd_vtysh, |
| 8767 | "no ipv6 access-list WORD remark .LINE", |
| 8768 | "Negate a command or set its defaults\n" |
| 8769 | "IPv6 information\n" |
| 8770 | "Add an access list entry\n" |
| 8771 | "IPv6 zebra access-list\n" |
| 8772 | "Access list entry comment\n" |
| 8773 | "Comment up to 100 characters\n") |
| 8774 | |
| 8775 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_statistics_cmd_vtysh, |
| 8776 | "show ip bgp flap-statistics", |
| 8777 | "Show running system information\n" |
| 8778 | "IP information\n" |
| 8779 | "BGP information\n" |
| 8780 | "Display flap statistics of routes\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8781 | |
| 8782 | DEFSH (VTYSH_ZEBRA, show_ip_route_supernets_cmd_vtysh, |
| 8783 | "show ip route supernets-only", |
| 8784 | "Show running system information\n" |
| 8785 | "IP information\n" |
| 8786 | "IP routing table\n" |
| 8787 | "Show supernet entries only\n") |
| 8788 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8789 | DEFSH (VTYSH_BGPD, set_ipv6_nexthop_local_cmd_vtysh, |
| 8790 | "set ipv6 next-hop local X:X::X:X", |
| 8791 | "Set values in destination routing protocol\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8792 | "IPv6 information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8793 | "IPv6 next-hop address\n" |
| 8794 | "IPv6 local address\n" |
| 8795 | "IPv6 address of next hop\n") |
| 8796 | |
| 8797 | DEFSH (VTYSH_OSPFD, no_ospf_rfc1583_flag_cmd_vtysh, |
| 8798 | "no ospf rfc1583compatibility", |
| 8799 | "Negate a command or set its defaults\n" |
| 8800 | "OSPF specific commands\n" |
| 8801 | "Disable the RFC1583Compatibility flag\n") |
| 8802 | |
| 8803 | DEFSH (VTYSH_BGPD, neighbor_route_map_cmd_vtysh, |
| 8804 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-map WORD (in|out)", |
| 8805 | "Specify neighbor router\n" |
| 8806 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 8807 | "Apply route map to neighbor\n" |
| 8808 | "Name of route map\n" |
| 8809 | "Apply map to incoming routes\n" |
| 8810 | "Apply map to outbound routes\n") |
| 8811 | |
| 8812 | DEFSH (VTYSH_BGPD, no_debug_bgp_keepalive_cmd_vtysh, |
| 8813 | "no debug bgp keepalives", |
| 8814 | "Negate a command or set its defaults\n" |
| 8815 | "Debugging functions (see also 'undebug')\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8816 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8817 | "BGP keepalives\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8818 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8819 | DEFSH (VTYSH_OSPF6D, show_debug_ospf6_damp_cmd_vtysh, |
| 8820 | "show debugging ospf6 damp", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8821 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8822 | "Debugging functions (see also 'undebug')\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8823 | "Open Shortest Path First (OSPF) for IPv6\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8824 | "Flap-dampening information\n" |
| 8825 | ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8826 | |
| 8827 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community3_exact_cmd_vtysh, |
| 8828 | "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", |
| 8829 | "Show running system information\n" |
| 8830 | "BGP information\n" |
| 8831 | "Address family\n" |
| 8832 | "Display routes matching the communities\n" |
| 8833 | "community number\n" |
| 8834 | "Do not send outside local AS (well-known community)\n" |
| 8835 | "Do not advertise to any peer (well-known community)\n" |
| 8836 | "Do not export to next AS (well-known community)\n" |
| 8837 | "community number\n" |
| 8838 | "Do not send outside local AS (well-known community)\n" |
| 8839 | "Do not advertise to any peer (well-known community)\n" |
| 8840 | "Do not export to next AS (well-known community)\n" |
| 8841 | "community number\n" |
| 8842 | "Do not send outside local AS (well-known community)\n" |
| 8843 | "Do not advertise to any peer (well-known community)\n" |
| 8844 | "Do not export to next AS (well-known community)\n" |
| 8845 | "Exact match of the communities") |
| 8846 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8847 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_topology_router_lsid_cmd_vtysh, |
| 8848 | "show ipv6 ospf6 topology (A.B.C.D|<0-4294967295>) (A.B.C.D|<0-4294967295>)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8849 | "Show running system information\n" |
| 8850 | "IPv6 Information\n" |
| 8851 | "Open Shortest Path First (OSPF) for IPv6\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8852 | "Inter Area topology information\n" |
| 8853 | "Specify Router-ID\n" |
| 8854 | "Specify Router-ID\n" |
| 8855 | "Specify Link State ID\n" |
| 8856 | "Specify Link State ID\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8857 | ) |
| 8858 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8859 | DEFSH (VTYSH_BGPD, no_bgp_network_mask_natural_route_map_cmd_vtysh, |
| 8860 | "no network A.B.C.D route-map WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8861 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8862 | "Specify a network to announce via BGP\n" |
| 8863 | "Network number\n" |
| 8864 | "Route-map to modify the attributes\n" |
| 8865 | "Name of the route map\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8866 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8867 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community_all_cmd_vtysh, |
| 8868 | "show ipv6 mbgp community", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8869 | "Show running system information\n" |
| 8870 | "IPv6 information\n" |
| 8871 | "MBGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8872 | "Display routes matching the communities\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8873 | |
| 8874 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_route_map_cmd_vtysh, |
| 8875 | "no route-map WORD (deny|permit) <1-65535>", |
| 8876 | "Negate a command or set its defaults\n" |
| 8877 | "Create route-map or enter route-map command mode\n" |
| 8878 | "Route map tag\n" |
| 8879 | "Route map denies set operations\n" |
| 8880 | "Route map permits set operations\n" |
| 8881 | "Sequence to insert to/delete from existing route-map entry\n") |
| 8882 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8883 | DEFSH (VTYSH_ZEBRA, ip_address_cmd_vtysh, |
| 8884 | "ip address A.B.C.D/M", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8885 | "Interface Internet Protocol config commands\n" |
| 8886 | "Set the IP address of an interface\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8887 | "IP address (e.g. 10.0.0.1/8)\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8888 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8889 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_ge_cmd_vtysh, |
| 8890 | "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M ge <0-128>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8891 | "Negate a command or set its defaults\n" |
| 8892 | "IPv6 information\n" |
| 8893 | "Build a prefix list\n" |
| 8894 | "Name of a prefix list\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8895 | "Specify packets to reject\n" |
| 8896 | "Specify packets to forward\n" |
| 8897 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8898 | "Minimum prefix length to be matched\n" |
| 8899 | "Minimum prefix length\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8900 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8901 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_sequence_number_cmd_vtysh, |
| 8902 | "no ipv6 prefix-list sequence-number", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8903 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8904 | "IPv6 information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8905 | "Build a prefix list\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8906 | "Include/exclude sequence numbers in NVGEN\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8907 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8908 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_cmd_vtysh, |
| 8909 | "show ip bgp ipv4 (unicast|multicast)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8910 | "Show running system information\n" |
| 8911 | "IP information\n" |
| 8912 | "BGP information\n" |
| 8913 | "Address family\n" |
| 8914 | "Address Family modifier\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8915 | "Address Family modifier\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8916 | |
| 8917 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_host_cmd_vtysh, |
| 8918 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip any host A.B.C.D", |
| 8919 | "Add an access list entry\n" |
| 8920 | "IP extended access list\n" |
| 8921 | "IP extended access list (expanded range)\n" |
| 8922 | "Specify packets to reject\n" |
| 8923 | "Specify packets to forward\n" |
| 8924 | "Any Internet Protocol\n" |
| 8925 | "Any source host\n" |
| 8926 | "A single destination host\n" |
| 8927 | "Destination address\n") |
| 8928 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8929 | DEFSH (VTYSH_BGPD, ipv6_mbgp_neighbor_routes_cmd_vtysh, |
| 8930 | "show ipv6 mbgp neighbors (A.B.C.D|X:X::X:X) routes", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 8931 | "Show running system information\n" |
| 8932 | "IPv6 information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8933 | "MBGP information\n" |
| 8934 | "Detailed information on TCP and BGP neighbor connections\n" |
| 8935 | "Neighbor to display information about\n" |
| 8936 | "Neighbor to display information about\n" |
| 8937 | "Display routes learned from neighbor\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8938 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8939 | DEFSH (VTYSH_OSPFD, area_vlink_param4_cmd_vtysh, |
| 8940 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 8941 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> " |
| 8942 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> " |
| 8943 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> " |
| 8944 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>", |
| 8945 | "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" |
| 8946 | "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" |
| 8947 | "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" |
| 8948 | "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" |
| 8949 | "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") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8950 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8951 | DEFSH (VTYSH_BGPD, no_ip_extcommunity_list_expanded_cmd_vtysh, |
| 8952 | "no ip extcommunity-list <100-199> (deny|permit) .LINE", |
| 8953 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8954 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8955 | "Add a extended community list entry\n" |
| 8956 | "Extended Community list number (expanded)\n" |
| 8957 | "Specify community to reject\n" |
| 8958 | "Specify community to accept\n" |
| 8959 | "An ordered list as a regular-expression\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 8960 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 8961 | DEFSH (VTYSH_RIPD, no_ip_rip_authentication_key_chain_cmd_vtysh, |
| 8962 | "no ip rip authentication key-chain", |
| 8963 | "Negate a command or set its defaults\n" |
| 8964 | "IP information\n" |
| 8965 | "Routing Information Protocol\n" |
| 8966 | "Authentication control\n" |
| 8967 | "Authentication key-chain\n") |
| 8968 | |
| 8969 | DEFSH (VTYSH_OSPFD, no_ospf_default_information_originate_cmd_vtysh, |
| 8970 | "no default-information originate", |
| 8971 | "Negate a command or set its defaults\n" |
| 8972 | "Control distribution of default information\n" |
| 8973 | "Distribute a default route\n") |
| 8974 | |
| 8975 | DEFSH (VTYSH_BGPD, no_bgp_bestpath_med_cmd_vtysh, |
| 8976 | "no bgp bestpath med (confed|missing-as-worst)", |
| 8977 | "Negate a command or set its defaults\n" |
| 8978 | "BGP specific commands\n" |
| 8979 | "Change the default bestpath selection\n" |
| 8980 | "MED attribute\n" |
| 8981 | "Compare MED among confederation paths\n" |
| 8982 | "Treat missing MED as the least preferred one\n") |
| 8983 | |
| 8984 | DEFSH (VTYSH_ZEBRA, ip_route_cmd_vtysh, |
| 8985 | "ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0)", |
| 8986 | "IP information\n" |
| 8987 | "Establish static routes\n" |
| 8988 | "IP destination prefix (e.g. 10.0.0.0/8)\n" |
| 8989 | "IP gateway address\n" |
| 8990 | "IP gateway interface name\n" |
| 8991 | "Null interface\n") |
| 8992 | |
| 8993 | DEFSH (VTYSH_BGPD, neighbor_unsuppress_map_cmd_vtysh, |
| 8994 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "unsuppress-map WORD", |
| 8995 | "Specify neighbor router\n" |
| 8996 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 8997 | "Route-map to selectively unsuppress suppressed routes\n" |
| 8998 | "Name of route map\n") |
| 8999 | |
| 9000 | DEFSH (VTYSH_RIPNGD, ripng_route_cmd_vtysh, |
| 9001 | "route IPV6ADDR", |
| 9002 | "Static route setup\n" |
| 9003 | "Set static RIPng route announcement\n") |
| 9004 | |
| 9005 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_damp_cmd_vtysh, |
| 9006 | "show ip bgp neighbors (A.B.C.D|X:X::X:X) dampened-routes", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9007 | "Show running system information\n" |
| 9008 | "IP information\n" |
| 9009 | "BGP information\n" |
| 9010 | "Detailed information on TCP and BGP neighbor connections\n" |
| 9011 | "Neighbor to display information about\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9012 | "Neighbor to display information about\n" |
| 9013 | "Display the dampened routes received from neighbor\n") |
| 9014 | |
| 9015 | DEFSH (VTYSH_RIPD, send_lifetime_month_day_day_month_cmd_vtysh, |
| 9016 | "send-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>", |
| 9017 | "Set send lifetime of the key\n" |
| 9018 | "Time to start\n" |
| 9019 | "Month of the year to start\n" |
| 9020 | "Day of th month to start\n" |
| 9021 | "Year to start\n" |
| 9022 | "Time to expire\n" |
| 9023 | "Day of th month to expire\n" |
| 9024 | "Month of the year to expire\n" |
| 9025 | "Year to expire\n") |
| 9026 | |
| 9027 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_route_map_all_cmd_vtysh, |
| 9028 | "no route-map WORD", |
| 9029 | "Negate a command or set its defaults\n" |
| 9030 | "Create route-map or enter route-map command mode\n" |
| 9031 | "Route map tag\n") |
| 9032 | |
| 9033 | DEFSH (VTYSH_RIPD, no_rip_network_cmd_vtysh, |
| 9034 | "no network (A.B.C.D/M|WORD)", |
| 9035 | "Negate a command or set its defaults\n" |
| 9036 | "Enable routing on an IP network\n" |
| 9037 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 9038 | "Interface name\n") |
| 9039 | |
| 9040 | DEFSH (VTYSH_BGPD, bgp_network_mask_route_map_cmd_vtysh, |
| 9041 | "network A.B.C.D mask A.B.C.D route-map WORD", |
| 9042 | "Specify a network to announce via BGP\n" |
| 9043 | "Network number\n" |
| 9044 | "Network mask\n" |
| 9045 | "Network mask\n" |
| 9046 | "Route-map to modify the attributes\n" |
| 9047 | "Name of the route map\n") |
| 9048 | |
| 9049 | DEFSH (VTYSH_BGPD, set_vpnv4_nexthop_cmd_vtysh, |
| 9050 | "set vpnv4 next-hop A.B.C.D", |
| 9051 | "Set values in destination routing protocol\n" |
| 9052 | "VPNv4 information\n" |
| 9053 | "VPNv4 next-hop address\n" |
| 9054 | "IP address of next hop\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9055 | |
| 9056 | DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_send_recv_detail_cmd_vtysh, |
| 9057 | "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)", |
| 9058 | "Negate a command or set its defaults\n" |
| 9059 | "Debugging functions\n" |
| 9060 | "OSPF information\n" |
| 9061 | "OSPF packets\n" |
| 9062 | "OSPF Hello\n" |
| 9063 | "OSPF Database Description\n" |
| 9064 | "OSPF Link State Request\n" |
| 9065 | "OSPF Link State Update\n" |
| 9066 | "OSPF Link State Acknowledgment\n" |
| 9067 | "OSPF all packets\n" |
| 9068 | "Packet sent\n" |
| 9069 | "Packet received\n" |
| 9070 | "Detail Information\n") |
| 9071 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9072 | DEFSH (VTYSH_RIPD, no_rip_default_metric_cmd_vtysh, |
| 9073 | "no default-metric", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9074 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9075 | "Set a metric of redistribute routes\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9076 | "Default metric\n") |
| 9077 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9078 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_soft_out_cmd_vtysh, |
| 9079 | "clear ip bgp peer-group WORD soft out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9080 | "Reset functions\n" |
| 9081 | "IP information\n" |
| 9082 | "BGP information\n" |
| 9083 | "Clear all members of peer-group\n" |
| 9084 | "BGP peer-group name\n" |
| 9085 | "Soft reconfig\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9086 | "Soft reconfig outbound update\n") |
| 9087 | |
| 9088 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_route_cmd_vtysh, |
| 9089 | "show ipv6 mbgp X:X::X:X", |
| 9090 | "Show running system information\n" |
| 9091 | "IP information\n" |
| 9092 | "MBGP information\n" |
| 9093 | "Network in the MBGP routing table to display\n") |
| 9094 | |
| 9095 | DEFSH (VTYSH_OSPFD, neighbor_cmd_vtysh, |
| 9096 | "neighbor A.B.C.D", |
| 9097 | "Specify neighbor router\n" |
| 9098 | "Neighbor IP address\n") |
| 9099 | |
| 9100 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_in_cmd_vtysh, |
| 9101 | "clear ip bgp external ipv4 (unicast|multicast) in", |
| 9102 | "Reset functions\n" |
| 9103 | "IP information\n" |
| 9104 | "BGP information\n" |
| 9105 | "Clear all external peers\n" |
| 9106 | "Address family\n" |
| 9107 | "Address Family modifier\n" |
| 9108 | "Address Family modifier\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9109 | "Soft reconfig inbound update\n") |
| 9110 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9111 | DEFSH (VTYSH_OSPFD, area_range_advertise_cmd_vtysh, |
| 9112 | "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise", |
| 9113 | "OSPF area parameters\n" |
| 9114 | "OSPF area ID in IP address format\n" |
| 9115 | "OSPF area ID as a decimal value\n" |
| 9116 | "OSPF area range for route advertise (default)\n" |
| 9117 | "Area range prefix\n" |
| 9118 | "Advertise this range (default)\n") |
| 9119 | |
| 9120 | DEFSH (VTYSH_OSPFD, timers_spf_cmd_vtysh, |
| 9121 | "timers spf <0-4294967295> <0-4294967295>", |
| 9122 | "Adjust routing timers\n" |
| 9123 | "OSPF SPF timers\n" |
| 9124 | "Delay between receiving a change to SPF calculation\n" |
| 9125 | "Hold time between consecutive SPF calculations\n") |
| 9126 | |
| 9127 | DEFSH (VTYSH_ZEBRA, ipv6_route_pref_cmd_vtysh, |
| 9128 | "ipv6 route X:X::X:X/M (X:X::X:X|INTERFACE) <1-255>", |
| 9129 | "IP information\n" |
| 9130 | "Establish static routes\n" |
| 9131 | "IPv6 destination prefix (e.g. 3ffe:506::/32)\n" |
| 9132 | "IPv6 gateway address\n" |
| 9133 | "IPv6 gateway interface name\n" |
| 9134 | "Distance value for this prefix\n") |
| 9135 | |
| 9136 | DEFSH (VTYSH_BGPD, no_bgp_default_local_preference_val_cmd_vtysh, |
| 9137 | "no bgp default local-preference <0-4294967295>", |
| 9138 | "Negate a command or set its defaults\n" |
| 9139 | "BGP specific commands\n" |
| 9140 | "Configure BGP defaults\n" |
| 9141 | "local preference (higher=more preferred)\n" |
| 9142 | "Configure default local preference value\n") |
| 9143 | |
| 9144 | DEFSH (VTYSH_RIPNGD, ripng_timers_cmd_vtysh, |
| 9145 | "timers basic <0-65535> <0-65535> <0-65535>", |
| 9146 | "RIPng timers setup\n" |
| 9147 | "Basic timer\n" |
| 9148 | "Routing table update timer value in second. Default is 30.\n" |
| 9149 | "Routing information timeout timer. Default is 180.\n" |
| 9150 | "Garbage collection timer. Default is 120.\n") |
| 9151 | |
| 9152 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged8_cmd_vtysh, |
| 9153 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop as-path med", |
| 9154 | "Negate a command or set its defaults\n" |
| 9155 | "Specify neighbor router\n" |
| 9156 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9157 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 9158 | "Nexthop attribute\n" |
| 9159 | "As-path attribute\n" |
| 9160 | "Med attribute\n") |
| 9161 | |
| 9162 | DEFSH (VTYSH_BGPD, show_ip_bgp_community2_cmd_vtysh, |
| 9163 | "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)", |
| 9164 | "Show running system information\n" |
| 9165 | "IP information\n" |
| 9166 | "BGP information\n" |
| 9167 | "Display routes matching the communities\n" |
| 9168 | "community number\n" |
| 9169 | "Do not send outside local AS (well-known community)\n" |
| 9170 | "Do not advertise to any peer (well-known community)\n" |
| 9171 | "Do not export to next AS (well-known community)\n" |
| 9172 | "community number\n" |
| 9173 | "Do not send outside local AS (well-known community)\n" |
| 9174 | "Do not advertise to any peer (well-known community)\n" |
| 9175 | "Do not export to next AS (well-known community)\n") |
| 9176 | |
| 9177 | DEFSH (VTYSH_OSPFD, no_set_metric_type_cmd_vtysh, |
| 9178 | "no set metric-type", |
| 9179 | "Negate a command or set its defaults\n" |
| 9180 | "Set values in destination routing protocol\n" |
| 9181 | "Type of metric for destination routing protocol\n") |
| 9182 | |
| 9183 | DEFSH (VTYSH_BGPD, neighbor_peer_group_cmd_vtysh, |
| 9184 | "neighbor WORD peer-group", |
| 9185 | "Specify neighbor router\n" |
| 9186 | "Neighbor tag\n" |
| 9187 | "Configure peer-group\n") |
| 9188 | |
| 9189 | DEFSH (VTYSH_BGPD, show_ip_bgp_community_exact_cmd_vtysh, |
| 9190 | "show ip bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 9191 | "Show running system information\n" |
| 9192 | "IP information\n" |
| 9193 | "BGP information\n" |
| 9194 | "Display routes matching the communities\n" |
| 9195 | "community number\n" |
| 9196 | "Do not send outside local AS (well-known community)\n" |
| 9197 | "Do not advertise to any peer (well-known community)\n" |
| 9198 | "Do not export to next AS (well-known community)\n" |
| 9199 | "Exact match of the communities") |
| 9200 | |
| 9201 | DEFSH (VTYSH_BGPD, bgp_enforce_first_as_cmd_vtysh, |
| 9202 | "bgp enforce-first-as", |
| 9203 | "BGP information\n" |
| 9204 | "Enforce the first AS for EBGP routes\n") |
| 9205 | |
| 9206 | DEFSH (VTYSH_BGPD, show_bgp_community3_exact_cmd_vtysh, |
| 9207 | "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", |
| 9208 | "Show running system information\n" |
| 9209 | "BGP information\n" |
| 9210 | "Display routes matching the communities\n" |
| 9211 | "community number\n" |
| 9212 | "Do not send outside local AS (well-known community)\n" |
| 9213 | "Do not advertise to any peer (well-known community)\n" |
| 9214 | "Do not export to next AS (well-known community)\n" |
| 9215 | "community number\n" |
| 9216 | "Do not send outside local AS (well-known community)\n" |
| 9217 | "Do not advertise to any peer (well-known community)\n" |
| 9218 | "Do not export to next AS (well-known community)\n" |
| 9219 | "community number\n" |
| 9220 | "Do not send outside local AS (well-known community)\n" |
| 9221 | "Do not advertise to any peer (well-known community)\n" |
| 9222 | "Do not export to next AS (well-known community)\n" |
| 9223 | "Exact match of the communities") |
| 9224 | |
| 9225 | DEFSH (VTYSH_OSPFD, ospf_dead_interval_cmd_vtysh, |
| 9226 | "ospf dead-interval <1-65535>", |
| 9227 | "OSPF interface commands\n" |
| 9228 | "Interval after which a neighbor is declared dead\n" |
| 9229 | "Seconds\n") |
| 9230 | |
| 9231 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_cmd_vtysh, |
| 9232 | "clear bgp ipv6 peer-group WORD soft", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9233 | "Reset functions\n" |
| 9234 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9235 | "Address family\n" |
| 9236 | "Clear all members of peer-group\n" |
| 9237 | "BGP peer-group name\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9238 | "Soft reconfig\n") |
| 9239 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9240 | DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_md5_cmd_vtysh, |
| 9241 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 9242 | "(authentication|) (message-digest|null) " |
| 9243 | "(message-digest-key|) <1-255> md5 KEY", |
| 9244 | "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" |
| 9245 | "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n" |
| 9246 | "Message digest authentication password (key)\n" "dummy string \n" "Key ID\n" "Use MD5 algorithm\n" "The OSPF password (key)") |
| 9247 | |
| 9248 | DEFSH (VTYSH_BGPD, clear_bgp_external_cmd_vtysh, |
| 9249 | "clear bgp external", |
| 9250 | "Reset functions\n" |
| 9251 | "BGP information\n" |
| 9252 | "Clear all external peers\n") |
| 9253 | |
| 9254 | DEFSH (VTYSH_BGPD, no_ip_community_list_name_standard_cmd_vtysh, |
| 9255 | "no ip community-list standard WORD (deny|permit) .AA:NN", |
| 9256 | "Negate a command or set its defaults\n" |
| 9257 | "IP information\n" |
| 9258 | "Add a community list entry\n" |
| 9259 | "Specify a standard community-list\n" |
| 9260 | "Community list name\n" |
| 9261 | "Specify community to reject\n" |
| 9262 | "Specify community to accept\n" |
| 9263 | "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n") |
| 9264 | |
| 9265 | DEFSH (VTYSH_BGPD, neighbor_update_source_cmd_vtysh, |
| 9266 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "update-source WORD", |
| 9267 | "Specify neighbor router\n" |
| 9268 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9269 | "Source of routing updates\n" |
| 9270 | "Interface name\n") |
| 9271 | |
| 9272 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_in_cmd_vtysh, |
| 9273 | "clear ip bgp peer-group WORD in", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9274 | "Reset functions\n" |
| 9275 | "IP information\n" |
| 9276 | "BGP information\n" |
| 9277 | "Clear all members of peer-group\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9278 | "BGP peer-group name\n" |
| 9279 | "Soft reconfig inbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9280 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9281 | DEFSH (VTYSH_OSPFD, neighbor_priority_cmd_vtysh, |
| 9282 | "neighbor A.B.C.D priority <0-255>", |
| 9283 | "Specify neighbor router\n" |
| 9284 | "Neighbor IP address\n" |
| 9285 | "Neighbor Priority\n" |
| 9286 | "Seconds\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9287 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9288 | DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_standard_cmd_vtysh, |
| 9289 | "ip extcommunity-list standard WORD (deny|permit) .AA:NN", |
| 9290 | "IP information\n" |
| 9291 | "Add a extended community list entry\n" |
| 9292 | "Specify standard extcommunity-list\n" |
| 9293 | "Extended Community list name\n" |
| 9294 | "Specify community to reject\n" |
| 9295 | "Specify community to accept\n" |
| 9296 | "Extended community attribute in 'rt aa:nn_or_IPaddr:nn' OR 'soo aa:nn_or_IPaddr:nn' format\n") |
| 9297 | |
| 9298 | DEFSH (VTYSH_BGPD, neighbor_capability_route_refresh_cmd_vtysh, |
| 9299 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability route-refresh", |
| 9300 | "Specify neighbor router\n" |
| 9301 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9302 | "Advertise capability to the peer\n" |
| 9303 | "Advertise route-refresh capability to this neighbor\n") |
| 9304 | |
| 9305 | DEFSH (VTYSH_BGPD, no_ipv6_bgp_network_cmd_vtysh, |
| 9306 | "no network X:X::X:X/M", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9307 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9308 | "Specify a network to announce via BGP\n" |
| 9309 | "IPv6 prefix <network>/<length>\n") |
| 9310 | |
| 9311 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_connected_metric_val_cmd_vtysh, |
| 9312 | "no redistribute connected metric <0-16>", |
| 9313 | "Negate a command or set its defaults\n" |
| 9314 | "Redistribute information from another routing protocol\n" |
| 9315 | "Connected\n" |
| 9316 | "Metric\n" |
| 9317 | "Metric value\n") |
| 9318 | |
| 9319 | DEFSH (VTYSH_RIPD, ip_rip_receive_version_1_cmd_vtysh, |
| 9320 | "ip rip receive version 1 2", |
| 9321 | "IP information\n" |
| 9322 | "Routing Information Protocol\n" |
| 9323 | "Advertisement reception\n" |
| 9324 | "Version control\n" |
| 9325 | "RIP version 1\n" |
| 9326 | "RIP version 2\n") |
| 9327 | |
| 9328 | DEFSH (VTYSH_BGPD, no_match_ecommunity_val_cmd_vtysh, |
| 9329 | "no match extcommunity (<1-99>|<100-199>|WORD)", |
| 9330 | "Negate a command or set its defaults\n" |
| 9331 | "Match values from routing table\n" |
| 9332 | "Match BGP/VPN extended community list\n" |
| 9333 | "Extended community-list number (standard)\n" |
| 9334 | "Extended community-list number (expanded)\n" |
| 9335 | "Extended community-list name\n") |
| 9336 | |
| 9337 | DEFSH (VTYSH_BGPD, no_bgp_network_mask_cmd_vtysh, |
| 9338 | "no network A.B.C.D mask A.B.C.D", |
| 9339 | "Negate a command or set its defaults\n" |
| 9340 | "Specify a network to announce via BGP\n" |
| 9341 | "Network number\n" |
| 9342 | "Network mask\n" |
| 9343 | "Network mask\n") |
| 9344 | |
| 9345 | DEFSH (VTYSH_ZEBRA, show_interface_cmd_vtysh, |
| 9346 | "show interface [IFNAME]", |
| 9347 | "Show running system information\n" |
| 9348 | "Interface status and configuration\n" |
| 9349 | "Inteface name\n") |
| 9350 | |
| 9351 | DEFSH (VTYSH_OSPFD, no_router_ospf_cmd_vtysh, |
| 9352 | "no router ospf", |
| 9353 | "Negate a command or set its defaults\n" |
| 9354 | "Enable a routing process\n" |
| 9355 | "Start OSPF configuration\n") |
| 9356 | |
| 9357 | DEFSH (VTYSH_BGPD, no_bgp_confederation_identifier_cmd_vtysh, |
| 9358 | "no bgp confederation identifier", |
| 9359 | "Negate a command or set its defaults\n" |
| 9360 | "BGP specific commands\n" |
| 9361 | "AS confederation parameters\n" |
| 9362 | "AS number\n") |
| 9363 | |
| 9364 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_metric_type_routemap_cmd_vtysh, |
| 9365 | "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2) route-map WORD", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9366 | "Redistribute information from another routing protocol\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9367 | "Kernel routes\n" |
| 9368 | "Connected\n" |
| 9369 | "Static routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9370 | "Routing Information Protocol (RIP)\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9371 | "Border Gateway Protocol (BGP)\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9372 | "Metric for redistributed routes\n" |
| 9373 | "OSPF default metric\n" |
| 9374 | "OSPF exterior metric type for redistributed routes\n" |
| 9375 | "Set OSPF External Type 1 metrics\n" |
| 9376 | "Set OSPF External Type 2 metrics\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9377 | "Route map reference\n" |
| 9378 | "Pointer to route-map entries\n") |
| 9379 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9380 | DEFSH (VTYSH_BGPD, no_neighbor_local_as_val2_cmd_vtysh, |
| 9381 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535> no-prepend", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9382 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9383 | "Specify neighbor router\n" |
| 9384 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9385 | "Specify a local-as number\n" |
| 9386 | "AS number used as local AS\n" |
| 9387 | "Do not prepend local-as to updates from ebgp peers\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9388 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9389 | DEFSH (VTYSH_BGPD, show_ip_bgp_community_info_cmd_vtysh, |
| 9390 | "show ip bgp community-info", |
| 9391 | "Show running system information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9392 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9393 | "BGP information\n" |
| 9394 | "List all bgp community information\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9395 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9396 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv4_metric_cmd_vtysh, |
| 9397 | "redistribute (connected|kernel|ospf|rip|static) metric <0-4294967295>", |
| 9398 | "Redistribute information from another routing protocol\n" |
| 9399 | "Connected\n" |
| 9400 | "Kernel routes\n" |
| 9401 | "Open Shurtest Path First (OSPF)\n" |
| 9402 | "Routing Information Protocol (RIP)\n" |
| 9403 | "Static routes\n" |
| 9404 | "Metric for redistributed routes\n" |
| 9405 | "Default metric\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9406 | |
| 9407 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_cidr_only_cmd_vtysh, |
| 9408 | "show ip bgp ipv4 (unicast|multicast) cidr-only", |
| 9409 | "Show running system information\n" |
| 9410 | "IP information\n" |
| 9411 | "BGP information\n" |
| 9412 | "Address family\n" |
| 9413 | "Address Family modifier\n" |
| 9414 | "Address Family modifier\n" |
| 9415 | "Display only routes with non-natural netmasks\n") |
| 9416 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9417 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, ipv6_access_list_any_cmd_vtysh, |
| 9418 | "ipv6 access-list WORD (deny|permit) any", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9419 | "IPv6 information\n" |
| 9420 | "Add an access list entry\n" |
| 9421 | "IPv6 zebra access-list\n" |
| 9422 | "Specify packets to reject\n" |
| 9423 | "Specify packets to forward\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9424 | "Any prefixi to match\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9425 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9426 | DEFSH (VTYSH_BGPD, undebug_bgp_fsm_cmd_vtysh, |
| 9427 | "undebug bgp fsm", |
| 9428 | "Disable debugging functions (see also 'debug')\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9429 | "Debugging functions (see also 'undebug')\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9430 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9431 | "Finite State Machine\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9432 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9433 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_cmd_vtysh, |
| 9434 | "ip prefix-list WORD (deny|permit) (A.B.C.D/M|any)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9435 | "IP information\n" |
| 9436 | "Build a prefix list\n" |
| 9437 | "Name of a prefix list\n" |
| 9438 | "Specify packets to reject\n" |
| 9439 | "Specify packets to forward\n" |
| 9440 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9441 | "Any prefix match. Same as \"0.0.0.0/0 le 32\"\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9442 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9443 | DEFSH (VTYSH_BGPD, no_bgp_network_import_check_cmd_vtysh, |
| 9444 | "no bgp network import-check", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9445 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9446 | "BGP specific commands\n" |
| 9447 | "BGP network command\n" |
| 9448 | "Check BGP network route exists in IGP\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9449 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9450 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_soft_out_cmd_vtysh, |
| 9451 | "clear ip bgp A.B.C.D soft out", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9452 | "Reset functions\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9453 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9454 | "BGP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9455 | "BGP neighbor address to clear\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9456 | "Soft reconfig\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9457 | "Soft reconfig outbound update\n") |
| 9458 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9459 | DEFSH (VTYSH_BGPD, no_ip_community_list_name_expanded_cmd_vtysh, |
| 9460 | "no ip community-list expanded WORD (deny|permit) .LINE", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9461 | "Negate a command or set its defaults\n" |
| 9462 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9463 | "Add a community list entry\n" |
| 9464 | "Specify an expanded community-list\n" |
| 9465 | "Community list name\n" |
| 9466 | "Specify community to reject\n" |
| 9467 | "Specify community to accept\n" |
| 9468 | "An ordered list as a regular-expression\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9469 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9470 | DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_expanded_cmd_vtysh, |
| 9471 | "ip extcommunity-list expanded WORD (deny|permit) .LINE", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9472 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9473 | "Add a extended community list entry\n" |
| 9474 | "Specify expanded extcommunity-list\n" |
| 9475 | "Extended Community list name\n" |
| 9476 | "Specify community to reject\n" |
| 9477 | "Specify community to accept\n" |
| 9478 | "An ordered list as a regular-expression\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9479 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9480 | DEFSH (VTYSH_RIPD, no_rip_distance_cmd_vtysh, |
| 9481 | "no distance <1-255>", |
| 9482 | "Negate a command or set its defaults\n" |
| 9483 | "Administrative distance\n" |
| 9484 | "Distance value\n") |
| 9485 | |
| 9486 | DEFSH (VTYSH_ZEBRA, show_debugging_zebra_cmd_vtysh, |
| 9487 | "show debugging zebra", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9488 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9489 | "Zebra configuration\n" |
| 9490 | "Debugging information\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9491 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9492 | DEFSH (VTYSH_OSPFD, area_authentication_cmd_vtysh, |
| 9493 | "area (A.B.C.D|<0-4294967295>) authentication", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9494 | "OSPF area parameters\n" |
| 9495 | "OSPF area ID in IP address format\n" |
| 9496 | "OSPF area ID as a decimal value\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9497 | "Enable authentication\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9498 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9499 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community_list_cmd_vtysh, |
| 9500 | "show ip bgp ipv4 (unicast|multicast) community-list WORD", |
| 9501 | "Show running system information\n" |
| 9502 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9503 | "BGP information\n" |
| 9504 | "Address family\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9505 | "Address Family modifier\n" |
| 9506 | "Address Family modifier\n" |
| 9507 | "Display routes matching the community-list\n" |
| 9508 | "community-list name\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9509 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9510 | DEFSH (VTYSH_RIPD, no_rip_offset_list_ifname_cmd_vtysh, |
| 9511 | "no offset-list WORD (in|out) <0-16> IFNAME", |
| 9512 | "Negate a command or set its defaults\n" |
| 9513 | "Modify RIP metric\n" |
| 9514 | "Access-list name\n" |
| 9515 | "For incoming updates\n" |
| 9516 | "For outgoing updates\n" |
| 9517 | "Metric value\n" |
| 9518 | "Interface to match\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9519 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9520 | DEFSH (VTYSH_ZEBRA, show_ip_route_prefix_cmd_vtysh, |
| 9521 | "show ip route A.B.C.D/M", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9522 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9523 | "IP information\n" |
| 9524 | "IP routing table\n" |
| 9525 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9526 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9527 | DEFSH (VTYSH_OSPF6D, interface_area_plist_cmd_vtysh, |
| 9528 | "interface IFNAME area A.B.C.D prefix-list WORD", |
| 9529 | "Enable routing on an IPv6 interface\n" |
| 9530 | "Interface name(e.g. ep0)\n" |
| 9531 | "Set the OSPF6 area ID\n" |
| 9532 | "OSPF6 area ID in IPv4 address notation\n" |
| 9533 | "Advertise I/F Address only match entries of prefix-list\n" |
| 9534 | "IPv6 prefix-list name\n" |
| 9535 | ) |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9536 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9537 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, rmap_onmatch_goto_cmd_vtysh, |
| 9538 | "on-match goto <1-65535>", |
| 9539 | "Exit policy on matches\n" |
| 9540 | "Goto Clause number\n" |
| 9541 | "Number\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9542 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9543 | DEFSH (VTYSH_BGPD, no_neighbor_peer_group_remote_as_cmd_vtysh, |
| 9544 | "no neighbor WORD remote-as <1-65535>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9545 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9546 | "Specify neighbor router\n" |
| 9547 | "Neighbor tag\n" |
| 9548 | "Specify a BGP neighbor\n" |
| 9549 | "AS number\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 9550 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9551 | DEFSH (VTYSH_BGPD, aggregate_address_mask_as_set_cmd_vtysh, |
| 9552 | "aggregate-address A.B.C.D A.B.C.D as-set", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9553 | "Configure BGP aggregate entries\n" |
| 9554 | "Aggregate address\n" |
| 9555 | "Aggregate mask\n" |
| 9556 | "Generate AS set path information\n") |
| 9557 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9558 | DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_adv_router_cmd_vtysh, |
| 9559 | "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") A.B.C.D adv-router A.B.C.D", |
| 9560 | "Show running system information\n" |
| 9561 | "IP information\n" |
| 9562 | "OSPF information\n" |
| 9563 | "Database summary\n" |
| 9564 | "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" "" |
| 9565 | "Link State ID (as an IP address)\n" |
| 9566 | "Advertising Router link states\n" |
| 9567 | "Advertising Router (as an IP address)\n") |
| 9568 | |
| 9569 | DEFSH (VTYSH_BGPD, no_dump_bgp_all_cmd_vtysh, |
| 9570 | "no dump bgp all [PATH] [INTERVAL]", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9571 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9572 | "Dump packet\n" |
| 9573 | "BGP packet dump\n" |
| 9574 | "Dump all BGP packets\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 9575 | |
| 9576 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community4_cmd_vtysh, |
| 9577 | "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)", |
| 9578 | "Show running system information\n" |
| 9579 | "IP information\n" |
| 9580 | "BGP information\n" |
| 9581 | "Address family\n" |
| 9582 | "Address Family modifier\n" |
| 9583 | "Address Family modifier\n" |
| 9584 | "Display routes matching the communities\n" |
| 9585 | "community number\n" |
| 9586 | "Do not send outside local AS (well-known community)\n" |
| 9587 | "Do not advertise to any peer (well-known community)\n" |
| 9588 | "Do not export to next AS (well-known community)\n" |
| 9589 | "community number\n" |
| 9590 | "Do not send outside local AS (well-known community)\n" |
| 9591 | "Do not advertise to any peer (well-known community)\n" |
| 9592 | "Do not export to next AS (well-known community)\n" |
| 9593 | "community number\n" |
| 9594 | "Do not send outside local AS (well-known community)\n" |
| 9595 | "Do not advertise to any peer (well-known community)\n" |
| 9596 | "Do not export to next AS (well-known community)\n" |
| 9597 | "community number\n" |
| 9598 | "Do not send outside local AS (well-known community)\n" |
| 9599 | "Do not advertise to any peer (well-known community)\n" |
| 9600 | "Do not export to next AS (well-known community)\n") |
| 9601 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 9602 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged8_cmd_vtysh, |
| 9603 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop as-path med", |
| 9604 | "Specify neighbor router\n" |
| 9605 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9606 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 9607 | "Nexthop attribute\n" |
| 9608 | "As-path attribute\n" |
| 9609 | "Med attribute\n") |
| 9610 | |
| 9611 | DEFSH (VTYSH_BGPD, no_bgp_config_type_cmd_vtysh, |
| 9612 | "no bgp config-type", |
| 9613 | "Negate a command or set its defaults\n" |
| 9614 | "BGP information\n" |
| 9615 | "Display configuration type\n") |
| 9616 | |
| 9617 | DEFSH (VTYSH_BGPD, show_ip_bgp_view_prefix_cmd_vtysh, |
| 9618 | "show ip bgp view WORD A.B.C.D/M", |
| 9619 | "Show running system information\n" |
| 9620 | "IP information\n" |
| 9621 | "BGP information\n" |
| 9622 | "BGP view\n" |
| 9623 | "BGP view name\n" |
| 9624 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 9625 | |
| 9626 | DEFSH (VTYSH_BGPD, aggregate_address_as_set_summary_cmd_vtysh, |
| 9627 | "aggregate-address A.B.C.D/M as-set summary-only", |
| 9628 | "Configure BGP aggregate entries\n" |
| 9629 | "Aggregate prefix\n" |
| 9630 | "Generate AS set path information\n" |
| 9631 | "Filter more specific routes from updates\n") |
| 9632 | |
| 9633 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_cmd_vtysh, |
| 9634 | "show ipv6 bgp", |
| 9635 | "Show running system information\n" |
| 9636 | "IP information\n" |
| 9637 | "BGP information\n") |
| 9638 | |
| 9639 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_ipv4_out_cmd_vtysh, |
| 9640 | "clear ip bgp peer-group WORD ipv4 (unicast|multicast) out", |
| 9641 | "Reset functions\n" |
| 9642 | "IP information\n" |
| 9643 | "BGP information\n" |
| 9644 | "Clear all members of peer-group\n" |
| 9645 | "BGP peer-group name\n" |
| 9646 | "Address family\n" |
| 9647 | "Address Family modifier\n" |
| 9648 | "Address Family modifier\n" |
| 9649 | "Soft reconfig outbound update\n") |
| 9650 | |
| 9651 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_ipv4_soft_out_cmd_vtysh, |
| 9652 | "clear ip bgp external ipv4 (unicast|multicast) soft out", |
| 9653 | "Reset functions\n" |
| 9654 | "IP information\n" |
| 9655 | "BGP information\n" |
| 9656 | "Clear all external peers\n" |
| 9657 | "Address family\n" |
| 9658 | "Address Family modifier\n" |
| 9659 | "Address Family modifier\n" |
| 9660 | "Soft reconfig\n" |
| 9661 | "Soft reconfig outbound update\n") |
| 9662 | |
| 9663 | DEFSH (VTYSH_BGPD, clear_bgp_instance_all_cmd_vtysh, |
| 9664 | "clear bgp view WORD *", |
| 9665 | "Reset functions\n" |
| 9666 | "BGP information\n" |
| 9667 | "BGP view\n" |
| 9668 | "view name\n" |
| 9669 | "Clear all peers\n") |
| 9670 | |
| 9671 | DEFSH (VTYSH_BGPD, no_neighbor_port_cmd_vtysh, |
| 9672 | "no neighbor (A.B.C.D|X:X::X:X) " "port", |
| 9673 | "Negate a command or set its defaults\n" |
| 9674 | "Specify neighbor router\n" |
| 9675 | "Neighbor address\nIPv6 address\n" |
| 9676 | "Neighbor's BGP port\n") |
| 9677 | |
| 9678 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_prefix_list_cmd_vtysh, |
| 9679 | "no match ip address prefix-list", |
| 9680 | "Negate a command or set its defaults\n" |
| 9681 | "Match values from routing table\n" |
| 9682 | "IP information\n" |
| 9683 | "Match address of route\n" |
| 9684 | "Match entries of prefix-lists\n") |
| 9685 | |
| 9686 | DEFSH (VTYSH_BGPD, neighbor_passive_cmd_vtysh, |
| 9687 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "passive", |
| 9688 | "Specify neighbor router\n" |
| 9689 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9690 | "Don't send open messages to this neighbor\n") |
| 9691 | |
| 9692 | DEFSH (VTYSH_BGPD, clear_bgp_all_out_cmd_vtysh, |
| 9693 | "clear bgp * out", |
| 9694 | "Reset functions\n" |
| 9695 | "BGP information\n" |
| 9696 | "Clear all peers\n" |
| 9697 | "Soft reconfig outbound update\n") |
| 9698 | |
| 9699 | DEFSH (VTYSH_BGPD, bgp_damp_set2_cmd_vtysh, |
| 9700 | "bgp dampening <1-45>", |
| 9701 | "BGP Specific commands\n" |
| 9702 | "Enable route-flap dampening\n" |
| 9703 | "Half-life time for the penalty\n") |
| 9704 | |
| 9705 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_detail_cmd_vtysh, |
| 9706 | "show ip prefix-list detail", |
| 9707 | "Show running system information\n" |
| 9708 | "IP information\n" |
| 9709 | "Build a prefix list\n" |
| 9710 | "Detail of prefix lists\n") |
| 9711 | |
| 9712 | DEFSH (VTYSH_BGPD, neighbor_capability_dynamic_cmd_vtysh, |
| 9713 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability dynamic", |
| 9714 | "Specify neighbor router\n" |
| 9715 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9716 | "Advertise capability to the peer\n" |
| 9717 | "Advertise dynamic capability to this neighbor\n") |
| 9718 | |
| 9719 | DEFSH (VTYSH_BGPD, neighbor_timers_cmd_vtysh, |
| 9720 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "timers <0-65535> <0-65535>", |
| 9721 | "Specify neighbor router\n" |
| 9722 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9723 | "BGP per neighbor timers\n" |
| 9724 | "Keepalive interval\n" |
| 9725 | "Holdtime\n") |
| 9726 | |
| 9727 | DEFSH (VTYSH_BGPD, undebug_bgp_all_cmd_vtysh, |
| 9728 | "undebug all bgp", |
| 9729 | "Disable debugging functions (see also 'debug')\n" |
| 9730 | "Enable all debugging\n" |
| 9731 | "BGP information\n") |
| 9732 | |
| 9733 | DEFSH (VTYSH_OSPFD, area_range_substitute_cmd_vtysh, |
| 9734 | "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M", |
| 9735 | "OSPF area parameters\n" |
| 9736 | "OSPF area ID in IP address format\n" |
| 9737 | "OSPF area ID as a decimal value\n" |
| 9738 | "Summarize routes matching address/mask (border routers only)\n" |
| 9739 | "Area range prefix\n" |
| 9740 | "Announce area range as another prefix\n" |
| 9741 | "Network prefix to be announced instead of range\n") |
| 9742 | |
| 9743 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_cmd_vtysh, |
| 9744 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn", |
| 9745 | "Show running system information\n" |
| 9746 | "IP information\n" |
| 9747 | "BGP information\n" |
| 9748 | "Display VPNv4 NLRI specific information\n" |
| 9749 | "Display information for a route distinguisher\n" |
| 9750 | "VPN Route Distinguisher\n") |
| 9751 | |
| 9752 | DEFSH (VTYSH_BGPD, show_bgp_prefix_list_cmd_vtysh, |
| 9753 | "show bgp prefix-list WORD", |
| 9754 | "Show running system information\n" |
| 9755 | "BGP information\n" |
| 9756 | "Display routes conforming to the prefix-list\n" |
| 9757 | "IPv6 prefix-list name\n") |
| 9758 | |
| 9759 | DEFSH (VTYSH_BGPD, no_set_vpnv4_nexthop_val_cmd_vtysh, |
| 9760 | "no set vpnv4 next-hop A.B.C.D", |
| 9761 | "Negate a command or set its defaults\n" |
| 9762 | "Set values in destination routing protocol\n" |
| 9763 | "VPNv4 information\n" |
| 9764 | "VPNv4 next-hop address\n" |
| 9765 | "IP address of next hop\n") |
| 9766 | |
| 9767 | DEFSH (VTYSH_OSPFD, area_filter_list_cmd_vtysh, |
| 9768 | "area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)", |
| 9769 | "OSPF area parameters\n" |
| 9770 | "OSPF area ID in IP address format\n" |
| 9771 | "OSPF area ID as a decimal value\n" |
| 9772 | "Filter networks between OSPF areas\n" |
| 9773 | "Filter prefixes between OSPF areas\n" |
| 9774 | "Name of an IP prefix-list\n" |
| 9775 | "Filter networks sent to this area\n" |
| 9776 | "Filter networks sent from this area\n") |
| 9777 | |
| 9778 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_external_soft_out_cmd_vtysh, |
| 9779 | "clear bgp ipv6 external soft out", |
| 9780 | "Reset functions\n" |
| 9781 | "BGP information\n" |
| 9782 | "Address family\n" |
| 9783 | "Clear all external peers\n" |
| 9784 | "Soft reconfig\n" |
| 9785 | "Soft reconfig outbound update\n") |
| 9786 | |
| 9787 | DEFSH (VTYSH_OSPFD, show_ip_ospf_interface_cmd_vtysh, |
| 9788 | "show ip ospf interface [INTERFACE]", |
| 9789 | "Show running system information\n" |
| 9790 | "IP information\n" |
| 9791 | "OSPF information\n" |
| 9792 | "Interface information\n" |
| 9793 | "Interface name\n") |
| 9794 | |
| 9795 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbors_cmd_vtysh, |
| 9796 | "show ip bgp ipv4 (unicast|multicast) neighbors", |
| 9797 | "Show running system information\n" |
| 9798 | "IP information\n" |
| 9799 | "BGP information\n" |
| 9800 | "Address family\n" |
| 9801 | "Address Family modifier\n" |
| 9802 | "Address Family modifier\n" |
| 9803 | "Detailed information on TCP and BGP neighbor connections\n") |
| 9804 | |
| 9805 | DEFSH (VTYSH_BGPD, no_bgp_always_compare_med_cmd_vtysh, |
| 9806 | "no bgp always-compare-med", |
| 9807 | "Negate a command or set its defaults\n" |
| 9808 | "BGP specific commands\n" |
| 9809 | "Allow comparing MED from different neighbors\n") |
| 9810 | |
| 9811 | DEFSH (VTYSH_BGPD, old_no_ipv6_aggregate_address_cmd_vtysh, |
| 9812 | "no ipv6 bgp aggregate-address X:X::X:X/M", |
| 9813 | "Negate a command or set its defaults\n" |
| 9814 | "IPv6 information\n" |
| 9815 | "BGP information\n" |
| 9816 | "Configure BGP aggregate entries\n" |
| 9817 | "Aggregate prefix\n") |
| 9818 | |
| 9819 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_metric_cmd_vtysh, |
| 9820 | "default-information originate metric-type (1|2) metric <0-16777214>", |
| 9821 | "Control distribution of default information\n" |
| 9822 | "Distribute a default route\n" |
| 9823 | "OSPF metric type for default routes\n" |
| 9824 | "Set OSPF External Type 1 metrics\n" |
| 9825 | "Set OSPF External Type 2 metrics\n" |
| 9826 | "OSPF default metric\n" |
| 9827 | "OSPF metric\n") |
| 9828 | |
| 9829 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged2_cmd_vtysh, |
| 9830 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path (next-hop|med)", |
| 9831 | "Negate a command or set its defaults\n" |
| 9832 | "Specify neighbor router\n" |
| 9833 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 9834 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 9835 | "As-path attribute\n" |
| 9836 | "Nexthop attribute\n" |
| 9837 | "Med attribute\n") |
| 9838 | |
| 9839 | DEFSH (VTYSH_OSPF6D, ospf6_area_range_cmd_vtysh, |
| 9840 | "area A.B.C.D range X:X::X:X/M", |
| 9841 | "OSPFv3 area parameters\n" |
| 9842 | "OSPFv3 area ID in IPv4 address format\n" |
| 9843 | "Summarize routes matching address/mask (border routers only)\n" |
| 9844 | "IPv6 address range\n") |
| 9845 | |
| 9846 | DEFSH (VTYSH_RIPD, debug_rip_packet_cmd_vtysh, |
| 9847 | "debug rip packet", |
| 9848 | "Debugging functions (see also 'undebug')\n" |
| 9849 | "RIP information\n" |
| 9850 | "RIP packet\n") |
| 9851 | |
| 9852 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh, |
| 9853 | "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) advertised-routes", |
| 9854 | "Show running system information\n" |
| 9855 | "BGP information\n" |
| 9856 | "Address family\n" |
| 9857 | "Detailed information on TCP and BGP neighbor connections\n" |
| 9858 | "Neighbor to display information about\n" |
| 9859 | "Neighbor to display information about\n" |
| 9860 | "Display the routes advertised to a BGP neighbor\n") |
| 9861 | |
| 9862 | DEFSH (VTYSH_RIPNGD, ripng_default_metric_cmd_vtysh, |
| 9863 | "default-metric <1-16>", |
| 9864 | "Set a metric of redistribute routes\n" |
| 9865 | "Default metric\n") |
| 9866 | |
| 9867 | DEFSH (VTYSH_RIPD, no_rip_redistribute_type_cmd_vtysh, |
| 9868 | "no redistribute (kernel|connected|static|ospf|bgp)", |
| 9869 | "Negate a command or set its defaults\n" |
| 9870 | "Redistribute information from another routing protocol\n" |
| 9871 | "Kernel routes\n" |
| 9872 | "Connected\n" |
| 9873 | "Static routes\n" |
| 9874 | "Open Shortest Path First (OSPF)\n" |
| 9875 | "Border Gateway Protocol (BGP)\n") |
| 9876 | |
| 9877 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_camp_config_cmd_vtysh, |
| 9878 | "show ipv6 ospf6 damp config", |
| 9879 | "Show running system information\n" |
| 9880 | "IPv6 Information\n" |
| 9881 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 9882 | "Flap-dampening information\n" |
| 9883 | "shows dampening configuration\n" |
| 9884 | ) |
| 9885 | |
| 9886 | DEFSH (VTYSH_BGPD, undebug_bgp_keepalive_cmd_vtysh, |
| 9887 | "undebug bgp keepalives", |
| 9888 | "Disable debugging functions (see also 'debug')\n" |
| 9889 | "BGP information\n" |
| 9890 | "BGP keepalives\n") |
| 9891 | |
| 9892 | DEFSH (VTYSH_BGPD, bgp_network_import_check_cmd_vtysh, |
| 9893 | "bgp network import-check", |
| 9894 | "BGP specific commands\n" |
| 9895 | "BGP network command\n" |
| 9896 | "Check BGP network route exists in IGP\n") |
| 9897 | |
| 9898 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_out_cmd_vtysh, |
| 9899 | "clear ip bgp <1-65535> soft out", |
| 9900 | "Reset functions\n" |
| 9901 | "IP information\n" |
| 9902 | "BGP information\n" |
| 9903 | "Clear peers with the AS number\n" |
| 9904 | "Soft reconfig\n" |
| 9905 | "Soft reconfig outbound update\n") |
| 9906 | |
| 9907 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_cmd_vtysh, |
| 9908 | "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", |
| 9909 | "Negate a command or set its defaults\n" |
| 9910 | "Add an access list entry\n" |
| 9911 | "IP extended access list\n" |
| 9912 | "IP extended access list (expanded range)\n" |
| 9913 | "Specify packets to reject\n" |
| 9914 | "Specify packets to forward\n" |
| 9915 | "Any Internet Protocol\n" |
| 9916 | "Source address\n" |
| 9917 | "Source wildcard bits\n" |
| 9918 | "Destination address\n" |
| 9919 | "Destination Wildcard bits\n") |
| 9920 | |
| 9921 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community4_cmd_vtysh, |
| 9922 | "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)", |
| 9923 | "Show running system information\n" |
| 9924 | "IPv6 information\n" |
| 9925 | "MBGP information\n" |
| 9926 | "Display routes matching the communities\n" |
| 9927 | "community number\n" |
| 9928 | "Do not send outside local AS (well-known community)\n" |
| 9929 | "Do not advertise to any peer (well-known community)\n" |
| 9930 | "Do not export to next AS (well-known community)\n" |
| 9931 | "community number\n" |
| 9932 | "Do not send outside local AS (well-known community)\n" |
| 9933 | "Do not advertise to any peer (well-known community)\n" |
| 9934 | "Do not export to next AS (well-known community)\n" |
| 9935 | "community number\n" |
| 9936 | "Do not send outside local AS (well-known community)\n" |
| 9937 | "Do not advertise to any peer (well-known community)\n" |
| 9938 | "Do not export to next AS (well-known community)\n" |
| 9939 | "community number\n" |
| 9940 | "Do not send outside local AS (well-known community)\n" |
| 9941 | "Do not advertise to any peer (well-known community)\n" |
| 9942 | "Do not export to next AS (well-known community)\n") |
| 9943 | |
| 9944 | DEFSH (VTYSH_BGPD, ip_as_path_cmd_vtysh, |
| 9945 | "ip as-path access-list WORD (deny|permit) .LINE", |
| 9946 | "IP information\n" |
| 9947 | "BGP autonomous system path filter\n" |
| 9948 | "Specify an access list name\n" |
| 9949 | "Regular expression access list name\n" |
| 9950 | "Specify packets to reject\n" |
| 9951 | "Specify packets to forward\n" |
| 9952 | "A regular-expression to match the BGP AS paths\n") |
| 9953 | |
| 9954 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_out_cmd_vtysh, |
| 9955 | "clear ip bgp * out", |
| 9956 | "Reset functions\n" |
| 9957 | "IP information\n" |
| 9958 | "BGP information\n" |
| 9959 | "Clear all peers\n" |
| 9960 | "Soft reconfig outbound update\n") |
| 9961 | |
| 9962 | DEFSH (VTYSH_RIPD, send_lifetime_day_month_month_day_cmd_vtysh, |
| 9963 | "send-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>", |
| 9964 | "Set send lifetime of the key\n" |
| 9965 | "Time to start\n" |
| 9966 | "Day of th month to start\n" |
| 9967 | "Month of the year to start\n" |
| 9968 | "Year to start\n" |
| 9969 | "Time to expire\n" |
| 9970 | "Month of the year to expire\n" |
| 9971 | "Day of th month to expire\n" |
| 9972 | "Year to expire\n") |
| 9973 | |
| 9974 | DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPF6D, no_router_zebra_cmd_vtysh, |
| 9975 | "no router zebra", |
| 9976 | "Negate a command or set its defaults\n" |
| 9977 | "Configure routing process\n" |
| 9978 | "Disable connection to zebra daemon\n") |
| 9979 | |
| 9980 | DEFSH (VTYSH_RIPD, no_ip_rip_authentication_string_cmd_vtysh, |
| 9981 | "no ip rip authentication string", |
| 9982 | "Negate a command or set its defaults\n" |
| 9983 | "IP information\n" |
| 9984 | "Routing Information Protocol\n" |
| 9985 | "Authentication control\n" |
| 9986 | "Authentication string\n") |
| 9987 | |
| 9988 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_group_soft_out_cmd_vtysh, |
| 9989 | "clear bgp ipv6 peer-group WORD soft out", |
| 9990 | "Reset functions\n" |
| 9991 | "BGP information\n" |
| 9992 | "Address family\n" |
| 9993 | "Clear all members of peer-group\n" |
| 9994 | "BGP peer-group name\n" |
| 9995 | "Soft reconfig\n" |
| 9996 | "Soft reconfig outbound update\n") |
| 9997 | |
| 9998 | DEFSH (VTYSH_BGPD, no_neighbor_route_map_cmd_vtysh, |
| 9999 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "route-map WORD (in|out)", |
| 10000 | "Negate a command or set its defaults\n" |
| 10001 | "Specify neighbor router\n" |
| 10002 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10003 | "Apply route map to neighbor\n" |
| 10004 | "Name of route map\n" |
| 10005 | "Apply map to incoming routes\n" |
| 10006 | "Apply map to outbound routes\n") |
| 10007 | |
| 10008 | DEFSH (VTYSH_BGPD, ipv6_aggregate_address_summary_only_cmd_vtysh, |
| 10009 | "aggregate-address X:X::X:X/M summary-only", |
| 10010 | "Configure BGP aggregate entries\n" |
| 10011 | "Aggregate prefix\n" |
| 10012 | "Filter more specific routes from updates\n") |
| 10013 | |
| 10014 | DEFSH (VTYSH_OSPFD, no_ip_ospf_transmit_delay_cmd_vtysh, |
| 10015 | "no ip ospf transmit-delay", |
| 10016 | "Negate a command or set its defaults\n" |
| 10017 | "IP Information\n" |
| 10018 | "OSPF interface commands\n" |
| 10019 | "Link state transmit delay\n") |
| 10020 | |
| 10021 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_le_ge_cmd_vtysh, |
| 10022 | "no ip prefix-list WORD (deny|permit) A.B.C.D/M le <0-32> ge <0-32>", |
| 10023 | "Negate a command or set its defaults\n" |
| 10024 | "IP information\n" |
| 10025 | "Build a prefix list\n" |
| 10026 | "Name of a prefix list\n" |
| 10027 | "Specify packets to reject\n" |
| 10028 | "Specify packets to forward\n" |
| 10029 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 10030 | "Maximum prefix length to be matched\n" |
| 10031 | "Maximum prefix length\n" |
| 10032 | "Minimum prefix length to be matched\n" |
| 10033 | "Minimum prefix length\n") |
| 10034 | |
| 10035 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh, |
| 10036 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn A.B.C.D/M", |
| 10037 | "Show running system information\n" |
| 10038 | "IP information\n" |
| 10039 | "BGP information\n" |
| 10040 | "Display VPNv4 NLRI specific information\n" |
| 10041 | "Display information for a route distinguisher\n" |
| 10042 | "VPN Route Distinguisher\n" |
| 10043 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 10044 | |
| 10045 | DEFSH (VTYSH_BGPD, bgp_network_route_map_cmd_vtysh, |
| 10046 | "network A.B.C.D/M route-map WORD", |
| 10047 | "Specify a network to announce via BGP\n" |
| 10048 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 10049 | "Route-map to modify the attributes\n" |
| 10050 | "Name of the route map\n") |
| 10051 | |
| 10052 | DEFSH (VTYSH_BGPD, show_ip_bgp_community_list_cmd_vtysh, |
| 10053 | "show ip bgp community-list WORD", |
| 10054 | "Show running system information\n" |
| 10055 | "IP information\n" |
| 10056 | "BGP information\n" |
| 10057 | "Display routes matching the community-list\n" |
| 10058 | "community-list name\n") |
| 10059 | |
| 10060 | DEFSH (VTYSH_RIPD, accept_lifetime_infinite_month_day_cmd_vtysh, |
| 10061 | "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> infinite", |
| 10062 | "Set accept lifetime of the key\n" |
| 10063 | "Time to start\n" |
| 10064 | "Month of the year to start\n" |
| 10065 | "Day of th month to start\n" |
| 10066 | "Year to start\n" |
| 10067 | "Never expires") |
| 10068 | |
| 10069 | DEFSH (VTYSH_OSPFD, ospf_redistribute_source_type_metric_cmd_vtysh, |
| 10070 | "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214>", |
| 10071 | "Redistribute information from another routing protocol\n" |
| 10072 | "Kernel routes\n" |
| 10073 | "Connected\n" |
| 10074 | "Static routes\n" |
| 10075 | "Routing Information Protocol (RIP)\n" |
| 10076 | "Border Gateway Protocol (BGP)\n" |
| 10077 | "OSPF exterior metric type for redistributed routes\n" |
| 10078 | "Set OSPF External Type 1 metrics\n" |
| 10079 | "Set OSPF External Type 2 metrics\n" |
| 10080 | "Metric for redistributed routes\n" |
| 10081 | "OSPF default metric\n") |
| 10082 | |
| 10083 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_out_cmd_vtysh, |
| 10084 | "clear ip bgp A.B.C.D ipv4 (unicast|multicast) out", |
| 10085 | "Reset functions\n" |
| 10086 | "IP information\n" |
| 10087 | "BGP information\n" |
| 10088 | "BGP neighbor address to clear\n" |
| 10089 | "Address family\n" |
| 10090 | "Address Family modifier\n" |
| 10091 | "Address Family modifier\n" |
| 10092 | "Soft reconfig outbound update\n") |
| 10093 | |
| 10094 | DEFSH (VTYSH_ZEBRA, no_ip_route_mask_cmd_vtysh, |
| 10095 | "no ip route A.B.C.D A.B.C.D (A.B.C.D|INTERFACE|null0)", |
| 10096 | "Negate a command or set its defaults\n" |
| 10097 | "IP information\n" |
| 10098 | "Establish static routes\n" |
| 10099 | "IP destination prefix\n" |
| 10100 | "IP destination prefix mask\n" |
| 10101 | "IP gateway address\n" |
| 10102 | "IP gateway interface name\n" |
| 10103 | "Null interface\n") |
| 10104 | |
| 10105 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_in_cmd_vtysh, |
| 10106 | "clear bgp ipv6 (A.B.C.D|X:X::X:X) in", |
| 10107 | "Reset functions\n" |
| 10108 | "BGP information\n" |
| 10109 | "Address family\n" |
| 10110 | "BGP neighbor address to clear\n" |
| 10111 | "BGP IPv6 neighbor to clear\n" |
| 10112 | "Soft reconfig inbound update\n") |
| 10113 | |
| 10114 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_out_cmd_vtysh, |
| 10115 | "clear bgp ipv6 (A.B.C.D|X:X::X:X) out", |
| 10116 | "Reset functions\n" |
| 10117 | "BGP information\n" |
| 10118 | "Address family\n" |
| 10119 | "BGP neighbor address to clear\n" |
| 10120 | "BGP IPv6 neighbor to clear\n" |
| 10121 | "Soft reconfig outbound update\n") |
| 10122 | |
| 10123 | DEFSH (VTYSH_BGPD, neighbor_override_capability_cmd_vtysh, |
| 10124 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "override-capability", |
| 10125 | "Specify neighbor router\n" |
| 10126 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10127 | "Override capability negotiation result\n") |
| 10128 | |
| 10129 | DEFSH (VTYSH_BGPD, no_dump_bgp_updates_cmd_vtysh, |
| 10130 | "no dump bgp updates [PATH] [INTERVAL]", |
| 10131 | "Negate a command or set its defaults\n" |
| 10132 | "Dump packet\n" |
| 10133 | "BGP packet dump\n" |
| 10134 | "Dump BGP updates only\n") |
| 10135 | |
| 10136 | DEFSH (VTYSH_OSPFD, debug_ospf_lsa_sub_cmd_vtysh, |
| 10137 | "debug ospf lsa (generate|flooding|install|refresh)", |
| 10138 | "Debugging functions (see also 'undebug')\n" |
| 10139 | "OSPF information\n" |
| 10140 | "OSPF Link State Advertisement\n" |
| 10141 | "LSA Generation\n" |
| 10142 | "LSA Flooding\n" |
| 10143 | "LSA Install/Delete\n" |
| 10144 | "LSA Refresh\n") |
| 10145 | |
| 10146 | DEFSH (VTYSH_OSPFD, ip_ospf_hello_interval_cmd_vtysh, |
| 10147 | "ip ospf hello-interval <1-65535>", |
| 10148 | "IP Information\n" |
| 10149 | "OSPF interface commands\n" |
| 10150 | "Time between HELLO packets\n" |
| 10151 | "Seconds\n") |
| 10152 | |
| 10153 | DEFSH (VTYSH_OSPF6D, passive_interface_cmd_vtysh, |
| 10154 | "passive-interface IFNAME", |
| 10155 | "Suppress routing updates on an interface\n" |
| 10156 | "Interface name(e.g. ep0)\n") |
| 10157 | |
| 10158 | DEFSH (VTYSH_BGPD, neighbor_nexthop_self_cmd_vtysh, |
| 10159 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "next-hop-self", |
| 10160 | "Specify neighbor router\n" |
| 10161 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10162 | "Disable the next hop calculation for this neighbor\n") |
| 10163 | |
| 10164 | DEFSH (VTYSH_RIPD, accept_lifetime_month_day_day_month_cmd_vtysh, |
| 10165 | "accept-lifetime HH:MM:SS MONTH <1-31> <1993-2035> HH:MM:SS <1-31> MONTH <1993-2035>", |
| 10166 | "Set accept lifetime of the key\n" |
| 10167 | "Time to start\n" |
| 10168 | "Month of the year to start\n" |
| 10169 | "Day of th month to start\n" |
| 10170 | "Year to start\n" |
| 10171 | "Time to expire\n" |
| 10172 | "Day of th month to expire\n" |
| 10173 | "Month of the year to expire\n" |
| 10174 | "Year to expire\n") |
| 10175 | |
| 10176 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_longer_cmd_vtysh, |
| 10177 | "show ipv6 bgp X:X::X:X/M longer-prefixes", |
| 10178 | "Show running system information\n" |
| 10179 | "IPv6 information\n" |
| 10180 | "BGP information\n" |
| 10181 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 10182 | "Display route and more specific routes\n") |
| 10183 | |
| 10184 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_static_metric_val_cmd_vtysh, |
| 10185 | "no redistribute static metric <0-16>", |
| 10186 | "Negate a command or set its defaults\n" |
| 10187 | "Redistribute information from another routing protocol\n" |
| 10188 | "Static routes\n" |
| 10189 | "Metric\n" |
| 10190 | "Metric value\n") |
| 10191 | |
| 10192 | DEFSH (VTYSH_BGPD, no_match_aspath_val_cmd_vtysh, |
| 10193 | "no match as-path WORD", |
| 10194 | "Negate a command or set its defaults\n" |
| 10195 | "Match values from routing table\n" |
| 10196 | "Match BGP AS path list\n" |
| 10197 | "AS path access-list name\n") |
| 10198 | |
| 10199 | DEFSH (VTYSH_RIPD, no_key_chain_cmd_vtysh, |
| 10200 | "no key chain WORD", |
| 10201 | "Negate a command or set its defaults\n" |
| 10202 | "Authentication key management\n" |
| 10203 | "Key-chain management\n" |
| 10204 | "Key-chain name\n") |
| 10205 | |
| 10206 | DEFSH (VTYSH_OSPF6D, show_version_ospf6_cmd_vtysh, |
| 10207 | "show version ospf6", |
| 10208 | "Show running system information\n" |
| 10209 | "Displays ospf6d version\n") |
| 10210 | |
| 10211 | DEFSH (VTYSH_BGPD, clear_bgp_peer_cmd_vtysh, |
| 10212 | "clear bgp (A.B.C.D|X:X::X:X)", |
| 10213 | "Reset functions\n" |
| 10214 | "BGP information\n" |
| 10215 | "BGP neighbor address to clear\n" |
| 10216 | "BGP IPv6 neighbor to clear\n") |
| 10217 | |
| 10218 | DEFSH (VTYSH_BGPD, bgp_damp_unset_cmd_vtysh, |
| 10219 | "no bgp dampening", |
| 10220 | "Negate a command or set its defaults\n" |
| 10221 | "BGP Specific commands\n" |
| 10222 | "Enable route-flap dampening\n") |
| 10223 | |
| 10224 | DEFSH (VTYSH_OSPFD, area_import_list_cmd_vtysh, |
| 10225 | "area (A.B.C.D|<0-4294967295>) import-list NAME", |
| 10226 | "OSPF area parameters\n" |
| 10227 | "OSPF area ID in IP address format\n" |
| 10228 | "OSPF area ID as a decimal value\n" |
| 10229 | "Set the filter for networks from other areas announced to the specified one\n" |
| 10230 | "Name of the access-list\n") |
| 10231 | |
| 10232 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_metric_routemap_cmd_vtysh, |
| 10233 | "default-information originate metric <0-16777214> route-map WORD", |
| 10234 | "Control distribution of default information\n" |
| 10235 | "Distribute a default route\n" |
| 10236 | "OSPF default metric\n" |
| 10237 | "OSPF metric\n" |
| 10238 | "Route map reference\n" |
| 10239 | "Pointer to route-map entries\n") |
| 10240 | |
| 10241 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged2_cmd_vtysh, |
| 10242 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged as-path (next-hop|med)", |
| 10243 | "Specify neighbor router\n" |
| 10244 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10245 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 10246 | "As-path attribute\n" |
| 10247 | "Nexthop attribute\n" |
| 10248 | "Med attribute\n") |
| 10249 | |
| 10250 | DEFSH (VTYSH_BGPD, clear_bgp_peer_group_in_cmd_vtysh, |
| 10251 | "clear bgp peer-group WORD in", |
| 10252 | "Reset functions\n" |
| 10253 | "BGP information\n" |
| 10254 | "Clear all members of peer-group\n" |
| 10255 | "BGP peer-group name\n" |
| 10256 | "Soft reconfig inbound update\n") |
| 10257 | |
| 10258 | DEFSH (VTYSH_OSPFD, no_ospf_dead_interval_cmd_vtysh, |
| 10259 | "no ospf dead-interval", |
| 10260 | "Negate a command or set its defaults\n" |
| 10261 | "OSPF interface commands\n" |
| 10262 | "Interval after which a neighbor is declared dead\n") |
| 10263 | |
| 10264 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_all_cmd_vtysh, |
| 10265 | "no access-list (<1-99>|<100-199>|<1300-1999>|<2000-2699>|WORD)", |
| 10266 | "Negate a command or set its defaults\n" |
| 10267 | "Add an access list entry\n" |
| 10268 | "IP standard access list\n" |
| 10269 | "IP extended access list\n" |
| 10270 | "IP standard access list (expanded range)\n" |
| 10271 | "IP extended access list (expanded range)\n" |
| 10272 | "IP zebra access-list name\n") |
| 10273 | |
| 10274 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_ge_cmd_vtysh, |
| 10275 | "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M ge <0-32>", |
| 10276 | "IP information\n" |
| 10277 | "Build a prefix list\n" |
| 10278 | "Name of a prefix list\n" |
| 10279 | "sequence number of an entry\n" |
| 10280 | "Sequence number\n" |
| 10281 | "Specify packets to reject\n" |
| 10282 | "Specify packets to forward\n" |
| 10283 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 10284 | "Minimum prefix length to be matched\n" |
| 10285 | "Minimum prefix length\n") |
| 10286 | |
| 10287 | DEFSH (VTYSH_BGPD, no_set_ecommunity_rt_val_cmd_vtysh, |
| 10288 | "no set extcommunity rt .ASN:nn_or_IP-address:nn", |
| 10289 | "Negate a command or set its defaults\n" |
| 10290 | "Set values in destination routing protocol\n" |
| 10291 | "BGP extended community attribute\n" |
| 10292 | "Route Target extened communityt\n" |
| 10293 | "VPN extended community\n") |
| 10294 | |
| 10295 | DEFSH (VTYSH_BGPD, set_atomic_aggregate_cmd_vtysh, |
| 10296 | "set atomic-aggregate", |
| 10297 | "Set values in destination routing protocol\n" |
| 10298 | "BGP atomic aggregate attribute\n" ) |
| 10299 | |
| 10300 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_any_cmd_vtysh, |
| 10301 | "access-list WORD (deny|permit) any", |
| 10302 | "Add an access list entry\n" |
| 10303 | "IP zebra access-list name\n" |
| 10304 | "Specify packets to reject\n" |
| 10305 | "Specify packets to forward\n" |
| 10306 | "Prefix to match. e.g. 10.0.0.0/8\n") |
| 10307 | |
| 10308 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_cmd_vtysh, |
| 10309 | "clear bgp ipv6 <1-65535> soft", |
| 10310 | "Reset functions\n" |
| 10311 | "BGP information\n" |
| 10312 | "Address family\n" |
| 10313 | "Clear peers with the AS number\n" |
| 10314 | "Soft reconfig\n") |
| 10315 | |
| 10316 | DEFSH (VTYSH_BGPD, debug_bgp_update_cmd_vtysh, |
| 10317 | "debug bgp updates", |
| 10318 | "Debugging functions (see also 'undebug')\n" |
| 10319 | "BGP information\n" |
| 10320 | "BGP updates\n") |
| 10321 | |
| 10322 | DEFSH (VTYSH_BGPD, no_ip_community_list_cmd_vtysh, |
| 10323 | "no ip community-list WORD (deny|permit) .AA:NN", |
| 10324 | "Negate a command or set its defaults\n" |
| 10325 | "IP information\n" |
| 10326 | "Add a community list entry\n" |
| 10327 | "Community list name\n" |
| 10328 | "Specify community to reject\n" |
| 10329 | "Specify community to accept\n" |
| 10330 | "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n") |
| 10331 | |
| 10332 | DEFSH (VTYSH_BGPD, no_neighbor_advertise_interval_val_cmd_vtysh, |
| 10333 | "no neighbor (A.B.C.D|X:X::X:X) " "advertisement-interval <0-600>", |
| 10334 | "Negate a command or set its defaults\n" |
| 10335 | "Specify neighbor router\n" |
| 10336 | "Neighbor address\nIPv6 address\n" |
| 10337 | "Minimum interval between sending BGP routing updates\n" |
| 10338 | "time in seconds\n") |
| 10339 | |
| 10340 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_metric_cmd_vtysh, |
| 10341 | "redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295>", |
| 10342 | "Redistribute information from another routing protocol\n" |
| 10343 | "Connected\n" |
| 10344 | "Kernel routes\n" |
| 10345 | "Open Shurtest Path First (OSPFv3)\n" |
| 10346 | "Routing Information Protocol (RIPng)\n" |
| 10347 | "Static routes\n" |
| 10348 | "Metric for redistributed routes\n" |
| 10349 | "Default metric\n") |
| 10350 | |
| 10351 | DEFSH (VTYSH_BGPD, show_bgp_prefix_cmd_vtysh, |
| 10352 | "show bgp X:X::X:X/M", |
| 10353 | "Show running system information\n" |
| 10354 | "BGP information\n" |
| 10355 | "IPv6 prefix <network>/<length>\n") |
| 10356 | |
| 10357 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_prefix_cmd_vtysh, |
| 10358 | "show ipv6 bgp X:X::X:X/M", |
| 10359 | "Show running system information\n" |
| 10360 | "IP information\n" |
| 10361 | "BGP information\n" |
| 10362 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n") |
| 10363 | |
| 10364 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_out_cmd_vtysh, |
| 10365 | "clear ip bgp <1-65535> ipv4 (unicast|multicast) out", |
| 10366 | "Reset functions\n" |
| 10367 | "IP information\n" |
| 10368 | "BGP information\n" |
| 10369 | "Clear peers with the AS number\n" |
| 10370 | "Address family\n" |
| 10371 | "Address Family modifier\n" |
| 10372 | "Address Family modifier\n" |
| 10373 | "Soft reconfig outbound update\n") |
| 10374 | |
| 10375 | DEFSH (VTYSH_OSPF6D, ipv6_ospf6_advertise_force_prefix_cmd_vtysh, |
| 10376 | "ipv6 ospf6 advertise force-prefix", |
| 10377 | "IPv6 Information\n" |
| 10378 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 10379 | "Advertising options\n" |
| 10380 | "Force advertising prefix, applicable if Loopback or P-to-P\n" |
| 10381 | ) |
| 10382 | |
| 10383 | DEFSH (VTYSH_BGPD, show_bgp_filter_list_cmd_vtysh, |
| 10384 | "show bgp filter-list WORD", |
| 10385 | "Show running system information\n" |
| 10386 | "BGP information\n" |
| 10387 | "Display routes conforming to the filter-list\n" |
| 10388 | "Regular expression access list name\n") |
| 10389 | |
| 10390 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_ipv4_in_cmd_vtysh, |
| 10391 | "clear ip bgp <1-65535> ipv4 (unicast|multicast) in", |
| 10392 | "Reset functions\n" |
| 10393 | "IP information\n" |
| 10394 | "BGP information\n" |
| 10395 | "Clear peers with the AS number\n" |
| 10396 | "Address family\n" |
| 10397 | "Address Family modifier\n" |
| 10398 | "Address Family modifier\n" |
| 10399 | "Soft reconfig inbound update\n") |
| 10400 | |
| 10401 | DEFSH (VTYSH_BGPD, clear_bgp_peer_soft_out_cmd_vtysh, |
| 10402 | "clear bgp (A.B.C.D|X:X::X:X) soft out", |
| 10403 | "Reset functions\n" |
| 10404 | "BGP information\n" |
| 10405 | "BGP neighbor address to clear\n" |
| 10406 | "BGP IPv6 neighbor to clear\n" |
| 10407 | "Soft reconfig\n" |
| 10408 | "Soft reconfig outbound update\n") |
| 10409 | |
| 10410 | DEFSH (VTYSH_RIPD, rip_distance_cmd_vtysh, |
| 10411 | "distance <1-255>", |
| 10412 | "Administrative distance\n" |
| 10413 | "Distance value\n") |
| 10414 | |
| 10415 | DEFSH (VTYSH_BGPD, set_origin_cmd_vtysh, |
| 10416 | "set origin (egp|igp|incomplete)", |
| 10417 | "Set values in destination routing protocol\n" |
| 10418 | "BGP origin code\n" |
| 10419 | "remote EGP\n" |
| 10420 | "local IGP\n" |
| 10421 | "unknown heritage\n") |
| 10422 | |
| 10423 | DEFSH (VTYSH_OSPFD, ospf_transmit_delay_cmd_vtysh, |
| 10424 | "ospf transmit-delay <1-65535>", |
| 10425 | "OSPF interface commands\n" |
| 10426 | "Link state transmit delay\n" |
| 10427 | "Seconds\n") |
| 10428 | |
| 10429 | DEFSH (VTYSH_BGPD, no_neighbor_port_val_cmd_vtysh, |
| 10430 | "no neighbor (A.B.C.D|X:X::X:X) " "port <0-65535>", |
| 10431 | "Negate a command or set its defaults\n" |
| 10432 | "Specify neighbor router\n" |
| 10433 | "Neighbor address\nIPv6 address\n" |
| 10434 | "Neighbor's BGP port\n" |
| 10435 | "TCP port number\n") |
| 10436 | |
| 10437 | DEFSH (VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD, no_ipv6_access_list_cmd_vtysh, |
| 10438 | "no ipv6 access-list WORD (deny|permit) X:X::X:X/M", |
| 10439 | "Negate a command or set its defaults\n" |
| 10440 | "IPv6 information\n" |
| 10441 | "Add an access list entry\n" |
| 10442 | "IPv6 zebra access-list\n" |
| 10443 | "Specify packets to reject\n" |
| 10444 | "Specify packets to forward\n" |
| 10445 | "Prefix to match. e.g. 3ffe:506::/32\n") |
| 10446 | |
| 10447 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh, |
| 10448 | "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)", |
| 10449 | "Show running system information\n" |
| 10450 | "IPv6 Information\n" |
| 10451 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 10452 | "LSA Database\n" |
| 10453 | "Router-LSA\n" |
| 10454 | "Network-LSA\n" |
| 10455 | "AS-External-LSA\n" |
| 10456 | "Intra-Area-Prefix-LSA\n" |
| 10457 | "Inter-Area-Router-LSA\n" |
| 10458 | "Inter-Area-Prefix-LSA\n" |
| 10459 | "Link-LSA\n" |
| 10460 | "All LS Type\n" |
| 10461 | "Specify LS Type by Hex\n" |
| 10462 | "Link State ID\n" |
| 10463 | "All Link State ID\n" |
| 10464 | "Advertising Router\n" |
| 10465 | "All Advertising Router\n" |
| 10466 | "Dump raw LSA data in Hex\n" |
| 10467 | "show detail of LSAs\n" |
| 10468 | ) |
| 10469 | |
| 10470 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_metric_rmap_cmd_vtysh, |
| 10471 | "redistribute (connected|kernel|ospf6|ripng|static) metric <0-4294967295> route-map WORD", |
| 10472 | "Redistribute information from another routing protocol\n" |
| 10473 | "Connected\n" |
| 10474 | "Kernel routes\n" |
| 10475 | "Open Shurtest Path First (OSPFv3)\n" |
| 10476 | "Routing Information Protocol (RIPng)\n" |
| 10477 | "Static routes\n" |
| 10478 | "Metric for redistributed routes\n" |
| 10479 | "Default metric\n" |
| 10480 | "Route map reference\n" |
| 10481 | "Pointer to route-map entries\n") |
| 10482 | |
| 10483 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_exact_cmd_vtysh, |
| 10484 | "show bgp ipv6 community (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 10485 | "Show running system information\n" |
| 10486 | "BGP information\n" |
| 10487 | "Address family\n" |
| 10488 | "Display routes matching the communities\n" |
| 10489 | "community number\n" |
| 10490 | "Do not send outside local AS (well-known community)\n" |
| 10491 | "Do not advertise to any peer (well-known community)\n" |
| 10492 | "Do not export to next AS (well-known community)\n" |
| 10493 | "Exact match of the communities") |
| 10494 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 10495 | DEFSH (VTYSH_BGPD, no_set_weight_val_cmd_vtysh, |
| 10496 | "no set weight <0-4294967295>", |
| 10497 | "Negate a command or set its defaults\n" |
| 10498 | "Set values in destination routing protocol\n" |
| 10499 | "BGP weight for routing table\n" |
| 10500 | "Weight value\n") |
| 10501 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 10502 | DEFSH (VTYSH_BGPD, no_neighbor_ebgp_multihop_cmd_vtysh, |
| 10503 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "ebgp-multihop", |
| 10504 | "Negate a command or set its defaults\n" |
| 10505 | "Specify neighbor router\n" |
| 10506 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10507 | "Allow EBGP neighbors not on directly connected networks\n") |
| 10508 | |
| 10509 | DEFSH (VTYSH_BGPD, dump_bgp_all_cmd_vtysh, |
| 10510 | "dump bgp all PATH", |
| 10511 | "Dump packet\n" |
| 10512 | "BGP packet dump\n" |
| 10513 | "Dump all BGP packets\n" |
| 10514 | "Output filename\n") |
| 10515 | |
| 10516 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_out_cmd_vtysh, |
| 10517 | "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft out", |
| 10518 | "Reset functions\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 10519 | "IP information\n" |
| 10520 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 10521 | "BGP neighbor address to clear\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 10522 | "Address family\n" |
| 10523 | "Address Family modifier\n" |
| 10524 | "Address Family modifier\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 10525 | "Soft reconfig\n" |
| 10526 | "Soft reconfig outbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 10527 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 10528 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_route_prefix_cmd_vtysh, |
| 10529 | "show ipv6 ospf6 area A.B.C.D route (X::X|detail)", |
| 10530 | "Show running system information\n" |
| 10531 | "IPv6 Information\n" |
| 10532 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 10533 | "Area information\n" |
| 10534 | "Area ID (as an IPv4 notation)\n" |
| 10535 | "Routing Table\n" |
| 10536 | "Specify IPv6 address\n" |
| 10537 | "Detailed information\n" |
| 10538 | ) |
| 10539 | |
| 10540 | DEFSH (VTYSH_RIPNGD, ripng_passive_interface_cmd_vtysh, |
| 10541 | "passive-interface IFNAME", |
| 10542 | "Suppress routing updates on an interface\n" |
| 10543 | "Interface name\n") |
| 10544 | |
| 10545 | DEFSH (VTYSH_BGPD, show_bgp_neighbors_peer_cmd_vtysh, |
| 10546 | "show bgp neighbors (A.B.C.D|X:X::X:X)", |
| 10547 | "Show running system information\n" |
| 10548 | "BGP information\n" |
| 10549 | "Detailed information on TCP and BGP neighbor connections\n" |
| 10550 | "Neighbor to display information about\n" |
| 10551 | "Neighbor to display information about\n") |
| 10552 | |
| 10553 | DEFSH (VTYSH_OSPFD, no_debug_ospf_packet_all_cmd_vtysh, |
| 10554 | "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)", |
| 10555 | "Negate a command or set its defaults\n" |
| 10556 | "Debugging functions (see also 'undebug')\n" |
| 10557 | "OSPF information\n" |
| 10558 | "OSPF packets\n" |
| 10559 | "OSPF Hello\n" |
| 10560 | "OSPF Database Description\n" |
| 10561 | "OSPF Link State Request\n" |
| 10562 | "OSPF Link State Update\n" |
| 10563 | "OSPF Link State Acknowledgment\n" |
| 10564 | "OSPF all packets\n") |
| 10565 | |
| 10566 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, ipv6_prefix_list_seq_cmd_vtysh, |
| 10567 | "ipv6 prefix-list WORD seq <1-4294967295> (deny|permit) (X:X::X:X/M|any)", |
| 10568 | "IPv6 information\n" |
| 10569 | "Build a prefix list\n" |
| 10570 | "Name of a prefix list\n" |
| 10571 | "sequence number of an entry\n" |
| 10572 | "Sequence number\n" |
| 10573 | "Specify packets to reject\n" |
| 10574 | "Specify packets to forward\n" |
| 10575 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 10576 | "Any prefix match. Same as \"::0/0 le 128\"\n") |
| 10577 | |
| 10578 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_cmd_vtysh, |
| 10579 | "no redistribute kernel", |
| 10580 | "Negate a command or set its defaults\n" |
| 10581 | "Redistribute information from another routing protocol\n" |
| 10582 | "Kernel routes\n") |
| 10583 | |
| 10584 | DEFSH (VTYSH_BGPD, set_weight_cmd_vtysh, |
| 10585 | "set weight <0-4294967295>", |
| 10586 | "Set values in destination routing protocol\n" |
| 10587 | "BGP weight for routing table\n" |
| 10588 | "Weight value\n") |
| 10589 | |
| 10590 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_routemap_cmd_vtysh, |
| 10591 | "default-information originate metric-type (1|2) route-map WORD", |
| 10592 | "Control distribution of default information\n" |
| 10593 | "Distribute a default route\n" |
| 10594 | "OSPF metric type for default routes\n" |
| 10595 | "Set OSPF External Type 1 metrics\n" |
| 10596 | "Set OSPF External Type 2 metrics\n" |
| 10597 | "Route map reference\n" |
| 10598 | "Pointer to route-map entries\n") |
| 10599 | |
| 10600 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_bgp_metric_cmd_vtysh, |
| 10601 | "no redistribute bgp metric", |
| 10602 | "Negate a command or set its defaults\n" |
| 10603 | "Redistribute information from another routing protocol\n" |
| 10604 | "Border Gateway Protocol (BGP)\n" |
| 10605 | "Metric\n") |
| 10606 | |
| 10607 | DEFSH (VTYSH_RIPNGD, ripng_network_cmd_vtysh, |
| 10608 | "network IF_OR_ADDR", |
| 10609 | "RIPng enable on specified interface or network.\n" |
| 10610 | "Interface or address") |
| 10611 | |
| 10612 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, no_ip_prefix_list_seq_le_ge_cmd_vtysh, |
| 10613 | "no ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32> ge <0-32>", |
| 10614 | "Negate a command or set its defaults\n" |
| 10615 | "IP information\n" |
| 10616 | "Build a prefix list\n" |
| 10617 | "Name of a prefix list\n" |
| 10618 | "sequence number of an entry\n" |
| 10619 | "Sequence number\n" |
| 10620 | "Specify packets to reject\n" |
| 10621 | "Specify packets to forward\n" |
| 10622 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 10623 | "Maximum prefix length to be matched\n" |
| 10624 | "Maximum prefix length\n" |
| 10625 | "Minimum prefix length to be matched\n" |
| 10626 | "Minimum prefix length\n") |
| 10627 | |
| 10628 | DEFSH (VTYSH_OSPFD, no_ospf_default_metric_val_cmd_vtysh, |
| 10629 | "no default-metric <0-16777214>", |
| 10630 | "Negate a command or set its defaults\n" |
| 10631 | "Set metric of redistributed routes\n" |
| 10632 | "Default metric\n") |
| 10633 | |
| 10634 | DEFSH (VTYSH_OSPFD, ospf_distance_ospf_external_cmd_vtysh, |
| 10635 | "distance ospf external <1-255>", |
| 10636 | "Define an administrative distance\n" |
| 10637 | "OSPF Administrative distance\n" |
| 10638 | "External routes\n" |
| 10639 | "Distance for external routes\n") |
| 10640 | |
| 10641 | DEFSH (VTYSH_BGPD, no_bgp_scan_time_val_cmd_vtysh, |
| 10642 | "no bgp scan-time <5-60>", |
| 10643 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 10644 | "BGP specific commands\n" |
| 10645 | "Configure background scanner interval\n" |
| 10646 | "Scanner interval (seconds)\n") |
| 10647 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 10648 | DEFSH (VTYSH_BGPD, old_ipv6_aggregate_address_summary_only_cmd_vtysh, |
| 10649 | "ipv6 bgp aggregate-address X:X::X:X/M summary-only", |
| 10650 | "IPv6 information\n" |
| 10651 | "BGP information\n" |
| 10652 | "Configure BGP aggregate entries\n" |
| 10653 | "Aggregate prefix\n" |
| 10654 | "Filter more specific routes from updates\n") |
| 10655 | |
| 10656 | DEFSH (VTYSH_BGPD, show_bgp_route_cmd_vtysh, |
| 10657 | "show bgp X:X::X:X", |
| 10658 | "Show running system information\n" |
| 10659 | "BGP information\n" |
| 10660 | "Network in the BGP routing table to display\n") |
| 10661 | |
| 10662 | DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_adv_router_cmd_vtysh, |
| 10663 | "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") adv-router A.B.C.D", |
| 10664 | "Show running system information\n" |
| 10665 | "IP information\n" |
| 10666 | "OSPF information\n" |
| 10667 | "Database summary\n" |
| 10668 | "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" "" |
| 10669 | "Advertising Router link states\n" |
| 10670 | "Advertising Router (as an IP address)\n") |
| 10671 | |
| 10672 | DEFSH (VTYSH_BGPD, no_ip_community_list_name_all_cmd_vtysh, |
| 10673 | "no ip community-list (standard|expanded) WORD", |
| 10674 | "Negate a command or set its defaults\n" |
| 10675 | "IP information\n" |
| 10676 | "Add a community list entry\n" |
| 10677 | "Add a standard community-list entry\n" |
| 10678 | "Add an expanded community-list entry\n" |
| 10679 | "Community list name\n") |
| 10680 | |
| 10681 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh, |
| 10682 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D", |
| 10683 | "Show running system information\n" |
| 10684 | "IP information\n" |
| 10685 | "BGP information\n" |
| 10686 | "Display VPNv4 NLRI specific information\n" |
| 10687 | "Display information about all VPNv4 NLRIs\n" |
| 10688 | "Detailed information on TCP and BGP neighbor connections\n" |
| 10689 | "Neighbor to display information about\n") |
| 10690 | |
| 10691 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_in_cmd_vtysh, |
| 10692 | "clear ip bgp <1-65535> in", |
| 10693 | "Reset functions\n" |
| 10694 | "IP information\n" |
| 10695 | "BGP information\n" |
| 10696 | "Clear peers with the AS number\n" |
| 10697 | "Soft reconfig inbound update\n") |
| 10698 | |
| 10699 | DEFSH (VTYSH_RIPD, ip_rip_send_version_cmd_vtysh, |
| 10700 | "ip rip send version (1|2)", |
| 10701 | "IP information\n" |
| 10702 | "Routing Information Protocol\n" |
| 10703 | "Advertisement transmission\n" |
| 10704 | "Version control\n" |
| 10705 | "RIP version 1\n" |
| 10706 | "RIP version 2\n") |
| 10707 | |
| 10708 | DEFSH (VTYSH_OSPFD, no_ospf_authentication_key_cmd_vtysh, |
| 10709 | "no ospf authentication-key", |
| 10710 | "Negate a command or set its defaults\n" |
| 10711 | "OSPF interface commands\n" |
| 10712 | "Authentication password (key)\n") |
| 10713 | |
| 10714 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_host_cmd_vtysh, |
| 10715 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D host A.B.C.D", |
| 10716 | "Negate a command or set its defaults\n" |
| 10717 | "Add an access list entry\n" |
| 10718 | "IP extended access list\n" |
| 10719 | "IP extended access list (expanded range)\n" |
| 10720 | "Specify packets to reject\n" |
| 10721 | "Specify packets to forward\n" |
| 10722 | "Any Internet Protocol\n" |
| 10723 | "A single source host\n" |
| 10724 | "Source address\n" |
| 10725 | "A single destination host\n" |
| 10726 | "Destination address\n") |
| 10727 | |
| 10728 | DEFSH (VTYSH_BGPD, neighbor_dont_capability_negotiate_cmd_vtysh, |
| 10729 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "dont-capability-negotiate", |
| 10730 | "Specify neighbor router\n" |
| 10731 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10732 | "Do not perform capability negotiation\n") |
| 10733 | |
| 10734 | DEFSH (VTYSH_OSPFD, no_area_vlink_param4_cmd_vtysh, |
| 10735 | "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 10736 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) " |
| 10737 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) " |
| 10738 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval) " |
| 10739 | "(hello-interval|retransmit-interval|transmit-delay|dead-interval)", |
| 10740 | "Negate a command or set its defaults\n" |
| 10741 | "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" |
| 10742 | "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" |
| 10743 | "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" |
| 10744 | "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" |
| 10745 | "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") |
| 10746 | |
| 10747 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_in_prefix_filter_cmd_vtysh, |
| 10748 | "clear ip bgp A.B.C.D in prefix-filter", |
| 10749 | "Reset functions\n" |
| 10750 | "IP information\n" |
| 10751 | "BGP information\n" |
| 10752 | "BGP neighbor address to clear\n" |
| 10753 | "Soft reconfig inbound update\n" |
| 10754 | "Push out the existing ORF prefix-list\n") |
| 10755 | |
| 10756 | DEFSH (VTYSH_OSPFD, area_vlink_cmd_vtysh, |
| 10757 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D", |
| 10758 | "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") |
| 10759 | |
| 10760 | DEFSH (VTYSH_BGPD, no_neighbor_weight_cmd_vtysh, |
| 10761 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "weight", |
| 10762 | "Negate a command or set its defaults\n" |
| 10763 | "Specify neighbor router\n" |
| 10764 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10765 | "Set default weight for routes from this neighbor\n") |
| 10766 | |
| 10767 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, clear_ipv6_prefix_list_name_prefix_cmd_vtysh, |
| 10768 | "clear ipv6 prefix-list WORD X:X::X:X/M", |
| 10769 | "Reset functions\n" |
| 10770 | "IPv6 information\n" |
| 10771 | "Build a prefix list\n" |
| 10772 | "Name of a prefix list\n" |
| 10773 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n") |
| 10774 | |
| 10775 | DEFSH (VTYSH_ZEBRA, ip_irdp_address_preference_cmd_vtysh, |
| 10776 | "ip irdp address A.B.C.D <0-2147483647>", |
| 10777 | "IP information\n" |
| 10778 | "ICMP Router discovery on this interface\n" |
| 10779 | "Specify IRDP address and preference to proxy-advertise\n" |
| 10780 | "Set IRDP address for proxy-advertise\n" |
| 10781 | "Preference level\n") |
| 10782 | |
| 10783 | DEFSH (VTYSH_BGPD, clear_ip_bgp_external_soft_in_cmd_vtysh, |
| 10784 | "clear ip bgp external soft in", |
| 10785 | "Reset functions\n" |
| 10786 | "IP information\n" |
| 10787 | "BGP information\n" |
| 10788 | "Clear all external peers\n" |
| 10789 | "Soft reconfig\n" |
| 10790 | "Soft reconfig inbound update\n") |
| 10791 | |
| 10792 | DEFSH (VTYSH_BGPD, no_set_vpnv4_nexthop_cmd_vtysh, |
| 10793 | "no set vpnv4 next-hop", |
| 10794 | "Negate a command or set its defaults\n" |
| 10795 | "Set values in destination routing protocol\n" |
| 10796 | "VPNv4 information\n" |
| 10797 | "VPNv4 next-hop address\n") |
| 10798 | |
| 10799 | DEFSH (VTYSH_BGPD, bgp_multiple_instance_cmd_vtysh, |
| 10800 | "bgp multiple-instance", |
| 10801 | "BGP information\n" |
| 10802 | "Enable bgp multiple instance\n") |
| 10803 | |
| 10804 | DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_global_cmd_vtysh, |
| 10805 | "no set ipv6 next-hop global", |
| 10806 | "Negate a command or set its defaults\n" |
| 10807 | "Set values in destination routing protocol\n" |
| 10808 | "IPv6 information\n" |
| 10809 | "IPv6 next-hop address\n" |
| 10810 | "IPv6 global address\n") |
| 10811 | |
| 10812 | DEFSH (VTYSH_BGPD, show_bgp_neighbors_cmd_vtysh, |
| 10813 | "show bgp neighbors", |
| 10814 | "Show running system information\n" |
| 10815 | "BGP information\n" |
| 10816 | "Detailed information on TCP and BGP neighbor connections\n") |
| 10817 | |
| 10818 | DEFSH (VTYSH_RIPD, no_match_ip_next_hop_val_cmd_vtysh, |
| 10819 | "no match ip next-hop WORD", |
| 10820 | "Negate a command or set its defaults\n" |
| 10821 | "Match values from routing table\n" |
| 10822 | "IP information\n" |
| 10823 | "Match next-hop address of route\n" |
| 10824 | "IP access-list name\n") |
| 10825 | |
| 10826 | DEFSH (VTYSH_BGPD, show_bgp_community2_cmd_vtysh, |
| 10827 | "show bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export)", |
| 10828 | "Show running system information\n" |
| 10829 | "BGP information\n" |
| 10830 | "Display routes matching the communities\n" |
| 10831 | "community number\n" |
| 10832 | "Do not send outside local AS (well-known community)\n" |
| 10833 | "Do not advertise to any peer (well-known community)\n" |
| 10834 | "Do not export to next AS (well-known community)\n" |
| 10835 | "community number\n" |
| 10836 | "Do not send outside local AS (well-known community)\n" |
| 10837 | "Do not advertise to any peer (well-known community)\n" |
| 10838 | "Do not export to next AS (well-known community)\n") |
| 10839 | |
| 10840 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_prefix_list_cmd_vtysh, |
| 10841 | "show bgp ipv6 prefix-list WORD", |
| 10842 | "Show running system information\n" |
| 10843 | "BGP information\n" |
| 10844 | "Address family\n" |
| 10845 | "Display routes conforming to the prefix-list\n" |
| 10846 | "IPv6 prefix-list name\n") |
| 10847 | |
| 10848 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_cmd_vtysh, |
| 10849 | "clear bgp ipv6 (A.B.C.D|X:X::X:X)", |
| 10850 | "Reset functions\n" |
| 10851 | "BGP information\n" |
| 10852 | "Address family\n" |
| 10853 | "BGP neighbor address to clear\n" |
| 10854 | "BGP IPv6 neighbor to clear\n") |
| 10855 | |
| 10856 | DEFSH (VTYSH_OSPFD, area_shortcut_cmd_vtysh, |
| 10857 | "area (A.B.C.D|<0-4294967295>) shortcut (default|enable|disable)", |
| 10858 | "OSPF area parameters\n" |
| 10859 | "OSPF area ID in IP address format\n" |
| 10860 | "OSPF area ID as a decimal value\n" |
| 10861 | "Configure the area's shortcutting mode\n" |
| 10862 | "Set default shortcutting behavior\n" |
| 10863 | "Enable shortcutting through the area\n" |
| 10864 | "Disable shortcutting through the area\n") |
| 10865 | |
| 10866 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_kernel_cmd_vtysh, |
| 10867 | "redistribute kernel", |
| 10868 | "Redistribute information from another routing protocol\n" |
| 10869 | "Kernel routes\n") |
| 10870 | |
| 10871 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_ge_le_cmd_vtysh, |
| 10872 | "ip prefix-list WORD (deny|permit) A.B.C.D/M ge <0-32> le <0-32>", |
| 10873 | "IP information\n" |
| 10874 | "Build a prefix list\n" |
| 10875 | "Name of a prefix list\n" |
| 10876 | "Specify packets to reject\n" |
| 10877 | "Specify packets to forward\n" |
| 10878 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 10879 | "Minimum prefix length to be matched\n" |
| 10880 | "Minimum prefix length\n" |
| 10881 | "Maximum prefix length to be matched\n" |
| 10882 | "Maximum prefix length\n") |
| 10883 | |
| 10884 | DEFSH (VTYSH_BGPD, no_bgp_default_local_preference_cmd_vtysh, |
| 10885 | "no bgp default local-preference", |
| 10886 | "Negate a command or set its defaults\n" |
| 10887 | "BGP specific commands\n" |
| 10888 | "Configure BGP defaults\n" |
| 10889 | "local preference (higher=more preferred)\n") |
| 10890 | |
| 10891 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_ipv4_soft_in_cmd_vtysh, |
| 10892 | "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft in", |
| 10893 | "Reset functions\n" |
| 10894 | "IP information\n" |
| 10895 | "BGP information\n" |
| 10896 | "BGP neighbor address to clear\n" |
| 10897 | "Address family\n" |
| 10898 | "Address Family modifier\n" |
| 10899 | "Address Family modifier\n" |
| 10900 | "Soft reconfig\n" |
| 10901 | "Soft reconfig inbound update\n") |
| 10902 | |
| 10903 | DEFSH (VTYSH_BGPD, bgp_redistribute_ipv6_rmap_cmd_vtysh, |
| 10904 | "redistribute (connected|kernel|ospf6|ripng|static) route-map WORD", |
| 10905 | "Redistribute information from another routing protocol\n" |
| 10906 | "Connected\n" |
| 10907 | "Kernel routes\n" |
| 10908 | "Open Shurtest Path First (OSPFv3)\n" |
| 10909 | "Routing Information Protocol (RIPng)\n" |
| 10910 | "Static routes\n" |
| 10911 | "Route map reference\n" |
| 10912 | "Pointer to route-map entries\n") |
| 10913 | |
| 10914 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_route_cmd_vtysh, |
| 10915 | "show ipv6 ospf6 route", |
| 10916 | "Show running system information\n" |
| 10917 | "IPv6 Information\n" |
| 10918 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 10919 | "Routing table\n" |
| 10920 | ) |
| 10921 | |
| 10922 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_any_mask_cmd_vtysh, |
| 10923 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip any A.B.C.D A.B.C.D", |
| 10924 | "Add an access list entry\n" |
| 10925 | "IP extended access list\n" |
| 10926 | "IP extended access list (expanded range)\n" |
| 10927 | "Specify packets to reject\n" |
| 10928 | "Specify packets to forward\n" |
| 10929 | "Any Internet Protocol\n" |
| 10930 | "Any source host\n" |
| 10931 | "Destination address\n" |
| 10932 | "Destination Wildcard bits\n") |
| 10933 | |
| 10934 | DEFSH (VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPF6D, router_zebra_cmd_vtysh, |
| 10935 | "router zebra", |
| 10936 | "Enable a routing process\n" |
| 10937 | "Make connection to zebra daemon\n") |
| 10938 | |
| 10939 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_cmd_vtysh, |
| 10940 | "clear ip bgp view WORD *", |
| 10941 | "Reset functions\n" |
| 10942 | "IP information\n" |
| 10943 | "BGP information\n" |
| 10944 | "BGP view\n" |
| 10945 | "view name\n" |
| 10946 | "Clear all peers\n") |
| 10947 | |
| 10948 | DEFSH (VTYSH_BGPD, no_neighbor_default_originate_rmap_cmd_vtysh, |
| 10949 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "default-originate route-map WORD", |
| 10950 | "Negate a command or set its defaults\n" |
| 10951 | "Specify neighbor router\n" |
| 10952 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 10953 | "Originate default route to this neighbor\n" |
| 10954 | "Route-map to specify criteria to originate default\n" |
| 10955 | "route-map name\n") |
| 10956 | |
| 10957 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_cmd_vtysh, |
| 10958 | "no ipv6 prefix-list WORD", |
| 10959 | "Negate a command or set its defaults\n" |
| 10960 | "IPv6 information\n" |
| 10961 | "Build a prefix list\n" |
| 10962 | "Name of a prefix list\n") |
| 10963 | |
| 10964 | DEFSH (VTYSH_OSPFD, area_vlink_authtype_args_authkey_cmd_vtysh, |
| 10965 | "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D " |
| 10966 | "(authentication|) (message-digest|null) " |
| 10967 | "(authentication-key|) AUTH_KEY", |
| 10968 | "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" |
| 10969 | "Enable authentication on this virtual link\n" "dummy string \n" "Use null authentication\n" "Use message-digest authentication\n" |
| 10970 | "Authentication password (key)\n" "The OSPF password (key)") |
| 10971 | |
| 10972 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_static_routemap_cmd_vtysh, |
| 10973 | "redistribute static route-map WORD", |
| 10974 | "Redistribute information from another routing protocol\n" |
| 10975 | "Static routes\n" |
| 10976 | "Route map reference\n" |
| 10977 | "Pointer to route-map entries\n") |
| 10978 | |
| 10979 | DEFSH (VTYSH_RIPD, accept_lifetime_day_month_month_day_cmd_vtysh, |
| 10980 | "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> HH:MM:SS MONTH <1-31> <1993-2035>", |
| 10981 | "Set accept lifetime of the key\n" |
| 10982 | "Time to start\n" |
| 10983 | "Day of th month to start\n" |
| 10984 | "Month of the year to start\n" |
| 10985 | "Year to start\n" |
| 10986 | "Time to expire\n" |
| 10987 | "Month of the year to expire\n" |
| 10988 | "Day of th month to expire\n" |
| 10989 | "Year to expire\n") |
| 10990 | |
| 10991 | DEFSH (VTYSH_OSPF6D, no_debug_ospf6_all_cmd_vtysh, |
| 10992 | "no debug ospf6 all", |
| 10993 | "Negate a command or set its defaults\n" |
| 10994 | "Debugging functions (see also 'undebug')\n" |
| 10995 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 10996 | "Turn off ALL OSPFv3 debugging\n") |
| 10997 | |
| 10998 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_metric_cmd_vtysh, |
| 10999 | "default-information originate always metric-type (1|2) metric <0-16777214>", |
| 11000 | "Control distribution of default information\n" |
| 11001 | "Distribute a default route\n" |
| 11002 | "Always advertise default route\n" |
| 11003 | "OSPF metric type for default routes\n" |
| 11004 | "Set OSPF External Type 1 metrics\n" |
| 11005 | "Set OSPF External Type 2 metrics\n" |
| 11006 | "OSPF default metric\n" |
| 11007 | "OSPF metric\n") |
| 11008 | |
| 11009 | DEFSH (VTYSH_BGPD, neighbor_route_server_client_cmd_vtysh, |
| 11010 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "route-server-client", |
| 11011 | "Specify neighbor router\n" |
| 11012 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11013 | "Configure a neighbor as Route Server client\n") |
| 11014 | |
| 11015 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community2_exact_cmd_vtysh, |
| 11016 | "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 11017 | "Show running system information\n" |
| 11018 | "IPv6 information\n" |
| 11019 | "BGP information\n" |
| 11020 | "Display routes matching the communities\n" |
| 11021 | "community number\n" |
| 11022 | "Do not send outside local AS (well-known community)\n" |
| 11023 | "Do not advertise to any peer (well-known community)\n" |
| 11024 | "Do not export to next AS (well-known community)\n" |
| 11025 | "community number\n" |
| 11026 | "Do not send outside local AS (well-known community)\n" |
| 11027 | "Do not advertise to any peer (well-known community)\n" |
| 11028 | "Do not export to next AS (well-known community)\n" |
| 11029 | "Exact match of the communities") |
| 11030 | |
| 11031 | DEFSH (VTYSH_BGPD, show_bgp_prefix_longer_cmd_vtysh, |
| 11032 | "show bgp X:X::X:X/M longer-prefixes", |
| 11033 | "Show running system information\n" |
| 11034 | "BGP information\n" |
| 11035 | "IPv6 prefix <network>/<length>\n" |
| 11036 | "Display route and more specific routes\n") |
| 11037 | |
| 11038 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_type_cmd_vtysh, |
| 11039 | "default-information originate metric-type (1|2)", |
| 11040 | "Control distribution of default information\n" |
| 11041 | "Distribute a default route\n" |
| 11042 | "OSPF metric type for default routes\n" |
| 11043 | "Set OSPF External Type 1 metrics\n" |
| 11044 | "Set OSPF External Type 2 metrics\n") |
| 11045 | |
| 11046 | DEFSH (VTYSH_OSPFD, no_neighbor_priority_cmd_vtysh, |
| 11047 | "no neighbor A.B.C.D priority <0-255>", |
| 11048 | "Negate a command or set its defaults\n" |
| 11049 | "Specify neighbor router\n" |
| 11050 | "Neighbor IP address\n" |
| 11051 | "Neighbor Priority\n" |
| 11052 | "Priority\n") |
| 11053 | |
| 11054 | DEFSH (VTYSH_BGPD, no_bgp_distance_source_access_list_cmd_vtysh, |
| 11055 | "no distance <1-255> A.B.C.D/M WORD", |
| 11056 | "Negate a command or set its defaults\n" |
| 11057 | "Define an administrative distance\n" |
| 11058 | "Administrative distance\n" |
| 11059 | "IP source prefix\n" |
| 11060 | "Access list name\n") |
| 11061 | |
| 11062 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, ip_prefix_list_seq_le_ge_cmd_vtysh, |
| 11063 | "ip prefix-list WORD seq <1-4294967295> (deny|permit) A.B.C.D/M le <0-32> ge <0-32>", |
| 11064 | "IP information\n" |
| 11065 | "Build a prefix list\n" |
| 11066 | "Name of a prefix list\n" |
| 11067 | "sequence number of an entry\n" |
| 11068 | "Sequence number\n" |
| 11069 | "Specify packets to reject\n" |
| 11070 | "Specify packets to forward\n" |
| 11071 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 11072 | "Maximum prefix length to be matched\n" |
| 11073 | "Maximum prefix length\n" |
| 11074 | "Minimum prefix length to be matched\n" |
| 11075 | "Minimum prefix length\n") |
| 11076 | |
| 11077 | DEFSH (VTYSH_BGPD, neighbor_remote_as_cmd_vtysh, |
| 11078 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "remote-as <1-65535>", |
| 11079 | "Specify neighbor router\n" |
| 11080 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11081 | "Specify a BGP neighbor\n" |
| 11082 | "AS number\n") |
| 11083 | |
| 11084 | DEFSH (VTYSH_OSPFD, no_debug_ospf_lsa_sub_cmd_vtysh, |
| 11085 | "no debug ospf lsa (generate|flooding|install|refresh)", |
| 11086 | "Negate a command or set its defaults\n" |
| 11087 | "Debugging functions (see also 'undebug')\n" |
| 11088 | "OSPF information\n" |
| 11089 | "OSPF Link State Advertisement\n" |
| 11090 | "LSA Generation\n" |
| 11091 | "LSA Flooding\n" |
| 11092 | "LSA Install/Delete\n" |
| 11093 | "LSA Refres\n") |
| 11094 | |
| 11095 | DEFSH (VTYSH_BGPD, no_match_origin_cmd_vtysh, |
| 11096 | "no match origin", |
| 11097 | "Negate a command or set its defaults\n" |
| 11098 | "Match values from routing table\n" |
| 11099 | "BGP origin code\n") |
| 11100 | |
| 11101 | DEFSH (VTYSH_BGPD, neighbor_remove_private_as_cmd_vtysh, |
| 11102 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "remove-private-AS", |
| 11103 | "Specify neighbor router\n" |
| 11104 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11105 | "Remove private AS number from outbound updates\n") |
| 11106 | |
| 11107 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, show_ipv6_prefix_list_detail_name_cmd_vtysh, |
| 11108 | "show ipv6 prefix-list detail WORD", |
| 11109 | "Show running system information\n" |
| 11110 | "IPv6 information\n" |
| 11111 | "Build a prefix list\n" |
| 11112 | "Detail of prefix lists\n" |
| 11113 | "Name of a prefix list\n") |
| 11114 | |
| 11115 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_address_cmd_vtysh, |
| 11116 | "show ip bgp flap-statistics A.B.C.D", |
| 11117 | "Show running system information\n" |
| 11118 | "IP information\n" |
| 11119 | "BGP information\n" |
| 11120 | "Display flap statistics of routes\n" |
| 11121 | "Network in the BGP routing table to display\n") |
| 11122 | |
| 11123 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_rmap_cmd_vtysh, |
| 11124 | "no redistribute (connected|kernel|ospf|rip|static) route-map WORD", |
| 11125 | "Negate a command or set its defaults\n" |
| 11126 | "Redistribute information from another routing protocol\n" |
| 11127 | "Connected\n" |
| 11128 | "Kernel routes\n" |
| 11129 | "Open Shurtest Path First (OSPF)\n" |
| 11130 | "Routing Information Protocol (RIP)\n" |
| 11131 | "Static routes\n" |
| 11132 | "Route map reference\n" |
| 11133 | "Pointer to route-map entries\n") |
| 11134 | |
| 11135 | DEFSH (VTYSH_BGPD, clear_bgp_peer_group_cmd_vtysh, |
| 11136 | "clear bgp peer-group WORD", |
| 11137 | "Reset functions\n" |
| 11138 | "BGP information\n" |
| 11139 | "Clear all members of peer-group\n" |
| 11140 | "BGP peer-group name\n") |
| 11141 | |
| 11142 | DEFSH (VTYSH_BGPD, neighbor_interface_cmd_vtysh, |
| 11143 | "neighbor (A.B.C.D|X:X::X:X) " "interface WORD", |
| 11144 | "Specify neighbor router\n" |
| 11145 | "Neighbor address\nIPv6 address\n" |
| 11146 | "Interface\n" |
| 11147 | "Interface name\n") |
| 11148 | |
| 11149 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_peer_soft_in_cmd_vtysh, |
| 11150 | "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft in", |
| 11151 | "Reset functions\n" |
| 11152 | "BGP information\n" |
| 11153 | "Address family\n" |
| 11154 | "BGP neighbor address to clear\n" |
| 11155 | "BGP IPv6 neighbor to clear\n" |
| 11156 | "Soft reconfig\n" |
| 11157 | "Soft reconfig inbound update\n") |
| 11158 | |
| 11159 | DEFSH (VTYSH_BGPD, clear_bgp_all_soft_cmd_vtysh, |
| 11160 | "clear bgp * soft", |
| 11161 | "Reset functions\n" |
| 11162 | "BGP information\n" |
| 11163 | "Clear all peers\n" |
| 11164 | "Soft reconfig\n") |
| 11165 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11166 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_community3_exact_cmd_vtysh, |
| 11167 | "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", |
| 11168 | "Show running system information\n" |
| 11169 | "IP information\n" |
| 11170 | "BGP information\n" |
| 11171 | "Address family\n" |
| 11172 | "Address Family modifier\n" |
| 11173 | "Address Family modifier\n" |
| 11174 | "Display routes matching the communities\n" |
| 11175 | "community number\n" |
| 11176 | "Do not send outside local AS (well-known community)\n" |
| 11177 | "Do not advertise to any peer (well-known community)\n" |
| 11178 | "Do not export to next AS (well-known community)\n" |
| 11179 | "community number\n" |
| 11180 | "Do not send outside local AS (well-known community)\n" |
| 11181 | "Do not advertise to any peer (well-known community)\n" |
| 11182 | "Do not export to next AS (well-known community)\n" |
| 11183 | "community number\n" |
| 11184 | "Do not send outside local AS (well-known community)\n" |
| 11185 | "Do not advertise to any peer (well-known community)\n" |
| 11186 | "Do not export to next AS (well-known community)\n" |
| 11187 | "Exact match of the communities") |
| 11188 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11189 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_received_routes_cmd_vtysh, |
| 11190 | "show ip bgp neighbors (A.B.C.D|X:X::X:X) received-routes", |
| 11191 | "Show running system information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11192 | "IP information\n" |
| 11193 | "BGP information\n" |
| 11194 | "Detailed information on TCP and BGP neighbor connections\n" |
| 11195 | "Neighbor to display information about\n" |
| 11196 | "Neighbor to display information about\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11197 | "Display the received routes from neighbor\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11198 | |
| 11199 | DEFSH (VTYSH_BGPD, aggregate_address_mask_summary_as_set_cmd_vtysh, |
| 11200 | "aggregate-address A.B.C.D A.B.C.D summary-only as-set", |
| 11201 | "Configure BGP aggregate entries\n" |
| 11202 | "Aggregate address\n" |
| 11203 | "Aggregate mask\n" |
| 11204 | "Filter more specific routes from updates\n" |
| 11205 | "Generate AS set path information\n") |
| 11206 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11207 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_neighbor_routerid_cmd_vtysh, |
| 11208 | "show ipv6 ospf6 neighbor A.B.C.D", |
| 11209 | "Show running system information\n" |
| 11210 | "IPv6 Information\n" |
| 11211 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 11212 | "Neighbor list\n" |
| 11213 | "OSPF6 neighbor Router ID in IP address format\n" |
| 11214 | ) |
| 11215 | |
| 11216 | DEFSH (VTYSH_BGPD, bgp_cluster_id32_cmd_vtysh, |
| 11217 | "bgp cluster-id <1-4294967295>", |
| 11218 | "BGP information\n" |
| 11219 | "Configure Route-Reflector Cluster-id\n" |
| 11220 | "Route-Reflector Cluster-id as 32 bit quantity\n") |
| 11221 | |
| 11222 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_cmd_vtysh, |
| 11223 | "clear bgp ipv6 <1-65535>", |
| 11224 | "Reset functions\n" |
| 11225 | "BGP information\n" |
| 11226 | "Address family\n" |
| 11227 | "Clear peers with the AS number\n") |
| 11228 | |
| 11229 | DEFSH (VTYSH_OSPFD|VTYSH_OSPFD, show_ip_ospf_neighbor_id_cmd_vtysh, |
| 11230 | "show ip ospf neighbor A.B.C.D", |
| 11231 | "Show running system information\n" |
| 11232 | "IP information\n" |
| 11233 | "OSPF information\n" |
| 11234 | "Neighbor list\n" |
| 11235 | "Neighbor ID\n") |
| 11236 | |
| 11237 | DEFSH (VTYSH_OSPFD, no_ip_ospf_hello_interval_addr_cmd_vtysh, |
| 11238 | "no ip ospf hello-interval A.B.C.D", |
| 11239 | "Negate a command or set its defaults\n" |
| 11240 | "IP Information\n" |
| 11241 | "OSPF interface commands\n" |
| 11242 | "Time between HELLO packets\n" |
| 11243 | "Address of interface") |
| 11244 | |
| 11245 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_kernel_metric_val_cmd_vtysh, |
| 11246 | "no redistribute kernel metric <0-16>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11247 | "Negate a command or set its defaults\n" |
| 11248 | "Redistribute information from another routing protocol\n" |
| 11249 | "Kernel routes\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11250 | "Metric\n" |
| 11251 | "Metric value\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11252 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11253 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_rmap_onmatch_goto_cmd_vtysh, |
| 11254 | "no on-match goto", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11255 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11256 | "Exit policy on matches\n" |
| 11257 | "Next clause\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11258 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11259 | DEFSH (VTYSH_OSPF6D, ospf6_redistribute_routemap_cmd_vtysh, |
| 11260 | "redistribute (static|kernel|connected|ripng|bgp) route-map WORD", |
| 11261 | "Redistribute\n" |
| 11262 | "Static routes\n" |
| 11263 | "Kernel route\n" |
| 11264 | "Connected route\n" |
| 11265 | "RIPng route\n" |
| 11266 | "BGP route\n" |
| 11267 | "Route map reference\n" |
| 11268 | "Route map name\n" |
| 11269 | ) |
| 11270 | |
| 11271 | DEFSH (VTYSH_BGPD, neighbor_local_as_cmd_vtysh, |
| 11272 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "local-as <1-65535>", |
| 11273 | "Specify neighbor router\n" |
| 11274 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11275 | "Specify a local-as number\n" |
| 11276 | "AS number used as local AS\n") |
| 11277 | |
| 11278 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_in_prefix_filter_cmd_vtysh, |
| 11279 | "clear ip bgp view WORD * ipv4 (unicast|multicast) in prefix-filter", |
| 11280 | "Reset functions\n" |
| 11281 | "IP information\n" |
| 11282 | "BGP information\n" |
| 11283 | "Clear all peers\n" |
| 11284 | "Address family\n" |
| 11285 | "Address Family modifier\n" |
| 11286 | "Address Family modifier\n" |
| 11287 | "Soft reconfig inbound update\n" |
| 11288 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 11289 | |
| 11290 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_prefix_list_val_cmd_vtysh, |
| 11291 | "no match ip address prefix-list WORD", |
| 11292 | "Negate a command or set its defaults\n" |
| 11293 | "Match values from routing table\n" |
| 11294 | "IP information\n" |
| 11295 | "Match address of route\n" |
| 11296 | "Match entries of prefix-lists\n" |
| 11297 | "IP prefix-list name\n") |
| 11298 | |
| 11299 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged9_cmd_vtysh, |
| 11300 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med next-hop as-path", |
| 11301 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11302 | "Specify neighbor router\n" |
| 11303 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11304 | "BGP attribute is propagated unchanged to this neighbor\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11305 | "Med attribute\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11306 | "Nexthop attribute\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11307 | "As-path attribute\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11308 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11309 | DEFSH (VTYSH_RIPNGD, no_ripng_redistribute_ospf6_metric_cmd_vtysh, |
| 11310 | "no redistribute ospf6 metric", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11311 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11312 | "Redistribute information from another routing protocol\n" |
| 11313 | "IPv6 Open Shortest Path First (OSPFv3)\n" |
| 11314 | "Metric\n") |
| 11315 | |
| 11316 | DEFSH (VTYSH_BGPD, show_ip_bgp_community3_cmd_vtysh, |
| 11317 | "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)", |
| 11318 | "Show running system information\n" |
| 11319 | "IP information\n" |
| 11320 | "BGP information\n" |
| 11321 | "Display routes matching the communities\n" |
| 11322 | "community number\n" |
| 11323 | "Do not send outside local AS (well-known community)\n" |
| 11324 | "Do not advertise to any peer (well-known community)\n" |
| 11325 | "Do not export to next AS (well-known community)\n" |
| 11326 | "community number\n" |
| 11327 | "Do not send outside local AS (well-known community)\n" |
| 11328 | "Do not advertise to any peer (well-known community)\n" |
| 11329 | "Do not export to next AS (well-known community)\n" |
| 11330 | "community number\n" |
| 11331 | "Do not send outside local AS (well-known community)\n" |
| 11332 | "Do not advertise to any peer (well-known community)\n" |
| 11333 | "Do not export to next AS (well-known community)\n") |
| 11334 | |
| 11335 | DEFSH (VTYSH_BGPD, no_neighbor_timers_connect_cmd_vtysh, |
| 11336 | "no neighbor (A.B.C.D|X:X::X:X) " "timers connect", |
| 11337 | "Negate a command or set its defaults\n" |
| 11338 | "Specify neighbor router\n" |
| 11339 | "Neighbor address\nIPv6 address\n" |
| 11340 | "BGP per neighbor timers\n" |
| 11341 | "BGP connect timer\n") |
| 11342 | |
| 11343 | DEFSH (VTYSH_BGPD, set_community_cmd_vtysh, |
| 11344 | "set community .AA:NN", |
| 11345 | "Set values in destination routing protocol\n" |
| 11346 | "BGP community attribute\n" |
| 11347 | "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n") |
| 11348 | |
| 11349 | DEFSH (VTYSH_BGPD, show_ip_bgp_community_list_exact_cmd_vtysh, |
| 11350 | "show ip bgp community-list WORD exact-match", |
| 11351 | "Show running system information\n" |
| 11352 | "IP information\n" |
| 11353 | "BGP information\n" |
| 11354 | "Display routes matching the community-list\n" |
| 11355 | "community-list name\n" |
| 11356 | "Exact match of the communities\n") |
| 11357 | |
| 11358 | DEFSH (VTYSH_BGPD, bgp_network_cmd_vtysh, |
| 11359 | "network A.B.C.D/M", |
| 11360 | "Specify a network to announce via BGP\n" |
| 11361 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 11362 | |
| 11363 | DEFSH (VTYSH_BGPD, show_ip_bgp_summary_cmd_vtysh, |
| 11364 | "show ip bgp summary", |
| 11365 | "Show running system information\n" |
| 11366 | "IP information\n" |
| 11367 | "BGP information\n" |
| 11368 | "Summary of BGP neighbor status\n") |
| 11369 | |
| 11370 | DEFSH (VTYSH_BGPD, no_vpnv4_network_cmd_vtysh, |
| 11371 | "no network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD", |
| 11372 | "Negate a command or set its defaults\n" |
| 11373 | "Specify a network to announce via BGP\n" |
| 11374 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 11375 | "Specify Route Distinguisher\n" |
| 11376 | "VPN Route Distinguisher\n" |
| 11377 | "BGP tag\n" |
| 11378 | "tag value\n") |
| 11379 | |
| 11380 | DEFSH (VTYSH_BGPD, bgp_network_backdoor_cmd_vtysh, |
| 11381 | "network A.B.C.D/M backdoor", |
| 11382 | "Specify a network to announce via BGP\n" |
| 11383 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 11384 | "Specify a BGP backdoor route\n") |
| 11385 | |
| 11386 | DEFSH (VTYSH_BGPD, no_neighbor_send_community_cmd_vtysh, |
| 11387 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "send-community", |
| 11388 | "Negate a command or set its defaults\n" |
| 11389 | "Specify neighbor router\n" |
| 11390 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11391 | "Send Community attribute to this neighbor\n") |
| 11392 | |
| 11393 | DEFSH (VTYSH_ZEBRA, debug_zebra_packet_detail_cmd_vtysh, |
| 11394 | "debug zebra packet (recv|send) detail", |
| 11395 | "Debugging functions (see also 'undebug')\n" |
| 11396 | "Zebra configuration\n" |
| 11397 | "Debug option set for zebra packet\n" |
| 11398 | "Debug option set for receive packet\n" |
| 11399 | "Debug option set for send packet\n" |
| 11400 | "Debug option set detaied information\n") |
| 11401 | |
| 11402 | DEFSH (VTYSH_OSPFD, show_ip_ospf_cmd_vtysh, |
| 11403 | "show ip ospf", |
| 11404 | "Show running system information\n" |
| 11405 | "IP information\n" |
| 11406 | "OSPF information\n") |
| 11407 | |
| 11408 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_filter_list_cmd_vtysh, |
| 11409 | "show bgp ipv6 filter-list WORD", |
| 11410 | "Show running system information\n" |
| 11411 | "BGP information\n" |
| 11412 | "Address family\n" |
| 11413 | "Display routes conforming to the filter-list\n" |
| 11414 | "Regular expression access list name\n") |
| 11415 | |
| 11416 | DEFSH (VTYSH_RIPD, ip_rip_receive_version_2_cmd_vtysh, |
| 11417 | "ip rip receive version 2 1", |
| 11418 | "IP information\n" |
| 11419 | "Routing Information Protocol\n" |
| 11420 | "Advertisement reception\n" |
| 11421 | "Version control\n" |
| 11422 | "RIP version 2\n" |
| 11423 | "RIP version 1\n") |
| 11424 | |
| 11425 | DEFSH (VTYSH_ZEBRA, ip_irdp_maxadvertinterval_cmd_vtysh, |
| 11426 | "ip irdp maxadvertinterval (0|<4-1800>)", |
| 11427 | "IP information\n" |
| 11428 | "ICMP Router discovery on this interface\n" |
| 11429 | "Set maximum time between advertisement\n" |
| 11430 | "Maximum advertisement interval in seconds\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11431 | |
| 11432 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_prefix_longer_cmd_vtysh, |
| 11433 | "show ip bgp ipv4 (unicast|multicast) A.B.C.D/M longer-prefixes", |
| 11434 | "Show running system information\n" |
| 11435 | "IP information\n" |
| 11436 | "BGP information\n" |
| 11437 | "Address family\n" |
| 11438 | "Address Family modifier\n" |
| 11439 | "Address Family modifier\n" |
| 11440 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 11441 | "Display route and more specific routes\n") |
| 11442 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11443 | DEFSH (VTYSH_BGPD, clear_bgp_all_soft_in_cmd_vtysh, |
| 11444 | "clear bgp * soft in", |
| 11445 | "Reset functions\n" |
| 11446 | "BGP information\n" |
| 11447 | "Clear all peers\n" |
| 11448 | "Soft reconfig\n" |
| 11449 | "Soft reconfig inbound update\n") |
| 11450 | |
| 11451 | DEFSH (VTYSH_BGPD, no_bgp_default_ipv4_unicast_cmd_vtysh, |
| 11452 | "no bgp default ipv4-unicast", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11453 | "Negate a command or set its defaults\n" |
| 11454 | "BGP specific commands\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11455 | "Configure BGP defaults\n" |
| 11456 | "Activate ipv4-unicast for a peer by default\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11457 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11458 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh, |
| 11459 | "show ipv6 ospf6 area A.B.C.D topology (A.B.C.D|<0-4294967295>) (A.B.C.D|<0-4294967295>)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11460 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11461 | "IPv6 Information\n" |
| 11462 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 11463 | "Area information\n" |
| 11464 | "Area ID (as an IPv4 notation)\n" |
| 11465 | "Shortest Path First tree information\n" |
| 11466 | "Displays SPF topology table\n" |
| 11467 | "Specify Router-ID\n" |
| 11468 | "Specify Router-ID\n" |
| 11469 | "Specify Link State ID\n" |
| 11470 | "Specify Link State ID\n" |
| 11471 | ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11472 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11473 | DEFSH (VTYSH_OSPFD, no_ospf_message_digest_key_cmd_vtysh, |
| 11474 | "no ospf message-digest-key <1-255>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11475 | "Negate a command or set its defaults\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11476 | "OSPF interface commands\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11477 | "Message digest authentication password (key)\n" |
| 11478 | "Key ID\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11479 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11480 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_le_cmd_vtysh, |
| 11481 | "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128>", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11482 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11483 | "IPv6 information\n" |
| 11484 | "Build a prefix list\n" |
| 11485 | "Name of a prefix list\n" |
| 11486 | "Specify packets to reject\n" |
| 11487 | "Specify packets to forward\n" |
| 11488 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 11489 | "Maximum prefix length to be matched\n" |
| 11490 | "Maximum prefix length\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11491 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11492 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_prefix_first_match_cmd_vtysh, |
| 11493 | "show ip prefix-list WORD A.B.C.D/M first-match", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11494 | "Show running system information\n" |
| 11495 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11496 | "Build a prefix list\n" |
| 11497 | "Name of a prefix list\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11498 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11499 | "First matched prefix\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11500 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11501 | DEFSH (VTYSH_OSPFD, debug_ospf_zebra_cmd_vtysh, |
| 11502 | "debug ospf zebra", |
| 11503 | "Debugging functions (see also 'undebug')\n" |
| 11504 | "OSPF information\n" |
| 11505 | "OSPF Zebra information\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11506 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11507 | DEFSH (VTYSH_OSPFD, show_ip_ospf_database_type_id_self_cmd_vtysh, |
| 11508 | "show ip ospf database (" "asbr-summary|external|network|router|summary" "" "" ") A.B.C.D (self-originate|)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11509 | "Show running system information\n" |
| 11510 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11511 | "OSPF information\n" |
| 11512 | "Database summary\n" |
| 11513 | "ASBR summary link states\n" "External link states\n" "Network link states\n" "Router link states\n" "Network summary link states\n" "" "" "" "" |
| 11514 | "Link State ID (as an IP address)\n" |
| 11515 | "Self-originated link states\n" |
| 11516 | "\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11517 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11518 | DEFSH (VTYSH_BGPD, show_ip_bgp_neighbor_flap_cmd_vtysh, |
| 11519 | "show ip bgp neighbors (A.B.C.D|X:X::X:X) flap-statistics", |
| 11520 | "Show running system information\n" |
| 11521 | "IP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11522 | "BGP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11523 | "Detailed information on TCP and BGP neighbor connections\n" |
| 11524 | "Neighbor to display information about\n" |
| 11525 | "Neighbor to display information about\n" |
| 11526 | "Display flap statistics of the routes learned from neighbor\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11527 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11528 | DEFSH (VTYSH_BGPD, no_ip_as_path_all_cmd_vtysh, |
| 11529 | "no ip as-path access-list WORD", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11530 | "Negate a command or set its defaults\n" |
| 11531 | "IP information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11532 | "BGP autonomous system path filter\n" |
| 11533 | "Specify an access list name\n" |
| 11534 | "Regular expression access list name\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11535 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11536 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_in_cmd_vtysh, |
| 11537 | "clear ip bgp * ipv4 (unicast|multicast) in", |
| 11538 | "Reset functions\n" |
| 11539 | "IP information\n" |
| 11540 | "BGP information\n" |
| 11541 | "Clear all peers\n" |
| 11542 | "Address family\n" |
| 11543 | "Address Family modifier\n" |
| 11544 | "Address Family modifier\n" |
| 11545 | "Soft reconfig inbound update\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11546 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11547 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_out_cmd_vtysh, |
| 11548 | "clear ip bgp A.B.C.D out", |
| 11549 | "Reset functions\n" |
| 11550 | "IP information\n" |
| 11551 | "BGP information\n" |
| 11552 | "BGP neighbor address to clear\n" |
| 11553 | "Soft reconfig outbound update\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11554 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11555 | DEFSH (VTYSH_OSPFD, show_ip_ospf_database_cmd_vtysh, |
| 11556 | "show ip ospf database", |
| 11557 | "Show running system information\n" |
| 11558 | "IP information\n" |
| 11559 | "OSPF information\n" |
| 11560 | "Database summary\n") |
| 11561 | |
| 11562 | DEFSH (VTYSH_OSPF6D, show_ipv6_ospf6_interface_ifname_cmd_vtysh, |
| 11563 | "show ipv6 ospf6 interface IFNAME", |
| 11564 | "Show running system information\n" |
| 11565 | "IPv6 Information\n" |
| 11566 | "Open Shortest Path First (OSPF) for IPv6\n" |
| 11567 | "Interface infomation\n" |
| 11568 | "Interface name(e.g. ep0)\n" |
| 11569 | ) |
| 11570 | |
| 11571 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_group_cmd_vtysh, |
| 11572 | "clear ip bgp peer-group WORD", |
| 11573 | "Reset functions\n" |
| 11574 | "IP information\n" |
| 11575 | "BGP information\n" |
| 11576 | "Clear all members of peer-group\n" |
| 11577 | "BGP peer-group name\n") |
| 11578 | |
| 11579 | DEFSH (VTYSH_BGPD, no_neighbor_maximum_prefix_val2_cmd_vtysh, |
| 11580 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "maximum-prefix <1-4294967295> warning-only", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11581 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11582 | "Specify neighbor router\n" |
| 11583 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11584 | "Maximum number of prefix accept from this peer\n" |
| 11585 | "maximum no. of prefix limit\n" |
| 11586 | "Only give warning message when limit is exceeded\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11587 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11588 | DEFSH (VTYSH_BGPD, show_ip_bgp_flap_regexp_cmd_vtysh, |
| 11589 | "show ip bgp flap-statistics regexp .LINE", |
| 11590 | "Show running system information\n" |
| 11591 | "IP information\n" |
| 11592 | "BGP information\n" |
| 11593 | "Display flap statistics of routes\n" |
| 11594 | "Display routes matching the AS path regular expression\n" |
| 11595 | "A regular-expression to match the BGP AS paths\n") |
| 11596 | |
| 11597 | DEFSH (VTYSH_BGPD, clear_bgp_as_soft_in_cmd_vtysh, |
| 11598 | "clear bgp <1-65535> soft in", |
| 11599 | "Reset functions\n" |
| 11600 | "BGP information\n" |
| 11601 | "Clear peers with the AS number\n" |
| 11602 | "Soft reconfig\n" |
| 11603 | "Soft reconfig inbound update\n") |
| 11604 | |
| 11605 | DEFSH (VTYSH_BGPD, show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh, |
| 11606 | "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) received prefix-filter", |
| 11607 | "Show running system information\n" |
| 11608 | "IP information\n" |
| 11609 | "BGP information\n" |
| 11610 | "Address family\n" |
| 11611 | "Address Family modifier\n" |
| 11612 | "Address Family modifier\n" |
| 11613 | "Detailed information on TCP and BGP neighbor connections\n" |
| 11614 | "Neighbor to display information about\n" |
| 11615 | "Neighbor to display information about\n" |
| 11616 | "Display information received from a BGP neighbor\n" |
| 11617 | "Display the prefixlist filter\n") |
| 11618 | |
| 11619 | DEFSH (VTYSH_RIPD, rip_version_cmd_vtysh, |
| 11620 | "version <1-2>", |
| 11621 | "Set routing protocol version\n" |
| 11622 | "version\n") |
| 11623 | |
| 11624 | DEFSH (VTYSH_OSPFD, no_neighbor_poll_interval_cmd_vtysh, |
| 11625 | "no neighbor A.B.C.D poll-interval <1-65535>", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11626 | "Negate a command or set its defaults\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11627 | "Specify neighbor router\n" |
| 11628 | "Neighbor IP address\n" |
| 11629 | "Dead Neighbor Polling interval\n" |
| 11630 | "Seconds\n") |
| 11631 | |
| 11632 | DEFSH (VTYSH_RIPD, ip_rip_send_version_1_cmd_vtysh, |
| 11633 | "ip rip send version 1 2", |
| 11634 | "IP information\n" |
| 11635 | "Routing Information Protocol\n" |
| 11636 | "Advertisement transmission\n" |
| 11637 | "Version control\n" |
| 11638 | "RIP version 1\n" |
| 11639 | "RIP version 2\n") |
| 11640 | |
| 11641 | DEFSH (VTYSH_RIPD, no_debug_rip_zebra_cmd_vtysh, |
| 11642 | "no debug rip zebra", |
| 11643 | "Negate a command or set its defaults\n" |
| 11644 | "Debugging functions (see also 'undebug')\n" |
| 11645 | "RIP information\n" |
| 11646 | "RIP and ZEBRA communication\n") |
| 11647 | |
| 11648 | DEFSH (VTYSH_BGPD, set_aspath_prepend_cmd_vtysh, |
| 11649 | "set as-path prepend .<1-65535>", |
| 11650 | "Set values in destination routing protocol\n" |
| 11651 | "Prepend string for a BGP AS-path attribute\n" |
| 11652 | "Prepend to the as-path\n" |
| 11653 | "AS number\n") |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11654 | |
| 11655 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbor_received_routes_cmd_vtysh, |
| 11656 | "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X) received-routes", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11657 | "Show running system information\n" |
| 11658 | "BGP information\n" |
| 11659 | "Address family\n" |
| 11660 | "Detailed information on TCP and BGP neighbor connections\n" |
| 11661 | "Neighbor to display information about\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11662 | "Neighbor to display information about\n" |
| 11663 | "Display the received routes from neighbor\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11664 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11665 | DEFSH (VTYSH_RIPNGD, debug_ripng_packet_detail_cmd_vtysh, |
| 11666 | "debug ripng packet (recv|send) detail", |
| 11667 | "Debugging functions (see also 'undebug')\n" |
| 11668 | "RIPng configuration\n" |
| 11669 | "Debug option set for ripng packet\n" |
| 11670 | "Debug option set for receive packet\n" |
| 11671 | "Debug option set for send packet\n" |
| 11672 | "Debug option set detaied information\n") |
| 11673 | |
| 11674 | DEFSH (VTYSH_ZEBRA, ip_irdp_minadvertinterval_cmd_vtysh, |
| 11675 | "ip irdp minadvertinterval <3-1800>", |
| 11676 | "IP information\n" |
| 11677 | "ICMP Router discovery on this interface\n" |
| 11678 | "Set minimum time between advertisement\n" |
| 11679 | "Minimum advertisement interval in seconds\n") |
| 11680 | |
| 11681 | DEFSH (VTYSH_OSPF6D, no_passive_interface_cmd_vtysh, |
| 11682 | "no passive-interface IFNAME", |
| 11683 | "Negate a command or set its defaults\n" |
| 11684 | "Suppress routing updates on an interface\n" |
| 11685 | "Interface name(e.g. ep0)\n") |
| 11686 | |
| 11687 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD, no_match_interface_val_cmd_vtysh, |
| 11688 | "no match interface WORD", |
| 11689 | "Negate a command or set its defaults\n" |
| 11690 | "Match values from routing table\n" |
| 11691 | "Match first hop interface of route\n" |
| 11692 | "Interface name\n") |
| 11693 | |
| 11694 | DEFSH (VTYSH_BGPD, bgp_network_mask_natural_route_map_cmd_vtysh, |
| 11695 | "network A.B.C.D route-map WORD", |
| 11696 | "Specify a network to announce via BGP\n" |
| 11697 | "Network number\n" |
| 11698 | "Route-map to modify the attributes\n" |
| 11699 | "Name of the route map\n") |
| 11700 | |
| 11701 | DEFSH (VTYSH_BGPD, default_attr_localpref_cmd_vtysh, |
| 11702 | "default-attr local-pref NUMBER", |
| 11703 | "Set default local preference value\n" |
| 11704 | "Set default local preference value\n" |
| 11705 | "Value\n") |
| 11706 | |
| 11707 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged9_cmd_vtysh, |
| 11708 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged med next-hop as-path", |
| 11709 | "Specify neighbor router\n" |
| 11710 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11711 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 11712 | "Med attribute\n" |
| 11713 | "Nexthop attribute\n" |
| 11714 | "As-path attribute\n") |
| 11715 | |
| 11716 | DEFSH (VTYSH_BGPD, ip_extcommunity_list_name_standard2_cmd_vtysh, |
| 11717 | "ip extcommunity-list standard WORD (deny|permit)", |
| 11718 | "IP information\n" |
| 11719 | "Add a extended community list entry\n" |
| 11720 | "Specify standard extcommunity-list\n" |
| 11721 | "Extended Community list name\n" |
| 11722 | "Specify community to reject\n" |
| 11723 | "Specify community to accept\n") |
| 11724 | |
| 11725 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_as_soft_out_cmd_vtysh, |
| 11726 | "clear bgp ipv6 <1-65535> soft out", |
| 11727 | "Reset functions\n" |
| 11728 | "BGP information\n" |
| 11729 | "Address family\n" |
| 11730 | "Clear peers with the AS number\n" |
| 11731 | "Soft reconfig\n" |
| 11732 | "Soft reconfig outbound update\n") |
| 11733 | |
| 11734 | DEFSH (VTYSH_BGPD, no_ip_community_list_standard_cmd_vtysh, |
| 11735 | "no ip community-list <1-99> (deny|permit) .AA:NN", |
| 11736 | "Negate a command or set its defaults\n" |
| 11737 | "IP information\n" |
| 11738 | "Add a community list entry\n" |
| 11739 | "Community list number (standard)\n" |
| 11740 | "Specify community to reject\n" |
| 11741 | "Specify community to accept\n" |
| 11742 | "Community number in aa:nn format or internet|local-AS|no-advertise|no-export\n") |
| 11743 | |
| 11744 | DEFSH (VTYSH_BGPD, debug_bgp_update_direct_cmd_vtysh, |
| 11745 | "debug bgp updates (in|out)", |
| 11746 | "Debugging functions (see also 'undebug')\n" |
| 11747 | "BGP information\n" |
| 11748 | "BGP updates\n" |
| 11749 | "Inbound updates\n" |
| 11750 | "Outbound updates\n") |
| 11751 | |
| 11752 | DEFSH (VTYSH_OSPFD, show_debugging_ospf_cmd_vtysh, |
| 11753 | "show debugging ospf", |
| 11754 | "Show running system information\n" |
| 11755 | "Debugging functions (see also 'undebug')\n" |
| 11756 | "OSPF information\n") |
| 11757 | |
| 11758 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_cmd_vtysh, |
| 11759 | "default-information originate", |
| 11760 | "Control distribution of default information\n" |
| 11761 | "Distribute a default route\n") |
| 11762 | |
| 11763 | DEFSH (VTYSH_OSPF6D, ospf6_redistribute_cmd_vtysh, |
| 11764 | "redistribute (static|kernel|connected|ripng|bgp)", |
| 11765 | "Redistribute\n" |
| 11766 | "Static route\n" |
| 11767 | "Kernel route\n" |
| 11768 | "Connected route\n" |
| 11769 | "RIPng route\n" |
| 11770 | "BGP route\n" |
| 11771 | ) |
| 11772 | |
| 11773 | DEFSH (VTYSH_OSPFD, ip_ospf_transmit_delay_addr_cmd_vtysh, |
| 11774 | "ip ospf transmit-delay <1-65535> A.B.C.D", |
| 11775 | "IP Information\n" |
| 11776 | "OSPF interface commands\n" |
| 11777 | "Link state transmit delay\n" |
| 11778 | "Seconds\n" |
| 11779 | "Address of interface") |
| 11780 | |
| 11781 | DEFSH (VTYSH_BGPD, show_ipv6_mbgp_community2_exact_cmd_vtysh, |
| 11782 | "show ipv6 mbgp community (AA:NN|local-AS|no-advertise|no-export) (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 11783 | "Show running system information\n" |
| 11784 | "IPv6 information\n" |
| 11785 | "MBGP information\n" |
| 11786 | "Display routes matching the communities\n" |
| 11787 | "community number\n" |
| 11788 | "Do not send outside local AS (well-known community)\n" |
| 11789 | "Do not advertise to any peer (well-known community)\n" |
| 11790 | "Do not export to next AS (well-known community)\n" |
| 11791 | "community number\n" |
| 11792 | "Do not send outside local AS (well-known community)\n" |
| 11793 | "Do not advertise to any peer (well-known community)\n" |
| 11794 | "Do not export to next AS (well-known community)\n" |
| 11795 | "Exact match of the communities") |
| 11796 | |
| 11797 | DEFSH (VTYSH_OSPFD, area_export_list_cmd_vtysh, |
| 11798 | "area (A.B.C.D|<0-4294967295>) export-list NAME", |
| 11799 | "OSPF area parameters\n" |
| 11800 | "OSPF area ID in IP address format\n" |
| 11801 | "OSPF area ID as a decimal value\n" |
| 11802 | "Set the filter for networks announced to other areas\n" |
| 11803 | "Name of the access-list\n") |
| 11804 | |
| 11805 | DEFSH (VTYSH_RIPD|VTYSH_BGPD, show_ip_prefix_list_detail_name_cmd_vtysh, |
| 11806 | "show ip prefix-list detail WORD", |
| 11807 | "Show running system information\n" |
| 11808 | "IP information\n" |
| 11809 | "Build a prefix list\n" |
| 11810 | "Detail of prefix lists\n" |
| 11811 | "Name of a prefix list\n") |
| 11812 | |
| 11813 | DEFSH (VTYSH_BGPD, bgp_damp_set3_cmd_vtysh, |
| 11814 | "bgp dampening", |
| 11815 | "BGP Specific commands\n" |
| 11816 | "Enable route-flap dampening\n") |
| 11817 | |
| 11818 | DEFSH (VTYSH_OSPFD, debug_ospf_packet_send_recv_detail_cmd_vtysh, |
| 11819 | "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)", |
| 11820 | "Debugging functions\n" |
| 11821 | "OSPF information\n" |
| 11822 | "OSPF packets\n" |
| 11823 | "OSPF Hello\n" |
| 11824 | "OSPF Database Description\n" |
| 11825 | "OSPF Link State Request\n" |
| 11826 | "OSPF Link State Update\n" |
| 11827 | "OSPF Link State Acknowledgment\n" |
| 11828 | "OSPF all packets\n" |
| 11829 | "Packet sent\n" |
| 11830 | "Packet received\n" |
| 11831 | "Detail Information\n") |
| 11832 | |
| 11833 | DEFSH (VTYSH_BGPD, bgp_default_ipv4_unicast_cmd_vtysh, |
| 11834 | "bgp default ipv4-unicast", |
| 11835 | "BGP specific commands\n" |
| 11836 | "Configure BGP defaults\n" |
| 11837 | "Activate ipv4-unicast for a peer by default\n") |
| 11838 | |
| 11839 | DEFSH (VTYSH_BGPD, no_neighbor_prefix_list_cmd_vtysh, |
| 11840 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "prefix-list WORD (in|out)", |
| 11841 | "Negate a command or set its defaults\n" |
| 11842 | "Specify neighbor router\n" |
| 11843 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11844 | "Filter updates to/from this neighbor\n" |
| 11845 | "Name of a prefix list\n" |
| 11846 | "Filter incoming updates\n" |
| 11847 | "Filter outgoing updates\n") |
| 11848 | |
| 11849 | DEFSH (VTYSH_BGPD, no_bgp_redistribute_ipv4_rmap_metric_cmd_vtysh, |
| 11850 | "no redistribute (connected|kernel|ospf|rip|static) route-map WORD metric <0-4294967295>", |
| 11851 | "Negate a command or set its defaults\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11852 | "Redistribute information from another routing protocol\n" |
| 11853 | "Connected\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11854 | "Kernel routes\n" |
| 11855 | "Open Shurtest Path First (OSPF)\n" |
| 11856 | "Routing Information Protocol (RIP)\n" |
| 11857 | "Static routes\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11858 | "Route map reference\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11859 | "Pointer to route-map entries\n" |
| 11860 | "Metric for redistributed routes\n" |
| 11861 | "Default metric\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 11862 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11863 | DEFSH (VTYSH_BGPD, clear_ip_bgp_instance_all_ipv4_soft_cmd_vtysh, |
| 11864 | "clear ip bgp view WORD * ipv4 (unicast|multicast) soft", |
| 11865 | "Reset functions\n" |
| 11866 | "IP information\n" |
| 11867 | "BGP information\n" |
| 11868 | "BGP view\n" |
| 11869 | "view name\n" |
| 11870 | "Clear all peers\n" |
| 11871 | "Address family\n" |
| 11872 | "Address Family Modifier\n" |
| 11873 | "Address Family Modifier\n" |
| 11874 | "Soft reconfig\n") |
| 11875 | |
| 11876 | DEFSH (VTYSH_OSPFD, area_range_cost_cmd_vtysh, |
| 11877 | "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>", |
| 11878 | "OSPF area parameters\n" |
| 11879 | "OSPF area ID in IP address format\n" |
| 11880 | "OSPF area ID as a decimal value\n" |
| 11881 | "Summarize routes matching address/mask (border routers only)\n" |
| 11882 | "Area range prefix\n" |
| 11883 | "User specified metric for this range\n" |
| 11884 | "Advertised metric for this range\n") |
| 11885 | |
| 11886 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_cmd_vtysh, |
| 11887 | "clear ip bgp *", |
| 11888 | "Reset functions\n" |
| 11889 | "IP information\n" |
| 11890 | "BGP information\n" |
| 11891 | "Clear all peers\n") |
| 11892 | |
| 11893 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_cmd_vtysh, |
| 11894 | "clear ip bgp <1-65535>", |
| 11895 | "Reset functions\n" |
| 11896 | "IP information\n" |
| 11897 | "BGP information\n" |
| 11898 | "Clear peers with the AS number\n") |
| 11899 | |
| 11900 | DEFSH (VTYSH_BGPD, no_ip_community_list_expanded_cmd_vtysh, |
| 11901 | "no ip community-list <100-199> (deny|permit) .LINE", |
| 11902 | "Negate a command or set its defaults\n" |
| 11903 | "IP information\n" |
| 11904 | "Add a community list entry\n" |
| 11905 | "Community list number (expanded)\n" |
| 11906 | "Specify community to reject\n" |
| 11907 | "Specify community to accept\n" |
| 11908 | "An ordered list as a regular-expression\n") |
| 11909 | |
| 11910 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_tags_cmd_vtysh, |
| 11911 | "show ip bgp vpnv4 all tags", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 11912 | "Show running system information\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 11913 | "IP information\n" |
| 11914 | "BGP information\n" |
| 11915 | "Display VPNv4 NLRI specific information\n" |
| 11916 | "Display information about all VPNv4 NLRIs\n" |
| 11917 | "Display BGP tags for prefixes\n") |
| 11918 | |
| 11919 | DEFSH (VTYSH_BGPD, no_neighbor_attr_unchanged3_cmd_vtysh, |
| 11920 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop (as-path|med)", |
| 11921 | "Negate a command or set its defaults\n" |
| 11922 | "Specify neighbor router\n" |
| 11923 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 11924 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 11925 | "Nexthop attribute\n" |
| 11926 | "As-path attribute\n" |
| 11927 | "Med attribute\n") |
| 11928 | |
| 11929 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_prefix_cmd_vtysh, |
| 11930 | "show ip bgp vpnv4 all A.B.C.D/M", |
| 11931 | "Show running system information\n" |
| 11932 | "IP information\n" |
| 11933 | "BGP information\n" |
| 11934 | "Display VPNv4 NLRI specific information\n" |
| 11935 | "Display information about all VPNv4 NLRIs\n" |
| 11936 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n") |
| 11937 | |
| 11938 | DEFSH (VTYSH_BGPD, clear_bgp_as_in_prefix_filter_cmd_vtysh, |
| 11939 | "clear bgp <1-65535> in prefix-filter", |
| 11940 | "Reset functions\n" |
| 11941 | "BGP information\n" |
| 11942 | "Clear peers with the AS number\n" |
| 11943 | "Soft reconfig inbound update\n" |
| 11944 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 11945 | |
| 11946 | DEFSH (VTYSH_OSPFD, no_ip_ospf_authentication_cmd_vtysh, |
| 11947 | "no ip ospf authentication", |
| 11948 | "Negate a command or set its defaults\n" |
| 11949 | "IP Information\n" |
| 11950 | "OSPF interface commands\n" |
| 11951 | "Enable authentication on this interface\n") |
| 11952 | |
| 11953 | DEFSH (VTYSH_BGPD, match_origin_cmd_vtysh, |
| 11954 | "match origin (egp|igp|incomplete)", |
| 11955 | "Match values from routing table\n" |
| 11956 | "BGP origin code\n" |
| 11957 | "remote EGP\n" |
| 11958 | "local IGP\n" |
| 11959 | "unknown heritage\n") |
| 11960 | |
| 11961 | DEFSH (VTYSH_OSPFD, no_debug_ospf_ism_cmd_vtysh, |
| 11962 | "no debug ospf ism", |
| 11963 | "Negate a command or set its defaults\n" |
| 11964 | "Debugging functions (see also 'undebug')\n" |
| 11965 | "OSPF information\n" |
| 11966 | "OSPF Interface State Machine") |
| 11967 | |
| 11968 | DEFSH (VTYSH_BGPD, clear_ip_bgp_peer_vpnv4_in_cmd_vtysh, |
| 11969 | "clear ip bgp A.B.C.D vpnv4 unicast in", |
| 11970 | "Reset functions\n" |
| 11971 | "IP information\n" |
| 11972 | "BGP information\n" |
| 11973 | "BGP neighbor address to clear\n" |
| 11974 | "Address family\n" |
| 11975 | "Address Family Modifier\n" |
| 11976 | "Soft reconfig inbound update\n") |
| 11977 | |
| 11978 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_ipv4_in_prefix_filter_cmd_vtysh, |
| 11979 | "clear ip bgp * ipv4 (unicast|multicast) in prefix-filter", |
| 11980 | "Reset functions\n" |
| 11981 | "IP information\n" |
| 11982 | "BGP information\n" |
| 11983 | "Clear all peers\n" |
| 11984 | "Address family\n" |
| 11985 | "Address Family modifier\n" |
| 11986 | "Address Family modifier\n" |
| 11987 | "Soft reconfig inbound update\n" |
| 11988 | "Push out prefix-list ORF and do inbound soft reconfig\n") |
| 11989 | |
| 11990 | DEFSH (VTYSH_OSPFD, no_ospf_network_cmd_vtysh, |
| 11991 | "no ospf network", |
| 11992 | "Negate a command or set its defaults\n" |
| 11993 | "OSPF interface commands\n" |
| 11994 | "Network type\n") |
| 11995 | |
| 11996 | DEFSH (VTYSH_RIPNGD|VTYSH_BGPD, no_ipv6_prefix_list_le_ge_cmd_vtysh, |
| 11997 | "no ipv6 prefix-list WORD (deny|permit) X:X::X:X/M le <0-128> ge <0-128>", |
| 11998 | "Negate a command or set its defaults\n" |
| 11999 | "IPv6 information\n" |
| 12000 | "Build a prefix list\n" |
| 12001 | "Name of a prefix list\n" |
| 12002 | "Specify packets to reject\n" |
| 12003 | "Specify packets to forward\n" |
| 12004 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n" |
| 12005 | "Maximum prefix length to be matched\n" |
| 12006 | "Maximum prefix length\n" |
| 12007 | "Minimum prefix length to be matched\n" |
| 12008 | "Minimum prefix length\n") |
| 12009 | |
| 12010 | DEFSH (VTYSH_BGPD, no_neighbor_remote_as_cmd_vtysh, |
| 12011 | "no neighbor (A.B.C.D|X:X::X:X) " "remote-as <1-65535>", |
| 12012 | "Negate a command or set its defaults\n" |
| 12013 | "Specify neighbor router\n" |
| 12014 | "Neighbor address\nIPv6 address\n" |
| 12015 | "Specify a BGP neighbor\n" |
| 12016 | "AS number\n") |
| 12017 | |
| 12018 | DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_cmd_vtysh, |
| 12019 | "show ip ospf neighbor", |
| 12020 | "Show running system information\n" |
| 12021 | "IP information\n" |
| 12022 | "OSPF information\n" |
| 12023 | "Neighbor list\n") |
| 12024 | |
| 12025 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_soft_in_cmd_vtysh, |
| 12026 | "clear ip bgp <1-65535> soft in", |
| 12027 | "Reset functions\n" |
| 12028 | "IP information\n" |
| 12029 | "BGP information\n" |
| 12030 | "Clear peers with the AS number\n" |
| 12031 | "Soft reconfig\n" |
| 12032 | "Soft reconfig inbound update\n") |
| 12033 | |
| 12034 | DEFSH (VTYSH_BGPD, neighbor_capability_orf_prefix_cmd_vtysh, |
| 12035 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "capability orf prefix-list (both|send|receive)", |
| 12036 | "Specify neighbor router\n" |
| 12037 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 12038 | "Advertise capability to the peer\n" |
| 12039 | "Advertise ORF capability to the peer\n" |
| 12040 | "Advertise prefixlist ORF capability to this neighbor\n" |
| 12041 | "Capability to SEND and RECEIVE the ORF to/from this neighbor\n" |
| 12042 | "Capability to RECEIVE the ORF from this neighbor\n" |
| 12043 | "Capability to SEND the ORF to this neighbor\n") |
| 12044 | |
| 12045 | DEFSH (VTYSH_BGPD, clear_bgp_as_out_cmd_vtysh, |
| 12046 | "clear bgp <1-65535> out", |
| 12047 | "Reset functions\n" |
| 12048 | "BGP information\n" |
| 12049 | "Clear peers with the AS number\n" |
| 12050 | "Soft reconfig outbound update\n") |
| 12051 | |
| 12052 | DEFSH (VTYSH_OSPFD, show_ip_ospf_neighbor_detail_cmd_vtysh, |
| 12053 | "show ip ospf neighbor detail", |
| 12054 | "Show running system information\n" |
| 12055 | "IP information\n" |
| 12056 | "OSPF information\n" |
| 12057 | "Neighbor list\n" |
| 12058 | "detail of all neighbors\n") |
| 12059 | |
| 12060 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, match_ip_next_hop_prefix_list_cmd_vtysh, |
| 12061 | "match ip next-hop prefix-list WORD", |
| 12062 | "Match values from routing table\n" |
| 12063 | "IP information\n" |
| 12064 | "Match next-hop address of route\n" |
| 12065 | "Match entries of prefix-lists\n" |
| 12066 | "IP prefix-list name\n") |
| 12067 | |
| 12068 | DEFSH (VTYSH_OSPFD, no_ospf_distance_cmd_vtysh, |
| 12069 | "no distance <1-255>", |
| 12070 | "Negate a command or set its defaults\n" |
| 12071 | "Define an administrative distance\n" |
| 12072 | "OSPF Administrative distance\n") |
| 12073 | |
| 12074 | DEFSH (VTYSH_BGPD, no_neighbor_interface_cmd_vtysh, |
| 12075 | "no neighbor (A.B.C.D|X:X::X:X) " "interface WORD", |
| 12076 | "Negate a command or set its defaults\n" |
| 12077 | "Specify neighbor router\n" |
| 12078 | "Neighbor address\nIPv6 address\n" |
| 12079 | "Interface\n" |
| 12080 | "Interface name\n") |
| 12081 | |
| 12082 | DEFSH (VTYSH_OSPFD, ospf_default_information_originate_always_type_cmd_vtysh, |
| 12083 | "default-information originate always metric-type (1|2)", |
| 12084 | "Control distribution of default information\n" |
| 12085 | "Distribute a default route\n" |
| 12086 | "Always advertise default route\n" |
| 12087 | "OSPF metric type for default routes\n" |
| 12088 | "Set OSPF External Type 1 metrics\n" |
| 12089 | "Set OSPF External Type 2 metrics\n") |
| 12090 | |
| 12091 | DEFSH (VTYSH_RIPNGD, no_ripng_default_metric_val_cmd_vtysh, |
| 12092 | "no default-metric <1-16>", |
| 12093 | "Negate a command or set its defaults\n" |
| 12094 | "Set a metric of redistribute routes\n" |
| 12095 | "Default metric\n") |
| 12096 | |
| 12097 | DEFSH (VTYSH_BGPD, show_ip_bgp_route_map_cmd_vtysh, |
| 12098 | "show ip bgp route-map WORD", |
| 12099 | "Show running system information\n" |
| 12100 | "IP information\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 12101 | "BGP information\n" |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12102 | "Display routes matching the route-map\n" |
| 12103 | "A route-map to match on\n") |
| 12104 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12105 | DEFSH (VTYSH_BGPD, set_originator_id_cmd_vtysh, |
| 12106 | "set originator-id A.B.C.D", |
| 12107 | "Set values in destination routing protocol\n" |
| 12108 | "BGP originator ID attribute\n" |
| 12109 | "IP address of originator\n") |
| 12110 | |
| 12111 | DEFSH (VTYSH_RIPD, debug_rip_packet_direct_cmd_vtysh, |
| 12112 | "debug rip packet (recv|send)", |
| 12113 | "Debugging functions (see also 'undebug')\n" |
| 12114 | "RIP information\n" |
| 12115 | "RIP packet\n" |
| 12116 | "RIP receive packet\n" |
| 12117 | "RIP send packet\n") |
| 12118 | |
| 12119 | DEFSH (VTYSH_BGPD, no_aggregate_address_summary_only_cmd_vtysh, |
| 12120 | "no aggregate-address A.B.C.D/M summary-only", |
| 12121 | "Negate a command or set its defaults\n" |
| 12122 | "Configure BGP aggregate entries\n" |
| 12123 | "Aggregate prefix\n" |
| 12124 | "Filter more specific routes from updates\n") |
| 12125 | |
| 12126 | DEFSH (VTYSH_BGPD, show_ip_bgp_view_route_cmd_vtysh, |
| 12127 | "show ip bgp view WORD A.B.C.D", |
| 12128 | "Show running system information\n" |
| 12129 | "IP information\n" |
| 12130 | "BGP information\n" |
| 12131 | "BGP view\n" |
| 12132 | "BGP view name\n" |
| 12133 | "Network in the BGP routing table to display\n") |
| 12134 | |
| 12135 | DEFSH (VTYSH_RIPD, no_ip_rip_receive_version_num_cmd_vtysh, |
| 12136 | "no ip rip receive version (1|2)", |
| 12137 | "Negate a command or set its defaults\n" |
| 12138 | "IP information\n" |
| 12139 | "Routing Information Protocol\n" |
| 12140 | "Advertisement reception\n" |
| 12141 | "Version control\n" |
| 12142 | "Version 1\n" |
| 12143 | "Version 2\n") |
| 12144 | |
| 12145 | DEFSH (VTYSH_BGPD, clear_ip_bgp_all_vpnv4_soft_in_cmd_vtysh, |
| 12146 | "clear ip bgp * vpnv4 unicast soft in", |
| 12147 | "Reset functions\n" |
| 12148 | "IP information\n" |
| 12149 | "BGP information\n" |
| 12150 | "Clear all peers\n" |
| 12151 | "Address family\n" |
| 12152 | "Address Family Modifier\n" |
| 12153 | "Soft reconfig\n" |
| 12154 | "Soft reconfig inbound update\n") |
| 12155 | |
| 12156 | DEFSH (VTYSH_RIPD, accept_lifetime_duration_day_month_cmd_vtysh, |
| 12157 | "accept-lifetime HH:MM:SS <1-31> MONTH <1993-2035> duration <1-2147483646>", |
| 12158 | "Set accept lifetime of the key\n" |
| 12159 | "Time to start\n" |
| 12160 | "Day of th month to start\n" |
| 12161 | "Month of the year to start\n" |
| 12162 | "Year to start\n" |
| 12163 | "Duration of the key\n" |
| 12164 | "Duration seconds\n") |
| 12165 | |
| 12166 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_match_ip_address_cmd_vtysh, |
| 12167 | "no match ip address", |
| 12168 | "Negate a command or set its defaults\n" |
| 12169 | "Match values from routing table\n" |
| 12170 | "IP information\n" |
| 12171 | "Match address of route\n") |
| 12172 | |
| 12173 | DEFSH (VTYSH_ZEBRA, show_ipv6_route_protocol_cmd_vtysh, |
| 12174 | "show ipv6 route (bgp|connected|kernel|ospf6|ripng|static)", |
| 12175 | "Show running system information\n" |
| 12176 | "IP information\n" |
| 12177 | "IP routing table\n" |
| 12178 | "Border Gateway Protocol (BGP)\n" |
| 12179 | "Connected\n" |
| 12180 | "Kernel\n" |
| 12181 | "Open Shortest Path First (OSPFv3)\n" |
| 12182 | "Routing Information Protocol (RIPng)\n" |
| 12183 | "Static routes\n") |
| 12184 | |
| 12185 | DEFSH (VTYSH_BGPD, show_ip_bgp_community4_exact_cmd_vtysh, |
| 12186 | "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", |
| 12187 | "Show running system information\n" |
| 12188 | "IP information\n" |
| 12189 | "BGP information\n" |
| 12190 | "Display routes matching the communities\n" |
| 12191 | "community number\n" |
| 12192 | "Do not send outside local AS (well-known community)\n" |
| 12193 | "Do not advertise to any peer (well-known community)\n" |
| 12194 | "Do not export to next AS (well-known community)\n" |
| 12195 | "community number\n" |
| 12196 | "Do not send outside local AS (well-known community)\n" |
| 12197 | "Do not advertise to any peer (well-known community)\n" |
| 12198 | "Do not export to next AS (well-known community)\n" |
| 12199 | "community number\n" |
| 12200 | "Do not send outside local AS (well-known community)\n" |
| 12201 | "Do not advertise to any peer (well-known community)\n" |
| 12202 | "Do not export to next AS (well-known community)\n" |
| 12203 | "community number\n" |
| 12204 | "Do not send outside local AS (well-known community)\n" |
| 12205 | "Do not advertise to any peer (well-known community)\n" |
| 12206 | "Do not export to next AS (well-known community)\n" |
| 12207 | "Exact match of the communities") |
| 12208 | |
| 12209 | DEFSH (VTYSH_OSPFD, no_ip_ospf_priority_addr_cmd_vtysh, |
| 12210 | "no ip ospf priority A.B.C.D", |
| 12211 | "Negate a command or set its defaults\n" |
| 12212 | "IP Information\n" |
| 12213 | "OSPF interface commands\n" |
| 12214 | "Router priority\n" |
| 12215 | "Address of interface") |
| 12216 | |
| 12217 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_neighbors_peer_cmd_vtysh, |
| 12218 | "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X)", |
| 12219 | "Show running system information\n" |
| 12220 | "BGP information\n" |
| 12221 | "Address family\n" |
| 12222 | "Detailed information on TCP and BGP neighbor connections\n" |
| 12223 | "Neighbor to display information about\n" |
| 12224 | "Neighbor to display information about\n") |
| 12225 | |
| 12226 | DEFSH (VTYSH_OSPFD, auto_cost_reference_bandwidth_cmd_vtysh, |
| 12227 | "auto-cost reference-bandwidth <1-4294967>", |
| 12228 | "Calculate OSPF interface cost according to bandwidth\n" |
| 12229 | "Use reference bandwidth method to assign OSPF cost\n" |
| 12230 | "The reference bandwidth in terms of Mbits per second\n") |
| 12231 | |
| 12232 | DEFSH (VTYSH_BGPD, clear_bgp_ipv6_all_out_cmd_vtysh, |
| 12233 | "clear bgp ipv6 * out", |
| 12234 | "Reset functions\n" |
| 12235 | "BGP information\n" |
| 12236 | "Address family\n" |
| 12237 | "Clear all peers\n" |
| 12238 | "Soft reconfig outbound update\n") |
| 12239 | |
| 12240 | DEFSH (VTYSH_BGPD, aggregate_address_cmd_vtysh, |
| 12241 | "aggregate-address A.B.C.D/M", |
| 12242 | "Configure BGP aggregate entries\n" |
| 12243 | "Aggregate prefix\n") |
| 12244 | |
| 12245 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_exact_cmd_vtysh, |
| 12246 | "show ipv6 bgp community (AA:NN|local-AS|no-advertise|no-export) exact-match", |
| 12247 | "Show running system information\n" |
| 12248 | "IPv6 information\n" |
| 12249 | "BGP information\n" |
| 12250 | "Display routes matching the communities\n" |
| 12251 | "community number\n" |
| 12252 | "Do not send outside local AS (well-known community)\n" |
| 12253 | "Do not advertise to any peer (well-known community)\n" |
| 12254 | "Do not export to next AS (well-known community)\n" |
| 12255 | "Exact match of the communities") |
| 12256 | |
| 12257 | DEFSH (VTYSH_BGPD, no_set_ipv6_nexthop_local_cmd_vtysh, |
| 12258 | "no set ipv6 next-hop local", |
| 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 | |
| 12265 | DEFSH (VTYSH_BGPD, clear_bgp_instance_all_soft_in_cmd_vtysh, |
| 12266 | "clear bgp view WORD * soft in", |
| 12267 | "Reset functions\n" |
| 12268 | "BGP information\n" |
| 12269 | "BGP view\n" |
| 12270 | "view name\n" |
| 12271 | "Clear all peers\n" |
| 12272 | "Soft reconfig\n" |
| 12273 | "Soft reconfig inbound update\n") |
| 12274 | |
| 12275 | DEFSH (VTYSH_BGPD, show_ip_bgp_prefix_list_cmd_vtysh, |
| 12276 | "show ip bgp prefix-list WORD", |
| 12277 | "Show running system information\n" |
| 12278 | "IP information\n" |
| 12279 | "BGP information\n" |
| 12280 | "Display routes conforming to the prefix-list\n" |
| 12281 | "IP prefix-list name\n") |
| 12282 | |
| 12283 | DEFSH (VTYSH_BGPD, neighbor_set_peer_group_cmd_vtysh, |
| 12284 | "neighbor (A.B.C.D|X:X::X:X) " "peer-group WORD", |
| 12285 | "Specify neighbor router\n" |
| 12286 | "Neighbor address\nIPv6 address\n" |
| 12287 | "Member of the peer-group\n" |
| 12288 | "peer-group name\n") |
| 12289 | |
| 12290 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_any_cmd_vtysh, |
| 12291 | "no access-list (<1-99>|<1300-1999>) (deny|permit) any", |
| 12292 | "Negate a command or set its defaults\n" |
| 12293 | "Add an access list entry\n" |
| 12294 | "IP standard access list\n" |
| 12295 | "IP standard access list (expanded range)\n" |
| 12296 | "Specify packets to reject\n" |
| 12297 | "Specify packets to forward\n" |
| 12298 | "Any source host\n") |
| 12299 | |
| 12300 | DEFSH (VTYSH_BGPD, no_auto_summary_cmd_vtysh, |
| 12301 | "no auto-summary", |
| 12302 | "Negate a command or set its defaults\n" |
| 12303 | "Enable automatic network number summarization\n") |
| 12304 | |
| 12305 | DEFSH (VTYSH_OSPFD, no_ip_ospf_network_cmd_vtysh, |
| 12306 | "no ip ospf network", |
| 12307 | "Negate a command or set its defaults\n" |
| 12308 | "IP Information\n" |
| 12309 | "OSPF interface commands\n" |
| 12310 | "Network type\n") |
| 12311 | |
| 12312 | DEFSH (VTYSH_BGPD, neighbor_attr_unchanged3_cmd_vtysh, |
| 12313 | "neighbor (A.B.C.D|X:X::X:X|WORD) " "attribute-unchanged next-hop (as-path|med)", |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12314 | "Specify neighbor router\n" |
| 12315 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12316 | "BGP attribute is propagated unchanged to this neighbor\n" |
| 12317 | "Nexthop attribute\n" |
| 12318 | "As-path attribute\n" |
| 12319 | "Med attribute\n") |
| 12320 | |
| 12321 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_extended_mask_any_cmd_vtysh, |
| 12322 | "access-list (<100-199>|<2000-2699>) (deny|permit) ip A.B.C.D A.B.C.D any", |
| 12323 | "Add an access list entry\n" |
| 12324 | "IP extended access list\n" |
| 12325 | "IP extended access list (expanded range)\n" |
| 12326 | "Specify packets to reject\n" |
| 12327 | "Specify packets to forward\n" |
| 12328 | "Any Internet Protocol\n" |
| 12329 | "Source address\n" |
| 12330 | "Source wildcard bits\n" |
| 12331 | "Any destination host\n") |
| 12332 | |
| 12333 | DEFSH (VTYSH_BGPD, no_ipv6_aggregate_address_summary_only_cmd_vtysh, |
| 12334 | "no aggregate-address X:X::X:X/M summary-only", |
| 12335 | "Negate a command or set its defaults\n" |
| 12336 | "Configure BGP aggregate entries\n" |
| 12337 | "Aggregate prefix\n" |
| 12338 | "Filter more specific routes from updates\n") |
| 12339 | |
| 12340 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_standard_nomask_cmd_vtysh, |
| 12341 | "no access-list (<1-99>|<1300-1999>) (deny|permit) A.B.C.D", |
| 12342 | "Negate a command or set its defaults\n" |
| 12343 | "Add an access list entry\n" |
| 12344 | "IP standard access list\n" |
| 12345 | "IP standard access list (expanded range)\n" |
| 12346 | "Specify packets to reject\n" |
| 12347 | "Specify packets to forward\n" |
| 12348 | "Address to match\n") |
| 12349 | |
| 12350 | DEFSH (VTYSH_BGPD, show_bgp_ipv6_community_list_exact_cmd_vtysh, |
| 12351 | "show bgp ipv6 community-list WORD exact-match", |
| 12352 | "Show running system information\n" |
| 12353 | "BGP information\n" |
| 12354 | "Address family\n" |
| 12355 | "Display routes matching the community-list\n" |
| 12356 | "community-list name\n" |
| 12357 | "Exact match of the communities\n") |
| 12358 | |
| 12359 | DEFSH (VTYSH_BGPD, clear_ip_bgp_as_vpnv4_in_cmd_vtysh, |
| 12360 | "clear ip bgp <1-65535> vpnv4 unicast in", |
| 12361 | "Reset functions\n" |
| 12362 | "IP information\n" |
| 12363 | "BGP information\n" |
| 12364 | "Clear peers with the AS number\n" |
| 12365 | "Address family\n" |
| 12366 | "Address Family modifier\n" |
| 12367 | "Soft reconfig inbound update\n") |
| 12368 | |
| 12369 | DEFSH (VTYSH_OSPFD, ip_ospf_retransmit_interval_cmd_vtysh, |
| 12370 | "ip ospf retransmit-interval <3-65535>", |
| 12371 | "IP Information\n" |
| 12372 | "OSPF interface commands\n" |
| 12373 | "Time between retransmitting lost link state advertisements\n" |
| 12374 | "Seconds\n") |
| 12375 | |
| 12376 | DEFSH (VTYSH_ZEBRA, no_ip_route_cmd_vtysh, |
| 12377 | "no ip route A.B.C.D/M (A.B.C.D|INTERFACE|null0)", |
| 12378 | "Negate a command or set its defaults\n" |
| 12379 | "IP information\n" |
| 12380 | "Establish static routes\n" |
| 12381 | "IP destination prefix (e.g. 10.0.0.0/8)\n" |
| 12382 | "IP gateway address\n" |
| 12383 | "IP gateway interface name\n" |
| 12384 | "Null interface\n") |
| 12385 | |
| 12386 | DEFSH (VTYSH_BGPD, show_ip_bgp_vpnv4_all_cmd_vtysh, |
| 12387 | "show ip bgp vpnv4 all", |
| 12388 | "Show running system information\n" |
| 12389 | "IP information\n" |
| 12390 | "BGP information\n" |
| 12391 | "Display VPNv4 NLRI specific information\n" |
| 12392 | "Display information about all VPNv4 NLRIs\n") |
| 12393 | |
| 12394 | DEFSH (VTYSH_RIPD, no_key_string_cmd_vtysh, |
| 12395 | "no key-string [LINE]", |
| 12396 | "Negate a command or set its defaults\n" |
| 12397 | "Unset key string\n" |
| 12398 | "The key\n") |
| 12399 | |
| 12400 | DEFSH (VTYSH_BGPD, no_neighbor_soft_reconfiguration_cmd_vtysh, |
| 12401 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "soft-reconfiguration inbound", |
| 12402 | "Negate a command or set its defaults\n" |
| 12403 | "Specify neighbor router\n" |
| 12404 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 12405 | "Per neighbor soft reconfiguration\n" |
| 12406 | "Allow inbound soft reconfiguration for this neighbor\n") |
| 12407 | |
| 12408 | DEFSH (VTYSH_BGPD, no_debug_bgp_events_cmd_vtysh, |
| 12409 | "no debug bgp events", |
| 12410 | "Negate a command or set its defaults\n" |
| 12411 | "Debugging functions (see also 'undebug')\n" |
| 12412 | "BGP information\n" |
| 12413 | "BGP events\n") |
| 12414 | |
| 12415 | DEFSH (VTYSH_BGPD, no_neighbor_cmd_vtysh, |
| 12416 | "no neighbor (A.B.C.D|X:X::X:X|WORD) ", |
| 12417 | "Negate a command or set its defaults\n" |
| 12418 | "Specify neighbor router\n" |
| 12419 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n") |
| 12420 | |
| 12421 | DEFSH (VTYSH_ZEBRA, ip_irdp_holdtime_cmd_vtysh, |
| 12422 | "ip irdp holdtime <0-9000>", |
| 12423 | "IP information\n" |
| 12424 | "ICMP Router discovery on this interface\n" |
| 12425 | "Set holdtime value\n" |
| 12426 | "Holdtime value in seconds. Default is 1800 seconds\n") |
| 12427 | |
| 12428 | DEFSH (VTYSH_BGPD, match_community_cmd_vtysh, |
| 12429 | "match community (<1-99>|<100-199>|WORD)", |
| 12430 | "Match values from routing table\n" |
| 12431 | "Match BGP community list\n" |
| 12432 | "Community-list number (standard)\n" |
| 12433 | "Community-list number (expanded)\n" |
| 12434 | "Community-list name\n") |
| 12435 | |
| 12436 | DEFSH (VTYSH_BGPD, show_ip_extcommunity_list_cmd_vtysh, |
| 12437 | "show ip extcommunity-list", |
| 12438 | "Show running system information\n" |
| 12439 | "IP information\n" |
| 12440 | "List extended-community list\n") |
| 12441 | |
| 12442 | DEFSH (VTYSH_OSPF6D, no_interface_area_cmd_vtysh, |
| 12443 | "no interface IFNAME area A.B.C.D", |
| 12444 | "Negate a command or set its defaults\n" |
| 12445 | "Disable routing on an IPv6 interface\n" |
| 12446 | "Interface name(e.g. ep0)\n") |
| 12447 | |
| 12448 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, no_access_list_extended_host_mask_cmd_vtysh, |
| 12449 | "no access-list (<100-199>|<2000-2699>) (deny|permit) ip host A.B.C.D A.B.C.D A.B.C.D", |
| 12450 | "Negate a command or set its defaults\n" |
| 12451 | "Add an access list entry\n" |
| 12452 | "IP extended access list\n" |
| 12453 | "IP extended access list (expanded range)\n" |
| 12454 | "Specify packets to reject\n" |
| 12455 | "Specify packets to forward\n" |
| 12456 | "Any Internet Protocol\n" |
| 12457 | "A single source host\n" |
| 12458 | "Source address\n" |
| 12459 | "Destination address\n" |
| 12460 | "Destination Wildcard bits\n") |
| 12461 | |
| 12462 | DEFSH (VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD, access_list_cmd_vtysh, |
| 12463 | "access-list WORD (deny|permit) A.B.C.D/M", |
| 12464 | "Add an access list entry\n" |
| 12465 | "IP zebra access-list name\n" |
| 12466 | "Specify packets to reject\n" |
| 12467 | "Specify packets to forward\n" |
| 12468 | "Prefix to match. e.g. 10.0.0.0/8\n") |
| 12469 | |
| 12470 | DEFSH (VTYSH_OSPFD, no_area_range_cmd_vtysh, |
| 12471 | "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M", |
| 12472 | "Negate a command or set its defaults\n" |
| 12473 | "OSPF area parameters\n" |
| 12474 | "OSPF area ID in IP address format\n" |
| 12475 | "OSPF area ID as a decimal value\n" |
| 12476 | "Summarize routes matching address/mask (border routers only)\n" |
| 12477 | "Area range prefix\n") |
| 12478 | |
| 12479 | DEFSH (VTYSH_BGPD, old_ipv6_bgp_network_cmd_vtysh, |
| 12480 | "ipv6 bgp network X:X::X:X/M", |
| 12481 | "IPv6 information\n" |
| 12482 | "BGP information\n" |
| 12483 | "Specify a network to announce via BGP\n" |
| 12484 | "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n") |
| 12485 | |
| 12486 | DEFSH (VTYSH_BGPD, no_neighbor_filter_list_cmd_vtysh, |
| 12487 | "no neighbor (A.B.C.D|X:X::X:X|WORD) " "filter-list WORD (in|out)", |
| 12488 | "Negate a command or set its defaults\n" |
| 12489 | "Specify neighbor router\n" |
| 12490 | "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 12491 | "Establish BGP filters\n" |
| 12492 | "AS path access-list name\n" |
| 12493 | "Filter incoming routes\n" |
| 12494 | "Filter outgoing routes\n") |
| 12495 | |
| 12496 | DEFSH (VTYSH_BGPD, show_ipv6_bgp_community_list_exact_cmd_vtysh, |
| 12497 | "show ipv6 bgp community-list WORD exact-match", |
| 12498 | "Show running system information\n" |
| 12499 | "IPv6 information\n" |
| 12500 | "BGP information\n" |
| 12501 | "Display routes matching the community-list\n" |
| 12502 | "community-list name\n" |
| 12503 | "Exact match of the communities\n") |
| 12504 | |
| 12505 | DEFSH (VTYSH_RIPNGD, ripng_redistribute_connected_routemap_cmd_vtysh, |
| 12506 | "redistribute connected route-map WORD", |
| 12507 | "Redistribute information from another routing protocol\n" |
| 12508 | "Connected\n" |
| 12509 | "Route map reference\n" |
| 12510 | "Pointer to route-map entries\n") |
| 12511 | |
| 12512 | DEFSH (VTYSH_BGPD, undebug_bgp_events_cmd_vtysh, |
| 12513 | "undebug bgp events", |
| 12514 | "Disable debugging functions (see also 'debug')\n" |
| 12515 | "BGP information\n" |
| 12516 | "BGP events\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 12517 | |
| 12518 | void |
| 12519 | vtysh_init_cmd () |
| 12520 | { |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12521 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_tags_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12522 | install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_detail_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12523 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbors_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12524 | install_element (VIEW_NODE, &show_ip_bgp_neighbors_cmd_vtysh); |
| 12525 | install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_all_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12526 | install_element (VIEW_NODE, &show_bgp_instance_summary_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12527 | install_element (ENABLE_NODE, &clear_bgp_peer_in_prefix_filter_cmd_vtysh); |
| 12528 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged1_cmd_vtysh); |
| 12529 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged9_cmd_vtysh); |
| 12530 | install_element (CONFIG_NODE, &no_debug_ospf_nsm_sub_cmd_vtysh); |
| 12531 | install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_addr_cmd_vtysh); |
| 12532 | install_element (BGP_NODE, &no_default_attr_localpref_cmd_vtysh); |
| 12533 | install_element (RIPNG_NODE, &ripng_redistribute_static_metric_routemap_cmd_vtysh); |
| 12534 | install_element (OSPF_NODE, &no_network_area_cmd_vtysh); |
| 12535 | install_element (BGP_NODE, &no_neighbor_version_cmd_vtysh); |
| 12536 | install_element (VIEW_NODE, &show_ip_prefix_list_name_seq_cmd_vtysh); |
| 12537 | install_element (BGP_IPV4_NODE, &no_neighbor_route_server_client_cmd_vtysh); |
| 12538 | install_element (CONFIG_NODE, &no_ip_community_list_name_all_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12539 | install_element (OSPF_NODE, &ospf_default_information_originate_always_type_routemap_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12540 | install_element (OSPF6_NODE, &interface_area_passive_cmd_vtysh); |
| 12541 | install_element (ENABLE_NODE, &debug_ospf_packet_all_cmd_vtysh); |
| 12542 | install_element (VIEW_NODE, &show_ipv6_bgp_cmd_vtysh); |
| 12543 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_route_map_cmd_vtysh); |
| 12544 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_cmd_vtysh); |
| 12545 | install_element (OSPF_NODE, &ospf_distance_ospf_external_cmd_vtysh); |
| 12546 | install_element (CONFIG_NODE, &no_debug_ospf_ism_sub_cmd_vtysh); |
| 12547 | install_element (CONFIG_NODE, &access_list_standard_nomask_cmd_vtysh); |
| 12548 | install_element (RMAP_NODE, &match_aspath_cmd_vtysh); |
| 12549 | install_element (ENABLE_NODE, &clear_bgp_peer_in_cmd_vtysh); |
| 12550 | install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_out_cmd_vtysh); |
| 12551 | install_element (ENABLE_NODE, &debug_ospf_nsm_cmd_vtysh); |
| 12552 | install_element (RMAP_NODE, &no_set_metric_type_cmd_vtysh); |
| 12553 | install_element (RIPNG_NODE, &ripng_redistribute_connected_metric_cmd_vtysh); |
| 12554 | install_element (CONFIG_NODE, &no_ip_community_list_cmd_vtysh); |
| 12555 | install_element (BGP_IPV6_NODE, &no_ipv6_bgp_network_cmd_vtysh); |
| 12556 | install_element (ENABLE_NODE, &no_debug_ospf_lsa_cmd_vtysh); |
| 12557 | install_element (BGP_IPV4M_NODE, &neighbor_activate_cmd_vtysh); |
| 12558 | install_element (BGP_IPV4M_NODE, &no_neighbor_route_server_client_cmd_vtysh); |
| 12559 | install_element (VIEW_NODE, &show_ipv6_ospf6_area_route_cmd_vtysh); |
| 12560 | install_element (CONFIG_NODE, &access_list_extended_any_host_cmd_vtysh); |
| 12561 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_in_cmd_vtysh); |
| 12562 | install_element (ENABLE_NODE, &clear_bgp_external_soft_in_cmd_vtysh); |
| 12563 | install_element (VIEW_NODE, &show_bgp_ipv6_prefix_list_cmd_vtysh); |
| 12564 | install_element (OSPF_NODE, &ospf_default_information_originate_cmd_vtysh); |
| 12565 | install_element (INTERFACE_NODE, &no_ip_rip_authentication_string_cmd_vtysh); |
| 12566 | install_element (CONFIG_NODE, &ipv6_prefix_list_seq_ge_le_cmd_vtysh); |
| 12567 | install_element (VIEW_NODE, &show_ip_ospf_neighbor_int_detail_cmd_vtysh); |
| 12568 | install_element (RMAP_NODE, &set_vpnv4_nexthop_cmd_vtysh); |
| 12569 | install_element (BGP_IPV6_NODE, &no_ipv6_aggregate_address_summary_only_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12570 | install_element (VIEW_NODE, &show_ipv6_bgp_route_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12571 | install_element (ENABLE_NODE, &show_ip_bgp_prefix_longer_cmd_vtysh); |
| 12572 | install_element (RMAP_NODE, &no_set_ecommunity_rt_val_cmd_vtysh); |
| 12573 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_in_cmd_vtysh); |
| 12574 | install_element (VIEW_NODE, &ipv6_mbgp_neighbor_advertised_route_cmd_vtysh); |
| 12575 | install_element (BGP_NODE, &neighbor_timers_cmd_vtysh); |
| 12576 | install_element (VIEW_NODE, &show_ipv6_ospf6_neighborlist_cmd_vtysh); |
| 12577 | install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_cmd_vtysh); |
| 12578 | install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_cmd_vtysh); |
| 12579 | install_element (CONFIG_NODE, &dump_bgp_routes_interval_cmd_vtysh); |
| 12580 | install_element (OSPF6_NODE, &interface_area_cmd_vtysh); |
| 12581 | install_element (OSPF_NODE, &ospf_redistribute_source_metric_type_routemap_cmd_vtysh); |
| 12582 | install_element (ENABLE_NODE, &clear_bgp_ipv6_all_out_cmd_vtysh); |
| 12583 | install_element (ENABLE_NODE, &show_bgp_prefix_longer_cmd_vtysh); |
| 12584 | install_element (ENABLE_NODE, &show_zebra_cmd_vtysh); |
| 12585 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged9_cmd_vtysh); |
| 12586 | install_element (ENABLE_NODE, &show_bgp_ipv6_regexp_cmd_vtysh); |
| 12587 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_cmd_vtysh); |
| 12588 | install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_all_cmd_vtysh); |
| 12589 | install_element (RMAP_NODE, &no_match_origin_cmd_vtysh); |
| 12590 | install_element (ENABLE_NODE, &show_ipv6_route_prefix_cmd_vtysh); |
| 12591 | install_element (VIEW_NODE, &show_ip_ospf_route_cmd_vtysh); |
| 12592 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_cmd_vtysh); |
| 12593 | install_element (RMAP_NODE, &match_ip_address_cmd_vtysh); |
| 12594 | install_element (VIEW_NODE, &show_ip_bgp_paths_cmd_vtysh); |
| 12595 | install_element (ZEBRA_NODE, &no_redistribute_ospf6_cmd_vtysh); |
| 12596 | install_element (RMAP_NODE, &no_match_ecommunity_cmd_vtysh); |
| 12597 | install_element (BGP_NODE, &neighbor_timers_connect_cmd_vtysh); |
| 12598 | install_element (RMAP_NODE, &no_set_aspath_prepend_val_cmd_vtysh); |
| 12599 | install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_longer_cmd_vtysh); |
| 12600 | install_element (BGP_IPV4_NODE, &aggregate_address_as_set_summary_cmd_vtysh); |
| 12601 | install_element (RIPNG_NODE, &ripng_redistribute_static_cmd_vtysh); |
| 12602 | install_element (CONFIG_NODE, &no_ip_route_mask_distance_cmd_vtysh); |
| 12603 | install_element (INTERFACE_NODE, &no_ip_rip_send_version_cmd_vtysh); |
| 12604 | install_element (RIPNG_NODE, &default_information_originate_cmd_vtysh); |
| 12605 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged2_cmd_vtysh); |
| 12606 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_filter_list_cmd_vtysh); |
| 12607 | install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_cmd_vtysh); |
| 12608 | install_element (RMAP_NODE, &set_ipv6_nexthop_local_cmd_vtysh); |
| 12609 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_cmd_vtysh); |
| 12610 | install_element (VIEW_NODE, &show_ip_ospf_database_type_id_self_cmd_vtysh); |
| 12611 | install_element (CONFIG_NODE, &no_ip_as_path_cmd_vtysh); |
| 12612 | install_element (ENABLE_NODE, &debug_bgp_normal_cmd_vtysh); |
| 12613 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community4_cmd_vtysh); |
| 12614 | install_element (BGP_IPV4M_NODE, &no_bgp_network_cmd_vtysh); |
| 12615 | install_element (BGP_IPV4_NODE, &neighbor_unsuppress_map_cmd_vtysh); |
| 12616 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_out_cmd_vtysh); |
| 12617 | install_element (ENABLE_NODE, &show_ip_prefix_list_name_cmd_vtysh); |
| 12618 | install_element (VIEW_NODE, &show_ipv6_ospf6_neighbor_cmd_vtysh); |
| 12619 | install_element (ENABLE_NODE, &show_ip_bgp_flap_cidr_only_cmd_vtysh); |
| 12620 | install_element (RMAP_NODE, &match_metric_cmd_vtysh); |
| 12621 | install_element (BGP_IPV4_NODE, &neighbor_prefix_list_cmd_vtysh); |
| 12622 | install_element (BGP_IPV4_NODE, &neighbor_allowas_in_cmd_vtysh); |
| 12623 | install_element (ENABLE_NODE, &show_ip_route_cmd_vtysh); |
| 12624 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_in_cmd_vtysh); |
| 12625 | install_element (ENABLE_NODE, &show_ipv6_route_cmd_vtysh); |
| 12626 | install_element (CONFIG_NODE, &no_ip_route_cmd_vtysh); |
| 12627 | install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_addr_cmd_vtysh); |
| 12628 | install_element (RMAP_NODE, &no_set_ip_nexthop_val_cmd_vtysh); |
| 12629 | install_element (ENABLE_NODE, &show_ipv6_bgp_community3_cmd_vtysh); |
| 12630 | install_element (ENABLE_NODE, &show_ip_bgp_attr_info_cmd_vtysh); |
| 12631 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_route_cmd_vtysh); |
| 12632 | install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_in_cmd_vtysh); |
| 12633 | install_element (KEYCHAIN_NODE, &no_key_cmd_vtysh); |
| 12634 | install_element (VIEW_NODE, &show_ip_bgp_view_prefix_cmd_vtysh); |
| 12635 | install_element (ENABLE_NODE, &show_bgp_ipv6_cmd_vtysh); |
| 12636 | install_element (CONFIG_NODE, &access_list_extended_host_mask_cmd_vtysh); |
| 12637 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_cmd_vtysh); |
| 12638 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community_exact_cmd_vtysh); |
| 12639 | install_element (ENABLE_NODE, &show_bgp_community2_cmd_vtysh); |
| 12640 | install_element (ENABLE_NODE, &clear_bgp_all_cmd_vtysh); |
| 12641 | install_element (ENABLE_NODE, &no_debug_ripng_zebra_cmd_vtysh); |
| 12642 | install_element (BGP_IPV4_NODE, &neighbor_route_map_cmd_vtysh); |
| 12643 | install_element (ENABLE_NODE, &show_ip_bgp_cmd_vtysh); |
| 12644 | install_element (BGP_NODE, &neighbor_attr_unchanged1_cmd_vtysh); |
| 12645 | install_element (VIEW_NODE, &show_ip_ospf_cmd_vtysh); |
| 12646 | install_element (ENABLE_NODE, &show_ip_prefix_list_name_seq_cmd_vtysh); |
| 12647 | install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_cmd_vtysh); |
| 12648 | install_element (ENABLE_NODE, &clear_bgp_peer_group_in_cmd_vtysh); |
| 12649 | install_element (INTERFACE_NODE, &no_ospf_cost_cmd_vtysh); |
| 12650 | install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_longer_cmd_vtysh); |
| 12651 | install_element (RMAP_NODE, &no_set_atomic_aggregate_cmd_vtysh); |
| 12652 | install_element (VIEW_NODE, &show_bgp_community_list_exact_cmd_vtysh); |
| 12653 | install_element (ENABLE_NODE, &clear_ip_bgp_as_out_cmd_vtysh); |
| 12654 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged_cmd_vtysh); |
| 12655 | install_element (BGP_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh); |
| 12656 | install_element (CONFIG_NODE, &router_zebra_cmd_vtysh); |
| 12657 | install_element (RMAP_NODE, &match_ipv6_next_hop_cmd_vtysh); |
| 12658 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh); |
| 12659 | install_element (CONFIG_NODE, &no_router_zebra_cmd_vtysh); |
| 12660 | install_element (ENABLE_NODE, &show_bgp_summary_cmd_vtysh); |
| 12661 | install_element (OSPF_NODE, &neighbor_poll_interval_cmd_vtysh); |
| 12662 | install_element (ENABLE_NODE, &clear_bgp_all_soft_cmd_vtysh); |
| 12663 | install_element (ENABLE_NODE, &clear_ip_prefix_list_cmd_vtysh); |
| 12664 | install_element (ENABLE_NODE, &show_bgp_ipv6_community_exact_cmd_vtysh); |
| 12665 | install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_cmd_vtysh); |
| 12666 | install_element (INTERFACE_NODE, &linkdetect_cmd_vtysh); |
| 12667 | install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_in_prefix_filter_cmd_vtysh); |
| 12668 | install_element (ENABLE_NODE, &show_bgp_ipv6_community4_cmd_vtysh); |
| 12669 | install_element (ENABLE_NODE, &debug_zebra_packet_cmd_vtysh); |
| 12670 | install_element (BGP_NODE, &neighbor_local_as_cmd_vtysh); |
| 12671 | install_element (ENABLE_NODE, &clear_bgp_ipv6_as_cmd_vtysh); |
| 12672 | install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_cmd_vtysh); |
| 12673 | install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_list_cmd_vtysh); |
| 12674 | install_element (VIEW_NODE, &show_ip_prefix_list_detail_name_cmd_vtysh); |
| 12675 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh); |
| 12676 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged4_cmd_vtysh); |
| 12677 | install_element (ENABLE_NODE, &clear_bgp_instance_all_cmd_vtysh); |
| 12678 | install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh); |
| 12679 | install_element (BGP_NODE, &neighbor_send_community_cmd_vtysh); |
| 12680 | install_element (RMAP_NODE, &no_set_vpnv4_nexthop_val_cmd_vtysh); |
| 12681 | install_element (BGP_NODE, &bgp_damp_set3_cmd_vtysh); |
| 12682 | install_element (BGP_IPV6_NODE, &ipv6_aggregate_address_cmd_vtysh); |
| 12683 | install_element (BGP_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh); |
| 12684 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh); |
| 12685 | install_element (CONFIG_NODE, &access_list_extended_cmd_vtysh); |
| 12686 | install_element (BGP_IPV4M_NODE, &neighbor_soft_reconfiguration_cmd_vtysh); |
| 12687 | install_element (VIEW_NODE, &show_bgp_community_all_cmd_vtysh); |
| 12688 | install_element (VIEW_NODE, &show_ipv6_ospf6_cmd_vtysh); |
| 12689 | install_element (INTERFACE_NODE, &ospf_retransmit_interval_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12690 | install_element (ENABLE_NODE, &show_ip_ospf_neighbor_id_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12691 | install_element (BGP_NODE, &bgp_default_ipv4_unicast_cmd_vtysh); |
| 12692 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged_cmd_vtysh); |
| 12693 | install_element (ENABLE_NODE, &debug_ripng_packet_cmd_vtysh); |
| 12694 | install_element (ENABLE_NODE, &show_ip_prefix_list_cmd_vtysh); |
| 12695 | install_element (BGP_IPV4_NODE, &neighbor_maximum_prefix_cmd_vtysh); |
| 12696 | install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_longer_cmd_vtysh); |
| 12697 | install_element (BGP_NODE, &no_bgp_always_compare_med_cmd_vtysh); |
| 12698 | install_element (ENABLE_NODE, &show_bgp_ipv6_filter_list_cmd_vtysh); |
| 12699 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_list_cmd_vtysh); |
| 12700 | install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh); |
| 12701 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_summary_cmd_vtysh); |
| 12702 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_out_cmd_vtysh); |
| 12703 | install_element (VIEW_NODE, &show_ip_bgp_community3_exact_cmd_vtysh); |
| 12704 | install_element (CONFIG_NODE, &no_bgp_multiple_instance_cmd_vtysh); |
| 12705 | install_element (ENABLE_NODE, &show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh); |
| 12706 | install_element (ENABLE_NODE, &clear_ip_bgp_external_cmd_vtysh); |
| 12707 | install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_out_cmd_vtysh); |
| 12708 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_out_cmd_vtysh); |
| 12709 | install_element (BGP_NODE, &neighbor_attr_unchanged2_cmd_vtysh); |
| 12710 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged3_cmd_vtysh); |
| 12711 | install_element (VIEW_NODE, &show_ipv6_bgp_community2_cmd_vtysh); |
| 12712 | install_element (BGP_NODE, &no_neighbor_default_originate_cmd_vtysh); |
| 12713 | install_element (INTERFACE_NODE, &no_linkdetect_cmd_vtysh); |
| 12714 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged3_cmd_vtysh); |
| 12715 | install_element (BGP_IPV6_NODE, &no_neighbor_route_server_client_cmd_vtysh); |
| 12716 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_in_cmd_vtysh); |
| 12717 | install_element (ENABLE_NODE, &undebug_bgp_events_cmd_vtysh); |
| 12718 | install_element (OSPF_NODE, &ospf_default_information_originate_type_cmd_vtysh); |
| 12719 | install_element (CONFIG_NODE, &no_ipv6_access_list_all_cmd_vtysh); |
| 12720 | install_element (OSPF_NODE, &no_ospf_distance_ospf_cmd_vtysh); |
| 12721 | install_element (BGP_IPV4_NODE, &bgp_network_mask_cmd_vtysh); |
| 12722 | install_element (RMAP_NODE, &match_community_cmd_vtysh); |
| 12723 | install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_routemap_cmd_vtysh); |
| 12724 | install_element (CONFIG_NODE, &bgp_config_type_cmd_vtysh); |
| 12725 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged3_cmd_vtysh); |
| 12726 | install_element (ENABLE_NODE, &clear_bgp_ipv6_all_in_cmd_vtysh); |
| 12727 | install_element (BGP_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh); |
| 12728 | install_element (CONFIG_NODE, &no_ip_extcommunity_list_all_cmd_vtysh); |
| 12729 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh); |
| 12730 | install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh); |
| 12731 | install_element (CONFIG_NODE, &no_access_list_remark_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 12732 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_cidr_only_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 12733 | install_element (BGP_NODE, &no_bgp_confederation_peers_cmd_vtysh); |
| 12734 | install_element (BGP_NODE, &no_neighbor_distribute_list_cmd_vtysh); |
| 12735 | install_element (VIEW_NODE, &show_ip_bgp_cidr_only_cmd_vtysh); |
| 12736 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_summary_name_cmd_vtysh); |
| 12737 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_ge_cmd_vtysh); |
| 12738 | install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_intra_cmd_vtysh); |
| 12739 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community2_exact_cmd_vtysh); |
| 12740 | install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh); |
| 12741 | install_element (BGP_IPV4_NODE, &no_bgp_network_mask_cmd_vtysh); |
| 12742 | install_element (VIEW_NODE, &show_ip_bgp_cmd_vtysh); |
| 12743 | install_element (ENABLE_NODE, &clear_bgp_all_in_prefix_filter_cmd_vtysh); |
| 12744 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_in_prefix_filter_cmd_vtysh); |
| 12745 | install_element (BGP_NODE, &neighbor_attr_unchanged_cmd_vtysh); |
| 12746 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_flapping_cmd_vtysh); |
| 12747 | install_element (BGP_NODE, &bgp_bestpath_med3_cmd_vtysh); |
| 12748 | install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_val_cmd_vtysh); |
| 12749 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh); |
| 12750 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_in_prefix_filter_cmd_vtysh); |
| 12751 | install_element (BGP_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh); |
| 12752 | install_element (OSPF_NODE, &no_area_range_advertise_cmd_vtysh); |
| 12753 | install_element (ENABLE_NODE, &show_ip_bgp_neighbor_advertised_route_cmd_vtysh); |
| 12754 | install_element (OSPF_NODE, &area_authentication_cmd_vtysh); |
| 12755 | install_element (OSPF_NODE, &ospf_redistribute_source_type_cmd_vtysh); |
| 12756 | install_element (RIPNG_NODE, &no_ripng_timers_cmd_vtysh); |
| 12757 | install_element (INTERFACE_NODE, &ip_address_cmd_vtysh); |
| 12758 | install_element (ENABLE_NODE, &no_debug_ospf_event_cmd_vtysh); |
| 12759 | install_element (ENABLE_NODE, &clear_bgp_ipv6_external_cmd_vtysh); |
| 12760 | install_element (CONFIG_NODE, &debug_zebra_packet_detail_cmd_vtysh); |
| 12761 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged7_cmd_vtysh); |
| 12762 | install_element (RMAP_NODE, &match_ip_address_prefix_list_cmd_vtysh); |
| 12763 | install_element (ENABLE_NODE, &show_ip_bgp_community_cmd_vtysh); |
| 12764 | install_element (ENABLE_NODE, &show_ip_bgp_community2_cmd_vtysh); |
| 12765 | install_element (VIEW_NODE, &show_ip_ospf_database_type_cmd_vtysh); |
| 12766 | install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_cmd_vtysh); |
| 12767 | install_element (CONFIG_NODE, &no_access_list_standard_nomask_cmd_vtysh); |
| 12768 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_cmd_vtysh); |
| 12769 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community_list_exact_cmd_vtysh); |
| 12770 | install_element (BGP_IPV4_NODE, &no_neighbor_route_map_cmd_vtysh); |
| 12771 | install_element (RMAP_NODE, &no_match_community_val_cmd_vtysh); |
| 12772 | install_element (VIEW_NODE, &show_ipv6_ospf6_topology_cmd_vtysh); |
| 12773 | install_element (ENABLE_NODE, &show_ipv6_ospf6_area_spf_tree_cmd_vtysh); |
| 12774 | install_element (OSPF6_NODE, &interface_area_plist_passive_cmd_vtysh); |
| 12775 | install_element (BGP_NODE, &default_attr_localpref_cmd_vtysh); |
| 12776 | install_element (VIEW_NODE, &show_bgp_ipv6_community3_cmd_vtysh); |
| 12777 | install_element (BGP_IPV4M_NODE, &aggregate_address_as_set_summary_cmd_vtysh); |
| 12778 | install_element (OSPF_NODE, &neighbor_cmd_vtysh); |
| 12779 | install_element (BGP_NODE, &neighbor_attr_unchanged4_cmd_vtysh); |
| 12780 | install_element (BGP_NODE, &bgp_distance_cmd_vtysh); |
| 12781 | install_element (VIEW_NODE, &show_ip_bgp_dampened_paths_cmd_vtysh); |
| 12782 | install_element (CONFIG_NODE, &no_ipv6_route_ifname_cmd_vtysh); |
| 12783 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh); |
| 12784 | install_element (CONFIG_NODE, &no_ip_prefix_list_seq_cmd_vtysh); |
| 12785 | install_element (BGP_IPV4_NODE, &bgp_network_cmd_vtysh); |
| 12786 | install_element (BGP_NODE, &no_bgp_network_mask_cmd_vtysh); |
| 12787 | install_element (ENABLE_NODE, &no_debug_bgp_fsm_cmd_vtysh); |
| 12788 | install_element (OSPF_NODE, &no_passive_interface_cmd_vtysh); |
| 12789 | install_element (ENABLE_NODE, &debug_ospf_lsa_sub_cmd_vtysh); |
| 12790 | install_element (INTERFACE_NODE, &ip_irdp_maxadvertinterval_cmd_vtysh); |
| 12791 | install_element (INTERFACE_NODE, &no_ip_rip_receive_version_num_cmd_vtysh); |
| 12792 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_all_cmd_vtysh); |
| 12793 | install_element (CONFIG_NODE, &ipv6_route_ifname_cmd_vtysh); |
| 12794 | install_element (KEYCHAIN_NODE, &no_key_chain_cmd_vtysh); |
| 12795 | install_element (VIEW_NODE, &show_ipv6_bgp_filter_list_cmd_vtysh); |
| 12796 | install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_cmd_vtysh); |
| 12797 | install_element (VIEW_NODE, &show_bgp_ipv6_prefix_cmd_vtysh); |
| 12798 | install_element (VIEW_NODE, &show_ip_bgp_view_cmd_vtysh); |
| 12799 | install_element (VIEW_NODE, &show_bgp_community4_cmd_vtysh); |
| 12800 | install_element (VIEW_NODE, &show_ip_bgp_community_all_cmd_vtysh); |
| 12801 | install_element (BGP_NODE, &bgp_client_to_client_reflection_cmd_vtysh); |
| 12802 | install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_router_lsid_cmd_vtysh); |
| 12803 | install_element (OSPF_NODE, &ospf_redistribute_source_type_routemap_cmd_vtysh); |
| 12804 | install_element (BGP_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh); |
| 12805 | install_element (INTERFACE_NODE, &no_ipv6_address_cmd_vtysh); |
| 12806 | install_element (BGP_IPV4_NODE, &no_neighbor_allowas_in_cmd_vtysh); |
| 12807 | install_element (CONFIG_NODE, &ip_prefix_list_seq_ge_cmd_vtysh); |
| 12808 | install_element (INTERFACE_NODE, &ipv6_ospf6_retransmitinterval_cmd_vtysh); |
| 12809 | install_element (ENABLE_NODE, &show_ipv6_bgp_community_cmd_vtysh); |
| 12810 | install_element (ENABLE_NODE, &show_ip_extcommunity_list_arg_cmd_vtysh); |
| 12811 | install_element (BGP_IPV4M_NODE, &neighbor_filter_list_cmd_vtysh); |
| 12812 | install_element (BGP_IPV4M_NODE, &no_neighbor_route_reflector_client_cmd_vtysh); |
| 12813 | install_element (BGP_NODE, &bgp_cluster_id_cmd_vtysh); |
| 12814 | install_element (CONFIG_NODE, &no_debug_bgp_normal_cmd_vtysh); |
| 12815 | install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_routes_cmd_vtysh); |
| 12816 | install_element (VIEW_NODE, &show_ipv6_prefix_list_name_cmd_vtysh); |
| 12817 | install_element (VIEW_NODE, &show_ip_bgp_neighbors_peer_cmd_vtysh); |
| 12818 | install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_out_cmd_vtysh); |
| 12819 | install_element (BGP_NODE, &bgp_confederation_peers_cmd_vtysh); |
| 12820 | install_element (RMAP_NODE, &set_local_pref_cmd_vtysh); |
| 12821 | install_element (BGP_NODE, &neighbor_peer_group_cmd_vtysh); |
| 12822 | install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_addr_cmd_vtysh); |
| 12823 | install_element (ENABLE_NODE, &debug_bgp_update_direct_cmd_vtysh); |
| 12824 | install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_cmd_vtysh); |
| 12825 | install_element (ENABLE_NODE, &undebug_bgp_fsm_cmd_vtysh); |
| 12826 | install_element (VIEW_NODE, &show_bgp_neighbors_peer_cmd_vtysh); |
| 12827 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh); |
| 12828 | install_element (OSPF_NODE, &no_area_import_list_cmd_vtysh); |
| 12829 | install_element (ENABLE_NODE, &clear_bgp_peer_soft_out_cmd_vtysh); |
| 12830 | install_element (BGP_NODE, &neighbor_default_originate_rmap_cmd_vtysh); |
| 12831 | install_element (BGP_NODE, &no_neighbor_ebgp_multihop_cmd_vtysh); |
| 12832 | install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_ifname_cmd_vtysh); |
| 12833 | install_element (BGP_NODE, &aggregate_address_mask_cmd_vtysh); |
| 12834 | install_element (BGP_NODE, &old_no_ipv6_aggregate_address_summary_only_cmd_vtysh); |
| 12835 | install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd_vtysh); |
| 12836 | install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_cmd_vtysh); |
| 12837 | install_element (RMAP_NODE, &no_rmap_onmatch_next_cmd_vtysh); |
| 12838 | install_element (BGP_NODE, &no_neighbor_local_as_cmd_vtysh); |
| 12839 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_detail_name_cmd_vtysh); |
| 12840 | install_element (ENABLE_NODE, &show_ip_bgp_instance_neighbors_cmd_vtysh); |
| 12841 | install_element (OSPF_NODE, &ospf_redistribute_source_metric_cmd_vtysh); |
| 12842 | install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_cmd_vtysh); |
| 12843 | install_element (RMAP_NODE, &set_community_none_cmd_vtysh); |
| 12844 | install_element (ENABLE_NODE, &no_debug_bgp_update_cmd_vtysh); |
| 12845 | install_element (BGP_NODE, &no_bgp_network_route_map_cmd_vtysh); |
| 12846 | install_element (VIEW_NODE, &show_ipv6_ospf6_database_cmd_vtysh); |
| 12847 | install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_in_cmd_vtysh); |
| 12848 | install_element (BGP_NODE, &no_bgp_default_local_preference_cmd_vtysh); |
| 12849 | install_element (ENABLE_NODE, &no_debug_zebra_packet_cmd_vtysh); |
| 12850 | install_element (BGP_NODE, &neighbor_transparent_nexthop_cmd_vtysh); |
| 12851 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_out_cmd_vtysh); |
| 12852 | install_element (INTERFACE_NODE, &ip_ospf_dead_interval_addr_cmd_vtysh); |
| 12853 | install_element (BGP_IPV6_NODE, &neighbor_distribute_list_cmd_vtysh); |
| 12854 | install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_all_cmd_vtysh); |
| 12855 | install_element (BGP_IPV4M_NODE, &neighbor_nexthop_self_cmd_vtysh); |
| 12856 | install_element (RIPNG_NODE, &ripng_passive_interface_cmd_vtysh); |
| 12857 | install_element (CONFIG_NODE, &access_list_extended_any_mask_cmd_vtysh); |
| 12858 | install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh); |
| 12859 | install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_in_cmd_vtysh); |
| 12860 | install_element (CONFIG_NODE, &ip_extcommunity_list_name_expanded_cmd_vtysh); |
| 12861 | install_element (BGP_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh); |
| 12862 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_le_ge_cmd_vtysh); |
| 12863 | install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_router_cmd_vtysh); |
| 12864 | install_element (CONFIG_NODE, &no_access_list_all_cmd_vtysh); |
| 12865 | install_element (ENABLE_NODE, &clear_bgp_external_out_cmd_vtysh); |
| 12866 | install_element (ENABLE_NODE, &clear_bgp_ipv6_as_in_cmd_vtysh); |
| 12867 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_infinite_day_month_cmd_vtysh); |
| 12868 | install_element (BGP_IPV4_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh); |
| 12869 | install_element (CONFIG_NODE, &debug_ripng_zebra_cmd_vtysh); |
| 12870 | install_element (CONFIG_NODE, &no_debug_bgp_events_cmd_vtysh); |
| 12871 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_cmd_vtysh); |
| 12872 | install_element (ENABLE_NODE, &no_debug_ripng_packet_cmd_vtysh); |
| 12873 | install_element (BGP_NODE, &bgp_network_cmd_vtysh); |
| 12874 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_in_cmd_vtysh); |
| 12875 | install_element (BGP_NODE, &neighbor_distribute_list_cmd_vtysh); |
| 12876 | install_element (BGP_IPV4_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh); |
| 12877 | install_element (OSPF_NODE, &no_area_vlink_param4_cmd_vtysh); |
| 12878 | install_element (BGP_NODE, &neighbor_nexthop_self_cmd_vtysh); |
| 12879 | install_element (VIEW_NODE, &show_bgp_prefix_list_cmd_vtysh); |
| 12880 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh); |
| 12881 | install_element (BGP_VPNV4_NODE, &neighbor_maximum_prefix_cmd_vtysh); |
| 12882 | install_element (INTERFACE_NODE, &no_ip_rip_authentication_string2_cmd_vtysh); |
| 12883 | install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_out_cmd_vtysh); |
| 12884 | install_element (ENABLE_NODE, &no_debug_bgp_keepalive_cmd_vtysh); |
| 12885 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh); |
| 12886 | install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_cmd_vtysh); |
| 12887 | install_element (VIEW_NODE, &show_ipv6_ospf6_interface_cmd_vtysh); |
| 12888 | install_element (INTERFACE_NODE, &no_ip_ospf_network_cmd_vtysh); |
| 12889 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged_cmd_vtysh); |
| 12890 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_in_prefix_filter_cmd_vtysh); |
| 12891 | install_element (BGP_NODE, &bgp_damp_set_cmd_vtysh); |
| 12892 | install_element (VIEW_NODE, &show_ipv6_prefix_list_summary_cmd_vtysh); |
| 12893 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh); |
| 12894 | install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_cmd_vtysh); |
| 12895 | install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_advertised_route_cmd_vtysh); |
| 12896 | install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_in_cmd_vtysh); |
| 12897 | install_element (VIEW_NODE, &show_ip_prefix_list_prefix_longer_cmd_vtysh); |
| 12898 | install_element (CONFIG_NODE, &debug_bgp_events_cmd_vtysh); |
| 12899 | install_element (BGP_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh); |
| 12900 | install_element (RMAP_NODE, &set_origin_cmd_vtysh); |
| 12901 | install_element (ENABLE_NODE, &show_debug_ospf6_cmd_vtysh); |
| 12902 | install_element (ENABLE_NODE, &clear_bgp_ipv6_external_out_cmd_vtysh); |
| 12903 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged_cmd_vtysh); |
| 12904 | install_element (VIEW_NODE, &show_bgp_ipv6_community2_cmd_vtysh); |
| 12905 | install_element (CONFIG_NODE, &ipv6_prefix_list_ge_le_cmd_vtysh); |
| 12906 | install_element (RMAP_NODE, &set_community_delete_cmd_vtysh); |
| 12907 | install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_cmd_vtysh); |
| 12908 | install_element (ENABLE_NODE, &clear_ip_bgp_as_in_cmd_vtysh); |
| 12909 | install_element (BGP_NODE, &neighbor_capability_dynamic_cmd_vtysh); |
| 12910 | install_element (INTERFACE_NODE, &no_ip_rip_send_version_num_cmd_vtysh); |
| 12911 | install_element (ENABLE_NODE, &debug_rip_zebra_cmd_vtysh); |
| 12912 | install_element (BGP_NODE, &no_bgp_fast_external_failover_cmd_vtysh); |
| 12913 | install_element (KEYCHAIN_KEY_NODE, &no_key_chain_cmd_vtysh); |
| 12914 | install_element (BGP_IPV4_NODE, &no_neighbor_default_originate_cmd_vtysh); |
| 12915 | install_element (BGP_VPNV4_NODE, &neighbor_prefix_list_cmd_vtysh); |
| 12916 | install_element (ENABLE_NODE, &show_ipv6_mbgp_filter_list_cmd_vtysh); |
| 12917 | install_element (VIEW_NODE, &show_ip_bgp_neighbor_received_routes_cmd_vtysh); |
| 12918 | install_element (BGP_NODE, &aggregate_address_mask_as_set_cmd_vtysh); |
| 12919 | install_element (CONFIG_NODE, &ip_prefix_list_description_cmd_vtysh); |
| 12920 | install_element (CONFIG_NODE, &no_ipv6_route_pref_cmd_vtysh); |
| 12921 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh); |
| 12922 | install_element (BGP_NODE, &neighbor_weight_cmd_vtysh); |
| 12923 | install_element (OSPF_NODE, &ospf_default_information_originate_type_metric_routemap_cmd_vtysh); |
| 12924 | install_element (ENABLE_NODE, &show_ip_bgp_flap_statistics_cmd_vtysh); |
| 12925 | install_element (VIEW_NODE, &show_ip_bgp_flap_statistics_cmd_vtysh); |
| 12926 | install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_routemap_cmd_vtysh); |
| 12927 | install_element (VIEW_NODE, &show_bgp_ipv6_community2_exact_cmd_vtysh); |
| 12928 | install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_out_cmd_vtysh); |
| 12929 | install_element (VIEW_NODE, &show_ipv6_route_ospf6_external_cmd_vtysh); |
| 12930 | install_element (INTERFACE_NODE, &no_ospf_authentication_key_cmd_vtysh); |
| 12931 | install_element (ENABLE_NODE, &clear_ip_bgp_as_cmd_vtysh); |
| 12932 | install_element (INTERFACE_NODE, &ip_ospf_authentication_cmd_vtysh); |
| 12933 | install_element (ZEBRA_NODE, &no_ripng_redistribute_ripng_cmd_vtysh); |
| 12934 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_exact_cmd_vtysh); |
| 12935 | install_element (BGP_NODE, &no_neighbor_unsuppress_map_cmd_vtysh); |
| 12936 | install_element (VIEW_NODE, &show_ip_ospf_neighbor_cmd_vtysh); |
| 12937 | install_element (ENABLE_NODE, &show_ipv6_bgp_summary_cmd_vtysh); |
| 12938 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh); |
| 12939 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged3_cmd_vtysh); |
| 12940 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_in_cmd_vtysh); |
| 12941 | install_element (ENABLE_NODE, &debug_rip_packet_direct_cmd_vtysh); |
| 12942 | install_element (INTERFACE_NODE, &ip_ospf_priority_addr_cmd_vtysh); |
| 12943 | install_element (BGP_NODE, &no_neighbor_update_source_cmd_vtysh); |
| 12944 | install_element (BGP_NODE, &neighbor_attr_unchanged9_cmd_vtysh); |
| 12945 | install_element (ENABLE_NODE, &debug_zebra_packet_direct_cmd_vtysh); |
| 12946 | install_element (BGP_IPV4_NODE, &no_neighbor_nexthop_self_cmd_vtysh); |
| 12947 | install_element (BGP_IPV6_NODE, &neighbor_set_peer_group_cmd_vtysh); |
| 12948 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh); |
| 12949 | install_element (ENABLE_NODE, &show_debug_ospf6_damp_cmd_vtysh); |
| 12950 | install_element (BGP_NODE, &no_bgp_confederation_identifier_cmd_vtysh); |
| 12951 | install_element (ENABLE_NODE, &show_ipv6_route_protocol_cmd_vtysh); |
| 12952 | install_element (ENABLE_NODE, &show_ip_bgp_route_cmd_vtysh); |
| 12953 | install_element (VIEW_NODE, &show_ip_bgp_view_route_cmd_vtysh); |
| 12954 | install_element (CONFIG_NODE, &access_list_extended_host_any_cmd_vtysh); |
| 12955 | install_element (RIP_NODE, &rip_default_information_originate_cmd_vtysh); |
| 12956 | install_element (BGP_NODE, &bgp_distance_source_access_list_cmd_vtysh); |
| 12957 | install_element (ENABLE_NODE, &show_bgp_community_list_exact_cmd_vtysh); |
| 12958 | install_element (OSPF6_NODE, &ospf6_redistribute_cmd_vtysh); |
| 12959 | install_element (BGP_IPV4_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh); |
| 12960 | install_element (RMAP_NODE, &match_ipv6_address_cmd_vtysh); |
| 12961 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community_list_cmd_vtysh); |
| 12962 | install_element (INTERFACE_NODE, &ip_irdp_holdtime_cmd_vtysh); |
| 12963 | install_element (VIEW_NODE, &show_ipv6_bgp_community3_cmd_vtysh); |
| 12964 | install_element (VIEW_NODE, &show_bgp_neighbor_routes_cmd_vtysh); |
| 12965 | install_element (ENABLE_NODE, &show_ip_bgp_route_map_cmd_vtysh); |
| 12966 | install_element (CONFIG_NODE, &no_ipv6_route_ifname_pref_cmd_vtysh); |
| 12967 | install_element (ENABLE_NODE, &show_debugging_bgp_cmd_vtysh); |
| 12968 | install_element (RMAP_NODE, &no_match_ipv6_next_hop_cmd_vtysh); |
| 12969 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd_vtysh); |
| 12970 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_prefix_cmd_vtysh); |
| 12971 | install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_cmd_vtysh); |
| 12972 | install_element (ENABLE_NODE, &no_debug_ospf_nsm_cmd_vtysh); |
| 12973 | install_element (ENABLE_NODE, &show_ip_prefix_list_prefix_first_match_cmd_vtysh); |
| 12974 | install_element (CONFIG_NODE, &ip_community_list_standard_cmd_vtysh); |
| 12975 | install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_out_cmd_vtysh); |
| 12976 | install_element (VIEW_NODE, &show_bgp_community2_exact_cmd_vtysh); |
| 12977 | install_element (RMAP_NODE, &no_match_ip_next_hop_val_cmd_vtysh); |
| 12978 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh); |
| 12979 | install_element (BGP_IPV4_NODE, &no_neighbor_send_community_cmd_vtysh); |
| 12980 | install_element (BGP_NODE, &no_bgp_network_mask_natural_cmd_vtysh); |
| 12981 | install_element (ENABLE_NODE, &clear_bgp_ipv6_as_in_prefix_filter_cmd_vtysh); |
| 12982 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_cmd_vtysh); |
| 12983 | install_element (ENABLE_NODE, &show_ipv6_bgp_community_list_exact_cmd_vtysh); |
| 12984 | install_element (BGP_IPV4M_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh); |
| 12985 | install_element (ENABLE_NODE, &no_debug_ospf_zebra_sub_cmd_vtysh); |
| 12986 | install_element (BGP_IPV4M_NODE, &bgp_network_route_map_cmd_vtysh); |
| 12987 | install_element (ENABLE_NODE, &clear_bgp_peer_soft_in_cmd_vtysh); |
| 12988 | install_element (CONFIG_NODE, &ip_community_list_cmd_vtysh); |
| 12989 | install_element (RMAP_NODE, &no_set_ip_nexthop_cmd_vtysh); |
| 12990 | install_element (RIP_NODE, &no_rip_version_val_cmd_vtysh); |
| 12991 | install_element (OSPF_NODE, &network_area_cmd_vtysh); |
| 12992 | install_element (ENABLE_NODE, &clear_bgp_ipv6_external_in_cmd_vtysh); |
| 12993 | install_element (VIEW_NODE, &show_ip_bgp_flap_regexp_cmd_vtysh); |
| 12994 | install_element (RMAP_NODE, &no_match_ip_next_hop_cmd_vtysh); |
| 12995 | install_element (BGP_NODE, &bgp_damp_set2_cmd_vtysh); |
| 12996 | install_element (ENABLE_NODE, &show_ipv6_ospf6_area_spf_node_cmd_vtysh); |
| 12997 | install_element (VIEW_NODE, &ipv6_bgp_neighbor_received_routes_cmd_vtysh); |
| 12998 | install_element (ENABLE_NODE, &show_bgp_ipv6_community_list_cmd_vtysh); |
| 12999 | install_element (ENABLE_NODE, &show_ip_route_prefix_cmd_vtysh); |
| 13000 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh); |
| 13001 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_first_match_cmd_vtysh); |
| 13002 | install_element (BGP_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh); |
| 13003 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_summary_cmd_vtysh); |
| 13004 | install_element (CONFIG_NODE, &ipv6_prefix_list_le_cmd_vtysh); |
| 13005 | install_element (OSPF_NODE, &area_vlink_param3_cmd_vtysh); |
| 13006 | install_element (CONFIG_NODE, &debug_rip_zebra_cmd_vtysh); |
| 13007 | install_element (BGP_NODE, &bgp_enforce_first_as_cmd_vtysh); |
| 13008 | install_element (OSPF_NODE, &no_area_export_list_cmd_vtysh); |
| 13009 | install_element (ENABLE_NODE, &show_ip_bgp_community_list_cmd_vtysh); |
| 13010 | install_element (BGP_NODE, &no_bgp_router_id_val_cmd_vtysh); |
| 13011 | install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_routes_cmd_vtysh); |
| 13012 | install_element (BGP_IPV4_NODE, &aggregate_address_mask_cmd_vtysh); |
| 13013 | install_element (ENABLE_NODE, &no_debug_bgp_filter_cmd_vtysh); |
| 13014 | install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_cmd_vtysh); |
| 13015 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_prefix_cmd_vtysh); |
| 13016 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh); |
| 13017 | install_element (VIEW_NODE, &show_ip_route_prefix_cmd_vtysh); |
| 13018 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh); |
| 13019 | install_element (RMAP_NODE, &ospf6_routemap_set_metric_type_cmd_vtysh); |
| 13020 | install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh); |
| 13021 | install_element (ENABLE_NODE, &undebug_bgp_update_cmd_vtysh); |
| 13022 | install_element (BGP_IPV4M_NODE, &aggregate_address_mask_summary_only_cmd_vtysh); |
| 13023 | install_element (VIEW_NODE, &show_ipv6_ripng_cmd_vtysh); |
| 13024 | install_element (RMAP_NODE, &no_match_ip_address_prefix_list_cmd_vtysh); |
| 13025 | install_element (BGP_NODE, &no_neighbor_capability_route_refresh_cmd_vtysh); |
| 13026 | install_element (BGP_VPNV4_NODE, &neighbor_route_reflector_client_cmd_vtysh); |
| 13027 | install_element (ENABLE_NODE, &show_ip_route_addr_cmd_vtysh); |
| 13028 | install_element (BGP_NODE, &bgp_network_import_check_cmd_vtysh); |
| 13029 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_infinite_month_day_cmd_vtysh); |
| 13030 | install_element (ENABLE_NODE, &clear_bgp_external_soft_cmd_vtysh); |
| 13031 | install_element (ENABLE_NODE, &clear_ipv6_prefix_list_name_cmd_vtysh); |
| 13032 | install_element (ENABLE_NODE, &clear_bgp_ipv6_all_in_prefix_filter_cmd_vtysh); |
| 13033 | install_element (BGP_IPV6_NODE, &neighbor_nexthop_self_cmd_vtysh); |
| 13034 | install_element (VIEW_NODE, &show_ipv6_mbgp_community_all_cmd_vtysh); |
| 13035 | install_element (OSPF_NODE, &ospf_redistribute_source_type_metric_cmd_vtysh); |
| 13036 | install_element (BGP_NODE, &neighbor_ebgp_multihop_ttl_cmd_vtysh); |
| 13037 | install_element (OSPF_NODE, &ospf_redistribute_source_routemap_cmd_vtysh); |
| 13038 | install_element (CONFIG_NODE, &no_ip_prefix_list_seq_le_cmd_vtysh); |
| 13039 | install_element (RIP_NODE, &rip_network_cmd_vtysh); |
| 13040 | install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_metric_cmd_vtysh); |
| 13041 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh); |
| 13042 | install_element (VIEW_NODE, &show_ip_bgp_community2_exact_cmd_vtysh); |
| 13043 | install_element (BGP_NODE, &neighbor_attr_unchanged3_cmd_vtysh); |
| 13044 | install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_cmd_vtysh); |
| 13045 | install_element (OSPF_NODE, &no_ospf_router_id_cmd_vtysh); |
| 13046 | install_element (RIP_NODE, &no_rip_default_metric_val_cmd_vtysh); |
| 13047 | install_element (RIPNG_NODE, &ripng_route_cmd_vtysh); |
| 13048 | install_element (BGP_IPV4M_NODE, &bgp_network_mask_route_map_cmd_vtysh); |
| 13049 | install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_router_cmd_vtysh); |
| 13050 | install_element (RIP_NODE, &no_rip_distance_source_access_list_cmd_vtysh); |
| 13051 | install_element (OSPF_NODE, &ospf_redistribute_source_metric_type_cmd_vtysh); |
| 13052 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_in_cmd_vtysh); |
| 13053 | install_element (VIEW_NODE, &show_ipv6_mbgp_community2_cmd_vtysh); |
| 13054 | install_element (BGP_IPV4_NODE, &aggregate_address_as_set_cmd_vtysh); |
| 13055 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged_cmd_vtysh); |
| 13056 | install_element (OSPF6_NODE, &interface_area_plist_cmd_vtysh); |
| 13057 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbor_received_routes_cmd_vtysh); |
| 13058 | install_element (ENABLE_NODE, &show_ip_bgp_neighbor_damp_cmd_vtysh); |
| 13059 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_prefix_cmd_vtysh); |
| 13060 | install_element (ENABLE_NODE, &show_ip_community_list_arg_cmd_vtysh); |
| 13061 | install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_routes_cmd_vtysh); |
| 13062 | install_element (ENABLE_NODE, &clear_ipv6_prefix_list_cmd_vtysh); |
| 13063 | install_element (ENABLE_NODE, &clear_bgp_ipv6_as_out_cmd_vtysh); |
| 13064 | install_element (BGP_VPNV4_NODE, &no_neighbor_filter_list_cmd_vtysh); |
| 13065 | install_element (INTERFACE_NODE, &no_ospf_hello_interval_cmd_vtysh); |
| 13066 | install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_in_cmd_vtysh); |
| 13067 | install_element (CONFIG_NODE, &ipv6_route_cmd_vtysh); |
| 13068 | install_element (ENABLE_NODE, &clear_ip_bgp_dampening_prefix_cmd_vtysh); |
| 13069 | install_element (RIP_NODE, &rip_timers_cmd_vtysh); |
| 13070 | install_element (CONFIG_NODE, &no_dump_bgp_routes_cmd_vtysh); |
| 13071 | install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_cmd_vtysh); |
| 13072 | install_element (CONFIG_NODE, &debug_bgp_update_cmd_vtysh); |
| 13073 | install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_out_cmd_vtysh); |
| 13074 | install_element (OSPF6_NODE, &no_ospf6_redistribute_cmd_vtysh); |
| 13075 | install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_expanded_cmd_vtysh); |
| 13076 | install_element (ENABLE_NODE, &show_ip_ospf_database_type_adv_router_cmd_vtysh); |
| 13077 | install_element (ENABLE_NODE, &show_ip_bgp_community3_exact_cmd_vtysh); |
| 13078 | install_element (VIEW_NODE, &show_ipv6_prefix_list_name_seq_cmd_vtysh); |
| 13079 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged7_cmd_vtysh); |
| 13080 | install_element (BGP_NODE, &neighbor_activate_cmd_vtysh); |
| 13081 | install_element (CONFIG_NODE, &no_access_list_standard_host_cmd_vtysh); |
| 13082 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh); |
| 13083 | install_element (VIEW_NODE, &show_ip_bgp_neighbor_flap_cmd_vtysh); |
| 13084 | install_element (INTERFACE_NODE, &ipv6_ospf6_advertise_force_prefix_cmd_vtysh); |
| 13085 | install_element (INTERFACE_NODE, &ip_ospf_cost_addr_cmd_vtysh); |
| 13086 | install_element (VIEW_NODE, &show_ipv6_bgp_community3_exact_cmd_vtysh); |
| 13087 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh); |
| 13088 | install_element (INTERFACE_NODE, &multicast_cmd_vtysh); |
| 13089 | install_element (VIEW_NODE, &show_bgp_ipv6_prefix_longer_cmd_vtysh); |
| 13090 | install_element (BGP_NODE, &bgp_deterministic_med_cmd_vtysh); |
| 13091 | install_element (ENABLE_NODE, &show_ip_ospf_neighbor_all_cmd_vtysh); |
| 13092 | install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_metric_rmap_cmd_vtysh); |
| 13093 | install_element (INTERFACE_NODE, &no_ospf_message_digest_key_cmd_vtysh); |
| 13094 | install_element (OSPF_NODE, &ospf_redistribute_source_type_metric_routemap_cmd_vtysh); |
| 13095 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_cmd_vtysh); |
| 13096 | install_element (RMAP_NODE, &set_community_cmd_vtysh); |
| 13097 | install_element (VIEW_NODE, &show_ipv6_ospf6_interface_ifname_cmd_vtysh); |
| 13098 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged5_cmd_vtysh); |
| 13099 | install_element (CONFIG_NODE, &debug_ospf_nsm_sub_cmd_vtysh); |
| 13100 | install_element (ENABLE_NODE, &show_ip_ospf_interface_cmd_vtysh); |
| 13101 | install_element (ENABLE_NODE, &show_ip_bgp_community4_exact_cmd_vtysh); |
| 13102 | install_element (BGP_NODE, &no_bgp_default_local_preference_val_cmd_vtysh); |
| 13103 | install_element (BGP_IPV4M_NODE, &bgp_network_mask_natural_cmd_vtysh); |
| 13104 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_neighbors_peer_cmd_vtysh); |
| 13105 | install_element (BGP_NODE, &no_neighbor_activate_cmd_vtysh); |
| 13106 | install_element (INTERFACE_NODE, &ospf_priority_cmd_vtysh); |
| 13107 | install_element (CONFIG_NODE, &dump_bgp_routes_cmd_vtysh); |
| 13108 | install_element (VIEW_NODE, &show_bgp_community3_cmd_vtysh); |
| 13109 | install_element (RMAP_NODE, &no_set_metric_cmd_vtysh); |
| 13110 | install_element (OSPF_NODE, &ospf_distribute_list_out_cmd_vtysh); |
| 13111 | install_element (ENABLE_NODE, &show_ipv6_ospf6_camp_config_cmd_vtysh); |
| 13112 | install_element (BGP_NODE, &no_bgp_cluster_id_cmd_vtysh); |
| 13113 | install_element (ENABLE_NODE, &no_debug_ospf_packet_all_cmd_vtysh); |
| 13114 | install_element (ENABLE_NODE, &show_bgp_ipv6_summary_cmd_vtysh); |
| 13115 | install_element (CONFIG_NODE, &debug_ospf_ism_sub_cmd_vtysh); |
| 13116 | install_element (RIPNG_NODE, &ripng_redistribute_bgp_metric_cmd_vtysh); |
| 13117 | install_element (CONFIG_NODE, &no_debug_rip_packet_direct_cmd_vtysh); |
| 13118 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh); |
| 13119 | install_element (OSPF_NODE, &no_auto_cost_reference_bandwidth_cmd_vtysh); |
| 13120 | install_element (RIP_NODE, &no_rip_timers_cmd_vtysh); |
| 13121 | install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_cmd_vtysh); |
| 13122 | install_element (ENABLE_NODE, &show_ip_bgp_neighbors_peer_cmd_vtysh); |
| 13123 | install_element (ENABLE_NODE, &show_ip_ospf_neighbor_int_detail_cmd_vtysh); |
| 13124 | install_element (ENABLE_NODE, &debug_bgp_keepalive_cmd_vtysh); |
| 13125 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community4_cmd_vtysh); |
| 13126 | install_element (RIP_NODE, &rip_offset_list_ifname_cmd_vtysh); |
| 13127 | install_element (RIPNG_NODE, &ripng_redistribute_bgp_metric_routemap_cmd_vtysh); |
| 13128 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh); |
| 13129 | install_element (RMAP_NODE, &rmap_onmatch_next_cmd_vtysh); |
| 13130 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_in_prefix_filter_cmd_vtysh); |
| 13131 | install_element (BGP_IPV6_NODE, &neighbor_default_originate_rmap_cmd_vtysh); |
| 13132 | install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_routemap_cmd_vtysh); |
| 13133 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged7_cmd_vtysh); |
| 13134 | install_element (BGP_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh); |
| 13135 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbors_cmd_vtysh); |
| 13136 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh); |
| 13137 | install_element (RIPNG_NODE, &no_ripng_route_cmd_vtysh); |
| 13138 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_in_cmd_vtysh); |
| 13139 | install_element (ENABLE_NODE, &show_ipv6_access_list_name_cmd_vtysh); |
| 13140 | install_element (BGP_IPV6_NODE, &neighbor_capability_orf_prefix_cmd_vtysh); |
| 13141 | install_element (ENABLE_NODE, &show_bgp_filter_list_cmd_vtysh); |
| 13142 | install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_in_cmd_vtysh); |
| 13143 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged10_cmd_vtysh); |
| 13144 | install_element (VIEW_NODE, &show_ipv6_route_addr_cmd_vtysh); |
| 13145 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh); |
| 13146 | install_element (BGP_NODE, &bgp_distance_source_cmd_vtysh); |
| 13147 | install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_rmap_metric_cmd_vtysh); |
| 13148 | install_element (CONFIG_NODE, &no_ipv6_access_list_cmd_vtysh); |
| 13149 | install_element (CONFIG_NODE, &no_ipv6_access_list_any_cmd_vtysh); |
| 13150 | install_element (BGP_IPV4M_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh); |
| 13151 | install_element (BGP_NODE, &no_aggregate_address_cmd_vtysh); |
| 13152 | install_element (CONFIG_NODE, &no_debug_zebra_kernel_cmd_vtysh); |
| 13153 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_route_cmd_vtysh); |
| 13154 | install_element (ENABLE_NODE, &show_bgp_neighbor_received_routes_cmd_vtysh); |
| 13155 | install_element (CONFIG_NODE, &no_ip_extcommunity_list_standard_cmd_vtysh); |
| 13156 | install_element (VIEW_NODE, &show_ipv6_bgp_community_exact_cmd_vtysh); |
| 13157 | install_element (BGP_IPV4_NODE, &neighbor_allowas_in_arg_cmd_vtysh); |
| 13158 | install_element (BGP_NODE, &no_aggregate_address_as_set_cmd_vtysh); |
| 13159 | install_element (VIEW_NODE, &show_ip_bgp_regexp_cmd_vtysh); |
| 13160 | install_element (CONFIG_NODE, &no_zebra_interface_cmd_vtysh); |
| 13161 | install_element (BGP_IPV4_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh); |
| 13162 | install_element (ENABLE_NODE, &show_ip_ospf_database_type_self_cmd_vtysh); |
| 13163 | install_element (ENABLE_NODE, &clear_ip_bgp_external_in_cmd_vtysh); |
| 13164 | install_element (BGP_IPV6_NODE, &neighbor_send_community_type_cmd_vtysh); |
| 13165 | install_element (VIEW_NODE, &ipv6_mbgp_neighbor_routes_cmd_vtysh); |
| 13166 | install_element (OSPF_NODE, &no_area_vlink_authtype_md5_cmd_vtysh); |
| 13167 | install_element (BGP_NODE, &no_neighbor_filter_list_cmd_vtysh); |
| 13168 | install_element (VIEW_NODE, &show_ipv6_route_protocol_cmd_vtysh); |
| 13169 | install_element (RMAP_NODE, &no_set_origin_val_cmd_vtysh); |
| 13170 | install_element (VIEW_NODE, &show_ip_ospf_database_cmd_vtysh); |
| 13171 | install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_cmd_vtysh); |
| 13172 | install_element (BGP_IPV4M_NODE, &neighbor_unsuppress_map_cmd_vtysh); |
| 13173 | install_element (CONFIG_NODE, &no_debug_ospf_event_cmd_vtysh); |
| 13174 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_out_cmd_vtysh); |
| 13175 | install_element (ENABLE_NODE, &show_ipv6_bgp_community2_cmd_vtysh); |
| 13176 | install_element (ENABLE_NODE, &clear_bgp_peer_group_cmd_vtysh); |
| 13177 | install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_routemap_cmd_vtysh); |
| 13178 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_routes_cmd_vtysh); |
| 13179 | install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_out_cmd_vtysh); |
| 13180 | install_element (INTERFACE_NODE, &bandwidth_if_cmd_vtysh); |
| 13181 | install_element (OSPF_NODE, &ospf_distance_ospf_intra_cmd_vtysh); |
| 13182 | install_element (ENABLE_NODE, &clear_bgp_as_cmd_vtysh); |
| 13183 | install_element (ENABLE_NODE, &show_ip_bgp_community2_exact_cmd_vtysh); |
| 13184 | install_element (OSPF_NODE, &area_vlink_authtype_authkey_cmd_vtysh); |
| 13185 | install_element (OSPF_NODE, &area_range_advertise_cost_cmd_vtysh); |
| 13186 | install_element (BGP_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh); |
| 13187 | install_element (OSPF_NODE, &no_neighbor_cmd_vtysh); |
| 13188 | install_element (CONFIG_NODE, &debug_rip_packet_detail_cmd_vtysh); |
| 13189 | install_element (RMAP_NODE, &no_set_aspath_prepend_cmd_vtysh); |
| 13190 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh); |
| 13191 | install_element (CONFIG_NODE, &no_ip_prefix_list_seq_ge_le_cmd_vtysh); |
| 13192 | install_element (BGP_NODE, &no_aggregate_address_summary_only_cmd_vtysh); |
| 13193 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh); |
| 13194 | install_element (BGP_VPNV4_NODE, &neighbor_allowas_in_cmd_vtysh); |
| 13195 | install_element (ENABLE_NODE, &show_ip_prefix_list_summary_name_cmd_vtysh); |
| 13196 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_longer_cmd_vtysh); |
| 13197 | install_element (OSPF_NODE, &area_stub_cmd_vtysh); |
| 13198 | install_element (BGP_IPV6_NODE, &neighbor_maximum_prefix_cmd_vtysh); |
| 13199 | install_element (OSPF_NODE, &area_authentication_message_digest_cmd_vtysh); |
| 13200 | install_element (VIEW_NODE, &show_ipv6_prefix_list_detail_name_cmd_vtysh); |
| 13201 | install_element (INTERFACE_NODE, &ipv6_ospf6_cost_cmd_vtysh); |
| 13202 | install_element (ENABLE_NODE, &undebug_bgp_filter_cmd_vtysh); |
| 13203 | install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_cmd_vtysh); |
| 13204 | install_element (CONFIG_NODE, &debug_ospf_ism_cmd_vtysh); |
| 13205 | install_element (RIPNG_NODE, &no_ripng_passive_interface_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 13206 | install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 13207 | install_element (BGP_IPV4M_NODE, &no_neighbor_set_peer_group_cmd_vtysh); |
| 13208 | install_element (BGP_IPV4_NODE, &bgp_network_mask_route_map_cmd_vtysh); |
| 13209 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_in_prefix_filter_cmd_vtysh); |
| 13210 | install_element (BGP_IPV6_NODE, &no_neighbor_remove_private_as_cmd_vtysh); |
| 13211 | install_element (INTERFACE_NODE, &ospf_cost_cmd_vtysh); |
| 13212 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_day_month_month_day_cmd_vtysh); |
| 13213 | install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh); |
| 13214 | install_element (RMAP_NODE, &set_ip_nexthop_cmd_vtysh); |
| 13215 | install_element (CONFIG_NODE, &debug_ospf_event_cmd_vtysh); |
| 13216 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_cmd_vtysh); |
| 13217 | install_element (BGP_IPV4_NODE, &neighbor_activate_cmd_vtysh); |
| 13218 | install_element (BGP_NODE, &no_bgp_redistribute_ipv4_rmap_metric_cmd_vtysh); |
| 13219 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh); |
| 13220 | install_element (ENABLE_NODE, &debug_bgp_fsm_cmd_vtysh); |
| 13221 | install_element (BGP_NODE, &neighbor_override_capability_cmd_vtysh); |
| 13222 | install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_routemap_cmd_vtysh); |
| 13223 | install_element (BGP_NODE, &no_neighbor_set_peer_group_cmd_vtysh); |
| 13224 | install_element (INTERFACE_NODE, &ip_ospf_cost_cmd_vtysh); |
| 13225 | install_element (ENABLE_NODE, &clear_bgp_all_soft_out_cmd_vtysh); |
| 13226 | install_element (BGP_IPV4_NODE, &bgp_damp_set_cmd_vtysh); |
| 13227 | install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_metric_val_cmd_vtysh); |
| 13228 | install_element (VIEW_NODE, &show_ip_bgp_community2_cmd_vtysh); |
| 13229 | install_element (VIEW_NODE, &show_ipv6_mbgp_community3_exact_cmd_vtysh); |
| 13230 | install_element (CONFIG_NODE, &dump_bgp_all_cmd_vtysh); |
| 13231 | install_element (CONFIG_NODE, &debug_ripng_packet_detail_cmd_vtysh); |
| 13232 | install_element (ENABLE_NODE, &show_ip_ospf_database_type_cmd_vtysh); |
| 13233 | install_element (INTERFACE_NODE, &ospf_transmit_delay_cmd_vtysh); |
| 13234 | install_element (BGP_NODE, &aggregate_address_as_set_cmd_vtysh); |
| 13235 | install_element (BGP_NODE, &no_bgp_distance2_cmd_vtysh); |
| 13236 | install_element (OSPF_NODE, &no_area_vlink_param2_cmd_vtysh); |
| 13237 | install_element (VIEW_NODE, &show_bgp_ipv6_filter_list_cmd_vtysh); |
| 13238 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh); |
| 13239 | install_element (VIEW_NODE, &show_bgp_community_exact_cmd_vtysh); |
| 13240 | install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_in_cmd_vtysh); |
| 13241 | install_element (OSPF_NODE, &auto_cost_reference_bandwidth_cmd_vtysh); |
| 13242 | install_element (CONFIG_NODE, &no_debug_ospf6_damp_cmd_vtysh); |
| 13243 | install_element (INTERFACE_NODE, &ipv6_ospf6_priority_cmd_vtysh); |
| 13244 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_description_arg_cmd_vtysh); |
| 13245 | install_element (VIEW_NODE, &show_ip_bgp_flap_address_cmd_vtysh); |
| 13246 | install_element (ENABLE_NODE, &show_ip_bgp_neighbor_routes_cmd_vtysh); |
| 13247 | install_element (CONFIG_NODE, &debug_bgp_filter_cmd_vtysh); |
| 13248 | install_element (CONFIG_NODE, &no_ip_prefix_list_le_ge_cmd_vtysh); |
| 13249 | install_element (BGP_IPV4M_NODE, &neighbor_route_map_cmd_vtysh); |
| 13250 | install_element (ENABLE_NODE, &show_debugging_ripng_cmd_vtysh); |
| 13251 | install_element (BGP_IPV4M_NODE, &aggregate_address_cmd_vtysh); |
| 13252 | install_element (ENABLE_NODE, &show_ipv6_bgp_community4_cmd_vtysh); |
| 13253 | install_element (VIEW_NODE, &show_ip_bgp_community_list_exact_cmd_vtysh); |
| 13254 | install_element (BGP_IPV4_NODE, &no_neighbor_filter_list_cmd_vtysh); |
| 13255 | install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_cmd_vtysh); |
| 13256 | install_element (CONFIG_NODE, &ipv6_prefix_list_sequence_number_cmd_vtysh); |
| 13257 | install_element (VIEW_NODE, &ipv6_mbgp_neighbor_received_routes_cmd_vtysh); |
| 13258 | install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_first_match_cmd_vtysh); |
| 13259 | install_element (VIEW_NODE, &show_ipv6_prefix_list_cmd_vtysh); |
| 13260 | install_element (VIEW_NODE, &show_ip_bgp_scan_cmd_vtysh); |
| 13261 | install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_cmd_vtysh); |
| 13262 | install_element (OSPF_NODE, &no_refresh_timer_val_cmd_vtysh); |
| 13263 | install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_cmd_vtysh); |
| 13264 | install_element (INTERFACE_NODE, &ipv6_ospf6_instance_cmd_vtysh); |
| 13265 | install_element (RMAP_NODE, &no_set_local_pref_cmd_vtysh); |
| 13266 | install_element (RMAP_NODE, &no_match_ip_address_prefix_list_val_cmd_vtysh); |
| 13267 | install_element (RIP_NODE, &no_rip_distance_cmd_vtysh); |
| 13268 | install_element (CONFIG_NODE, &no_access_list_extended_any_host_cmd_vtysh); |
| 13269 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_cmd_vtysh); |
| 13270 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_month_day_month_day_cmd_vtysh); |
| 13271 | install_element (BGP_NODE, &no_neighbor_weight_val_cmd_vtysh); |
| 13272 | install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_cmd_vtysh); |
| 13273 | install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_type_routemap_cmd_vtysh); |
| 13274 | install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_cmd_vtysh); |
| 13275 | install_element (ENABLE_NODE, &show_debugging_zebra_cmd_vtysh); |
| 13276 | install_element (BGP_NODE, &bgp_network_backdoor_cmd_vtysh); |
| 13277 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_month_day_day_month_cmd_vtysh); |
| 13278 | install_element (BGP_IPV4_NODE, &no_neighbor_distribute_list_cmd_vtysh); |
| 13279 | install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_out_cmd_vtysh); |
| 13280 | install_element (OSPF_NODE, &ospf_redistribute_source_cmd_vtysh); |
| 13281 | install_element (OSPF_NODE, &area_range_cost_cmd_vtysh); |
| 13282 | install_element (ENABLE_NODE, &show_ipv6_ospf6_neighbor_routerid_cmd_vtysh); |
| 13283 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community4_exact_cmd_vtysh); |
| 13284 | install_element (BGP_IPV4M_NODE, &neighbor_remove_private_as_cmd_vtysh); |
| 13285 | install_element (ENABLE_NODE, &debug_ospf_zebra_cmd_vtysh); |
| 13286 | install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_cmd_vtysh); |
| 13287 | install_element (CONFIG_NODE, &debug_ospf6_damp_cmd_vtysh); |
| 13288 | install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_list_cmd_vtysh); |
| 13289 | install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_cmd_vtysh); |
| 13290 | install_element (CONFIG_NODE, &no_debug_ospf_ism_cmd_vtysh); |
| 13291 | install_element (RMAP_NODE, &ospf6_routemap_no_set_metric_type_cmd_vtysh); |
| 13292 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_flapping_cmd_vtysh); |
| 13293 | install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_cmd_vtysh); |
| 13294 | install_element (BGP_NODE, &no_neighbor_maximum_prefix_cmd_vtysh); |
| 13295 | install_element (RIPNG_NODE, &ripng_redistribute_bgp_cmd_vtysh); |
| 13296 | install_element (BGP_IPV4_NODE, &neighbor_route_server_client_cmd_vtysh); |
| 13297 | install_element (INTERFACE_NODE, &no_ospf_priority_cmd_vtysh); |
| 13298 | install_element (CONFIG_NODE, &debug_ospf_lsa_cmd_vtysh); |
| 13299 | install_element (ENABLE_NODE, &no_debug_rip_packet_direct_cmd_vtysh); |
| 13300 | install_element (CONFIG_NODE, &no_access_list_extended_cmd_vtysh); |
| 13301 | install_element (ENABLE_NODE, &show_ip_rip_cmd_vtysh); |
| 13302 | install_element (ENABLE_NODE, &show_ip_bgp_flap_regexp_cmd_vtysh); |
| 13303 | install_element (BGP_VPNV4_NODE, &neighbor_remove_private_as_cmd_vtysh); |
| 13304 | install_element (BGP_NODE, &neighbor_remove_private_as_cmd_vtysh); |
| 13305 | install_element (CONFIG_NODE, &no_access_list_standard_cmd_vtysh); |
| 13306 | install_element (RIPNG_NODE, &ripng_redistribute_static_metric_cmd_vtysh); |
| 13307 | install_element (VIEW_NODE, &show_bgp_ipv6_community_list_exact_cmd_vtysh); |
| 13308 | install_element (ZEBRA_NODE, &rip_redistribute_rip_cmd_vtysh); |
| 13309 | install_element (INTERFACE_NODE, &no_ip_rip_authentication_key_chain_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 13310 | install_element (BGP_IPV4_NODE, &neighbor_send_community_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 13311 | install_element (OSPF_NODE, &area_vlink_authkey_cmd_vtysh); |
| 13312 | install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_cmd_vtysh); |
| 13313 | install_element (CONFIG_NODE, &no_access_list_cmd_vtysh); |
| 13314 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_cmd_vtysh); |
| 13315 | install_element (CONFIG_NODE, &access_list_cmd_vtysh); |
| 13316 | install_element (CONFIG_NODE, &no_router_bgp_cmd_vtysh); |
| 13317 | install_element (RIPNG_NODE, &ripng_timers_cmd_vtysh); |
| 13318 | install_element (ENABLE_NODE, &clear_bgp_as_in_cmd_vtysh); |
| 13319 | install_element (INTERFACE_NODE, &ospf_dead_interval_cmd_vtysh); |
| 13320 | install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_self_cmd_vtysh); |
| 13321 | install_element (OSPF_NODE, &area_shortcut_cmd_vtysh); |
| 13322 | install_element (INTERFACE_NODE, &ip_rip_authentication_key_chain_cmd_vtysh); |
| 13323 | install_element (CONFIG_NODE, &no_ip_prefix_list_sequence_number_cmd_vtysh); |
| 13324 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh); |
| 13325 | install_element (CONFIG_NODE, &no_bgp_config_type_cmd_vtysh); |
| 13326 | install_element (BGP_NODE, &no_bgp_network_mask_route_map_cmd_vtysh); |
| 13327 | install_element (BGP_NODE, &no_neighbor_cmd_vtysh); |
| 13328 | install_element (ENABLE_NODE, &show_ipv6_ospf6_neighborlist_cmd_vtysh); |
| 13329 | install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh); |
| 13330 | install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_cmd_vtysh); |
| 13331 | install_element (ENABLE_NODE, &show_ip_bgp_summary_cmd_vtysh); |
| 13332 | install_element (VIEW_NODE, &show_ip_bgp_instance_summary_cmd_vtysh); |
| 13333 | install_element (ENABLE_NODE, &clear_bgp_peer_out_cmd_vtysh); |
| 13334 | install_element (ENABLE_NODE, &show_bgp_regexp_cmd_vtysh); |
| 13335 | install_element (RMAP_NODE, &match_origin_cmd_vtysh); |
| 13336 | install_element (ENABLE_NODE, &show_ip_bgp_flap_filter_list_cmd_vtysh); |
| 13337 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_cidr_only_cmd_vtysh); |
| 13338 | install_element (ENABLE_NODE, &clear_bgp_as_out_cmd_vtysh); |
| 13339 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged6_cmd_vtysh); |
| 13340 | install_element (BGP_IPV4_NODE, &neighbor_nexthop_self_cmd_vtysh); |
| 13341 | install_element (RIP_NODE, &rip_default_metric_cmd_vtysh); |
| 13342 | install_element (BGP_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh); |
| 13343 | install_element (OSPF_NODE, &no_area_vlink_param3_cmd_vtysh); |
| 13344 | install_element (ENABLE_NODE, &show_ipv6_mbgp_regexp_cmd_vtysh); |
| 13345 | install_element (VIEW_NODE, &show_ipv6_mbgp_regexp_cmd_vtysh); |
| 13346 | install_element (OSPF_NODE, &area_vlink_md5_cmd_vtysh); |
| 13347 | install_element (INTERFACE_NODE, &no_ip_ospf_priority_addr_cmd_vtysh); |
| 13348 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_regexp_cmd_vtysh); |
| 13349 | install_element (BGP_IPV4_NODE, &neighbor_default_originate_cmd_vtysh); |
| 13350 | install_element (BGP_NODE, &neighbor_set_peer_group_cmd_vtysh); |
| 13351 | install_element (ENABLE_NODE, &show_ip_bgp_community_list_exact_cmd_vtysh); |
| 13352 | install_element (BGP_NODE, &old_ipv6_bgp_network_cmd_vtysh); |
| 13353 | install_element (VIEW_NODE, &show_bgp_ipv6_community_list_cmd_vtysh); |
| 13354 | install_element (CONFIG_NODE, &ipv6_prefix_list_seq_ge_cmd_vtysh); |
| 13355 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh); |
| 13356 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_list_cmd_vtysh); |
| 13357 | install_element (RMAP_NODE, &no_set_local_pref_val_cmd_vtysh); |
| 13358 | install_element (OSPF_NODE, &no_neighbor_poll_interval_cmd_vtysh); |
| 13359 | install_element (BGP_IPV4_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh); |
| 13360 | install_element (ENABLE_NODE, &show_ipv6_ospf6_area_route_cmd_vtysh); |
| 13361 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh); |
| 13362 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_filter_list_cmd_vtysh); |
| 13363 | install_element (CONFIG_NODE, &no_debug_bgp_keepalive_cmd_vtysh); |
| 13364 | install_element (RIP_NODE, &rip_distance_cmd_vtysh); |
| 13365 | install_element (RMAP_NODE, &no_set_weight_cmd_vtysh); |
| 13366 | install_element (ENABLE_NODE, &debug_rip_events_cmd_vtysh); |
| 13367 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh); |
| 13368 | install_element (CONFIG_NODE, &no_debug_ospf_lsa_cmd_vtysh); |
| 13369 | install_element (BGP_NODE, &old_no_ipv6_aggregate_address_cmd_vtysh); |
| 13370 | install_element (CONFIG_NODE, &ipv6_access_list_cmd_vtysh); |
| 13371 | install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_cmd_vtysh); |
| 13372 | install_element (BGP_IPV4_NODE, &aggregate_address_mask_as_set_cmd_vtysh); |
| 13373 | install_element (ENABLE_NODE, &show_bgp_ipv6_community2_cmd_vtysh); |
| 13374 | install_element (BGP_NODE, &no_bgp_bestpath_aspath_ignore_cmd_vtysh); |
| 13375 | install_element (OSPF_NODE, &no_area_vlink_cmd_vtysh); |
| 13376 | install_element (ENABLE_NODE, &clear_bgp_as_in_prefix_filter_cmd_vtysh); |
| 13377 | install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_addr_cmd_vtysh); |
| 13378 | install_element (RIPNG_NODE, &no_ripng_network_cmd_vtysh); |
| 13379 | install_element (OSPF_NODE, &no_router_id_cmd_vtysh); |
| 13380 | install_element (BGP_NODE, &neighbor_local_as_no_prepend_cmd_vtysh); |
| 13381 | install_element (VIEW_NODE, &show_ip_bgp_neighbor_advertised_route_cmd_vtysh); |
| 13382 | install_element (BGP_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh); |
| 13383 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh); |
| 13384 | install_element (BGP_IPV6_NODE, &no_neighbor_set_peer_group_cmd_vtysh); |
| 13385 | install_element (BGP_NODE, &no_synchronization_cmd_vtysh); |
| 13386 | install_element (BGP_NODE, &neighbor_update_source_cmd_vtysh); |
| 13387 | install_element (INTERFACE_NODE, &ipv6_address_cmd_vtysh); |
| 13388 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_cmd_vtysh); |
| 13389 | install_element (ENABLE_NODE, &show_bgp_ipv6_community_cmd_vtysh); |
| 13390 | install_element (ENABLE_NODE, &show_ip_extcommunity_list_cmd_vtysh); |
| 13391 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_all_cmd_vtysh); |
| 13392 | install_element (BGP_IPV4_NODE, &no_bgp_network_route_map_cmd_vtysh); |
| 13393 | install_element (VIEW_NODE, &show_ip_bgp_prefix_cmd_vtysh); |
| 13394 | install_element (VIEW_NODE, &show_ip_rip_cmd_vtysh); |
| 13395 | install_element (CONFIG_NODE, &access_list_standard_host_cmd_vtysh); |
| 13396 | install_element (CONFIG_NODE, &ip_prefix_list_sequence_number_cmd_vtysh); |
| 13397 | install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_longer_cmd_vtysh); |
| 13398 | install_element (BGP_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh); |
| 13399 | install_element (RMAP_NODE, &ospf6_routemap_set_forwarding_cmd_vtysh); |
| 13400 | install_element (OSPF_NODE, &no_area_range_advertise_cost_cmd_vtysh); |
| 13401 | install_element (ENABLE_NODE, &show_ip_bgp_community_exact_cmd_vtysh); |
| 13402 | install_element (ENABLE_NODE, &show_bgp_prefix_cmd_vtysh); |
| 13403 | install_element (CONFIG_NODE, &ip_prefix_list_le_ge_cmd_vtysh); |
| 13404 | install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_cmd_vtysh); |
| 13405 | install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_cmd_vtysh); |
| 13406 | install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_addr_cmd_vtysh); |
| 13407 | install_element (VIEW_NODE, &show_ipv6_mbgp_community_exact_cmd_vtysh); |
| 13408 | install_element (CONFIG_NODE, &no_ipv6_access_list_remark_cmd_vtysh); |
| 13409 | install_element (INTERFACE_NODE, &no_ospf_dead_interval_cmd_vtysh); |
| 13410 | install_element (INTERFACE_NODE, &ip_irdp_preference_cmd_vtysh); |
| 13411 | install_element (BGP_NODE, &aggregate_address_as_set_summary_cmd_vtysh); |
| 13412 | install_element (VIEW_NODE, &show_bgp_ipv6_regexp_cmd_vtysh); |
| 13413 | install_element (BGP_VPNV4_NODE, &no_neighbor_nexthop_self_cmd_vtysh); |
| 13414 | install_element (VIEW_NODE, &show_ipv6_route_prefix_cmd_vtysh); |
| 13415 | install_element (RIPNG_NODE, &ripng_redistribute_ospf6_metric_cmd_vtysh); |
| 13416 | install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_detail_cmd_vtysh); |
| 13417 | install_element (BGP_NODE, &no_neighbor_passive_cmd_vtysh); |
| 13418 | install_element (ENABLE_NODE, &show_bgp_community4_cmd_vtysh); |
| 13419 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged5_cmd_vtysh); |
| 13420 | install_element (VIEW_NODE, &show_ipv6_ospf6_area_route_prefix_cmd_vtysh); |
| 13421 | install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_metric_cmd_vtysh); |
| 13422 | install_element (RMAP_NODE, &no_set_originator_id_cmd_vtysh); |
| 13423 | install_element (RIPNG_NODE, &no_ripng_redistribute_static_cmd_vtysh); |
| 13424 | install_element (BGP_NODE, &neighbor_capability_route_refresh_cmd_vtysh); |
| 13425 | install_element (RIPNG_NODE, &ripng_redistribute_ospf6_metric_routemap_cmd_vtysh); |
| 13426 | install_element (BGP_VPNV4_NODE, &neighbor_send_community_cmd_vtysh); |
| 13427 | install_element (VIEW_NODE, &show_ipv6_forwarding_cmd_vtysh); |
| 13428 | install_element (VIEW_NODE, &show_ip_bgp_prefix_longer_cmd_vtysh); |
| 13429 | install_element (RMAP_NODE, &no_rmap_onmatch_goto_cmd_vtysh); |
| 13430 | install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_routemap_cmd_vtysh); |
| 13431 | install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_val_cmd_vtysh); |
| 13432 | install_element (INTERFACE_NODE, &ip_rip_receive_version_1_cmd_vtysh); |
| 13433 | install_element (BGP_NODE, &no_bgp_scan_time_val_cmd_vtysh); |
| 13434 | install_element (ENABLE_NODE, &no_debug_ripng_packet_direct_cmd_vtysh); |
| 13435 | install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_cmd_vtysh); |
| 13436 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh); |
| 13437 | install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_cmd_vtysh); |
| 13438 | install_element (INTERFACE_NODE, &no_ip_rip_authentication_mode_cmd_vtysh); |
| 13439 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_le_ge_cmd_vtysh); |
| 13440 | install_element (ENABLE_NODE, &show_ipv6_bgp_community_exact_cmd_vtysh); |
| 13441 | install_element (BGP_VPNV4_NODE, &vpnv4_network_cmd_vtysh); |
| 13442 | install_element (OSPF_NODE, &ospf_rfc1583_flag_cmd_vtysh); |
paul | 569c0f0 | 2003-03-02 21:19:26 +0000 | [diff] [blame] | 13443 | install_element (OSPF_NODE, &area_vlink_param2_cmd_vtysh); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 13444 | install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_received_routes_cmd_vtysh); |
| 13445 | install_element (CONFIG_NODE, &ip_extcommunity_list_standard2_cmd_vtysh); |
| 13446 | install_element (BGP_NODE, &aggregate_address_summary_only_cmd_vtysh); |
| 13447 | install_element (VIEW_NODE, &show_ip_prefix_list_summary_name_cmd_vtysh); |
| 13448 | install_element (VIEW_NODE, &show_ip_bgp_attr_info_cmd_vtysh); |
| 13449 | install_element (RMAP_NODE, &set_originator_id_cmd_vtysh); |
| 13450 | install_element (CONFIG_NODE, &no_debug_ripng_packet_direct_cmd_vtysh); |
| 13451 | install_element (VIEW_NODE, &show_ip_prefix_list_name_cmd_vtysh); |
| 13452 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_out_cmd_vtysh); |
| 13453 | install_element (BGP_NODE, &bgp_cluster_id32_cmd_vtysh); |
| 13454 | install_element (RIP_NODE, &no_rip_redistribute_type_routemap_cmd_vtysh); |
| 13455 | install_element (BGP_NODE, &no_bgp_client_to_client_reflection_cmd_vtysh); |
| 13456 | install_element (RMAP_NODE, &no_match_ip_address_val_cmd_vtysh); |
| 13457 | install_element (INTERFACE_NODE, &no_ipv6_ospf6_advertise_prefix_list_cmd_vtysh); |
| 13458 | install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh); |
| 13459 | install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_external_cmd_vtysh); |
| 13460 | install_element (BGP_IPV6_NODE, &no_neighbor_filter_list_cmd_vtysh); |
| 13461 | install_element (BGP_IPV6_NODE, &ipv6_bgp_network_route_map_cmd_vtysh); |
| 13462 | install_element (BGP_IPV4_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh); |
| 13463 | install_element (CONFIG_NODE, &ipv6_access_list_any_cmd_vtysh); |
| 13464 | install_element (OSPF_NODE, &no_area_range_cost_cmd_vtysh); |
| 13465 | install_element (OSPF_NODE, &area_vlink_param4_cmd_vtysh); |
| 13466 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged10_cmd_vtysh); |
| 13467 | install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh); |
| 13468 | install_element (CONFIG_NODE, &no_ip_forwarding_cmd_vtysh); |
| 13469 | install_element (ENABLE_NODE, &show_bgp_community_cmd_vtysh); |
| 13470 | install_element (BGP_IPV4M_NODE, &neighbor_send_community_type_cmd_vtysh); |
| 13471 | install_element (VIEW_NODE, &show_ip_bgp_community_cmd_vtysh); |
| 13472 | install_element (RMAP_NODE, &set_ecommunity_rt_cmd_vtysh); |
| 13473 | install_element (VIEW_NODE, &show_ip_bgp_flap_cidr_only_cmd_vtysh); |
| 13474 | install_element (ENABLE_NODE, &clear_bgp_ipv6_all_cmd_vtysh); |
| 13475 | install_element (INTERFACE_NODE, &ip_rip_authentication_string_cmd_vtysh); |
| 13476 | install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_cmd_vtysh); |
| 13477 | install_element (OSPF_NODE, &timers_spf_cmd_vtysh); |
| 13478 | install_element (CONFIG_NODE, &ip_prefix_list_seq_le_ge_cmd_vtysh); |
| 13479 | install_element (BGP_NODE, &no_neighbor_port_cmd_vtysh); |
| 13480 | install_element (RMAP_NODE, &no_set_community_val_cmd_vtysh); |
| 13481 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_soft_out_cmd_vtysh); |
| 13482 | install_element (CONFIG_NODE, &no_debug_zebra_events_cmd_vtysh); |
| 13483 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_cmd_vtysh); |
| 13484 | install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_cmd_vtysh); |
| 13485 | install_element (CONFIG_NODE, &debug_ospf6_all_cmd_vtysh); |
| 13486 | install_element (BGP_VPNV4_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh); |
| 13487 | install_element (BGP_NODE, &neighbor_attr_unchanged7_cmd_vtysh); |
| 13488 | install_element (BGP_IPV4_NODE, &no_bgp_network_mask_route_map_cmd_vtysh); |
| 13489 | install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_in_cmd_vtysh); |
| 13490 | install_element (BGP_IPV4M_NODE, &neighbor_prefix_list_cmd_vtysh); |
| 13491 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_cmd_vtysh); |
| 13492 | install_element (CONFIG_NODE, &debug_zebra_kernel_cmd_vtysh); |
| 13493 | install_element (VIEW_NODE, &show_ip_ospf_neighbor_all_cmd_vtysh); |
| 13494 | install_element (INTERFACE_NODE, &ip_irdp_multicast_cmd_vtysh); |
| 13495 | install_element (RMAP_NODE, &no_match_metric_cmd_vtysh); |
| 13496 | install_element (CONFIG_NODE, &dump_bgp_updates_cmd_vtysh); |
| 13497 | install_element (RIPNG_NODE, &ripng_redistribute_ospf6_routemap_cmd_vtysh); |
| 13498 | install_element (BGP_NODE, &bgp_always_compare_med_cmd_vtysh); |
| 13499 | install_element (INTERFACE_NODE, &no_ip_address_cmd_vtysh); |
| 13500 | install_element (RIPNG_NODE, &ripng_redistribute_kernel_cmd_vtysh); |
| 13501 | install_element (VIEW_NODE, &show_debug_ospf6_cmd_vtysh); |
| 13502 | install_element (CONFIG_NODE, &no_debug_ripng_events_cmd_vtysh); |
| 13503 | install_element (OSPF_NODE, &no_area_vlink_authtype_cmd_vtysh); |
| 13504 | install_element (BGP_IPV4_NODE, &neighbor_route_reflector_client_cmd_vtysh); |
| 13505 | install_element (BGP_NODE, &neighbor_remote_as_cmd_vtysh); |
| 13506 | install_element (VIEW_NODE, &show_ip_bgp_community_exact_cmd_vtysh); |
| 13507 | install_element (BGP_IPV4_NODE, &neighbor_set_peer_group_cmd_vtysh); |
| 13508 | install_element (ENABLE_NODE, &reload_cmd_vtysh); |
| 13509 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_route_cmd_vtysh); |
| 13510 | install_element (CONFIG_NODE, &no_access_list_extended_host_host_cmd_vtysh); |
| 13511 | install_element (ENABLE_NODE, &clear_ip_bgp_dampening_cmd_vtysh); |
| 13512 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_summary_cmd_vtysh); |
| 13513 | install_element (BGP_NODE, &no_neighbor_dont_capability_negotiate_cmd_vtysh); |
| 13514 | install_element (INTERFACE_NODE, &ip_rip_receive_version_2_cmd_vtysh); |
| 13515 | install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_router_cmd_vtysh); |
| 13516 | install_element (CONFIG_NODE, &no_ip_prefix_list_seq_ge_cmd_vtysh); |
| 13517 | install_element (RMAP_NODE, &set_metric_cmd_vtysh); |
| 13518 | install_element (OSPF_NODE, &ospf_default_information_originate_always_cmd_vtysh); |
| 13519 | install_element (BGP_NODE, &no_bgp_bestpath_compare_router_id_cmd_vtysh); |
| 13520 | install_element (VIEW_NODE, &show_ip_bgp_neighbor_received_prefix_filter_cmd_vtysh); |
| 13521 | install_element (BGP_IPV6_NODE, &no_neighbor_route_map_cmd_vtysh); |
| 13522 | install_element (CONFIG_NODE, &debug_ripng_packet_direct_cmd_vtysh); |
| 13523 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_cmd_vtysh); |
| 13524 | install_element (INTERFACE_NODE, &ip_ospf_authentication_key_addr_cmd_vtysh); |
| 13525 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbors_peer_cmd_vtysh); |
| 13526 | install_element (BGP_IPV4M_NODE, &neighbor_route_reflector_client_cmd_vtysh); |
| 13527 | install_element (BGP_NODE, &no_bgp_distance_cmd_vtysh); |
| 13528 | install_element (BGP_IPV4_NODE, &aggregate_address_summary_as_set_cmd_vtysh); |
| 13529 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_prefix_longer_cmd_vtysh); |
| 13530 | install_element (BGP_IPV6_NODE, &neighbor_filter_list_cmd_vtysh); |
| 13531 | install_element (INTERFACE_NODE, &ip_irdp_minadvertinterval_cmd_vtysh); |
| 13532 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_cmd_vtysh); |
| 13533 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh); |
| 13534 | install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_addr_cmd_vtysh); |
| 13535 | install_element (VIEW_NODE, &show_ipv6_ospf6_neighbor_routerid_cmd_vtysh); |
| 13536 | install_element (VIEW_NODE, &show_bgp_community2_cmd_vtysh); |
| 13537 | install_element (BGP_IPV6_NODE, &no_neighbor_route_reflector_client_cmd_vtysh); |
| 13538 | install_element (RIP_NODE, &no_rip_distance_source_cmd_vtysh); |
| 13539 | install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_in_prefix_filter_cmd_vtysh); |
| 13540 | install_element (VIEW_NODE, &show_bgp_filter_list_cmd_vtysh); |
| 13541 | install_element (BGP_VPNV4_NODE, &neighbor_route_map_cmd_vtysh); |
| 13542 | install_element (CONFIG_NODE, &ip_extcommunity_list_name_standard2_cmd_vtysh); |
| 13543 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_ge_cmd_vtysh); |
| 13544 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_in_cmd_vtysh); |
| 13545 | install_element (RIPNG_NODE, &ripng_redistribute_kernel_routemap_cmd_vtysh); |
| 13546 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged8_cmd_vtysh); |
| 13547 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_route_cmd_vtysh); |
| 13548 | install_element (ENABLE_NODE, &clear_ipv6_prefix_list_name_prefix_cmd_vtysh); |
| 13549 | install_element (BGP_NODE, &no_bgp_network_cmd_vtysh); |
| 13550 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_soft_out_cmd_vtysh); |
| 13551 | install_element (RMAP_NODE, &no_match_ip_next_hop_val_cmd_vtysh); |
| 13552 | install_element (ENABLE_NODE, &show_ip_protocols_rip_cmd_vtysh); |
| 13553 | install_element (VIEW_NODE, &show_bgp_neighbor_received_prefix_filter_cmd_vtysh); |
| 13554 | install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_out_cmd_vtysh); |
| 13555 | install_element (CONFIG_NODE, &ipv6_prefix_list_description_cmd_vtysh); |
| 13556 | install_element (CONFIG_NODE, &no_access_list_standard_any_cmd_vtysh); |
| 13557 | install_element (ENABLE_NODE, &show_bgp_instance_ipv6_summary_cmd_vtysh); |
| 13558 | install_element (ENABLE_NODE, &show_ip_ospf_cmd_vtysh); |
| 13559 | install_element (INTERFACE_NODE, &no_ip_ospf_cost_addr_cmd_vtysh); |
| 13560 | install_element (CONFIG_NODE, &debug_bgp_fsm_cmd_vtysh); |
| 13561 | install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_out_cmd_vtysh); |
| 13562 | install_element (VIEW_NODE, &show_ipv6_mbgp_community4_cmd_vtysh); |
| 13563 | install_element (ENABLE_NODE, &show_ip_prefix_list_detail_cmd_vtysh); |
| 13564 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh); |
| 13565 | install_element (CONFIG_NODE, &no_debug_rip_zebra_cmd_vtysh); |
| 13566 | install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_longer_cmd_vtysh); |
| 13567 | install_element (RMAP_NODE, &no_set_ecommunity_soo_cmd_vtysh); |
| 13568 | install_element (OSPF_NODE, &ospf_default_information_originate_always_type_metric_cmd_vtysh); |
| 13569 | install_element (BGP_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh); |
| 13570 | install_element (CONFIG_NODE, &ip_prefix_list_seq_cmd_vtysh); |
| 13571 | install_element (BGP_NODE, &old_ipv6_aggregate_address_cmd_vtysh); |
| 13572 | install_element (CONFIG_NODE, &ipv6_route_pref_cmd_vtysh); |
| 13573 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_sequence_number_cmd_vtysh); |
| 13574 | install_element (VIEW_NODE, &show_bgp_prefix_longer_cmd_vtysh); |
| 13575 | install_element (BGP_NODE, &no_neighbor_advertise_interval_val_cmd_vtysh); |
| 13576 | install_element (CONFIG_NODE, &no_access_list_extended_any_mask_cmd_vtysh); |
| 13577 | install_element (ENABLE_NODE, &show_ipv6_bgp_community_all_cmd_vtysh); |
| 13578 | install_element (VIEW_NODE, &show_ip_ospf_neighbor_id_cmd_vtysh); |
| 13579 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_day_month_day_month_cmd_vtysh); |
| 13580 | install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_in_cmd_vtysh); |
| 13581 | install_element (INTERFACE_NODE, &ip_rip_authentication_mode_cmd_vtysh); |
| 13582 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_le_cmd_vtysh); |
| 13583 | install_element (ENABLE_NODE, &debug_zebra_packet_detail_cmd_vtysh); |
| 13584 | install_element (CONFIG_NODE, &no_ip_as_path_all_cmd_vtysh); |
| 13585 | install_element (ENABLE_NODE, &show_ipv6_bgp_community2_exact_cmd_vtysh); |
| 13586 | install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_type_cmd_vtysh); |
| 13587 | install_element (BGP_NODE, &neighbor_interface_cmd_vtysh); |
| 13588 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_out_cmd_vtysh); |
| 13589 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_regexp_cmd_vtysh); |
| 13590 | install_element (OSPF_NODE, &ospf_redistribute_source_metric_routemap_cmd_vtysh); |
| 13591 | install_element (OSPF_NODE, &neighbor_poll_interval_priority_cmd_vtysh); |
| 13592 | install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_cmd_vtysh); |
| 13593 | install_element (ENABLE_NODE, &clear_ip_bgp_all_in_cmd_vtysh); |
| 13594 | install_element (ENABLE_NODE, &show_ipv6_access_list_cmd_vtysh); |
| 13595 | install_element (BGP_NODE, &no_neighbor_route_server_client_cmd_vtysh); |
| 13596 | install_element (BGP_NODE, &neighbor_filter_list_cmd_vtysh); |
| 13597 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_soft_in_cmd_vtysh); |
| 13598 | install_element (BGP_NODE, &no_bgp_scan_time_cmd_vtysh); |
| 13599 | install_element (VIEW_NODE, &show_ipv6_bgp_community_all_cmd_vtysh); |
| 13600 | install_element (BGP_NODE, &no_neighbor_route_reflector_client_cmd_vtysh); |
| 13601 | install_element (BGP_VPNV4_NODE, &neighbor_send_community_type_cmd_vtysh); |
| 13602 | install_element (VIEW_NODE, &show_bgp_ipv6_community3_exact_cmd_vtysh); |
| 13603 | install_element (ENABLE_NODE, &show_bgp_route_cmd_vtysh); |
| 13604 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_seq_ge_le_cmd_vtysh); |
| 13605 | install_element (INTERFACE_NODE, &ip_ospf_priority_cmd_vtysh); |
| 13606 | install_element (OSPF_NODE, &no_area_vlink_authkey_cmd_vtysh); |
| 13607 | install_element (VIEW_NODE, &show_ipv6_bgp_community_cmd_vtysh); |
| 13608 | install_element (BGP_NODE, &no_bgp_distance_source_access_list_cmd_vtysh); |
| 13609 | install_element (OSPF_NODE, &area_vlink_param1_cmd_vtysh); |
| 13610 | install_element (ENABLE_NODE, &show_debugging_rip_cmd_vtysh); |
| 13611 | install_element (VIEW_NODE, &show_ip_route_cmd_vtysh); |
| 13612 | install_element (VIEW_NODE, &show_ipv6_ospf6_area_spf_tree_cmd_vtysh); |
| 13613 | install_element (RIPNG_NODE, &no_ripng_redistribute_static_routemap_cmd_vtysh); |
| 13614 | install_element (CONFIG_NODE, &no_access_list_extended_mask_host_cmd_vtysh); |
| 13615 | install_element (RIP_NODE, &no_rip_default_metric_cmd_vtysh); |
| 13616 | install_element (INTERFACE_NODE, &no_bandwidth_if_cmd_vtysh); |
| 13617 | install_element (VIEW_NODE, &ipv6_bgp_neighbor_advertised_route_cmd_vtysh); |
| 13618 | install_element (CONFIG_NODE, &no_debug_bgp_fsm_cmd_vtysh); |
| 13619 | install_element (CONFIG_NODE, &ipv6_prefix_list_seq_cmd_vtysh); |
| 13620 | install_element (RMAP_NODE, &no_match_interface_cmd_vtysh); |
| 13621 | install_element (VIEW_NODE, &show_bgp_ipv6_cmd_vtysh); |
| 13622 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged_cmd_vtysh); |
| 13623 | install_element (RIPNG_NODE, &no_ripng_default_metric_cmd_vtysh); |
| 13624 | install_element (RIPNG_NODE, &no_ripng_default_metric_val_cmd_vtysh); |
| 13625 | install_element (BGP_IPV4_NODE, &neighbor_default_originate_rmap_cmd_vtysh); |
| 13626 | install_element (CONFIG_NODE, &no_debug_ospf_lsa_sub_cmd_vtysh); |
| 13627 | install_element (ENABLE_NODE, &show_ipv6_bgp_cmd_vtysh); |
| 13628 | install_element (ENABLE_NODE, &clear_ip_bgp_all_in_prefix_filter_cmd_vtysh); |
| 13629 | install_element (BGP_NODE, &no_bgp_redistribute_ipv4_metric_cmd_vtysh); |
| 13630 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community2_exact_cmd_vtysh); |
| 13631 | install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_list_cmd_vtysh); |
| 13632 | install_element (BGP_IPV4M_NODE, &no_neighbor_remove_private_as_cmd_vtysh); |
| 13633 | install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_in_cmd_vtysh); |
| 13634 | install_element (BGP_NODE, &no_bgp_network_mask_natural_backdoor_cmd_vtysh); |
| 13635 | install_element (INTERFACE_NODE, &no_ip_rip_authentication_key_chain2_cmd_vtysh); |
| 13636 | install_element (BGP_NODE, &no_neighbor_timers_cmd_vtysh); |
| 13637 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_out_cmd_vtysh); |
| 13638 | install_element (VIEW_NODE, &show_ip_ospf_database_type_id_adv_router_cmd_vtysh); |
| 13639 | install_element (CONFIG_NODE, &no_access_list_extended_host_any_cmd_vtysh); |
| 13640 | install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_cmd_vtysh); |
| 13641 | install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd_vtysh); |
| 13642 | install_element (ENABLE_NODE, &show_bgp_community_list_cmd_vtysh); |
| 13643 | install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_cmd_vtysh); |
| 13644 | install_element (RIPNG_NODE, &no_ripng_redistribute_connected_metric_routemap_cmd_vtysh); |
| 13645 | install_element (RMAP_NODE, &ospf6_routemap_no_set_forwarding_cmd_vtysh); |
| 13646 | install_element (RMAP_NODE, &set_ipv6_nexthop_global_cmd_vtysh); |
| 13647 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_cmd_vtysh); |
| 13648 | install_element (BGP_NODE, &bgp_bestpath_compare_router_id_cmd_vtysh); |
| 13649 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged6_cmd_vtysh); |
| 13650 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_as_set_cmd_vtysh); |
| 13651 | install_element (INTERFACE_NODE, &shutdown_if_cmd_vtysh); |
| 13652 | install_element (RIPNG_NODE, &ripng_redistribute_connected_metric_routemap_cmd_vtysh); |
| 13653 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh); |
| 13654 | install_element (ENABLE_NODE, &show_ip_bgp_neighbors_cmd_vtysh); |
| 13655 | install_element (ENABLE_NODE, &no_debug_ospf_zebra_cmd_vtysh); |
| 13656 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community3_cmd_vtysh); |
| 13657 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_out_cmd_vtysh); |
| 13658 | install_element (RIP_NODE, &rip_distance_source_cmd_vtysh); |
| 13659 | install_element (OSPF_NODE, &router_id_cmd_vtysh); |
| 13660 | install_element (ENABLE_NODE, &no_debug_bgp_all_cmd_vtysh); |
| 13661 | install_element (RMAP_NODE, &no_set_community_delete_cmd_vtysh); |
| 13662 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_in_prefix_filter_cmd_vtysh); |
| 13663 | install_element (ENABLE_NODE, &show_bgp_route_map_cmd_vtysh); |
| 13664 | install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_list_cmd_vtysh); |
| 13665 | install_element (BGP_IPV6_NODE, &neighbor_route_reflector_client_cmd_vtysh); |
| 13666 | install_element (BGP_IPV6_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh); |
| 13667 | install_element (INTERFACE_NODE, &ip_ospf_authentication_addr_cmd_vtysh); |
| 13668 | install_element (BGP_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh); |
| 13669 | install_element (RMAP_NODE, &match_ip_address_cmd_vtysh); |
| 13670 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh); |
| 13671 | install_element (CONFIG_NODE, &access_list_standard_cmd_vtysh); |
| 13672 | install_element (VIEW_NODE, &show_ip_ospf_database_type_adv_router_cmd_vtysh); |
| 13673 | install_element (BGP_IPV4_NODE, &no_neighbor_set_peer_group_cmd_vtysh); |
| 13674 | install_element (VIEW_NODE, &show_bgp_community_list_cmd_vtysh); |
| 13675 | install_element (INTERFACE_NODE, &ip_rip_send_version_1_cmd_vtysh); |
| 13676 | install_element (VIEW_NODE, &show_bgp_ipv6_neighbors_peer_cmd_vtysh); |
| 13677 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_cmd_vtysh); |
| 13678 | install_element (OSPF_NODE, &ospf_distance_cmd_vtysh); |
| 13679 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_out_cmd_vtysh); |
| 13680 | install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_addr_cmd_vtysh); |
| 13681 | install_element (KEYCHAIN_KEY_NODE, &no_key_cmd_vtysh); |
| 13682 | install_element (CONFIG_NODE, &ipv6_access_list_remark_cmd_vtysh); |
| 13683 | install_element (VIEW_NODE, &show_ipv6_ospf6_topology_router_cmd_vtysh); |
| 13684 | install_element (ENABLE_NODE, &show_ip_bgp_prefix_list_cmd_vtysh); |
| 13685 | install_element (CONFIG_NODE, &debug_ospf_nsm_cmd_vtysh); |
| 13686 | install_element (VIEW_NODE, &show_ip_bgp_neighbor_damp_cmd_vtysh); |
| 13687 | install_element (CONFIG_NODE, &no_ip_community_list_name_expanded_cmd_vtysh); |
| 13688 | install_element (ENABLE_NODE, &show_ip_bgp_view_prefix_cmd_vtysh); |
| 13689 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community3_exact_cmd_vtysh); |
| 13690 | install_element (VIEW_NODE, &show_bgp_route_map_cmd_vtysh); |
| 13691 | install_element (INTERFACE_NODE, &ipv6_ospf6_advertise_prefix_list_cmd_vtysh); |
| 13692 | install_element (BGP_IPV4M_NODE, &aggregate_address_summary_as_set_cmd_vtysh); |
| 13693 | install_element (BGP_IPV4M_NODE, &neighbor_allowas_in_cmd_vtysh); |
| 13694 | install_element (BGP_NODE, &bgp_redistribute_ipv4_rmap_metric_cmd_vtysh); |
| 13695 | install_element (CONFIG_NODE, &no_key_chain_cmd_vtysh); |
| 13696 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community4_cmd_vtysh); |
| 13697 | install_element (ENABLE_NODE, &undebug_bgp_all_cmd_vtysh); |
| 13698 | install_element (RMAP_NODE, &no_set_community_cmd_vtysh); |
| 13699 | install_element (RMAP_NODE, &no_set_aggregator_as_cmd_vtysh); |
| 13700 | install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh); |
| 13701 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh); |
| 13702 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_in_cmd_vtysh); |
| 13703 | install_element (BGP_IPV6_NODE, &no_neighbor_maximum_prefix_cmd_vtysh); |
| 13704 | install_element (ENABLE_NODE, &clear_bgp_as_soft_in_cmd_vtysh); |
| 13705 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh); |
| 13706 | install_element (OSPF_NODE, &no_refresh_timer_cmd_vtysh); |
| 13707 | install_element (VIEW_NODE, &show_ip_bgp_prefix_list_cmd_vtysh); |
| 13708 | install_element (BGP_NODE, &bgp_network_mask_natural_cmd_vtysh); |
| 13709 | install_element (ENABLE_NODE, &show_bgp_neighbor_received_prefix_filter_cmd_vtysh); |
| 13710 | install_element (ENABLE_NODE, &show_ipv6_route_ospf6_external_cmd_vtysh); |
| 13711 | install_element (BGP_IPV6_NODE, &neighbor_unsuppress_map_cmd_vtysh); |
| 13712 | install_element (BGP_IPV6_NODE, &neighbor_remove_private_as_cmd_vtysh); |
| 13713 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_cmd_vtysh); |
| 13714 | install_element (BGP_IPV4M_NODE, &no_neighbor_send_community_cmd_vtysh); |
| 13715 | install_element (RIP_NODE, &no_rip_route_cmd_vtysh); |
| 13716 | install_element (ENABLE_NODE, &show_ip_forwarding_cmd_vtysh); |
| 13717 | install_element (ENABLE_NODE, &debug_rip_packet_cmd_vtysh); |
| 13718 | install_element (RIP_NODE, &rip_route_cmd_vtysh); |
| 13719 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh); |
| 13720 | install_element (OSPF_NODE, &neighbor_priority_poll_interval_cmd_vtysh); |
| 13721 | install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_cmd_vtysh); |
| 13722 | install_element (BGP_NODE, &neighbor_port_cmd_vtysh); |
| 13723 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged5_cmd_vtysh); |
| 13724 | install_element (ENABLE_NODE, &show_ip_prefix_list_detail_name_cmd_vtysh); |
| 13725 | install_element (RIPNG_NODE, &ripng_redistribute_static_routemap_cmd_vtysh); |
| 13726 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_paths_cmd_vtysh); |
| 13727 | install_element (BGP_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh); |
| 13728 | install_element (BGP_IPV6_NODE, &no_neighbor_default_originate_rmap_cmd_vtysh); |
| 13729 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged1_cmd_vtysh); |
| 13730 | install_element (CONFIG_NODE, &no_debug_ripng_zebra_cmd_vtysh); |
| 13731 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_route_map_cmd_vtysh); |
| 13732 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community4_exact_cmd_vtysh); |
| 13733 | install_element (BGP_NODE, &bgp_damp_unset_cmd_vtysh); |
| 13734 | install_element (VIEW_NODE, &show_ipv6_route_cmd_vtysh); |
| 13735 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_route_cmd_vtysh); |
| 13736 | install_element (ENABLE_NODE, &clear_bgp_external_soft_out_cmd_vtysh); |
| 13737 | install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_cmd_vtysh); |
| 13738 | install_element (BGP_IPV4_NODE, &no_bgp_network_cmd_vtysh); |
| 13739 | install_element (VIEW_NODE, &show_ipv6_bgp_prefix_cmd_vtysh); |
| 13740 | install_element (OSPF6_NODE, &flap_damping_route_cmd_vtysh); |
| 13741 | install_element (BGP_NODE, &no_auto_summary_cmd_vtysh); |
| 13742 | install_element (ENABLE_NODE, &ipv6_bgp_neighbor_routes_cmd_vtysh); |
| 13743 | install_element (CONFIG_NODE, &no_ip_route_mask_cmd_vtysh); |
| 13744 | install_element (RMAP_NODE, &match_ipv6_address_prefix_list_cmd_vtysh); |
| 13745 | install_element (BGP_NODE, &no_neighbor_send_community_cmd_vtysh); |
| 13746 | install_element (BGP_VPNV4_NODE, &no_neighbor_send_community_cmd_vtysh); |
| 13747 | install_element (BGP_IPV4M_NODE, &no_neighbor_filter_list_cmd_vtysh); |
| 13748 | install_element (OSPF_NODE, &area_range_advertise_cmd_vtysh); |
| 13749 | install_element (OSPF_NODE, &ospf_default_information_originate_always_metric_cmd_vtysh); |
| 13750 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community2_cmd_vtysh); |
| 13751 | install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_in_cmd_vtysh); |
| 13752 | install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_addr_cmd_vtysh); |
| 13753 | install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_cmd_vtysh); |
| 13754 | install_element (ENABLE_NODE, &clear_ip_bgp_as_ipv4_soft_out_cmd_vtysh); |
| 13755 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community2_cmd_vtysh); |
| 13756 | install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_soft_out_cmd_vtysh); |
| 13757 | install_element (CONFIG_NODE, &ip_community_list_expanded_cmd_vtysh); |
| 13758 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh); |
| 13759 | install_element (BGP_VPNV4_NODE, &no_neighbor_prefix_list_cmd_vtysh); |
| 13760 | install_element (ENABLE_NODE, &no_debug_rip_events_cmd_vtysh); |
| 13761 | install_element (ENABLE_NODE, &show_ip_prefix_list_summary_cmd_vtysh); |
| 13762 | install_element (INTERFACE_NODE, &ip_ospf_authentication_args_addr_cmd_vtysh); |
| 13763 | install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_cmd_vtysh); |
| 13764 | install_element (OSPF_NODE, &ospf_default_metric_cmd_vtysh); |
| 13765 | install_element (VIEW_NODE, &show_ip_prefix_list_summary_cmd_vtysh); |
| 13766 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_prefix_longer_cmd_vtysh); |
| 13767 | install_element (INTERFACE_NODE, &ip_rip_send_version_2_cmd_vtysh); |
| 13768 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community2_exact_cmd_vtysh); |
| 13769 | install_element (ENABLE_NODE, &show_ip_bgp_community_info_cmd_vtysh); |
| 13770 | install_element (OSPF_NODE, &ospf_default_information_originate_always_type_metric_routemap_cmd_vtysh); |
| 13771 | install_element (ENABLE_NODE, &show_ipv6_bgp_regexp_cmd_vtysh); |
| 13772 | install_element (CONFIG_NODE, &ip_extcommunity_list_name_standard_cmd_vtysh); |
| 13773 | install_element (CONFIG_NODE, &no_debug_ospf_nsm_cmd_vtysh); |
| 13774 | install_element (BGP_NODE, &no_bgp_confederation_identifier_arg_cmd_vtysh); |
| 13775 | install_element (VIEW_NODE, &show_ipv6_mbgp_community2_exact_cmd_vtysh); |
| 13776 | install_element (ENABLE_NODE, &show_version_ospf6_cmd_vtysh); |
| 13777 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged10_cmd_vtysh); |
| 13778 | install_element (BGP_IPV6_NODE, &no_ipv6_bgp_network_route_map_cmd_vtysh); |
| 13779 | install_element (ENABLE_NODE, &clear_bgp_all_in_cmd_vtysh); |
| 13780 | install_element (VIEW_NODE, &show_ipv6_bgp_community_list_exact_cmd_vtysh); |
| 13781 | install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_cmd_vtysh); |
| 13782 | install_element (CONFIG_NODE, &debug_rip_packet_direct_cmd_vtysh); |
| 13783 | install_element (VIEW_NODE, &show_ip_prefix_list_cmd_vtysh); |
| 13784 | install_element (OSPF_NODE, &ospf_default_information_originate_metric_routemap_cmd_vtysh); |
| 13785 | install_element (VIEW_NODE, &show_ip_bgp_route_map_cmd_vtysh); |
| 13786 | install_element (VIEW_NODE, &show_ipv6_bgp_prefix_longer_cmd_vtysh); |
| 13787 | install_element (RIP_NODE, &no_rip_passive_interface_cmd_vtysh); |
| 13788 | install_element (CONFIG_NODE, &access_list_extended_mask_any_cmd_vtysh); |
| 13789 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_tags_cmd_vtysh); |
| 13790 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd_vtysh); |
| 13791 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged5_cmd_vtysh); |
| 13792 | install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_received_routes_cmd_vtysh); |
| 13793 | install_element (ENABLE_NODE, &clear_ip_bgp_as_in_prefix_filter_cmd_vtysh); |
| 13794 | install_element (OSPF_NODE, &no_ospf_distribute_list_out_cmd_vtysh); |
| 13795 | install_element (ENABLE_NODE, &show_interface_cmd_vtysh); |
| 13796 | install_element (BGP_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh); |
| 13797 | install_element (VIEW_NODE, &show_ip_extcommunity_list_cmd_vtysh); |
| 13798 | install_element (ENABLE_NODE, &ipv6_bgp_neighbor_advertised_route_cmd_vtysh); |
| 13799 | install_element (OSPF_NODE, &area_vlink_authtype_args_cmd_vtysh); |
| 13800 | install_element (VIEW_NODE, &show_ip_bgp_instance_ipv4_summary_cmd_vtysh); |
| 13801 | install_element (ENABLE_NODE, &show_bgp_instance_summary_cmd_vtysh); |
| 13802 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_prefix_cmd_vtysh); |
| 13803 | install_element (OSPF_NODE, &area_vlink_authtype_cmd_vtysh); |
| 13804 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh); |
| 13805 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community2_cmd_vtysh); |
| 13806 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_ipv4_soft_in_cmd_vtysh); |
| 13807 | install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_in_cmd_vtysh); |
| 13808 | install_element (ENABLE_NODE, &show_ip_community_list_cmd_vtysh); |
| 13809 | install_element (VIEW_NODE, &show_bgp_ipv6_community4_cmd_vtysh); |
| 13810 | install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_addr_cmd_vtysh); |
| 13811 | install_element (CONFIG_NODE, &no_ip_prefix_list_description_cmd_vtysh); |
| 13812 | install_element (INTERFACE_NODE, &ip_rip_receive_version_cmd_vtysh); |
| 13813 | install_element (BGP_NODE, &neighbor_ebgp_multihop_cmd_vtysh); |
| 13814 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged2_cmd_vtysh); |
| 13815 | install_element (OSPF_NODE, &area_filter_list_cmd_vtysh); |
| 13816 | install_element (BGP_NODE, &no_neighbor_timers_connect_val_cmd_vtysh); |
| 13817 | install_element (BGP_NODE, &neighbor_unsuppress_map_cmd_vtysh); |
| 13818 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_list_exact_cmd_vtysh); |
| 13819 | install_element (VIEW_NODE, &show_interface_cmd_vtysh); |
| 13820 | install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_inter_cmd_vtysh); |
| 13821 | install_element (BGP_NODE, &neighbor_description_cmd_vtysh); |
| 13822 | install_element (CONFIG_NODE, &access_list_remark_cmd_vtysh); |
| 13823 | install_element (INTERFACE_NODE, &ipv6_ospf6_hellointerval_cmd_vtysh); |
| 13824 | install_element (BGP_IPV4M_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh); |
| 13825 | install_element (CONFIG_NODE, &dump_bgp_all_interval_cmd_vtysh); |
| 13826 | install_element (VIEW_NODE, &show_ip_bgp_flap_route_map_cmd_vtysh); |
| 13827 | install_element (OSPF_NODE, &no_area_range_substitute_cmd_vtysh); |
| 13828 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged10_cmd_vtysh); |
| 13829 | install_element (INTERFACE_NODE, &ip_ospf_network_cmd_vtysh); |
| 13830 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbors_peer_cmd_vtysh); |
| 13831 | install_element (CONFIG_NODE, &debug_zebra_events_cmd_vtysh); |
| 13832 | install_element (RMAP_NODE, &no_match_origin_val_cmd_vtysh); |
| 13833 | install_element (OSPF_NODE, &area_default_cost_cmd_vtysh); |
| 13834 | install_element (KEYCHAIN_KEY_NODE, &key_string_cmd_vtysh); |
| 13835 | install_element (VIEW_NODE, &show_ipv6_mbgp_community4_exact_cmd_vtysh); |
| 13836 | install_element (BGP_IPV4M_NODE, &neighbor_capability_orf_prefix_cmd_vtysh); |
| 13837 | install_element (BGP_IPV4M_NODE, &neighbor_route_server_client_cmd_vtysh); |
| 13838 | install_element (BGP_NODE, &old_ipv6_aggregate_address_summary_only_cmd_vtysh); |
| 13839 | install_element (VIEW_NODE, &show_ipv6_ospf6_area_spf_node_cmd_vtysh); |
| 13840 | install_element (BGP_NODE, &neighbor_enforce_multihop_cmd_vtysh); |
| 13841 | install_element (RMAP_NODE, &set_weight_cmd_vtysh); |
| 13842 | install_element (VIEW_NODE, &show_debugging_ripng_cmd_vtysh); |
| 13843 | install_element (OSPF_NODE, &area_import_list_cmd_vtysh); |
| 13844 | install_element (CONFIG_NODE, &no_debug_zebra_packet_cmd_vtysh); |
| 13845 | install_element (RIPNG_NODE, &no_default_information_originate_cmd_vtysh); |
| 13846 | install_element (OSPF_NODE, &no_area_stub_cmd_vtysh); |
| 13847 | install_element (CONFIG_NODE, &no_ip_extcommunity_list_expanded_cmd_vtysh); |
| 13848 | install_element (BGP_IPV6_NODE, &neighbor_send_community_cmd_vtysh); |
| 13849 | install_element (VIEW_NODE, &show_bgp_cmd_vtysh); |
| 13850 | install_element (RMAP_NODE, &match_ecommunity_cmd_vtysh); |
| 13851 | install_element (RIPNG_NODE, &ripng_redistribute_bgp_routemap_cmd_vtysh); |
| 13852 | install_element (BGP_IPV4M_NODE, &no_neighbor_nexthop_self_cmd_vtysh); |
| 13853 | install_element (RIPNG_NODE, &ripng_network_cmd_vtysh); |
| 13854 | install_element (CONFIG_NODE, &debug_ripng_events_cmd_vtysh); |
| 13855 | install_element (BGP_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh); |
| 13856 | install_element (BGP_NODE, &no_neighbor_prefix_list_cmd_vtysh); |
| 13857 | install_element (VIEW_NODE, &show_ip_bgp_instance_neighbors_cmd_vtysh); |
| 13858 | install_element (BGP_NODE, &bgp_default_local_preference_cmd_vtysh); |
| 13859 | install_element (RMAP_NODE, &match_ip_next_hop_cmd_vtysh); |
| 13860 | install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_as_set_cmd_vtysh); |
| 13861 | install_element (ENABLE_NODE, &clear_bgp_peer_soft_cmd_vtysh); |
| 13862 | install_element (VIEW_NODE, &show_ip_community_list_cmd_vtysh); |
| 13863 | install_element (VIEW_NODE, &show_debugging_zebra_cmd_vtysh); |
| 13864 | install_element (VIEW_NODE, &show_bgp_community4_exact_cmd_vtysh); |
| 13865 | install_element (BGP_NODE, &aggregate_address_mask_summary_only_cmd_vtysh); |
| 13866 | install_element (OSPF_NODE, &area_vlink_authtype_args_md5_cmd_vtysh); |
| 13867 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh); |
| 13868 | install_element (ENABLE_NODE, &show_ipv6_bgp_community3_exact_cmd_vtysh); |
| 13869 | install_element (ENABLE_NODE, &show_ipv6_ospf6_neighbor_cmd_vtysh); |
| 13870 | install_element (ENABLE_NODE, &show_ip_bgp_cidr_only_cmd_vtysh); |
| 13871 | install_element (ENABLE_NODE, &show_ip_access_list_name_cmd_vtysh); |
| 13872 | install_element (ENABLE_NODE, &show_bgp_ipv6_route_cmd_vtysh); |
| 13873 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged8_cmd_vtysh); |
| 13874 | install_element (CONFIG_NODE, &no_debug_ripng_packet_cmd_vtysh); |
| 13875 | install_element (OSPF_NODE, &ospf_default_information_originate_routemap_cmd_vtysh); |
| 13876 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged4_cmd_vtysh); |
| 13877 | install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_cmd_vtysh); |
| 13878 | install_element (VIEW_NODE, &show_ipv6_mbgp_prefix_longer_cmd_vtysh); |
| 13879 | install_element (VIEW_NODE, &show_bgp_community3_exact_cmd_vtysh); |
| 13880 | install_element (BGP_NODE, &no_bgp_default_ipv4_unicast_cmd_vtysh); |
| 13881 | install_element (VIEW_NODE, &show_ip_prefix_list_prefix_cmd_vtysh); |
| 13882 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_summary_cmd_vtysh); |
| 13883 | install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_as_set_summary_cmd_vtysh); |
| 13884 | install_element (CONFIG_NODE, &bgp_multiple_instance_cmd_vtysh); |
| 13885 | install_element (BGP_NODE, &bgp_network_cmd_vtysh); |
| 13886 | install_element (VIEW_NODE, &show_ipv6_bgp_summary_cmd_vtysh); |
| 13887 | install_element (BGP_NODE, &no_neighbor_route_map_cmd_vtysh); |
| 13888 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_detail_cmd_vtysh); |
| 13889 | install_element (CONFIG_NODE, &no_router_rip_cmd_vtysh); |
| 13890 | install_element (RMAP_NODE, &no_match_metric_val_cmd_vtysh); |
| 13891 | install_element (RMAP_NODE, &no_set_originator_id_val_cmd_vtysh); |
| 13892 | install_element (BGP_NODE, &no_bgp_bestpath_med_cmd_vtysh); |
| 13893 | install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_inter_cmd_vtysh); |
| 13894 | install_element (VIEW_NODE, &show_bgp_neighbor_received_routes_cmd_vtysh); |
| 13895 | install_element (BGP_IPV4_NODE, &aggregate_address_summary_only_cmd_vtysh); |
| 13896 | install_element (CONFIG_NODE, &ipv6_prefix_list_seq_le_ge_cmd_vtysh); |
| 13897 | install_element (OSPF_NODE, &no_area_vlink_md5_cmd_vtysh); |
| 13898 | install_element (BGP_IPV4M_NODE, &neighbor_allowas_in_arg_cmd_vtysh); |
| 13899 | install_element (CONFIG_NODE, &ip_prefix_list_le_cmd_vtysh); |
| 13900 | install_element (CONFIG_NODE, &dump_bgp_updates_interval_cmd_vtysh); |
| 13901 | install_element (OSPF_NODE, &passive_interface_addr_cmd_vtysh); |
| 13902 | install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_natural_cmd_vtysh); |
| 13903 | install_element (BGP_IPV4M_NODE, &aggregate_address_mask_as_set_cmd_vtysh); |
| 13904 | install_element (BGP_IPV4M_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh); |
| 13905 | install_element (OSPF_NODE, &no_ospf_default_metric_cmd_vtysh); |
| 13906 | install_element (ENABLE_NODE, &clear_ip_bgp_external_in_prefix_filter_cmd_vtysh); |
| 13907 | install_element (BGP_IPV4M_NODE, &bgp_network_cmd_vtysh); |
| 13908 | install_element (VIEW_NODE, &show_ip_community_list_arg_cmd_vtysh); |
| 13909 | install_element (CONFIG_NODE, &ip_as_path_cmd_vtysh); |
| 13910 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_summary_cmd_vtysh); |
| 13911 | install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_cmd_vtysh); |
| 13912 | install_element (VIEW_NODE, &show_ipv6_prefix_list_detail_cmd_vtysh); |
| 13913 | install_element (CONFIG_NODE, &no_ip_prefix_list_ge_le_cmd_vtysh); |
| 13914 | install_element (CONFIG_NODE, &ipv6_prefix_list_cmd_vtysh); |
| 13915 | install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_cmd_vtysh); |
| 13916 | install_element (BGP_NODE, &bgp_bestpath_med_cmd_vtysh); |
| 13917 | install_element (ENABLE_NODE, &show_ip_bgp_view_cmd_vtysh); |
| 13918 | install_element (ENABLE_NODE, &show_ip_bgp_community_all_cmd_vtysh); |
| 13919 | install_element (BGP_NODE, &neighbor_allowas_in_arg_cmd_vtysh); |
| 13920 | install_element (BGP_VPNV4_NODE, &neighbor_allowas_in_arg_cmd_vtysh); |
| 13921 | install_element (ENABLE_NODE, &show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh); |
| 13922 | install_element (RMAP_NODE, &no_match_community_cmd_vtysh); |
| 13923 | install_element (ENABLE_NODE, &show_ip_bgp_instance_ipv4_summary_cmd_vtysh); |
| 13924 | install_element (RIP_NODE, &no_rip_offset_list_ifname_cmd_vtysh); |
| 13925 | install_element (BGP_NODE, &aggregate_address_mask_summary_as_set_cmd_vtysh); |
| 13926 | install_element (ENABLE_NODE, &debug_ospf_nsm_sub_cmd_vtysh); |
| 13927 | install_element (ENABLE_NODE, &show_ip_bgp_community3_cmd_vtysh); |
| 13928 | install_element (CONFIG_NODE, &no_access_list_extended_host_mask_cmd_vtysh); |
| 13929 | install_element (OSPF_NODE, &no_area_vlink_authtype_authkey_cmd_vtysh); |
| 13930 | install_element (VIEW_NODE, &show_bgp_ipv6_route_cmd_vtysh); |
| 13931 | install_element (BGP_VPNV4_NODE, &no_neighbor_allowas_in_cmd_vtysh); |
| 13932 | install_element (ENABLE_NODE, &undebug_bgp_normal_cmd_vtysh); |
| 13933 | install_element (ENABLE_NODE, &show_ip_bgp_scan_cmd_vtysh); |
| 13934 | install_element (OSPF_NODE, &ospf_abr_type_cmd_vtysh); |
| 13935 | install_element (VIEW_NODE, &show_ipv6_mbgp_filter_list_cmd_vtysh); |
| 13936 | install_element (RIP_NODE, &rip_redistribute_type_metric_cmd_vtysh); |
| 13937 | install_element (INTERFACE_NODE, &no_ospf_network_cmd_vtysh); |
| 13938 | install_element (BGP_IPV4_NODE, &no_neighbor_prefix_list_cmd_vtysh); |
| 13939 | install_element (ENABLE_NODE, &debug_ospf_ism_sub_cmd_vtysh); |
| 13940 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh); |
| 13941 | install_element (BGP_IPV6_NODE, &neighbor_route_map_cmd_vtysh); |
| 13942 | install_element (BGP_NODE, &neighbor_transparent_as_cmd_vtysh); |
| 13943 | install_element (BGP_NODE, &bgp_network_route_map_cmd_vtysh); |
| 13944 | install_element (CONFIG_NODE, &access_list_any_cmd_vtysh); |
| 13945 | install_element (CONFIG_NODE, &no_debug_bgp_update_cmd_vtysh); |
| 13946 | install_element (INTERFACE_NODE, &ip_rip_send_version_cmd_vtysh); |
| 13947 | install_element (BGP_NODE, &no_neighbor_attr_unchanged_cmd_vtysh); |
| 13948 | install_element (BGP_NODE, &neighbor_dont_capability_negotiate_cmd_vtysh); |
| 13949 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community_cmd_vtysh); |
| 13950 | install_element (ENABLE_NODE, &show_bgp_cmd_vtysh); |
| 13951 | install_element (ENABLE_NODE, &show_bgp_ipv6_route_map_cmd_vtysh); |
| 13952 | install_element (BGP_IPV4_NODE, &no_neighbor_unsuppress_map_cmd_vtysh); |
| 13953 | install_element (ENABLE_NODE, &ipv6_mbgp_neighbor_advertised_route_cmd_vtysh); |
| 13954 | install_element (KEYCHAIN_KEY_NODE, &no_key_string_cmd_vtysh); |
| 13955 | install_element (RMAP_NODE, &no_match_ip_address_val_cmd_vtysh); |
| 13956 | install_element (RMAP_NODE, &no_set_metric_val_cmd_vtysh); |
| 13957 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh); |
| 13958 | install_element (ENABLE_NODE, &show_bgp_community2_exact_cmd_vtysh); |
| 13959 | install_element (INTERFACE_NODE, &ospf_authentication_key_cmd_vtysh); |
| 13960 | install_element (RMAP_NODE, &set_aggregator_as_cmd_vtysh); |
| 13961 | install_element (BGP_NODE, &no_neighbor_remove_private_as_cmd_vtysh); |
| 13962 | install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_out_cmd_vtysh); |
| 13963 | install_element (CONFIG_NODE, &no_ip_prefix_list_le_cmd_vtysh); |
| 13964 | install_element (INTERFACE_NODE, &no_ip_ospf_priority_cmd_vtysh); |
| 13965 | install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_out_cmd_vtysh); |
| 13966 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_infinite_day_month_cmd_vtysh); |
| 13967 | install_element (RIP_NODE, &rip_version_cmd_vtysh); |
| 13968 | install_element (BGP_NODE, &no_neighbor_remote_as_cmd_vtysh); |
| 13969 | install_element (CONFIG_NODE, &ip_route_cmd_vtysh); |
| 13970 | install_element (ENABLE_NODE, &show_debugging_ospf_cmd_vtysh); |
| 13971 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged6_cmd_vtysh); |
| 13972 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community3_exact_cmd_vtysh); |
| 13973 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged9_cmd_vtysh); |
| 13974 | install_element (BGP_IPV4M_NODE, &no_neighbor_unsuppress_map_cmd_vtysh); |
| 13975 | install_element (VIEW_NODE, &show_ip_route_addr_cmd_vtysh); |
| 13976 | install_element (BGP_NODE, &neighbor_capability_orf_prefix_cmd_vtysh); |
| 13977 | install_element (BGP_NODE, &no_neighbor_nexthop_self_cmd_vtysh); |
| 13978 | install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_in_cmd_vtysh); |
| 13979 | install_element (CONFIG_NODE, &ip_prefix_list_cmd_vtysh); |
| 13980 | install_element (ENABLE_NODE, &clear_ip_prefix_list_name_cmd_vtysh); |
| 13981 | install_element (CONFIG_NODE, &no_ip_route_distance_cmd_vtysh); |
| 13982 | install_element (VIEW_NODE, &show_bgp_ipv6_route_map_cmd_vtysh); |
| 13983 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_cmd_vtysh); |
| 13984 | install_element (BGP_IPV6_NODE, &no_neighbor_distribute_list_cmd_vtysh); |
| 13985 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_prefix_cmd_vtysh); |
| 13986 | install_element (ENABLE_NODE, &show_ip_access_list_cmd_vtysh); |
| 13987 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community_list_cmd_vtysh); |
| 13988 | install_element (BGP_NODE, &no_neighbor_strict_capability_cmd_vtysh); |
| 13989 | install_element (ENABLE_NODE, &show_ipv6_ripng_cmd_vtysh); |
| 13990 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_duration_month_day_cmd_vtysh); |
| 13991 | install_element (ENABLE_NODE, &show_bgp_ipv6_neighbors_peer_cmd_vtysh); |
| 13992 | install_element (VIEW_NODE, &ipv6_bgp_neighbor_routes_cmd_vtysh); |
| 13993 | install_element (RIPNG_NODE, &ripng_default_metric_cmd_vtysh); |
| 13994 | install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_detail_cmd_vtysh); |
| 13995 | install_element (VIEW_NODE, &show_ip_protocols_rip_cmd_vtysh); |
| 13996 | install_element (ENABLE_NODE, &show_bgp_community3_cmd_vtysh); |
| 13997 | install_element (BGP_NODE, &no_neighbor_peer_group_cmd_vtysh); |
| 13998 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_infinite_month_day_cmd_vtysh); |
| 13999 | install_element (ENABLE_NODE, &clear_bgp_as_soft_cmd_vtysh); |
| 14000 | install_element (INTERFACE_NODE, &no_rip_split_horizon_cmd_vtysh); |
| 14001 | install_element (OSPF_NODE, &area_vlink_authtype_md5_cmd_vtysh); |
| 14002 | install_element (ENABLE_NODE, &clear_ip_bgp_all_soft_in_cmd_vtysh); |
| 14003 | install_element (BGP_IPV4_NODE, &neighbor_filter_list_cmd_vtysh); |
| 14004 | install_element (OSPF_NODE, &passive_interface_cmd_vtysh); |
| 14005 | install_element (BGP_IPV4_NODE, &no_neighbor_route_reflector_client_cmd_vtysh); |
| 14006 | install_element (ENABLE_NODE, &show_ipv6_ospf6_topology_cmd_vtysh); |
| 14007 | install_element (BGP_IPV4_NODE, &no_aggregate_address_as_set_summary_cmd_vtysh); |
| 14008 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd_vtysh); |
| 14009 | install_element (ENABLE_NODE, &show_ip_bgp_flap_prefix_longer_cmd_vtysh); |
| 14010 | install_element (BGP_NODE, &neighbor_advertise_interval_cmd_vtysh); |
| 14011 | install_element (CONFIG_NODE, &no_dump_bgp_all_cmd_vtysh); |
| 14012 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_prefix_list_cmd_vtysh); |
| 14013 | install_element (BGP_IPV6_NODE, &no_neighbor_default_originate_cmd_vtysh); |
| 14014 | install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_in_cmd_vtysh); |
| 14015 | install_element (CONFIG_NODE, &no_ip_prefix_list_prefix_cmd_vtysh); |
| 14016 | install_element (VIEW_NODE, &show_ip_bgp_community_list_cmd_vtysh); |
| 14017 | install_element (VIEW_NODE, &show_ipv6_prefix_list_summary_name_cmd_vtysh); |
| 14018 | install_element (VIEW_NODE, &show_ipv6_mbgp_community_cmd_vtysh); |
| 14019 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged6_cmd_vtysh); |
| 14020 | install_element (BGP_IPV4_NODE, &aggregate_address_mask_summary_only_cmd_vtysh); |
| 14021 | install_element (INTERFACE_NODE, &no_ip_ospf_cost_cmd_vtysh); |
| 14022 | install_element (ENABLE_NODE, &show_ip_route_protocol_cmd_vtysh); |
| 14023 | install_element (OSPF_NODE, &area_export_list_cmd_vtysh); |
| 14024 | install_element (OSPF6_NODE, &router_id_cmd_vtysh); |
| 14025 | install_element (CONFIG_NODE, &ipv6_access_list_exact_cmd_vtysh); |
| 14026 | install_element (OSPF_NODE, &no_ospf_abr_type_cmd_vtysh); |
| 14027 | install_element (RMAP_NODE, &no_match_aspath_val_cmd_vtysh); |
| 14028 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_group_ipv4_in_prefix_filter_cmd_vtysh); |
| 14029 | install_element (BGP_IPV4M_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh); |
| 14030 | install_element (ENABLE_NODE, &show_ip_bgp_dampened_paths_cmd_vtysh); |
| 14031 | install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_cmd_vtysh); |
| 14032 | install_element (BGP_NODE, &no_neighbor_peer_group_remote_as_cmd_vtysh); |
| 14033 | install_element (BGP_NODE, &neighbor_maximum_prefix_cmd_vtysh); |
| 14034 | install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_metric_rmap_cmd_vtysh); |
| 14035 | install_element (OSPF_NODE, &no_area_shortcut_cmd_vtysh); |
| 14036 | install_element (BGP_IPV4_NODE, &no_bgp_network_mask_natural_route_map_cmd_vtysh); |
| 14037 | install_element (INTERFACE_NODE, &ip_ospf_hello_interval_addr_cmd_vtysh); |
| 14038 | install_element (RIP_NODE, &no_rip_redistribute_type_metric_cmd_vtysh); |
| 14039 | install_element (VIEW_NODE, &show_ip_bgp_route_cmd_vtysh); |
| 14040 | install_element (ENABLE_NODE, &clear_ip_bgp_all_cmd_vtysh); |
| 14041 | install_element (ENABLE_NODE, &show_ipv6_ospf6_database_type_id_adv_router_dump_cmd_vtysh); |
| 14042 | install_element (ENABLE_NODE, &debug_zebra_kernel_cmd_vtysh); |
| 14043 | install_element (ENABLE_NODE, &no_debug_ospf_nsm_sub_cmd_vtysh); |
| 14044 | install_element (BGP_NODE, &no_bgp_distance_source_cmd_vtysh); |
| 14045 | install_element (CONFIG_NODE, &access_list_extended_host_host_cmd_vtysh); |
| 14046 | install_element (CONFIG_NODE, &no_debug_ospf6_all_cmd_vtysh); |
| 14047 | install_element (ENABLE_NODE, &show_bgp_neighbors_peer_cmd_vtysh); |
| 14048 | install_element (INTERFACE_NODE, &no_ip_ospf_authentication_cmd_vtysh); |
| 14049 | install_element (ENABLE_NODE, &clear_ip_bgp_as_vpnv4_soft_cmd_vtysh); |
| 14050 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_paths_cmd_vtysh); |
| 14051 | install_element (VIEW_NODE, &show_bgp_ipv6_summary_cmd_vtysh); |
| 14052 | install_element (ENABLE_NODE, &debug_ripng_packet_detail_cmd_vtysh); |
| 14053 | install_element (VIEW_NODE, &show_ip_ospf_database_type_self_cmd_vtysh); |
| 14054 | install_element (VIEW_NODE, &show_bgp_summary_cmd_vtysh); |
| 14055 | install_element (ENABLE_NODE, &no_debug_ospf_ism_sub_cmd_vtysh); |
| 14056 | install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_in_cmd_vtysh); |
| 14057 | install_element (ENABLE_NODE, &clear_ip_bgp_all_ipv4_soft_out_cmd_vtysh); |
| 14058 | install_element (CONFIG_NODE, &ip_community_list_name_standard2_cmd_vtysh); |
| 14059 | install_element (VIEW_NODE, &show_bgp_route_cmd_vtysh); |
| 14060 | install_element (BGP_NODE, &no_bgp_bestpath_med2_cmd_vtysh); |
| 14061 | install_element (ENABLE_NODE, &show_ipv6_mbgp_summary_cmd_vtysh); |
| 14062 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_name_cmd_vtysh); |
| 14063 | install_element (ZEBRA_NODE, &redistribute_ospf6_cmd_vtysh); |
| 14064 | install_element (ENABLE_NODE, &show_ip_ospf_neighbor_cmd_vtysh); |
| 14065 | install_element (VIEW_NODE, &show_ip_forwarding_cmd_vtysh); |
| 14066 | install_element (BGP_NODE, &no_bgp_deterministic_med_cmd_vtysh); |
| 14067 | install_element (ENABLE_NODE, &show_bgp_neighbor_routes_cmd_vtysh); |
| 14068 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_summary_cmd_vtysh); |
| 14069 | install_element (CONFIG_NODE, &ip_prefix_list_ge_le_cmd_vtysh); |
| 14070 | install_element (CONFIG_NODE, &debug_zebra_packet_direct_cmd_vtysh); |
| 14071 | install_element (BGP_NODE, &bgp_network_mask_route_map_cmd_vtysh); |
| 14072 | install_element (ENABLE_NODE, &debug_rip_packet_detail_cmd_vtysh); |
| 14073 | install_element (BGP_NODE, &no_bgp_cluster_id_arg_cmd_vtysh); |
| 14074 | install_element (BGP_NODE, &no_neighbor_description_cmd_vtysh); |
| 14075 | install_element (CONFIG_NODE, &no_debug_ospf_zebra_cmd_vtysh); |
| 14076 | install_element (RMAP_NODE, &match_community_exact_cmd_vtysh); |
| 14077 | install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_received_prefix_filter_cmd_vtysh); |
| 14078 | install_element (BGP_NODE, &bgp_fast_external_failover_cmd_vtysh); |
| 14079 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_cmd_vtysh); |
| 14080 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_description_cmd_vtysh); |
| 14081 | install_element (BGP_IPV4_NODE, &no_bgp_network_mask_natural_cmd_vtysh); |
| 14082 | install_element (BGP_NODE, &bgp_network_mask_natural_route_map_cmd_vtysh); |
| 14083 | install_element (INTERFACE_NODE, &no_ospf_retransmit_interval_cmd_vtysh); |
| 14084 | install_element (BGP_NODE, &no_aggregate_address_mask_cmd_vtysh); |
| 14085 | install_element (VIEW_NODE, &show_bgp_community_cmd_vtysh); |
| 14086 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community4_exact_cmd_vtysh); |
| 14087 | install_element (ENABLE_NODE, &show_ipv6_bgp_prefix_longer_cmd_vtysh); |
| 14088 | install_element (OSPF_NODE, &no_ospf_distance_cmd_vtysh); |
| 14089 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged5_cmd_vtysh); |
| 14090 | install_element (BGP_IPV4M_NODE, &neighbor_default_originate_cmd_vtysh); |
| 14091 | install_element (ENABLE_NODE, &show_ipv6_ospf6_database_cmd_vtysh); |
| 14092 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_out_cmd_vtysh); |
| 14093 | install_element (VIEW_NODE, &show_ipv6_bgp_community2_exact_cmd_vtysh); |
| 14094 | install_element (ENABLE_NODE, &show_ip_route_supernets_cmd_vtysh); |
| 14095 | install_element (BGP_IPV6_NODE, &bgp_redistribute_ipv6_rmap_cmd_vtysh); |
| 14096 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd_vtysh); |
| 14097 | install_element (BGP_NODE, &bgp_router_id_cmd_vtysh); |
| 14098 | install_element (RMAP_NODE, &no_set_community_delete_val_cmd_vtysh); |
| 14099 | install_element (BGP_NODE, &no_bgp_redistribute_ipv4_metric_rmap_cmd_vtysh); |
| 14100 | install_element (OSPF_NODE, &no_area_vlink_param1_cmd_vtysh); |
| 14101 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh); |
| 14102 | install_element (VIEW_NODE, &show_ipv6_mbgp_cmd_vtysh); |
| 14103 | install_element (BGP_IPV4M_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh); |
| 14104 | install_element (RIPNG_NODE, &ripng_redistribute_connected_cmd_vtysh); |
| 14105 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_summary_cmd_vtysh); |
| 14106 | install_element (CONFIG_NODE, &ip_route_distance_cmd_vtysh); |
| 14107 | install_element (BGP_IPV4M_NODE, &neighbor_send_community_cmd_vtysh); |
| 14108 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh); |
| 14109 | install_element (BGP_IPV6_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh); |
| 14110 | install_element (ENABLE_NODE, &clear_bgp_all_out_cmd_vtysh); |
| 14111 | install_element (VIEW_NODE, &show_ipv6_prefix_list_prefix_cmd_vtysh); |
| 14112 | install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_external_cmd_vtysh); |
| 14113 | install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_rmap_cmd_vtysh); |
| 14114 | install_element (OSPF_NODE, &refresh_timer_cmd_vtysh); |
| 14115 | install_element (BGP_IPV4_NODE, &neighbor_capability_orf_prefix_cmd_vtysh); |
| 14116 | install_element (ENABLE_NODE, &show_bgp_ipv6_prefix_list_cmd_vtysh); |
| 14117 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_month_day_month_day_cmd_vtysh); |
| 14118 | install_element (BGP_NODE, &neighbor_default_originate_cmd_vtysh); |
| 14119 | install_element (CONFIG_NODE, &debug_ospf_zebra_cmd_vtysh); |
| 14120 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_exact_cmd_vtysh); |
| 14121 | install_element (CONFIG_NODE, &no_debug_bgp_filter_cmd_vtysh); |
| 14122 | install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_cmd_vtysh); |
| 14123 | install_element (BGP_IPV4_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh); |
| 14124 | install_element (ENABLE_NODE, &no_debug_rip_zebra_cmd_vtysh); |
| 14125 | install_element (ENABLE_NODE, &no_debug_rip_packet_cmd_vtysh); |
| 14126 | install_element (VIEW_NODE, &show_version_ospf6_cmd_vtysh); |
| 14127 | install_element (VIEW_NODE, &show_ip_bgp_flap_prefix_cmd_vtysh); |
| 14128 | install_element (BGP_IPV6_NODE, &no_neighbor_unsuppress_map_cmd_vtysh); |
| 14129 | install_element (VIEW_NODE, &show_ip_route_supernets_cmd_vtysh); |
| 14130 | install_element (RIP_NODE, &rip_redistribute_type_routemap_cmd_vtysh); |
| 14131 | install_element (ENABLE_NODE, &clear_ip_bgp_dampening_address_cmd_vtysh); |
| 14132 | install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_val_cmd_vtysh); |
| 14133 | install_element (RMAP_NODE, &rmap_onmatch_goto_cmd_vtysh); |
| 14134 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_cmd_vtysh); |
| 14135 | install_element (INTERFACE_NODE, &no_ip_rip_authentication_mode_type_cmd_vtysh); |
| 14136 | install_element (VIEW_NODE, &show_ipv6_mbgp_summary_cmd_vtysh); |
| 14137 | install_element (BGP_IPV4M_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh); |
| 14138 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged10_cmd_vtysh); |
| 14139 | install_element (ENABLE_NODE, &show_ip_bgp_view_route_cmd_vtysh); |
| 14140 | install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_adv_router_cmd_vtysh); |
| 14141 | install_element (RIPNG_NODE, &no_ripng_redistribute_connected_routemap_cmd_vtysh); |
| 14142 | install_element (ENABLE_NODE, &debug_ospf_ism_cmd_vtysh); |
| 14143 | install_element (ENABLE_NODE, &debug_bgp_events_cmd_vtysh); |
| 14144 | install_element (ENABLE_NODE, &show_ip_bgp_flap_route_map_cmd_vtysh); |
| 14145 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged3_cmd_vtysh); |
| 14146 | install_element (ENABLE_NODE, &debug_ripng_zebra_cmd_vtysh); |
| 14147 | install_element (BGP_NODE, &neighbor_attr_unchanged5_cmd_vtysh); |
| 14148 | install_element (BGP_IPV6_NODE, &neighbor_allowas_in_cmd_vtysh); |
| 14149 | install_element (VIEW_NODE, &show_ip_bgp_community3_cmd_vtysh); |
| 14150 | install_element (BGP_IPV6_NODE, &no_neighbor_prefix_list_cmd_vtysh); |
| 14151 | install_element (VIEW_NODE, &show_ip_bgp_community4_cmd_vtysh); |
| 14152 | install_element (BGP_IPV4M_NODE, &no_neighbor_send_community_type_cmd_vtysh); |
| 14153 | install_element (BGP_IPV4_NODE, &aggregate_address_cmd_vtysh); |
| 14154 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd_vtysh); |
| 14155 | install_element (BGP_IPV6_NODE, &no_neighbor_send_community_type_cmd_vtysh); |
| 14156 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_duration_month_day_cmd_vtysh); |
| 14157 | install_element (BGP_VPNV4_NODE, &no_neighbor_route_server_client_cmd_vtysh); |
| 14158 | install_element (CONFIG_NODE, &ip_prefix_list_seq_ge_le_cmd_vtysh); |
| 14159 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_prefix_cmd_vtysh); |
| 14160 | install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_val_cmd_vtysh); |
| 14161 | install_element (OSPF_NODE, &no_area_range_cmd_vtysh); |
| 14162 | install_element (VIEW_NODE, &show_ipv6_route_prefix_longer_cmd_vtysh); |
| 14163 | install_element (BGP_NODE, &no_neighbor_local_as_val_cmd_vtysh); |
| 14164 | install_element (CONFIG_NODE, &no_route_map_all_cmd_vtysh); |
| 14165 | install_element (OSPF_NODE, &no_passive_interface_addr_cmd_vtysh); |
| 14166 | install_element (ENABLE_NODE, &clear_bgp_as_soft_out_cmd_vtysh); |
| 14167 | install_element (BGP_NODE, &bgp_redistribute_ipv4_metric_cmd_vtysh); |
| 14168 | install_element (BGP_IPV4_NODE, &no_neighbor_send_community_type_cmd_vtysh); |
| 14169 | install_element (ENABLE_NODE, &show_bgp_neighbors_cmd_vtysh); |
| 14170 | install_element (ENABLE_NODE, &clear_bgp_peer_cmd_vtysh); |
| 14171 | install_element (ENABLE_NODE, &clear_bgp_external_cmd_vtysh); |
| 14172 | install_element (VIEW_NODE, &show_ip_bgp_neighbor_routes_cmd_vtysh); |
| 14173 | install_element (BGP_VPNV4_NODE, &no_neighbor_activate_cmd_vtysh); |
| 14174 | install_element (BGP_NODE, &no_bgp_enforce_first_as_cmd_vtysh); |
| 14175 | install_element (CONFIG_NODE, &no_debug_rip_events_cmd_vtysh); |
| 14176 | install_element (RIPNG_NODE, &ripng_redistribute_kernel_metric_routemap_cmd_vtysh); |
| 14177 | install_element (BGP_NODE, &neighbor_passive_cmd_vtysh); |
| 14178 | install_element (ENABLE_NODE, &show_ip_bgp_community4_cmd_vtysh); |
| 14179 | install_element (RIPNG_NODE, &no_ripng_redistribute_static_metric_val_cmd_vtysh); |
| 14180 | install_element (RMAP_NODE, &no_set_ecommunity_rt_cmd_vtysh); |
| 14181 | install_element (BGP_IPV6_NODE, &no_neighbor_send_community_cmd_vtysh); |
| 14182 | install_element (BGP_IPV4_NODE, &no_neighbor_remove_private_as_cmd_vtysh); |
| 14183 | install_element (BGP_NODE, &no_bgp_network_backdoor_cmd_vtysh); |
| 14184 | install_element (BGP_NODE, &no_neighbor_enforce_multihop_cmd_vtysh); |
| 14185 | install_element (ENABLE_NODE, &clear_ip_prefix_list_name_prefix_cmd_vtysh); |
| 14186 | install_element (OSPF6_NODE, &ospf6_redistribute_routemap_cmd_vtysh); |
| 14187 | install_element (BGP_IPV4_NODE, &neighbor_send_community_type_cmd_vtysh); |
| 14188 | install_element (BGP_IPV4M_NODE, &bgp_network_mask_cmd_vtysh); |
| 14189 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged_cmd_vtysh); |
| 14190 | install_element (BGP_IPV4M_NODE, &no_neighbor_capability_orf_prefix_cmd_vtysh); |
| 14191 | install_element (INTERFACE_NODE, &ospf_message_digest_key_cmd_vtysh); |
| 14192 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd_vtysh); |
| 14193 | install_element (CONFIG_NODE, &no_access_list_exact_cmd_vtysh); |
| 14194 | install_element (BGP_NODE, &neighbor_soft_reconfiguration_cmd_vtysh); |
| 14195 | install_element (BGP_NODE, &neighbor_attr_unchanged10_cmd_vtysh); |
| 14196 | install_element (VIEW_NODE, &show_bgp_neighbor_advertised_route_cmd_vtysh); |
| 14197 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community3_cmd_vtysh); |
| 14198 | install_element (BGP_NODE, &no_bgp_network_mask_backdoor_cmd_vtysh); |
| 14199 | install_element (INTERFACE_NODE, &ip_irdp_cmd_vtysh); |
| 14200 | install_element (BGP_IPV4_NODE, &no_aggregate_address_as_set_cmd_vtysh); |
| 14201 | install_element (BGP_VPNV4_NODE, &neighbor_attr_unchanged8_cmd_vtysh); |
| 14202 | install_element (VIEW_NODE, &show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh); |
| 14203 | install_element (OSPF_NODE, &no_area_filter_list_cmd_vtysh); |
| 14204 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_ge_le_cmd_vtysh); |
| 14205 | install_element (ENABLE_NODE, &show_ipv6_bgp_community_list_cmd_vtysh); |
| 14206 | install_element (ENABLE_NODE, &clear_bgp_instance_all_soft_in_cmd_vtysh); |
| 14207 | install_element (CONFIG_NODE, &debug_zebra_packet_cmd_vtysh); |
| 14208 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbors_cmd_vtysh); |
| 14209 | install_element (BGP_IPV4_NODE, &no_aggregate_address_mask_summary_only_cmd_vtysh); |
| 14210 | install_element (OSPF_NODE, &ospf_default_information_originate_always_type_cmd_vtysh); |
| 14211 | install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_metric_val_cmd_vtysh); |
| 14212 | install_element (BGP_VPNV4_NODE, &no_neighbor_route_map_cmd_vtysh); |
| 14213 | install_element (BGP_IPV6_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh); |
| 14214 | install_element (VIEW_NODE, &show_ipv6_bgp_prefix_list_cmd_vtysh); |
| 14215 | install_element (OSPF6_NODE, &ospf6_area_range_cmd_vtysh); |
| 14216 | install_element (CONFIG_NODE, &debug_rip_events_cmd_vtysh); |
| 14217 | install_element (CONFIG_NODE, &ipv6_prefix_list_seq_le_cmd_vtysh); |
| 14218 | install_element (VIEW_NODE, &show_bgp_ipv6_community_cmd_vtysh); |
| 14219 | install_element (RMAP_NODE, &match_interface_cmd_vtysh); |
| 14220 | install_element (RMAP_NODE, &no_match_community_exact_cmd_vtysh); |
| 14221 | install_element (BGP_NODE, &neighbor_version_cmd_vtysh); |
| 14222 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_in_prefix_filter_cmd_vtysh); |
| 14223 | install_element (CONFIG_NODE, &access_list_standard_any_cmd_vtysh); |
| 14224 | install_element (ENABLE_NODE, &no_debug_ospf_lsa_sub_cmd_vtysh); |
| 14225 | install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_cmd_vtysh); |
| 14226 | install_element (CONFIG_NODE, &debug_bgp_keepalive_cmd_vtysh); |
| 14227 | install_element (ENABLE_NODE, &show_ip_bgp_instance_neighbors_peer_cmd_vtysh); |
| 14228 | install_element (CONFIG_NODE, &access_list_extended_any_any_cmd_vtysh); |
| 14229 | install_element (CONFIG_NODE, &debug_ripng_packet_cmd_vtysh); |
| 14230 | install_element (BGP_NODE, &no_neighbor_attr_unchanged9_cmd_vtysh); |
| 14231 | install_element (RIP_NODE, &rip_offset_list_cmd_vtysh); |
| 14232 | install_element (BGP_NODE, &no_bgp_network_import_check_cmd_vtysh); |
| 14233 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_in_cmd_vtysh); |
| 14234 | install_element (BGP_IPV6_NODE, &neighbor_prefix_list_cmd_vtysh); |
| 14235 | install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_cmd_vtysh); |
| 14236 | install_element (OSPF_NODE, &no_area_default_cost_cmd_vtysh); |
| 14237 | install_element (CONFIG_NODE, &ipv6_prefix_list_ge_cmd_vtysh); |
| 14238 | install_element (ENABLE_NODE, &show_ip_bgp_paths_cmd_vtysh); |
| 14239 | install_element (RIP_NODE, &no_rip_offset_list_cmd_vtysh); |
| 14240 | install_element (CONFIG_NODE, &no_ipv6_access_list_remark_arg_cmd_vtysh); |
| 14241 | install_element (ENABLE_NODE, &no_debug_zebra_kernel_cmd_vtysh); |
| 14242 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_cmd_vtysh); |
| 14243 | install_element (ENABLE_NODE, &debug_ospf_lsa_cmd_vtysh); |
| 14244 | install_element (OSPF_NODE, &no_ospf_default_metric_val_cmd_vtysh); |
| 14245 | install_element (OSPF_NODE, &area_range_not_advertise_cmd_vtysh); |
| 14246 | install_element (OSPF_NODE, &ospf_default_information_originate_type_metric_cmd_vtysh); |
| 14247 | install_element (ENABLE_NODE, &show_zebra_client_cmd_vtysh); |
| 14248 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged8_cmd_vtysh); |
| 14249 | install_element (CONFIG_NODE, &ipv6_prefix_list_le_ge_cmd_vtysh); |
| 14250 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_summary_only_cmd_vtysh); |
| 14251 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbors_cmd_vtysh); |
| 14252 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_soft_in_cmd_vtysh); |
| 14253 | install_element (RMAP_NODE, &no_set_vpnv4_nexthop_cmd_vtysh); |
| 14254 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_vpnv4_out_cmd_vtysh); |
| 14255 | install_element (BGP_IPV6_NODE, &no_neighbor_nexthop_self_cmd_vtysh); |
| 14256 | install_element (ENABLE_NODE, &clear_bgp_peer_group_out_cmd_vtysh); |
| 14257 | install_element (OSPF_NODE, &area_range_cmd_vtysh); |
| 14258 | install_element (VIEW_NODE, &show_ipv6_mbgp_community_list_exact_cmd_vtysh); |
| 14259 | install_element (OSPF_NODE, &ospf_default_information_originate_metric_type_cmd_vtysh); |
| 14260 | install_element (RIP_NODE, &rip_distance_source_access_list_cmd_vtysh); |
| 14261 | install_element (CONFIG_NODE, &no_router_bgp_view_cmd_vtysh); |
| 14262 | install_element (VIEW_NODE, &show_ipv6_mbgp_community_list_cmd_vtysh); |
| 14263 | install_element (ENABLE_NODE, &clear_bgp_all_soft_in_cmd_vtysh); |
| 14264 | install_element (BGP_NODE, &neighbor_shutdown_cmd_vtysh); |
| 14265 | install_element (OSPF_NODE, &ospf_distance_ospf_inter_cmd_vtysh); |
| 14266 | install_element (CONFIG_NODE, &no_ip_community_list_name_standard_cmd_vtysh); |
| 14267 | install_element (RIP_NODE, &no_rip_redistribute_type_cmd_vtysh); |
| 14268 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_advertised_route_cmd_vtysh); |
| 14269 | install_element (OSPF_NODE, &no_neighbor_priority_cmd_vtysh); |
| 14270 | install_element (ENABLE_NODE, &clear_bgp_ipv6_external_in_prefix_filter_cmd_vtysh); |
| 14271 | install_element (ENABLE_NODE, &show_ipv6_bgp_community4_exact_cmd_vtysh); |
| 14272 | install_element (BGP_NODE, &aggregate_address_cmd_vtysh); |
| 14273 | install_element (INTERFACE_NODE, &no_ip_rip_receive_version_cmd_vtysh); |
| 14274 | install_element (OSPF_NODE, &ospf_compatible_rfc1583_cmd_vtysh); |
| 14275 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_soft_out_cmd_vtysh); |
| 14276 | install_element (INTERFACE_NODE, &ipv6_ospf6_passive_cmd_vtysh); |
| 14277 | install_element (BGP_IPV4_NODE, &neighbor_soft_reconfiguration_cmd_vtysh); |
| 14278 | install_element (BGP_IPV6_NODE, &no_bgp_redistribute_ipv6_rmap_metric_cmd_vtysh); |
| 14279 | install_element (CONFIG_NODE, &no_access_list_extended_any_any_cmd_vtysh); |
| 14280 | install_element (BGP_NODE, &no_neighbor_shutdown_cmd_vtysh); |
| 14281 | install_element (VIEW_NODE, &show_bgp_regexp_cmd_vtysh); |
| 14282 | install_element (BGP_IPV4M_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh); |
| 14283 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd_vtysh); |
| 14284 | install_element (VIEW_NODE, &show_ip_route_prefix_longer_cmd_vtysh); |
| 14285 | install_element (VIEW_NODE, &show_ipv6_bgp_community4_exact_cmd_vtysh); |
| 14286 | install_element (BGP_IPV4M_NODE, &no_neighbor_distribute_list_cmd_vtysh); |
| 14287 | install_element (BGP_NODE, &neighbor_route_map_cmd_vtysh); |
| 14288 | install_element (RMAP_NODE, &no_set_origin_cmd_vtysh); |
| 14289 | install_element (BGP_IPV4_NODE, &bgp_damp_unset2_cmd_vtysh); |
| 14290 | install_element (ENABLE_NODE, &show_ipv6_mbgp_community_all_cmd_vtysh); |
| 14291 | install_element (CONFIG_NODE, &no_dump_bgp_updates_cmd_vtysh); |
| 14292 | install_element (BGP_NODE, &no_bgp_network_cmd_vtysh); |
| 14293 | install_element (RMAP_NODE, &no_set_weight_val_cmd_vtysh); |
| 14294 | install_element (RMAP_NODE, &no_match_ipv6_address_prefix_list_cmd_vtysh); |
| 14295 | install_element (INTERFACE_NODE, &no_multicast_cmd_vtysh); |
| 14296 | install_element (VIEW_NODE, &show_ipv6_mbgp_community3_cmd_vtysh); |
| 14297 | install_element (CONFIG_NODE, &no_ip_community_list_standard_cmd_vtysh); |
| 14298 | install_element (CONFIG_NODE, &no_ip_prefix_list_cmd_vtysh); |
| 14299 | install_element (ENABLE_NODE, &show_ipv6_ospf6_area_route_prefix_cmd_vtysh); |
| 14300 | install_element (CONFIG_NODE, &debug_ospf_lsa_sub_cmd_vtysh); |
| 14301 | install_element (INTERFACE_NODE, &no_bandwidth_if_val_cmd_vtysh); |
| 14302 | install_element (BGP_NODE, &neighbor_prefix_list_cmd_vtysh); |
| 14303 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_neighbor_received_prefix_filter_cmd_vtysh); |
| 14304 | install_element (ENABLE_NODE, &show_ip_ospf_database_cmd_vtysh); |
| 14305 | install_element (BGP_IPV4M_NODE, &neighbor_distribute_list_cmd_vtysh); |
| 14306 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged9_cmd_vtysh); |
| 14307 | install_element (ENABLE_NODE, &clear_ip_bgp_all_vpnv4_soft_cmd_vtysh); |
| 14308 | install_element (OSPF_NODE, &area_vlink_authtype_args_authkey_cmd_vtysh); |
| 14309 | install_element (VIEW_NODE, &show_ip_bgp_flap_filter_list_cmd_vtysh); |
| 14310 | install_element (ENABLE_NODE, &show_bgp_community4_exact_cmd_vtysh); |
| 14311 | install_element (OSPF_NODE, &neighbor_priority_cmd_vtysh); |
| 14312 | install_element (BGP_NODE, &old_no_ipv6_bgp_network_cmd_vtysh); |
| 14313 | install_element (ENABLE_NODE, &show_bgp_ipv6_neighbors_cmd_vtysh); |
| 14314 | install_element (ENABLE_NODE, &clear_ip_bgp_external_ipv4_in_prefix_filter_cmd_vtysh); |
| 14315 | install_element (CONFIG_NODE, &access_list_exact_cmd_vtysh); |
| 14316 | install_element (BGP_IPV4_NODE, &aggregate_address_mask_as_set_summary_cmd_vtysh); |
| 14317 | install_element (BGP_VPNV4_NODE, &neighbor_filter_list_cmd_vtysh); |
| 14318 | install_element (BGP_NODE, &no_neighbor_weight_cmd_vtysh); |
| 14319 | install_element (BGP_VPNV4_NODE, &no_neighbor_route_reflector_client_cmd_vtysh); |
| 14320 | install_element (BGP_NODE, &no_neighbor_timers_connect_cmd_vtysh); |
| 14321 | install_element (BGP_IPV4_NODE, &neighbor_distribute_list_cmd_vtysh); |
| 14322 | install_element (RMAP_NODE, &no_match_ecommunity_val_cmd_vtysh); |
| 14323 | install_element (BGP_NODE, &no_aggregate_address_summary_as_set_cmd_vtysh); |
| 14324 | install_element (RIPNG_NODE, &no_ripng_redistribute_kernel_cmd_vtysh); |
| 14325 | install_element (RMAP_NODE, &no_set_community_none_cmd_vtysh); |
| 14326 | install_element (RIP_NODE, &no_rip_version_cmd_vtysh); |
| 14327 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community3_exact_cmd_vtysh); |
| 14328 | install_element (INTERFACE_NODE, &ip_ospf_dead_interval_cmd_vtysh); |
| 14329 | install_element (INTERFACE_NODE, &no_ip_ospf_authentication_addr_cmd_vtysh); |
| 14330 | install_element (BGP_IPV6_NODE, &no_ipv6_aggregate_address_cmd_vtysh); |
| 14331 | install_element (ENABLE_NODE, &show_ip_ospf_route_cmd_vtysh); |
| 14332 | install_element (BGP_NODE, &no_neighbor_local_as_val2_cmd_vtysh); |
| 14333 | install_element (RMAP_NODE, &no_match_aspath_cmd_vtysh); |
| 14334 | install_element (CONFIG_NODE, &debug_bgp_normal_cmd_vtysh); |
| 14335 | install_element (BGP_NODE, &bgp_bestpath_med2_cmd_vtysh); |
| 14336 | install_element (OSPF_NODE, &no_ospf_redistribute_source_cmd_vtysh); |
| 14337 | install_element (INTERFACE_NODE, &no_shutdown_if_cmd_vtysh); |
| 14338 | install_element (ENABLE_NODE, &show_ip_bgp_flap_address_cmd_vtysh); |
| 14339 | install_element (CONFIG_NODE, &no_debug_ospf_zebra_sub_cmd_vtysh); |
| 14340 | install_element (RMAP_NODE, &set_metric_cmd_vtysh); |
| 14341 | install_element (VIEW_NODE, &show_bgp_ipv6_neighbors_cmd_vtysh); |
| 14342 | install_element (ENABLE_NODE, &show_ipv6_bgp_filter_list_cmd_vtysh); |
| 14343 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged6_cmd_vtysh); |
| 14344 | install_element (BGP_IPV4_NODE, &bgp_damp_set3_cmd_vtysh); |
| 14345 | install_element (CONFIG_NODE, &debug_bgp_update_direct_cmd_vtysh); |
| 14346 | install_element (OSPF_NODE, &ospf_default_information_originate_always_routemap_cmd_vtysh); |
| 14347 | install_element (BGP_NODE, &aggregate_address_summary_as_set_cmd_vtysh); |
| 14348 | install_element (ENABLE_NODE, &clear_bgp_external_in_prefix_filter_cmd_vtysh); |
| 14349 | install_element (CONFIG_NODE, &no_ipv6_access_list_exact_cmd_vtysh); |
| 14350 | install_element (ENABLE_NODE, &show_ipv6_mbgp_prefix_list_cmd_vtysh); |
| 14351 | install_element (BGP_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh); |
| 14352 | install_element (BGP_VPNV4_NODE, &no_neighbor_remove_private_as_cmd_vtysh); |
| 14353 | install_element (BGP_VPNV4_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh); |
| 14354 | install_element (BGP_IPV4M_NODE, &no_neighbor_route_map_cmd_vtysh); |
| 14355 | install_element (RMAP_NODE, &set_atomic_aggregate_cmd_vtysh); |
| 14356 | install_element (ENABLE_NODE, &clear_bgp_peer_group_in_prefix_filter_cmd_vtysh); |
| 14357 | install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_cmd_vtysh); |
| 14358 | install_element (BGP_NODE, &bgp_scan_time_cmd_vtysh); |
| 14359 | install_element (BGP_NODE, &no_neighbor_interface_cmd_vtysh); |
| 14360 | install_element (ENABLE_NODE, &debug_bgp_update_cmd_vtysh); |
| 14361 | install_element (ENABLE_NODE, &show_ip_route_prefix_longer_cmd_vtysh); |
| 14362 | install_element (CONFIG_NODE, &ipv6_route_ifname_pref_cmd_vtysh); |
| 14363 | install_element (BGP_IPV6_NODE, &neighbor_allowas_in_arg_cmd_vtysh); |
| 14364 | install_element (RIP_NODE, &rip_passive_interface_cmd_vtysh); |
| 14365 | install_element (ENABLE_NODE, &show_ip_bgp_filter_list_cmd_vtysh); |
| 14366 | install_element (ENABLE_NODE, &show_bgp_neighbor_advertised_route_cmd_vtysh); |
| 14367 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_name_seq_cmd_vtysh); |
| 14368 | install_element (RMAP_NODE, &set_aspath_prepend_cmd_vtysh); |
| 14369 | install_element (VIEW_NODE, &show_ip_ospf_database_type_id_cmd_vtysh); |
| 14370 | install_element (VIEW_NODE, &show_ipv6_ospf6_topology_router_lsid_cmd_vtysh); |
| 14371 | install_element (CONFIG_NODE, &no_ip_community_list_all_cmd_vtysh); |
| 14372 | install_element (ENABLE_NODE, &show_ip_bgp_neighbor_received_routes_cmd_vtysh); |
| 14373 | install_element (RMAP_NODE, &match_ip_next_hop_prefix_list_cmd_vtysh); |
| 14374 | install_element (ENABLE_NODE, &show_ipv6_mbgp_route_cmd_vtysh); |
| 14375 | install_element (BGP_IPV6_NODE, &neighbor_activate_cmd_vtysh); |
| 14376 | install_element (BGP_NODE, &no_bgp_timers_arg_cmd_vtysh); |
| 14377 | install_element (VIEW_NODE, &show_ip_bgp_instance_neighbors_peer_cmd_vtysh); |
| 14378 | install_element (BGP_NODE, &no_neighbor_advertise_interval_cmd_vtysh); |
| 14379 | install_element (BGP_IPV4_NODE, &no_neighbor_activate_cmd_vtysh); |
| 14380 | install_element (ENABLE_NODE, &clear_bgp_ipv6_external_soft_in_cmd_vtysh); |
| 14381 | install_element (RIPNG_NODE, &no_ripng_redistribute_connected_cmd_vtysh); |
| 14382 | install_element (CONFIG_NODE, &ip_route_mask_distance_cmd_vtysh); |
| 14383 | install_element (BGP_VPNV4_NODE, &no_neighbor_send_community_type_cmd_vtysh); |
| 14384 | install_element (BGP_IPV4M_NODE, &aggregate_address_mask_cmd_vtysh); |
| 14385 | install_element (VIEW_NODE, &show_ipv6_bgp_community4_cmd_vtysh); |
| 14386 | install_element (RIPNG_NODE, &no_ripng_redistribute_ospf6_routemap_cmd_vtysh); |
| 14387 | install_element (CONFIG_NODE, &ip_community_list_name_standard_cmd_vtysh); |
| 14388 | install_element (CONFIG_NODE, &ip_prefix_list_ge_cmd_vtysh); |
| 14389 | install_element (VIEW_NODE, &show_ip_bgp_filter_list_cmd_vtysh); |
| 14390 | install_element (ENABLE_NODE, &debug_zebra_events_cmd_vtysh); |
| 14391 | install_element (BGP_NODE, &neighbor_attr_unchanged6_cmd_vtysh); |
| 14392 | install_element (ENABLE_NODE, &show_ipv6_route_addr_cmd_vtysh); |
| 14393 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged1_cmd_vtysh); |
| 14394 | install_element (VIEW_NODE, &show_ip_prefix_list_detail_cmd_vtysh); |
| 14395 | install_element (BGP_IPV4_NODE, &no_aggregate_address_summary_only_cmd_vtysh); |
| 14396 | install_element (VIEW_NODE, &show_ip_ospf_interface_cmd_vtysh); |
| 14397 | install_element (CONFIG_NODE, &ip_community_list_standard2_cmd_vtysh); |
| 14398 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged1_cmd_vtysh); |
| 14399 | install_element (OSPF6_NODE, &no_interface_area_cmd_vtysh); |
| 14400 | install_element (ENABLE_NODE, &show_ipv6_prefix_list_cmd_vtysh); |
| 14401 | install_element (OSPF_NODE, &no_ospf_rfc1583_flag_cmd_vtysh); |
| 14402 | install_element (VIEW_NODE, &show_ipv6_mbgp_route_cmd_vtysh); |
| 14403 | install_element (ENABLE_NODE, &show_bgp_ipv6_community3_exact_cmd_vtysh); |
| 14404 | install_element (BGP_IPV6_NODE, &neighbor_route_server_client_cmd_vtysh); |
| 14405 | install_element (ENABLE_NODE, &clear_bgp_ipv6_all_soft_cmd_vtysh); |
| 14406 | install_element (BGP_IPV4M_NODE, &no_neighbor_allowas_in_cmd_vtysh); |
| 14407 | install_element (ENABLE_NODE, &clear_ip_bgp_instance_all_soft_cmd_vtysh); |
| 14408 | install_element (BGP_NODE, &bgp_network_mask_backdoor_cmd_vtysh); |
| 14409 | install_element (RIPNG_NODE, &no_ripng_aggregate_address_cmd_vtysh); |
| 14410 | install_element (ENABLE_NODE, &show_bgp_ipv6_community4_exact_cmd_vtysh); |
| 14411 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged1_cmd_vtysh); |
| 14412 | install_element (CONFIG_NODE, &ip_prefix_list_seq_le_cmd_vtysh); |
| 14413 | install_element (CONFIG_NODE, &no_ipv6_prefix_list_le_cmd_vtysh); |
| 14414 | install_element (RIPNG_NODE, &ripng_redistribute_ospf6_cmd_vtysh); |
| 14415 | install_element (BGP_NODE, &no_neighbor_capability_dynamic_cmd_vtysh); |
| 14416 | install_element (ENABLE_NODE, &show_ip_bgp_regexp_cmd_vtysh); |
| 14417 | install_element (CONFIG_NODE, &ip_route_mask_cmd_vtysh); |
| 14418 | install_element (RIPNG_NODE, &ripng_redistribute_connected_routemap_cmd_vtysh); |
| 14419 | install_element (INTERFACE_NODE, &no_ospf_transmit_delay_cmd_vtysh); |
| 14420 | install_element (RIP_NODE, &no_rip_redistribute_type_metric_routemap_cmd_vtysh); |
| 14421 | install_element (ENABLE_NODE, &debug_ripng_events_cmd_vtysh); |
| 14422 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_soft_cmd_vtysh); |
| 14423 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_route_cmd_vtysh); |
| 14424 | install_element (ZEBRA_NODE, &ripng_redistribute_ripng_cmd_vtysh); |
| 14425 | install_element (CONFIG_NODE, &access_list_extended_mask_host_cmd_vtysh); |
| 14426 | install_element (VIEW_NODE, &show_bgp_ipv6_neighbor_received_routes_cmd_vtysh); |
| 14427 | install_element (BGP_IPV6_NODE, &ipv6_aggregate_address_summary_only_cmd_vtysh); |
| 14428 | install_element (ZEBRA_NODE, &no_rip_redistribute_rip_cmd_vtysh); |
| 14429 | install_element (RIP_NODE, &no_rip_default_information_originate_cmd_vtysh); |
| 14430 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_soft_out_cmd_vtysh); |
| 14431 | install_element (VIEW_NODE, &show_ip_bgp_ipv4_community3_cmd_vtysh); |
| 14432 | install_element (BGP_IPV4M_NODE, &aggregate_address_as_set_cmd_vtysh); |
| 14433 | install_element (CONFIG_NODE, &debug_ospf_packet_all_cmd_vtysh); |
| 14434 | install_element (VIEW_NODE, &show_bgp_ipv6_community4_exact_cmd_vtysh); |
| 14435 | install_element (BGP_NODE, &no_neighbor_allowas_in_cmd_vtysh); |
| 14436 | install_element (VIEW_NODE, &show_ip_bgp_summary_cmd_vtysh); |
| 14437 | install_element (INTERFACE_NODE, &ospf_hello_interval_cmd_vtysh); |
| 14438 | install_element (ENABLE_NODE, &show_bgp_community_all_cmd_vtysh); |
| 14439 | install_element (BGP_NODE, &no_bgp_timers_cmd_vtysh); |
| 14440 | install_element (BGP_NODE, &no_neighbor_override_capability_cmd_vtysh); |
| 14441 | install_element (VIEW_NODE, &show_ipv6_ospf6_database_type_id_adv_router_cmd_vtysh); |
| 14442 | install_element (RIPNG_NODE, &ripng_redistribute_kernel_metric_cmd_vtysh); |
| 14443 | install_element (BGP_NODE, &bgp_network_mask_cmd_vtysh); |
| 14444 | install_element (BGP_VPNV4_NODE, &neighbor_route_server_client_cmd_vtysh); |
| 14445 | install_element (BGP_IPV4M_NODE, &no_bgp_network_route_map_cmd_vtysh); |
| 14446 | install_element (RIP_NODE, &no_rip_neighbor_cmd_vtysh); |
| 14447 | install_element (VIEW_NODE, &show_ip_route_protocol_cmd_vtysh); |
| 14448 | install_element (ENABLE_NODE, &clear_ip_bgp_dampening_address_mask_cmd_vtysh); |
| 14449 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_day_month_month_day_cmd_vtysh); |
| 14450 | install_element (ENABLE_NODE, &clear_bgp_external_in_cmd_vtysh); |
| 14451 | install_element (BGP_IPV4M_NODE, &aggregate_address_summary_only_cmd_vtysh); |
| 14452 | install_element (OSPF_NODE, &area_vlink_cmd_vtysh); |
| 14453 | install_element (ENABLE_NODE, &clear_ip_bgp_external_soft_cmd_vtysh); |
| 14454 | install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_cmd_vtysh); |
| 14455 | install_element (BGP_IPV4M_NODE, &no_neighbor_prefix_list_cmd_vtysh); |
| 14456 | install_element (BGP_IPV4_NODE, &bgp_network_mask_natural_cmd_vtysh); |
| 14457 | install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_cmd_vtysh); |
| 14458 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_day_month_day_month_cmd_vtysh); |
| 14459 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd_vtysh); |
| 14460 | install_element (ENABLE_NODE, &debug_ospf_event_cmd_vtysh); |
| 14461 | install_element (BGP_NODE, &neighbor_maximum_prefix_warning_cmd_vtysh); |
| 14462 | install_element (KEYCHAIN_KEY_NODE, &send_lifetime_duration_day_month_cmd_vtysh); |
| 14463 | install_element (INTERFACE_NODE, &ip_ospf_hello_interval_cmd_vtysh); |
| 14464 | install_element (CONFIG_NODE, &no_ip_prefix_list_description_arg_cmd_vtysh); |
| 14465 | install_element (ENABLE_NODE, &ipv6_bgp_neighbor_received_routes_cmd_vtysh); |
| 14466 | install_element (INTERFACE_NODE, &no_ipv6_ospf6_passive_cmd_vtysh); |
| 14467 | install_element (CONFIG_NODE, &no_ip_prefix_list_ge_cmd_vtysh); |
| 14468 | install_element (OSPF_NODE, &ospf_default_information_originate_type_routemap_cmd_vtysh); |
| 14469 | install_element (OSPF_NODE, &no_ospf_default_information_originate_cmd_vtysh); |
| 14470 | install_element (RMAP_NODE, &match_ip_next_hop_cmd_vtysh); |
| 14471 | install_element (VIEW_NODE, &show_ip_prefix_list_prefix_first_match_cmd_vtysh); |
| 14472 | install_element (VIEW_NODE, &show_bgp_ipv6_community_exact_cmd_vtysh); |
| 14473 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged2_cmd_vtysh); |
| 14474 | install_element (ENABLE_NODE, &clear_bgp_ipv6_as_soft_out_cmd_vtysh); |
| 14475 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged2_cmd_vtysh); |
| 14476 | install_element (ENABLE_NODE, &undebug_bgp_keepalive_cmd_vtysh); |
| 14477 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_cmd_vtysh); |
| 14478 | install_element (ENABLE_NODE, &debug_ospf_zebra_sub_cmd_vtysh); |
| 14479 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_cmd_vtysh); |
| 14480 | install_element (RMAP_NODE, &no_match_ipv6_address_cmd_vtysh); |
| 14481 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged2_cmd_vtysh); |
| 14482 | install_element (BGP_NODE, &no_bgp_redistribute_ipv4_rmap_cmd_vtysh); |
| 14483 | install_element (BGP_IPV4M_NODE, &no_neighbor_default_originate_cmd_vtysh); |
| 14484 | install_element (ENABLE_NODE, &show_ipv6_route_prefix_longer_cmd_vtysh); |
| 14485 | install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_routemap_cmd_vtysh); |
| 14486 | install_element (OSPF_NODE, &ospf_router_id_cmd_vtysh); |
| 14487 | install_element (CONFIG_NODE, &no_debug_ospf_packet_all_cmd_vtysh); |
| 14488 | install_element (BGP_NODE, &bgp_confederation_identifier_cmd_vtysh); |
| 14489 | install_element (BGP_IPV6_NODE, &neighbor_soft_reconfiguration_cmd_vtysh); |
| 14490 | install_element (BGP_VPNV4_NODE, &neighbor_nexthop_self_cmd_vtysh); |
| 14491 | install_element (ENABLE_NODE, &debug_ripng_packet_direct_cmd_vtysh); |
| 14492 | install_element (INTERFACE_NODE, &ip_ospf_authentication_args_cmd_vtysh); |
| 14493 | install_element (OSPF6_NODE, &passive_interface_cmd_vtysh); |
| 14494 | install_element (BGP_NODE, &neighbor_route_server_client_cmd_vtysh); |
| 14495 | install_element (CONFIG_NODE, &no_access_list_any_cmd_vtysh); |
| 14496 | install_element (BGP_NODE, &no_neighbor_send_community_type_cmd_vtysh); |
| 14497 | install_element (RIPNG_NODE, &ripng_aggregate_address_cmd_vtysh); |
| 14498 | install_element (BGP_NODE, &no_neighbor_port_val_cmd_vtysh); |
| 14499 | install_element (BGP_VPNV4_NODE, &no_vpnv4_network_cmd_vtysh); |
| 14500 | install_element (BGP_NODE, &bgp_redistribute_ipv4_rmap_cmd_vtysh); |
| 14501 | install_element (RMAP_NODE, &no_match_ip_address_cmd_vtysh); |
| 14502 | install_element (VIEW_NODE, &show_bgp_prefix_cmd_vtysh); |
| 14503 | install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_cmd_vtysh); |
| 14504 | install_element (BGP_NODE, &no_bgp_redistribute_ipv4_cmd_vtysh); |
| 14505 | install_element (RMAP_NODE, &no_set_ecommunity_soo_val_cmd_vtysh); |
| 14506 | install_element (BGP_NODE, &no_neighbor_description_val_cmd_vtysh); |
| 14507 | install_element (BGP_NODE, &bgp_bestpath_aspath_ignore_cmd_vtysh); |
| 14508 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged_cmd_vtysh); |
| 14509 | install_element (ENABLE_NODE, &clear_ip_bgp_as_soft_cmd_vtysh); |
| 14510 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_month_day_day_month_cmd_vtysh); |
| 14511 | install_element (ENABLE_NODE, &show_bgp_community_exact_cmd_vtysh); |
| 14512 | install_element (BGP_NODE, &bgp_damp_unset2_cmd_vtysh); |
| 14513 | install_element (BGP_IPV4_NODE, &no_neighbor_attr_unchanged7_cmd_vtysh); |
| 14514 | install_element (OSPF_NODE, &ospf_default_information_originate_metric_type_routemap_cmd_vtysh); |
| 14515 | install_element (CONFIG_NODE, &ip_extcommunity_list_expanded_cmd_vtysh); |
| 14516 | install_element (BGP_NODE, &neighbor_send_community_type_cmd_vtysh); |
| 14517 | install_element (INTERFACE_NODE, &ospf_network_cmd_vtysh); |
| 14518 | install_element (BGP_NODE, &bgp_redistribute_ipv4_cmd_vtysh); |
| 14519 | install_element (ENABLE_NODE, &show_bgp_ipv6_community2_exact_cmd_vtysh); |
| 14520 | install_element (ENABLE_NODE, &show_ip_bgp_instance_summary_cmd_vtysh); |
| 14521 | install_element (CONFIG_NODE, &no_access_list_extended_mask_any_cmd_vtysh); |
| 14522 | install_element (VIEW_NODE, &show_bgp_neighbors_cmd_vtysh); |
| 14523 | install_element (OSPF_NODE, &no_area_stub_no_summary_cmd_vtysh); |
| 14524 | install_element (RMAP_NODE, &no_set_aggregator_as_val_cmd_vtysh); |
| 14525 | install_element (ENABLE_NODE, &clear_ip_bgp_peer_ipv4_in_cmd_vtysh); |
| 14526 | install_element (BGP_IPV4M_NODE, &neighbor_default_originate_rmap_cmd_vtysh); |
| 14527 | install_element (BGP_IPV4_NODE, &bgp_network_route_map_cmd_vtysh); |
| 14528 | install_element (ENABLE_NODE, &show_ipv6_mbgp_cmd_vtysh); |
| 14529 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged7_cmd_vtysh); |
| 14530 | install_element (ENABLE_NODE, &show_bgp_ipv6_community3_cmd_vtysh); |
| 14531 | install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_intra_cmd_vtysh); |
| 14532 | install_element (OSPF_NODE, &area_range_substitute_cmd_vtysh); |
| 14533 | install_element (BGP_IPV4M_NODE, &neighbor_attr_unchanged4_cmd_vtysh); |
| 14534 | install_element (ENABLE_NODE, &show_ip_bgp_prefix_cmd_vtysh); |
| 14535 | install_element (ENABLE_NODE, &debug_bgp_filter_cmd_vtysh); |
| 14536 | install_element (BGP_IPV6_NODE, &neighbor_attr_unchanged4_cmd_vtysh); |
| 14537 | install_element (CONFIG_NODE, &no_route_map_cmd_vtysh); |
| 14538 | install_element (ENABLE_NODE, &show_ip_bgp_neighbor_flap_cmd_vtysh); |
| 14539 | install_element (BGP_IPV4_NODE, &bgp_damp_set2_cmd_vtysh); |
| 14540 | install_element (BGP_IPV6_NODE, &ipv6_bgp_network_cmd_vtysh); |
| 14541 | install_element (BGP_NODE, &no_neighbor_maximum_prefix_val2_cmd_vtysh); |
| 14542 | install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_detail_cmd_vtysh); |
| 14543 | install_element (BGP_IPV4M_NODE, &neighbor_maximum_prefix_cmd_vtysh); |
| 14544 | install_element (RIP_NODE, &rip_neighbor_cmd_vtysh); |
| 14545 | install_element (BGP_VPNV4_NODE, &no_neighbor_distribute_list_cmd_vtysh); |
| 14546 | install_element (CONFIG_NODE, &ip_extcommunity_list_standard_cmd_vtysh); |
| 14547 | install_element (BGP_IPV4_NODE, &neighbor_attr_unchanged4_cmd_vtysh); |
| 14548 | install_element (CONFIG_NODE, &no_ip_community_list_expanded_cmd_vtysh); |
| 14549 | install_element (CONFIG_NODE, &no_debug_rip_packet_cmd_vtysh); |
| 14550 | install_element (BGP_NODE, &bgp_network_mask_natural_backdoor_cmd_vtysh); |
| 14551 | install_element (ENABLE_NODE, &no_debug_bgp_events_cmd_vtysh); |
| 14552 | install_element (BGP_IPV6_NODE, &no_neighbor_soft_reconfiguration_cmd_vtysh); |
| 14553 | install_element (BGP_VPNV4_NODE, &neighbor_activate_cmd_vtysh); |
| 14554 | install_element (BGP_NODE, &neighbor_allowas_in_cmd_vtysh); |
| 14555 | install_element (INTERFACE_NODE, &ip_ospf_authentication_key_cmd_vtysh); |
| 14556 | install_element (CONFIG_NODE, &no_access_list_remark_arg_cmd_vtysh); |
| 14557 | install_element (OSPF_NODE, &ospf_default_information_originate_metric_cmd_vtysh); |
| 14558 | install_element (ENABLE_NODE, &clear_ip_bgp_external_out_cmd_vtysh); |
| 14559 | install_element (BGP_IPV4M_NODE, &no_neighbor_activate_cmd_vtysh); |
| 14560 | install_element (BGP_IPV6_NODE, &neighbor_default_originate_cmd_vtysh); |
| 14561 | install_element (VIEW_NODE, &show_zebra_cmd_vtysh); |
| 14562 | install_element (BGP_VPNV4_NODE, &no_neighbor_attr_unchanged8_cmd_vtysh); |
| 14563 | install_element (VIEW_NODE, &show_ipv6_bgp_community_list_cmd_vtysh); |
| 14564 | install_element (ENABLE_NODE, &show_ip_bgp_ipv4_community_list_exact_cmd_vtysh); |
| 14565 | install_element (RIP_NODE, &no_rip_network_cmd_vtysh); |
| 14566 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_group_cmd_vtysh); |
| 14567 | install_element (ENABLE_NODE, &show_bgp_prefix_list_cmd_vtysh); |
| 14568 | install_element (OSPF_NODE, &no_ospf_compatible_rfc1583_cmd_vtysh); |
| 14569 | install_element (ENABLE_NODE, &no_debug_ospf_ism_cmd_vtysh); |
| 14570 | install_element (ENABLE_NODE, &show_ipv6_ospf6_area_topology_router_lsid_cmd_vtysh); |
| 14571 | install_element (BGP_IPV4_NODE, &bgp_damp_unset_cmd_vtysh); |
| 14572 | install_element (VIEW_NODE, &show_ip_bgp_community4_exact_cmd_vtysh); |
| 14573 | install_element (BGP_IPV6_NODE, &no_neighbor_activate_cmd_vtysh); |
| 14574 | install_element (ENABLE_NODE, &no_debug_bgp_normal_cmd_vtysh); |
| 14575 | install_element (BGP_NODE, &no_bgp_bestpath_med3_cmd_vtysh); |
| 14576 | install_element (BGP_IPV4M_NODE, &no_bgp_network_mask_route_map_cmd_vtysh); |
| 14577 | install_element (OSPF6_NODE, &no_passive_interface_cmd_vtysh); |
| 14578 | install_element (ENABLE_NODE, &show_bgp_ipv6_community_all_cmd_vtysh); |
| 14579 | install_element (ENABLE_NODE, &no_debug_zebra_events_cmd_vtysh); |
| 14580 | install_element (ENABLE_NODE, &show_ipv6_ospf6_interface_cmd_vtysh); |
| 14581 | install_element (BGP_NODE, &neighbor_route_reflector_client_cmd_vtysh); |
| 14582 | install_element (RMAP_NODE, &set_ecommunity_soo_cmd_vtysh); |
| 14583 | install_element (ENABLE_NODE, &clear_ip_bgp_all_out_cmd_vtysh); |
| 14584 | install_element (INTERFACE_NODE, &ipv6_ospf6_transmitdelay_cmd_vtysh); |
| 14585 | install_element (CONFIG_NODE, &no_ipv6_route_cmd_vtysh); |
| 14586 | install_element (RIP_NODE, &rip_redistribute_type_cmd_vtysh); |
| 14587 | install_element (CONFIG_NODE, &debug_rip_packet_cmd_vtysh); |
| 14588 | install_element (VIEW_NODE, &show_bgp_instance_ipv6_summary_cmd_vtysh); |
| 14589 | install_element (VIEW_NODE, &show_ip_extcommunity_list_arg_cmd_vtysh); |
| 14590 | install_element (INTERFACE_NODE, &ip_irdp_address_preference_cmd_vtysh); |
| 14591 | install_element (ENABLE_NODE, &show_bgp_ipv6_community_list_exact_cmd_vtysh); |
| 14592 | install_element (INTERFACE_NODE, &no_ipv6_ospf6_advertise_force_prefix_cmd_vtysh); |
| 14593 | install_element (BGP_IPV6_NODE, &no_neighbor_allowas_in_cmd_vtysh); |
| 14594 | install_element (BGP_NODE, &no_bgp_router_id_cmd_vtysh); |
| 14595 | install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd_vtysh); |
| 14596 | install_element (OSPF_NODE, &no_area_authentication_cmd_vtysh); |
| 14597 | install_element (CONFIG_NODE, &ip_community_list_name_expanded_cmd_vtysh); |
| 14598 | install_element (ENABLE_NODE, &clear_bgp_ipv6_peer_in_cmd_vtysh); |
| 14599 | install_element (BGP_NODE, &neighbor_strict_capability_cmd_vtysh); |
| 14600 | install_element (BGP_NODE, &no_neighbor_ebgp_multihop_ttl_cmd_vtysh); |
| 14601 | install_element (BGP_IPV4M_NODE, &neighbor_set_peer_group_cmd_vtysh); |
| 14602 | install_element (VIEW_NODE, &show_ip_bgp_community_info_cmd_vtysh); |
| 14603 | install_element (CONFIG_NODE, &no_router_ospf_cmd_vtysh); |
| 14604 | install_element (VIEW_NODE, &show_bgp_ipv6_community_all_cmd_vtysh); |
| 14605 | install_element (ENABLE_NODE, &no_debug_ripng_events_cmd_vtysh); |
| 14606 | install_element (OSPF_NODE, &no_timers_spf_cmd_vtysh); |
| 14607 | install_element (BGP_IPV4_NODE, &no_aggregate_address_cmd_vtysh); |
| 14608 | install_element (VIEW_NODE, &show_ipv6_bgp_regexp_cmd_vtysh); |
| 14609 | install_element (CONFIG_NODE, &no_ip_prefix_list_seq_le_ge_cmd_vtysh); |
| 14610 | install_element (INTERFACE_NODE, &rip_split_horizon_cmd_vtysh); |
| 14611 | install_element (BGP_IPV4M_NODE, &no_neighbor_maximum_prefix_val_cmd_vtysh); |
| 14612 | install_element (ENABLE_NODE, &show_bgp_community3_exact_cmd_vtysh); |
| 14613 | install_element (RIPNG_NODE, &no_ripng_redistribute_bgp_metric_val_cmd_vtysh); |
| 14614 | install_element (BGP_IPV4_NODE, &no_neighbor_maximum_prefix_cmd_vtysh); |
| 14615 | install_element (RMAP_NODE, &no_match_interface_val_cmd_vtysh); |
| 14616 | install_element (BGP_VPNV4_NODE, &neighbor_distribute_list_cmd_vtysh); |
| 14617 | install_element (ENABLE_NODE, &show_ipv6_bgp_route_cmd_vtysh); |
| 14618 | install_element (BGP_NODE, &neighbor_attr_unchanged8_cmd_vtysh); |
| 14619 | install_element (CONFIG_NODE, &debug_ospf_zebra_sub_cmd_vtysh); |
| 14620 | install_element (BGP_NODE, &bgp_redistribute_ipv4_metric_rmap_cmd_vtysh); |
| 14621 | install_element (BGP_NODE, &bgp_timers_cmd_vtysh); |
| 14622 | install_element (BGP_NODE, &no_aggregate_address_mask_summary_as_set_cmd_vtysh); |
| 14623 | install_element (ENABLE_NODE, &clear_bgp_peer_group_soft_out_cmd_vtysh); |
| 14624 | install_element (BGP_IPV4_NODE, &neighbor_remove_private_as_cmd_vtysh); |
| 14625 | install_element (OSPF_NODE, &area_stub_no_summary_cmd_vtysh); |
| 14626 | install_element (CONFIG_NODE, &no_ip_extcommunity_list_name_standard_cmd_vtysh); |
| 14627 | install_element (KEYCHAIN_KEY_NODE, &accept_lifetime_duration_day_month_cmd_vtysh); |
| 14628 | install_element (INTERFACE_NODE, &ipv6_ospf6_deadinterval_cmd_vtysh); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 14629 | } |