blob: 8607fa5f200bdf62dbba0a43d30d47f3546c6db1 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * ip/ip_lookup.c: ip4/6 adjacency and lookup table managment
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
Ed Warnickecb9cada2015-12-08 15:45:58 -070040#include <vnet/ip/ip.h>
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010041#include <vnet/adj/adj.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010042#include <vnet/fib/fib_table.h>
43#include <vnet/fib/ip4_fib.h>
44#include <vnet/fib/ip6_fib.h>
45#include <vnet/mpls/mpls.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000046#include <vnet/mfib/mfib_table.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047#include <vnet/dpo/drop_dpo.h>
48#include <vnet/dpo/classify_dpo.h>
49#include <vnet/dpo/punt_dpo.h>
50#include <vnet/dpo/receive_dpo.h>
Neale Ranns948e00f2016-10-20 13:39:34 +010051#include <vnet/dpo/ip_null_dpo.h>
Neale Ranns3f844d02017-02-18 00:03:54 -080052#include <vnet/ip/ip6_neighbor.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Billy McFall0683c9c2016-10-13 08:27:31 -040054/**
55 * @file
56 * @brief IPv4 and IPv6 adjacency and lookup table managment.
57 *
58 */
59
Ed Warnickecb9cada2015-12-08 15:45:58 -070060clib_error_t *
61ip_interface_address_add_del (ip_lookup_main_t * lm,
62 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050063 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070064 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070066{
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 vnet_main_t *vnm = vnet_get_main ();
68 ip_interface_address_t *a, *prev, *next;
69 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
Dave Barachd7cb1b52016-12-09 09:52:16 -050071 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
72 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
74
75 /* Verify given length. */
76 if ((a && (address_length != a->address_length)) || (address_length == 0))
77 {
78 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050079 return clib_error_create
80 ("%U wrong length (expected %d) for interface %U",
81 lm->format_address_and_length, addr_fib,
82 address_length, a ? a->address_length : -1,
83 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070084 }
85
86 if (is_del)
87 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050088 if (!a)
89 {
90 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
91 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
92 return clib_error_create ("%U not found for interface %U",
93 lm->format_address_and_length,
94 addr_fib, address_length,
95 format_vnet_sw_interface_name, vnm, si);
96 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
98 if (a->prev_this_sw_interface != ~0)
99 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500100 prev =
101 pool_elt_at_index (lm->if_address_pool,
102 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 prev->next_this_sw_interface = a->next_this_sw_interface;
104 }
105 if (a->next_this_sw_interface != ~0)
106 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107 next =
108 pool_elt_at_index (lm->if_address_pool,
109 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110 next->prev_this_sw_interface = a->prev_this_sw_interface;
111
Dave Barachd7cb1b52016-12-09 09:52:16 -0500112 if (a->prev_this_sw_interface == ~0)
113 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
114 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 }
116
Dave Barachd7cb1b52016-12-09 09:52:16 -0500117 if ((a->next_this_sw_interface == ~0)
118 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
120
121 mhash_unset (&lm->address_to_if_address_index, addr_fib,
122 /* old_value */ 0);
123 pool_put (lm->if_address_pool, a);
124
125 if (result_if_address_index)
126 *result_if_address_index = ~0;
127 }
128
Dave Barachd7cb1b52016-12-09 09:52:16 -0500129 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500131 u32 pi; /* previous index */
132 u32 ai;
133 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134
135 pool_get (lm->if_address_pool, a);
136 memset (a, ~0, sizeof (a[0]));
137 ai = a - lm->if_address_pool;
138
139 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
140 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500141 while (pi != (u32) ~ 0)
142 {
143 prev = pool_elt_at_index (lm->if_address_pool, pi);
144 pi = prev->next_this_sw_interface;
145 }
146 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
148 a->address_key = mhash_set (&lm->address_to_if_address_index,
149 addr_fib, ai, /* old_value */ 0);
150 a->address_length = address_length;
151 a->sw_if_index = sw_if_index;
152 a->flags = 0;
153 a->prev_this_sw_interface = pi;
154 a->next_this_sw_interface = ~0;
155 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500156 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
Dave Barachd7cb1b52016-12-09 09:52:16 -0500158 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
159 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160 if (result_if_address_index)
161 *result_if_address_index = ai;
162 }
163 else
164 {
165 if (result_if_address_index)
166 *result_if_address_index = a - lm->if_address_pool;
167 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500168
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
170 return /* no error */ 0;
171}
172
Dave Barachd7cb1b52016-12-09 09:52:16 -0500173void
174ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175{
Dave Barachdbf19ca2016-03-15 10:21:54 +0100176 /* ensure that adjacency is cacheline aligned and sized */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500177 STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline0) == 0,
178 "Cache line marker must be 1st element in struct");
179 STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline1) ==
180 CLIB_CACHE_LINE_BYTES,
181 "Data in cache line 0 is bigger than cache line size");
Dave Barachdbf19ca2016-03-15 10:21:54 +0100182
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400183 /* Preallocate three "special" adjacencies */
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100184 lm->adjacency_heap = adj_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Dave Barachd7cb1b52016-12-09 09:52:16 -0500186 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 lm->fib_result_n_bytes = sizeof (uword);
188
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 lm->is_ip6 = is_ip6;
190 if (is_ip6)
191 {
192 lm->format_address_and_length = format_ip6_address_and_length;
193 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
194 sizeof (ip6_address_fib_t));
195 }
196 else
197 {
198 lm->format_address_and_length = format_ip4_address_and_length;
199 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
200 sizeof (ip4_address_fib_t));
201 }
202
203 {
204 int i;
205
206 /* Setup all IP protocols to be punted and builtin-unknown. */
207 for (i = 0; i < 256; i++)
208 {
209 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
210 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
211 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
213 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500214 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
215 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
216 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
217 IP_BUILTIN_PROTOCOL_UDP;
218 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
219 IP_PROTOCOL_ICMP] =
220 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 }
222}
223
Dave Barachd7cb1b52016-12-09 09:52:16 -0500224u8 *
225format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100227 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500228
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
230 foreach_flow_hash_bit;
231#undef _
232
233 return s;
234}
235
Dave Barachd7cb1b52016-12-09 09:52:16 -0500236u8 *
237format_ip_lookup_next (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100239 ip_lookup_next_t n = va_arg (*args, ip_lookup_next_t);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500240 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
242 switch (n)
243 {
244 default:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100245 s = format (s, "unknown %d", n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 return s;
247
Dave Barachd7cb1b52016-12-09 09:52:16 -0500248 case IP_LOOKUP_NEXT_DROP:
249 t = "drop";
250 break;
251 case IP_LOOKUP_NEXT_PUNT:
252 t = "punt";
253 break;
254 case IP_LOOKUP_NEXT_ARP:
255 t = "arp";
256 break;
257 case IP_LOOKUP_NEXT_MIDCHAIN:
258 t = "midchain";
259 break;
260 case IP_LOOKUP_NEXT_GLEAN:
261 t = "glean";
262 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000263 case IP_LOOKUP_NEXT_MCAST:
264 t = "mcast";
265 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 case IP_LOOKUP_NEXT_REWRITE:
267 break;
268 }
269
270 if (t)
271 vec_add (s, t, strlen (t));
272
273 return s;
274}
275
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276u8 *
277format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500281 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500283 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
285 switch (adj->lookup_next_index)
286 {
287 case IP_LOOKUP_NEXT_REWRITE:
288 s = format (s, "%U",
289 format_vnet_rewrite_header,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500290 vnm->vlib_main, &adj->rewrite_header, packet_data,
291 n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 break;
293
294 default:
295 break;
296 }
297
298 return s;
299}
300
Dave Barachd7cb1b52016-12-09 09:52:16 -0500301static uword
302unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100304 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
305 fib_protocol_t fp = va_arg (*args, int);
306 dpo_proto_t proto;
307
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
310 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500311 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500313 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100316 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500317 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100318 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500319 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100320 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500321 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100323 {
324 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100326 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100328 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500329 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100330 }
331
Dave Barachd7cb1b52016-12-09 09:52:16 -0500332 dpo_set (dpo, DPO_CLASSIFY, proto,
333 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100334 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335 else
336 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338 return 1;
339}
340
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500342 .as_u64 = {
343 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100344};
345
346u32
Dave Barachd7cb1b52016-12-09 09:52:16 -0500347fib_table_id_find_fib_index (fib_protocol_t proto, u32 table_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 ip4_main_t *im4 = &ip4_main;
350 ip6_main_t *im6 = &ip6_main;
351 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352
Dave Barachd7cb1b52016-12-09 09:52:16 -0500353 switch (proto)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100355 case FIB_PROTOCOL_IP4:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 p = hash_get (im4->fib_index_by_table_id, table_id);
357 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100358 case FIB_PROTOCOL_IP6:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500359 p = hash_get (im6->fib_index_by_table_id, table_id);
360 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100361 default:
Dave Barachd7cb1b52016-12-09 09:52:16 -0500362 p = NULL;
363 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500365 if (NULL != p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500367 return (p[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369 return (~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370}
371
372clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100377 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns948e00f2016-10-20 13:39:34 +0100378 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100379 fib_prefix_t *prefixs = NULL, pfx;
Neale Rannsad422ed2016-11-02 14:20:04 +0000380 mpls_label_t out_label, via_label;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500381 clib_error_t *error = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100382 u32 table_id, is_del;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500383 vnet_main_t *vnm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100384 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100386 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387
Dave Barachd7cb1b52016-12-09 09:52:16 -0500388 vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 is_del = 0;
390 table_id = 0;
391 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500392 memset (&pfx, 0, sizeof (pfx));
Neale Rannsad422ed2016-11-02 14:20:04 +0000393 out_label = via_label = MPLS_LABEL_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394
395 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 return 0;
398
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
400 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500401 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100402
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 if (unformat (line_input, "table %d", &table_id))
404 ;
405 else if (unformat (line_input, "del"))
406 is_del = 1;
407 else if (unformat (line_input, "add"))
408 is_del = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100409 else if (unformat (line_input, "resolve-via-host"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500410 {
411 if (vec_len (rpaths) == 0)
412 {
413 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100414 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415 }
416 rpaths[vec_len (rpaths) - 1].frp_flags |=
417 FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
418 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100419 else if (unformat (line_input, "resolve-via-attached"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500420 {
421 if (vec_len (rpaths) == 0)
422 {
423 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100424 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500425 }
426 rpaths[vec_len (rpaths) - 1].frp_flags |=
427 FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
428 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100429 else if (unformat (line_input, "out-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500430 unformat_mpls_unicast_label, &out_label))
431 {
432 if (vec_len (rpaths) == 0)
433 {
434 error = clib_error_return (0, "Paths then labels");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100435 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500436 }
437 vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack, out_label);
438 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000439 else if (unformat (line_input, "via-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500440 unformat_mpls_unicast_label, &rpath.frp_local_label))
441 {
Neale Rannsad422ed2016-11-02 14:20:04 +0000442 rpath.frp_weight = 1;
443 rpath.frp_proto = FIB_PROTOCOL_MPLS;
444 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500445 vec_add1 (rpaths, rpath);
446 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447 else if (unformat (line_input, "count %f", &count))
448 ;
449
450 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500451 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
452 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100453 pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500454 vec_add1 (prefixs, pfx);
455 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
458 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100459 pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500460 vec_add1 (prefixs, pfx);
461 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100462 else if (unformat (line_input, "via %U %U weight %u",
463 unformat_ip4_address,
464 &rpath.frp_addr.ip4,
465 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500466 &rpath.frp_sw_if_index, &rpath.frp_weight))
467 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100468 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500469 vec_add1 (rpaths, rpath);
470 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471
472 else if (unformat (line_input, "via %U %U weight %u",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100473 unformat_ip6_address,
474 &rpath.frp_addr.ip6,
475 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500476 &rpath.frp_sw_if_index, &rpath.frp_weight))
477 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100478 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479 vec_add1 (rpaths, rpath);
480 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
482 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100483 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500484 &rpath.frp_addr.ip4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100485 unformat_vnet_sw_interface, vnm,
486 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500487 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488 rpath.frp_weight = 1;
489 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500490 vec_add1 (rpaths, rpath);
491 }
492
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100494 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500495 &rpath.frp_addr.ip6,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100496 unformat_vnet_sw_interface, vnm,
497 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500498 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100499 rpath.frp_weight = 1;
500 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500501 vec_add1 (rpaths, rpath);
502 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100503 else if (unformat (line_input, "via %U next-hop-table %d",
504 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500505 &rpath.frp_addr.ip4, &rpath.frp_fib_index))
506 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100507 rpath.frp_weight = 1;
508 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100509 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500510 vec_add1 (rpaths, rpath);
511 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100512 else if (unformat (line_input, "via %U next-hop-table %d",
513 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500514 &rpath.frp_addr.ip6, &rpath.frp_fib_index))
515 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100516 rpath.frp_weight = 1;
517 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100518 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500519 vec_add1 (rpaths, rpath);
520 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500522 unformat_ip4_address, &rpath.frp_addr.ip4))
523 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100524 /*
525 * the recursive next-hops are by default in the same table
526 * as the prefix
527 */
528 rpath.frp_fib_index = table_id;
529 rpath.frp_weight = 1;
530 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100531 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500532 vec_add1 (rpaths, rpath);
533 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500535 unformat_ip6_address, &rpath.frp_addr.ip6))
536 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100537 rpath.frp_fib_index = table_id;
538 rpath.frp_weight = 1;
539 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100540 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500541 vec_add1 (rpaths, rpath);
542 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100543 else if (unformat (line_input,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500544 "lookup in table %d", &rpath.frp_fib_index))
545 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100546 rpath.frp_proto = pfx.fp_proto;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100547 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500548 vec_add1 (rpaths, rpath);
549 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100550 else if (vec_len (prefixs) > 0 &&
551 unformat (line_input, "via %U",
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000552 unformat_vnet_sw_interface, vnm,
553 &rpath.frp_sw_if_index))
554 {
555 rpath.frp_weight = 1;
556 rpath.frp_proto = prefixs[0].fp_proto;
557 vec_add1 (rpaths, rpath);
558 }
559 else if (vec_len (prefixs) > 0 &&
560 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100561 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500562 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100563 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500564 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500566 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 error = unformat_parse_error (line_input);
568 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500569 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500571
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100572 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500573 {
574 error =
575 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576 goto done;
577 }
578
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100579 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100581 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582 goto done;
583 }
584
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100585 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500586 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100587 /*
588 * if no table_id is passed we will manipulate the default
589 */
590 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500591 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100592 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500593 {
594 fib_index = fib_table_id_find_fib_index (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100596 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500597 {
598 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100599 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500600 }
601 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100603 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500604 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100605 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500606 {
607 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
608 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100609 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500610 {
611 fib_table_entry_special_dpo_add (fib_index,
612 &prefixs[i],
613 FIB_SOURCE_CLI,
614 FIB_ENTRY_FLAG_EXCLUSIVE,
615 &dpos[0]);
616 dpo_reset (&dpos[0]);
617 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100618 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500619 {
620 error =
621 clib_error_return (0,
622 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100623 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500624 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100625 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500626 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100627 u32 k, j, n, incr;
628 ip46_address_t dst = prefixs[i].fp_addr;
629 f64 t[2];
630 n = count;
631 t[0] = vlib_time_now (vm);
632 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
633 prefixs[i].fp_len);
634
635 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500636 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100637 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500638 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100639 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100640 /*
641 * the CLI parsing stored table Ids, swap to FIB indicies
642 */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500643 fi = fib_table_id_find_fib_index (prefixs[i].fp_proto,
644 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100645
646 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500647 {
648 error =
649 clib_error_return (0, "Via table %d does not exist",
650 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100651 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500652 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100653 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100654
655 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500656 .fp_len = prefixs[i].fp_len,
657 .fp_proto = prefixs[i].fp_proto,
658 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100659 };
660
Dave Barachd7cb1b52016-12-09 09:52:16 -0500661 if (is_del)
662 fib_table_entry_path_remove2 (fib_index,
663 &rpfx,
664 FIB_SOURCE_CLI, &rpaths[j]);
665 else
666 fib_table_entry_path_add2 (fib_index,
667 &rpfx,
668 FIB_SOURCE_CLI,
669 FIB_ENTRY_FLAG_NONE,
670 &rpaths[j]);
671 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100672
673 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500674 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100675 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500676 clib_host_to_net_u32 (incr +
677 clib_net_to_host_u32 (dst.
678 ip4.as_u32));
679 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100680 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500681 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100682 int bucket = (incr < 64 ? 0 : 1);
683 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500684 clib_host_to_net_u64 (incr +
685 clib_net_to_host_u64 (dst.ip6.as_u64
686 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100687
Dave Barachd7cb1b52016-12-09 09:52:16 -0500688 }
689 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100690 t[1] = vlib_time_now (vm);
691 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500692 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
693 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100694 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500695 {
696 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100697 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500698 }
699 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100700
701
Dave Barachd7cb1b52016-12-09 09:52:16 -0500702done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100703 vec_free (dpos);
704 vec_free (prefixs);
705 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500706 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 return error;
708}
709
Dave Barachd7cb1b52016-12-09 09:52:16 -0500710/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
712 .path = "ip",
713 .short_help = "Internet protocol (IP) commands",
714};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500715/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716
Dave Barachd7cb1b52016-12-09 09:52:16 -0500717/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400718VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
719 .path = "ip6",
720 .short_help = "Internet protocol version 6 (IPv6) commands",
721};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500722/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400723
Dave Barachd7cb1b52016-12-09 09:52:16 -0500724/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
726 .path = "show ip",
727 .short_help = "Internet protocol (IP) show commands",
728};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500729/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730
Dave Barachd7cb1b52016-12-09 09:52:16 -0500731/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
733 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400734 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500736/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700738/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400739 * This command is used to add or delete IPv4 or IPv6 routes. All
740 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
741 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
742 * can be IPv4 or IPv6, but all must be of the same form in a single
743 * command. To display the current set of routes, use the commands
744 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
745 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700746 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400747 * Example of how to add a straight forward static route:
748 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
749 * Example of how to delete a straight forward static route:
750 * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700751 * Mainly for route add/del performance testing, one can add or delete
752 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400753 * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700754 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400755 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
756 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
757 * For unequal-cost multipath, specify the desired weights. This
758 * combination of weights results in 3/4 of the traffic following the
759 * second path, 1/4 following the first path:
760 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
761 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
762 * To add a route to a particular FIB table (VRF), use:
763 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700764 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400765/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766VLIB_CLI_COMMAND (ip_route_command, static) = {
767 .path = "ip route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400768 .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>] [weight <weight>]] | [via arp <interface> <adj-hop-ip-addr>] | [via drop|punt|local<id>|arp|classify <classify-idx>] [lookup in table <out-table-id>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400770 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771};
Billy McFall0683c9c2016-10-13 08:27:31 -0400772/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773
Neale Ranns32e1c012016-11-22 17:07:28 +0000774clib_error_t *
775vnet_ip_mroute_cmd (vlib_main_t * vm,
776 unformat_input_t * main_input, vlib_cli_command_t * cmd)
777{
778 unformat_input_t _line_input, *line_input = &_line_input;
779 clib_error_t *error = NULL;
780 fib_route_path_t rpath;
781 u32 table_id, is_del;
782 vnet_main_t *vnm;
783 mfib_prefix_t pfx;
784 u32 fib_index;
785 mfib_itf_flags_t iflags = 0;
786 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800787 u32 gcount, scount, ss, gg, incr;
788 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +0000789
Neale Ranns52456fc2017-02-15 00:38:27 -0800790 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000791 vnm = vnet_get_main ();
792 is_del = 0;
793 table_id = 0;
794 memset (&pfx, 0, sizeof (pfx));
795 memset (&rpath, 0, sizeof (rpath));
796 rpath.frp_sw_if_index = ~0;
797
798 /* Get a line of input. */
799 if (!unformat_user (main_input, unformat_line_input, line_input))
800 return 0;
801
802 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
803 {
804 if (unformat (line_input, "table %d", &table_id))
805 ;
806 else if (unformat (line_input, "del"))
807 is_del = 1;
808 else if (unformat (line_input, "add"))
809 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800810 else if (unformat (line_input, "scount %d", &scount))
811 ;
812 else if (unformat (line_input, "gcount %d", &gcount))
813 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000814 else if (unformat (line_input, "%U %U",
815 unformat_ip4_address,
816 &pfx.fp_src_addr.ip4,
817 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
818 {
819 pfx.fp_proto = FIB_PROTOCOL_IP4;
820 pfx.fp_len = 64;
821 }
822 else if (unformat (line_input, "%U %U",
823 unformat_ip6_address,
824 &pfx.fp_src_addr.ip6,
825 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
826 {
827 pfx.fp_proto = FIB_PROTOCOL_IP6;
828 pfx.fp_len = 256;
829 }
830 else if (unformat (line_input, "%U/%d",
831 unformat_ip4_address,
832 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
833 {
834 pfx.fp_proto = FIB_PROTOCOL_IP4;
835 }
836 else if (unformat (line_input, "%U/%d",
837 unformat_ip6_address,
838 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
839 {
840 pfx.fp_proto = FIB_PROTOCOL_IP6;
841 }
842 else if (unformat (line_input, "%U",
843 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
844 {
845 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
846 pfx.fp_proto = FIB_PROTOCOL_IP4;
847 pfx.fp_len = 32;
848 }
849 else if (unformat (line_input, "%U",
850 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
851 {
852 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
853 pfx.fp_proto = FIB_PROTOCOL_IP6;
854 pfx.fp_len = 128;
855 }
856 else if (unformat (line_input, "via %U",
857 unformat_vnet_sw_interface, vnm,
858 &rpath.frp_sw_if_index))
859 {
860 rpath.frp_weight = 1;
861 rpath.frp_proto = FIB_PROTOCOL_IP4;
862 }
863 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
864 ;
865 else if (unformat (line_input, "%U",
866 unformat_mfib_entry_flags, &eflags))
867 ;
868 else
869 {
870 error = unformat_parse_error (line_input);
871 goto done;
872 }
873 }
874
Neale Ranns32e1c012016-11-22 17:07:28 +0000875 if (~0 == table_id)
876 {
877 /*
878 * if no table_id is passed we will manipulate the default
879 */
880 fib_index = 0;
881 }
882 else
883 {
884 fib_index = mfib_table_find (pfx.fp_proto, table_id);
885
886 if (~0 == fib_index)
887 {
888 error = clib_error_return (0, "Nonexistent table id %d", table_id);
889 goto done;
890 }
891 }
892
Neale Ranns52456fc2017-02-15 00:38:27 -0800893 timet[0] = vlib_time_now (vm);
894
895 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000896 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800897 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000898 }
899 else
900 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800901 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000902 }
903
Neale Ranns52456fc2017-02-15 00:38:27 -0800904 for (ss = 0; ss < scount; ss++)
905 {
906 for (gg = 0; gg < gcount; gg++)
907 {
908 if (is_del && 0 == rpath.frp_weight)
909 {
910 /* no path provided => route delete */
911 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
912 }
913 else if (eflags)
914 {
915 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
916 eflags);
917 }
918 else
919 {
920 if (is_del)
921 mfib_table_entry_path_remove (fib_index,
922 &pfx, MFIB_SOURCE_CLI, &rpath);
923 else
924 mfib_table_entry_path_update (fib_index,
925 &pfx, MFIB_SOURCE_CLI, &rpath,
926 iflags);
927 }
928
929 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
930 {
931 pfx.fp_grp_addr.ip4.as_u32 =
932 clib_host_to_net_u32 (incr +
933 clib_net_to_host_u32 (pfx.
934 fp_grp_addr.ip4.
935 as_u32));
936 }
937 else
938 {
939 int bucket = (incr < 64 ? 0 : 1);
940 pfx.fp_grp_addr.ip6.as_u64[bucket] =
941 clib_host_to_net_u64 (incr +
942 clib_net_to_host_u64 (pfx.
943 fp_grp_addr.ip6.as_u64
944 [bucket]));
945
946 }
947 }
948 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
949 {
950 pfx.fp_src_addr.ip4.as_u32 =
951 clib_host_to_net_u32 (1 +
952 clib_net_to_host_u32 (pfx.fp_src_addr.
953 ip4.as_u32));
954 }
955 else
956 {
957 pfx.fp_src_addr.ip6.as_u64[1] =
958 clib_host_to_net_u64 (1 +
959 clib_net_to_host_u64 (pfx.fp_src_addr.
960 ip6.as_u64[1]));
961 }
962 }
963
964 timet[1] = vlib_time_now (vm);
965
966 if (scount > 1 || gcount > 1)
967 vlib_cli_output (vm, "%.6e routes/sec",
968 (scount * gcount) / (timet[1] - timet[0]));
969
Neale Ranns32e1c012016-11-22 17:07:28 +0000970done:
Billy McFalla9a20e72017-02-15 11:39:12 -0500971 unformat_free (line_input);
972
Neale Ranns32e1c012016-11-22 17:07:28 +0000973 return error;
974}
975
976/*?
977 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
978 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
979 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
980 * can be IPv4 or IPv6, but all must be of the same form in a single
981 * command. To display the current set of routes, use the commands
982 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
983 * The full set of support flags for interfaces and route is shown via;
984 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
985 * respectively.
986 * @cliexpar
987 * Example of how to add a forwarding interface to a route (and create the
988 * route if it does not exist)
989 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
990 * Example of how to add an accepting interface to a route (and create the
991 * route if it does not exist)
992 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
993 * Example of changing the route's flags to send signals via the API
994 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
995
996 ?*/
997/* *INDENT-OFF* */
998VLIB_CLI_COMMAND (ip_mroute_command, static) =
999{
1000 .path = "ip mroute",
1001 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1002 .function = vnet_ip_mroute_cmd,
1003 .is_mp_safe = 1,
1004};
1005/* *INDENT-ON* */
1006
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001007/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001008 * The next two routines address a longstanding script hemorrhoid.
1009 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1010 * or dependent route-adds will simply fail.
1011 */
1012static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001013ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001014 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001016 vnet_main_t *vnm = vnet_get_main ();
1017 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018 int i;
1019 int resolved = 0;
1020 uword event_type;
1021 uword *event_data = 0;
1022
Dave Barachd7cb1b52016-12-09 09:52:16 -05001023 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024
1025 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001026 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001028 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001029
1030 for (i = 0; i < retry_count; i++)
1031 {
1032 /* The interface may be down, etc. */
1033 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001034
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001036 return e;
1037
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038 vlib_process_wait_for_event_or_clock (vm, 1.0);
1039 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001040 switch (event_type)
1041 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001042 case 1: /* resolved... */
1043 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1044 resolved = 1;
1045 goto done;
1046
1047 case ~0: /* timeout */
1048 break;
1049
1050 default:
1051 clib_warning ("unknown event_type %d", event_type);
1052 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001053 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001055
1056done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001057
1058 if (!resolved)
1059 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001060 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 return 0;
1062}
1063
1064static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001065ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1066 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001068 vnet_main_t *vnm = vnet_get_main ();
1069 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001070 int i;
1071 int resolved = 0;
1072 uword event_type;
1073 uword *event_data = 0;
1074
Dave Barachd7cb1b52016-12-09 09:52:16 -05001075 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076
1077 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001078 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001080 1 /* event */ , 0 /* data */ );
1081
Ed Warnickecb9cada2015-12-08 15:45:58 -07001082 for (i = 0; i < retry_count; i++)
1083 {
1084 /* The interface may be down, etc. */
1085 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001086
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001088 return e;
1089
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 vlib_process_wait_for_event_or_clock (vm, 1.0);
1091 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001092 switch (event_type)
1093 {
1094 case 1: /* resolved... */
1095 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1096 resolved = 1;
1097 goto done;
1098
1099 case ~0: /* timeout */
1100 break;
1101
1102 default:
1103 clib_warning ("unknown event_type %d", event_type);
1104 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001105 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001107
1108done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109
1110 vec_reset_length (event_data);
1111
1112 if (!resolved)
1113 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001114 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115 return 0;
1116}
1117
1118static clib_error_t *
1119probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001120 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001122 vnet_main_t *vnm = vnet_get_main ();
1123 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001124 ip4_address_t a4;
1125 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001126 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127 u32 sw_if_index = ~0;
1128 int retry_count = 3;
1129 int is_ip4 = 1;
1130 int address_set = 0;
1131
1132 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001133 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001134 return 0;
1135
Dave Barachd7cb1b52016-12-09 09:52:16 -05001136 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001137 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001138 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1139 &sw_if_index))
1140 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001142 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143
1144 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001145 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001147 {
1148 address_set++;
1149 is_ip4 = 0;
1150 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001152 {
1153 error = clib_error_return (0, "unknown input '%U'",
1154 format_unformat_error, line_input);
1155 goto done;
1156 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001157 }
1158
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001160 {
1161 error = clib_error_return (0, "Interface required, not set.");
1162 goto done;
1163 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001165 {
1166 error = clib_error_return (0, "ip address required, not set.");
1167 goto done;
1168 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001170 {
1171 error = clib_error_return (0, "Multiple ip addresses not supported.");
1172 goto done;
1173 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001174
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175 if (is_ip4)
1176 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001177 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001178 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1179
Billy McFalla9a20e72017-02-15 11:39:12 -05001180done:
1181 unformat_free (line_input);
1182
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183 return error;
1184}
1185
Billy McFall0683c9c2016-10-13 08:27:31 -04001186/*?
1187 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1188 * attempts IPv6 neighbor discovery depending on the supplied IP address
1189 * format.
1190 *
1191 * @note This command will not immediately affect the indicated FIB; it
1192 * is not suitable for use in establishing a FIB entry prior to adding
1193 * recursive FIB entries. As in: don't use it in a script to probe a
1194 * gateway prior to adding a default route. It won't work. Instead,
1195 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1196 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1197 *
1198 * @cliexpar
1199 * Example of probe for an IPv4 address:
1200 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1201?*/
1202/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001203VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1204 .path = "ip probe-neighbor",
1205 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001206 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001207 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001208};
Billy McFall0683c9c2016-10-13 08:27:31 -04001209/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001210
1211/*
1212 * fd.io coding-style-patch-verification: ON
1213 *
1214 * Local Variables:
1215 * eval: (c-set-style "gnu")
1216 * End:
1217 */