Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 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 | #include "ipip.h" |
| 17 | #include <vppinfra/error.h> |
| 18 | #include <vnet/vnet.h> |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 19 | #include <vnet/fib/fib_table.h> |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 20 | |
| 21 | static clib_error_t *create_ipip_tunnel_command_fn(vlib_main_t *vm, |
| 22 | unformat_input_t *input, |
| 23 | vlib_cli_command_t *cmd) { |
| 24 | unformat_input_t _line_input, *line_input = &_line_input; |
| 25 | ip46_address_t src = ip46_address_initializer, dst = ip46_address_initializer; |
| 26 | u32 instance = ~0; |
| 27 | u32 fib_index = 0; |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 28 | u32 table_id = 0; |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 29 | int rv; |
| 30 | u32 num_m_args = 0; |
| 31 | u32 sw_if_index; |
| 32 | clib_error_t *error = NULL; |
| 33 | bool ip4_set = false, ip6_set = false; |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 34 | tunnel_mode_t mode = TUNNEL_MODE_P2P; |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 35 | |
| 36 | /* Get a line of input. */ |
| 37 | if (!unformat_user(input, unformat_line_input, line_input)) |
| 38 | return 0; |
| 39 | |
| 40 | while (unformat_check_input(line_input) != UNFORMAT_END_OF_INPUT) { |
| 41 | if (unformat(line_input, "instance %d", &instance)) |
| 42 | ; |
| 43 | else if (unformat(line_input, "src %U", unformat_ip4_address, &src.ip4)) { |
| 44 | num_m_args++; |
| 45 | ip4_set = true; |
| 46 | } else if (unformat(line_input, "dst %U", unformat_ip4_address, &dst.ip4)) { |
| 47 | num_m_args++; |
| 48 | ip4_set = true; |
| 49 | } else if (unformat(line_input, "src %U", unformat_ip6_address, &src.ip6)) { |
| 50 | num_m_args++; |
| 51 | ip6_set = true; |
| 52 | } else if (unformat(line_input, "dst %U", unformat_ip6_address, &dst.ip6)) { |
| 53 | num_m_args++; |
| 54 | ip6_set = true; |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 55 | } else if (unformat(line_input, "%U", unformat_tunnel_mode, &mode)) { |
| 56 | num_m_args++; |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 57 | } else if (unformat(line_input, "outer-table-id %d", &table_id)) |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 58 | ; |
| 59 | else { |
| 60 | error = clib_error_return(0, "unknown input `%U'", format_unformat_error, |
| 61 | line_input); |
| 62 | goto done; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | if (num_m_args < 2) { |
| 67 | error = clib_error_return(0, "mandatory argument(s) missing"); |
| 68 | goto done; |
| 69 | } |
| 70 | if (ip4_set && ip6_set) { |
| 71 | error = clib_error_return(0, "source and destination must be of same address family"); |
| 72 | goto done; |
| 73 | } |
| 74 | |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 75 | fib_index = fib_table_find(fib_ip_proto(ip6_set), table_id); |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 76 | |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 77 | if (~0 == fib_index) |
| 78 | { |
| 79 | rv = VNET_API_ERROR_NO_SUCH_FIB; |
| 80 | } |
| 81 | else |
| 82 | { |
| 83 | rv = ipip_add_tunnel(ip6_set ? IPIP_TRANSPORT_IP6 : IPIP_TRANSPORT_IP4, |
| 84 | instance, |
| 85 | &src, |
| 86 | &dst, |
| 87 | fib_index, |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 88 | TUNNEL_ENCAP_DECAP_FLAG_NONE, |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 89 | IP_DSCP_CS0, |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 90 | mode, |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 91 | &sw_if_index); |
| 92 | } |
| 93 | |
| 94 | switch (rv) { |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 95 | case 0: |
| 96 | vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main(), |
| 97 | sw_if_index); |
| 98 | break; |
| 99 | case VNET_API_ERROR_IF_ALREADY_EXISTS: |
| 100 | error = clib_error_return(0, "IPIP tunnel already exists..."); |
| 101 | goto done; |
| 102 | case VNET_API_ERROR_NO_SUCH_FIB: |
| 103 | error = clib_error_return(0, "outer fib ID %d doesn't exist\n", fib_index); |
| 104 | goto done; |
| 105 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
| 106 | error = clib_error_return(0, "IPIP tunnel doesn't exist"); |
| 107 | goto done; |
| 108 | case VNET_API_ERROR_INSTANCE_IN_USE: |
| 109 | error = clib_error_return(0, "Instance is in use"); |
| 110 | goto done; |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 111 | case VNET_API_ERROR_INVALID_DST_ADDRESS: |
| 112 | error = clib_error_return(0, "destination IP address when mode is multi-point"); |
| 113 | goto done; |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 114 | default: |
| 115 | error = clib_error_return(0, "vnet_ipip_add_del_tunnel returned %d", rv); |
| 116 | goto done; |
| 117 | } |
| 118 | |
| 119 | done: |
| 120 | unformat_free(line_input); |
| 121 | |
| 122 | return error; |
| 123 | } |
| 124 | |
| 125 | static clib_error_t *delete_ipip_tunnel_command_fn(vlib_main_t *vm, |
| 126 | unformat_input_t *input, |
| 127 | vlib_cli_command_t *cmd) { |
| 128 | unformat_input_t _line_input, *line_input = &_line_input; |
| 129 | int rv; |
| 130 | u32 num_m_args = 0; |
| 131 | u32 sw_if_index = ~0; |
| 132 | clib_error_t *error = NULL; |
| 133 | |
| 134 | /* Get a line of input. */ |
| 135 | if (!unformat_user(input, unformat_line_input, line_input)) |
| 136 | return 0; |
| 137 | |
| 138 | while (unformat_check_input(line_input) != UNFORMAT_END_OF_INPUT) { |
| 139 | if (unformat(line_input, "sw_if_index %d", &sw_if_index)) |
| 140 | num_m_args++; |
| 141 | else { |
| 142 | error = clib_error_return(0, "unknown input `%U'", format_unformat_error, |
| 143 | line_input); |
| 144 | goto done; |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | if (num_m_args < 1) { |
| 149 | error = clib_error_return(0, "mandatory argument(s) missing"); |
| 150 | goto done; |
| 151 | } |
| 152 | |
| 153 | rv = ipip_del_tunnel(sw_if_index); |
| 154 | printf("RV %d\n", rv); |
| 155 | |
| 156 | done: |
| 157 | unformat_free(line_input); |
| 158 | |
| 159 | return error; |
| 160 | } |
| 161 | |
| 162 | /* *INDENT-OFF* */ |
| 163 | VLIB_CLI_COMMAND(create_ipip_tunnel_command, static) = { |
| 164 | .path = "create ipip tunnel", |
| 165 | .short_help = "create ipip tunnel src <addr> dst <addr> [instance <n>] " |
Neale Ranns | ae0d46e | 2020-09-22 13:20:27 +0000 | [diff] [blame] | 166 | "[outer-table-id <ID>] [p2mp]", |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 167 | .function = create_ipip_tunnel_command_fn, |
| 168 | }; |
| 169 | VLIB_CLI_COMMAND(delete_ipip_tunnel_command, static) = { |
| 170 | .path = "delete ipip tunnel", |
Ignas Bacius | 3d93ad9 | 2019-10-10 16:14:47 +0300 | [diff] [blame] | 171 | .short_help = "delete ipip tunnel sw_if_index <sw_if_index>", |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 172 | .function = delete_ipip_tunnel_command_fn, |
| 173 | }; |
| 174 | /* *INDENT-ON* */ |
| 175 | |
| 176 | static u8 *format_ipip_tunnel(u8 *s, va_list *args) { |
| 177 | ipip_tunnel_t *t = va_arg(*args, ipip_tunnel_t *); |
| 178 | |
| 179 | ip46_type_t type = (t->transport == IPIP_TRANSPORT_IP4) ? IP46_TYPE_IP4 : IP46_TYPE_IP6; |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 180 | u32 table_id; |
| 181 | |
| 182 | table_id = fib_table_get_table_id(t->fib_index, |
| 183 | fib_proto_from_ip46(type)); |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 184 | switch (t->mode) { |
| 185 | case IPIP_MODE_6RD: |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 186 | s = format(s, "[%d] 6rd src %U ip6-pfx %U/%d ", |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 187 | t->dev_instance, |
| 188 | format_ip46_address, &t->tunnel_src, type, |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 189 | format_ip6_address, &t->sixrd.ip6_prefix, t->sixrd.ip6_prefix_len); |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 190 | break; |
| 191 | case IPIP_MODE_P2P: |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 192 | s = format(s, "[%d] instance %d src %U dst %U ", |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 193 | t->dev_instance, t->user_instance, |
| 194 | format_ip46_address, &t->tunnel_src, type, |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 195 | format_ip46_address, &t->tunnel_dst, type); |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 196 | break; |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 197 | case IPIP_MODE_P2MP: |
| 198 | s = format(s, "[%d] instance %d p2mp src %U ", |
| 199 | t->dev_instance, t->user_instance, |
| 200 | format_ip46_address, &t->tunnel_src, type); |
| 201 | break; |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 202 | } |
| 203 | |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 204 | s = format(s, "table-ID %d sw-if-idx %d flags [%U] dscp %U", |
| 205 | table_id, t->sw_if_index, |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 206 | format_tunnel_encap_decap_flags, t->flags, |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 207 | format_ip_dscp, t->dscp); |
| 208 | |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 209 | return s; |
| 210 | } |
| 211 | |
| 212 | static clib_error_t *show_ipip_tunnel_command_fn(vlib_main_t *vm, |
| 213 | unformat_input_t *input, |
| 214 | vlib_cli_command_t *cmd) { |
| 215 | ipip_main_t *gm = &ipip_main; |
| 216 | ipip_tunnel_t *t; |
| 217 | u32 ti = ~0; |
| 218 | |
| 219 | if (pool_elts(gm->tunnels) == 0) |
| 220 | vlib_cli_output(vm, "No IPIP tunnels configured..."); |
| 221 | |
| 222 | while (unformat_check_input(input) != UNFORMAT_END_OF_INPUT) { |
| 223 | if (unformat(input, "%d", &ti)) |
| 224 | ; |
| 225 | else |
| 226 | break; |
| 227 | } |
| 228 | |
| 229 | if (ti == ~0) { |
| 230 | /* *INDENT-OFF* */ |
| 231 | pool_foreach(t, gm->tunnels, |
| 232 | ({vlib_cli_output(vm, "%U", format_ipip_tunnel, t); })); |
| 233 | /* *INDENT-ON* */ |
| 234 | } else { |
| 235 | t = pool_elt_at_index(gm->tunnels, ti); |
| 236 | if (t) |
| 237 | vlib_cli_output(vm, "%U", format_ipip_tunnel, t); |
| 238 | } |
| 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | /* *INDENT-OFF* */ |
| 243 | VLIB_CLI_COMMAND(show_ipip_tunnel_command, static) = { |
| 244 | .path = "show ipip tunnel", |
| 245 | .function = show_ipip_tunnel_command_fn, |
| 246 | }; |
| 247 | /* *INDENT-ON* */ |
| 248 | |
Neale Ranns | 14053c9 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 249 | static u8 * |
| 250 | format_ipip_tunnel_key (u8 *s, va_list *args) |
| 251 | { |
| 252 | ipip_tunnel_key_t *t = va_arg(*args, ipip_tunnel_key_t *); |
| 253 | |
| 254 | s = format (s, "src:%U dst:%U fib:%d transport:%d mode:%d", |
| 255 | format_ip46_address, &t->src, IP46_TYPE_ANY, |
| 256 | format_ip46_address, &t->dst, IP46_TYPE_ANY, |
| 257 | t->fib_index, t->transport, t->mode); |
| 258 | |
| 259 | return (s); |
| 260 | } |
| 261 | |
| 262 | static clib_error_t * |
| 263 | ipip_tunnel_hash_show (vlib_main_t * vm, |
| 264 | unformat_input_t * input, |
| 265 | vlib_cli_command_t * cmd) |
| 266 | { |
| 267 | ipip_main_t *im = &ipip_main; |
| 268 | ipip_tunnel_key_t *key; |
| 269 | u32 index; |
| 270 | |
| 271 | /* *INDENT-OFF* */ |
| 272 | hash_foreach(key, index, im->tunnel_by_key, |
| 273 | ({ |
| 274 | vlib_cli_output (vm, " %U -> %d", format_ipip_tunnel_key, key, index); |
| 275 | })); |
| 276 | /* *INDENT-ON* */ |
| 277 | |
| 278 | return NULL; |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * show IPSEC tunnel protection hash tables |
| 283 | */ |
| 284 | /* *INDENT-OFF* */ |
| 285 | VLIB_CLI_COMMAND (ipip_tunnel_hash_show_node, static) = |
| 286 | { |
| 287 | .path = "show ipip tunnel-hash", |
| 288 | .function = ipip_tunnel_hash_show, |
| 289 | .short_help = "show ipip tunnel-hash", |
| 290 | }; |
| 291 | /* *INDENT-ON* */ |
| 292 | |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 293 | static clib_error_t *create_sixrd_tunnel_command_fn(vlib_main_t *vm, |
| 294 | unformat_input_t *input, |
| 295 | vlib_cli_command_t *cmd) { |
| 296 | unformat_input_t _line_input, *line_input = &_line_input; |
| 297 | ip4_address_t ip4_prefix; |
| 298 | ip6_address_t ip6_prefix; |
| 299 | ip4_address_t ip4_src; |
| 300 | u32 ip6_prefix_len = 0, ip4_prefix_len = 0, sixrd_tunnel_index; |
| 301 | u32 num_m_args = 0; |
| 302 | /* Optional arguments */ |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 303 | u32 ip4_table_id = 0, ip4_fib_index; |
| 304 | u32 ip6_table_id = 0, ip6_fib_index; |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 305 | clib_error_t *error = 0; |
| 306 | bool security_check = false; |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 307 | int rv; |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 308 | |
| 309 | /* Get a line of input. */ |
| 310 | if (!unformat_user(input, unformat_line_input, line_input)) |
| 311 | return 0; |
| 312 | while (unformat_check_input(line_input) != UNFORMAT_END_OF_INPUT) { |
| 313 | if (unformat(line_input, "security-check")) |
| 314 | security_check = true; |
| 315 | else if (unformat(line_input, "ip6-pfx %U/%d", unformat_ip6_address, |
| 316 | &ip6_prefix, &ip6_prefix_len)) |
| 317 | num_m_args++; |
| 318 | else if (unformat(line_input, "ip4-pfx %U/%d", unformat_ip4_address, |
| 319 | &ip4_prefix, &ip4_prefix_len)) |
| 320 | num_m_args++; |
| 321 | else if (unformat(line_input, "ip4-src %U", unformat_ip4_address, &ip4_src)) |
| 322 | num_m_args++; |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 323 | else if (unformat(line_input, "ip4-table-id %d", &ip4_table_id)) |
| 324 | ; |
| 325 | else if (unformat(line_input, "ip6-table-id %d", &ip6_table_id)) |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 326 | ; |
| 327 | else { |
| 328 | error = clib_error_return(0, "unknown input `%U'", format_unformat_error, |
| 329 | line_input); |
| 330 | goto done; |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | if (num_m_args < 3) { |
| 335 | error = clib_error_return(0, "mandatory argument(s) missing"); |
| 336 | goto done; |
| 337 | } |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 338 | ip4_fib_index = fib_table_find(FIB_PROTOCOL_IP4, ip4_table_id); |
| 339 | ip6_fib_index = fib_table_find(FIB_PROTOCOL_IP6, ip6_table_id); |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 340 | |
Neale Ranns | 6150211 | 2018-08-22 00:21:14 -0700 | [diff] [blame] | 341 | if (~0 == ip4_fib_index) |
| 342 | { |
| 343 | error = clib_error_return(0, "No such IP4 table %d", ip4_table_id); |
| 344 | rv = VNET_API_ERROR_NO_SUCH_FIB; |
| 345 | } |
| 346 | else if (~0 == ip6_fib_index) |
| 347 | { |
| 348 | error = clib_error_return(0, "No such IP6 table %d", ip6_table_id); |
| 349 | rv = VNET_API_ERROR_NO_SUCH_FIB; |
| 350 | } |
| 351 | else |
| 352 | { |
| 353 | rv = sixrd_add_tunnel(&ip6_prefix, ip6_prefix_len, &ip4_prefix, |
| 354 | ip4_prefix_len, &ip4_src, security_check, |
| 355 | ip4_fib_index, ip6_fib_index, |
| 356 | &sixrd_tunnel_index); |
| 357 | |
| 358 | if (rv) |
| 359 | error = clib_error_return(0, "adding tunnel failed %d", rv); |
| 360 | } |
| 361 | |
| 362 | done: |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 363 | unformat_free(line_input); |
| 364 | |
| 365 | return error; |
| 366 | } |
| 367 | |
| 368 | static clib_error_t *delete_sixrd_tunnel_command_fn(vlib_main_t *vm, |
| 369 | unformat_input_t *input, |
| 370 | vlib_cli_command_t *cmd) { |
| 371 | unformat_input_t _line_input, *line_input = &_line_input; |
| 372 | u32 num_m_args = 0; |
| 373 | /* Optional arguments */ |
| 374 | clib_error_t *error = 0; |
| 375 | u32 sw_if_index = ~0; |
| 376 | |
| 377 | /* Get a line of input. */ |
| 378 | if (!unformat_user(input, unformat_line_input, line_input)) |
| 379 | return 0; |
| 380 | while (unformat_check_input(line_input) != UNFORMAT_END_OF_INPUT) { |
| 381 | if (unformat(line_input, "sw_if_index %d", &sw_if_index)) |
| 382 | num_m_args++; |
| 383 | else { |
| 384 | error = clib_error_return(0, "unknown input `%U'", format_unformat_error, |
| 385 | line_input); |
| 386 | goto done; |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | if (num_m_args < 1) { |
| 391 | error = clib_error_return(0, "mandatory argument(s) missing"); |
| 392 | goto done; |
| 393 | } |
| 394 | int rv = sixrd_del_tunnel(sw_if_index); |
| 395 | printf("RV %d\n", rv); |
| 396 | |
| 397 | done: |
| 398 | unformat_free(line_input); |
| 399 | |
| 400 | return error; |
| 401 | } |
| 402 | |
| 403 | /* *INDENT-OFF* */ |
| 404 | VLIB_CLI_COMMAND(create_sixrd_tunnel_command, static) = { |
| 405 | .path = "create 6rd tunnel", |
| 406 | .short_help = "create 6rd tunnel ip6-pfx <ip6-pfx> ip4-pfx <ip4-pfx> " |
Ignas Bacius | 3d93ad9 | 2019-10-10 16:14:47 +0300 | [diff] [blame] | 407 | "ip4-src <ip4-addr> ip4-table-id <ID> ip6-table-id <ID> " |
BenoƮt Ganne | 1b52ca9 | 2019-04-19 10:12:42 +0200 | [diff] [blame] | 408 | "[security-check]", |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 409 | .function = create_sixrd_tunnel_command_fn, |
| 410 | }; |
| 411 | VLIB_CLI_COMMAND(delete_sixrd_tunnel_command, static) = { |
| 412 | .path = "delete 6rd tunnel", |
Ignas Bacius | 3d93ad9 | 2019-10-10 16:14:47 +0300 | [diff] [blame] | 413 | .short_help = "delete 6rd tunnel sw_if_index <sw_if_index>", |
Ole Troan | 298c695 | 2018-03-08 12:30:43 +0100 | [diff] [blame] | 414 | .function = delete_sixrd_tunnel_command_fn, |
| 415 | }; |
| 416 | /* *INDENT-ON* */ |