paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* MPLS-VPN |
| 2 | Copyright (C) 2000 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3 | |
| 4 | This file is part of GNU Zebra. |
| 5 | |
| 6 | GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | under the terms of the GNU General Public License as published by the |
| 8 | Free Software Foundation; either version 2, or (at your option) any |
| 9 | later version. |
| 10 | |
| 11 | GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 18 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | 02111-1307, USA. */ |
| 20 | |
| 21 | #include <zebra.h> |
| 22 | |
| 23 | #include "command.h" |
| 24 | #include "prefix.h" |
| 25 | #include "log.h" |
| 26 | #include "memory.h" |
| 27 | #include "stream.h" |
Donald Sharp | 0490729 | 2016-01-07 10:03:01 -0500 | [diff] [blame] | 28 | #include "filter.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 29 | |
| 30 | #include "bgpd/bgpd.h" |
| 31 | #include "bgpd/bgp_table.h" |
| 32 | #include "bgpd/bgp_route.h" |
| 33 | #include "bgpd/bgp_attr.h" |
| 34 | #include "bgpd/bgp_mplsvpn.h" |
| 35 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 36 | static u_int16_t |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 37 | decode_rd_type (u_char *pnt) |
| 38 | { |
| 39 | u_int16_t v; |
| 40 | |
| 41 | v = ((u_int16_t) *pnt++ << 8); |
| 42 | v |= (u_int16_t) *pnt; |
| 43 | return v; |
| 44 | } |
| 45 | |
| 46 | u_int32_t |
| 47 | decode_label (u_char *pnt) |
| 48 | { |
| 49 | u_int32_t l; |
| 50 | |
| 51 | l = ((u_int32_t) *pnt++ << 12); |
| 52 | l |= (u_int32_t) *pnt++ << 4; |
| 53 | l |= (u_int32_t) ((*pnt & 0xf0) >> 4); |
| 54 | return l; |
| 55 | } |
| 56 | |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 57 | /* type == RD_TYPE_AS */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 58 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 59 | decode_rd_as (u_char *pnt, struct rd_as *rd_as) |
| 60 | { |
| 61 | rd_as->as = (u_int16_t) *pnt++ << 8; |
| 62 | rd_as->as |= (u_int16_t) *pnt++; |
| 63 | |
| 64 | rd_as->val = ((u_int32_t) *pnt++ << 24); |
| 65 | rd_as->val |= ((u_int32_t) *pnt++ << 16); |
| 66 | rd_as->val |= ((u_int32_t) *pnt++ << 8); |
| 67 | rd_as->val |= (u_int32_t) *pnt; |
| 68 | } |
| 69 | |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 70 | /* type == RD_TYPE_AS4 */ |
| 71 | static void |
| 72 | decode_rd_as4 (u_char *pnt, struct rd_as *rd_as) |
| 73 | { |
| 74 | rd_as->as = (u_int32_t) *pnt++ << 24; |
| 75 | rd_as->as |= (u_int32_t) *pnt++ << 16; |
| 76 | rd_as->as |= (u_int32_t) *pnt++ << 8; |
| 77 | rd_as->as |= (u_int32_t) *pnt++; |
| 78 | |
| 79 | rd_as->val = ((u_int16_t) *pnt++ << 8); |
| 80 | rd_as->val |= (u_int16_t) *pnt; |
| 81 | } |
| 82 | |
| 83 | /* type == RD_TYPE_IP */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 84 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 85 | decode_rd_ip (u_char *pnt, struct rd_ip *rd_ip) |
| 86 | { |
| 87 | memcpy (&rd_ip->ip, pnt, 4); |
| 88 | pnt += 4; |
| 89 | |
| 90 | rd_ip->val = ((u_int16_t) *pnt++ << 8); |
| 91 | rd_ip->val |= (u_int16_t) *pnt; |
| 92 | } |
| 93 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 94 | int |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 95 | bgp_nlri_parse_vpn (struct peer *peer, struct attr *attr, |
| 96 | struct bgp_nlri *packet) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 97 | { |
| 98 | u_char *pnt; |
| 99 | u_char *lim; |
| 100 | struct prefix p; |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 101 | int psize = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 102 | int prefixlen; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 103 | u_int16_t type; |
| 104 | struct rd_as rd_as; |
| 105 | struct rd_ip rd_ip; |
| 106 | struct prefix_rd prd; |
| 107 | u_char *tagpnt; |
| 108 | |
| 109 | /* Check peer status. */ |
| 110 | if (peer->status != Established) |
| 111 | return 0; |
| 112 | |
| 113 | /* Make prefix_rd */ |
| 114 | prd.family = AF_UNSPEC; |
| 115 | prd.prefixlen = 64; |
| 116 | |
| 117 | pnt = packet->nlri; |
| 118 | lim = pnt + packet->length; |
| 119 | |
Donald Sharp | a3bc7e9 | 2016-01-27 16:54:45 +0000 | [diff] [blame] | 120 | #define VPN_PREFIXLEN_MIN_BYTES (3 + 8) /* label + RD */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 121 | for (; pnt < lim; pnt += psize) |
| 122 | { |
| 123 | /* Clear prefix structure. */ |
| 124 | memset (&p, 0, sizeof (struct prefix)); |
| 125 | |
| 126 | /* Fetch prefix length. */ |
| 127 | prefixlen = *pnt++; |
Donald Sharp | a3bc7e9 | 2016-01-27 16:54:45 +0000 | [diff] [blame] | 128 | p.family = afi2family (packet->afi); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 129 | psize = PSIZE (prefixlen); |
Donald Sharp | a3bc7e9 | 2016-01-27 16:54:45 +0000 | [diff] [blame] | 130 | |
| 131 | /* sanity check against packet data */ |
| 132 | if (prefixlen < VPN_PREFIXLEN_MIN_BYTES*8 || (pnt + psize) > lim) |
| 133 | { |
| 134 | zlog_err ("prefix length (%d) is less than 88" |
| 135 | " or larger than received (%u)", |
| 136 | prefixlen, (uint)(lim-pnt)); |
| 137 | return -1; |
| 138 | } |
| 139 | |
| 140 | /* sanity check against storage for the IP address portion */ |
| 141 | if ((psize - VPN_PREFIXLEN_MIN_BYTES) > (ssize_t) sizeof(p.u)) |
| 142 | { |
| 143 | zlog_err ("prefix length (%d) exceeds prefix storage (%zu)", |
| 144 | prefixlen - VPN_PREFIXLEN_MIN_BYTES*8, sizeof(p.u)); |
| 145 | return -1; |
| 146 | } |
| 147 | |
| 148 | /* Sanity check against max bitlen of the address family */ |
| 149 | if ((psize - VPN_PREFIXLEN_MIN_BYTES) > prefix_blen (&p)) |
| 150 | { |
| 151 | zlog_err ("prefix length (%d) exceeds family (%u) max byte length (%u)", |
| 152 | prefixlen - VPN_PREFIXLEN_MIN_BYTES*8, |
| 153 | p.family, prefix_blen (&p)); |
| 154 | return -1; |
| 155 | |
| 156 | } |
| 157 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 158 | /* Copyr label to prefix. */ |
Donald Sharp | a3bc7e9 | 2016-01-27 16:54:45 +0000 | [diff] [blame] | 159 | tagpnt = pnt; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 160 | |
| 161 | /* Copy routing distinguisher to rd. */ |
| 162 | memcpy (&prd.val, pnt + 3, 8); |
| 163 | |
| 164 | /* Decode RD type. */ |
| 165 | type = decode_rd_type (pnt + 3); |
| 166 | |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 167 | switch (type) |
| 168 | { |
| 169 | case RD_TYPE_AS: |
| 170 | decode_rd_as (pnt + 5, &rd_as); |
| 171 | break; |
| 172 | |
| 173 | case RD_TYPE_AS4: |
| 174 | decode_rd_as4 (pnt + 5, &rd_as); |
| 175 | break; |
| 176 | |
| 177 | case RD_TYPE_IP: |
| 178 | decode_rd_ip (pnt + 5, &rd_ip); |
| 179 | break; |
| 180 | |
Lou Berger | 050defe | 2016-01-12 13:41:59 -0500 | [diff] [blame] | 181 | default: |
| 182 | zlog_err ("Unknown RD type %d", type); |
| 183 | break; /* just report */ |
| 184 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 185 | |
Donald Sharp | a3bc7e9 | 2016-01-27 16:54:45 +0000 | [diff] [blame] | 186 | p.prefixlen = prefixlen - VPN_PREFIXLEN_MIN_BYTES*8; |
| 187 | memcpy (&p.u.prefix, pnt + VPN_PREFIXLEN_MIN_BYTES, |
| 188 | psize - VPN_PREFIXLEN_MIN_BYTES); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 189 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 190 | if (attr) |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 191 | bgp_update (peer, &p, attr, packet->afi, SAFI_MPLS_VPN, |
| 192 | ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL, &prd, tagpnt, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 193 | else |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 194 | bgp_withdraw (peer, &p, attr, packet->afi, SAFI_MPLS_VPN, |
| 195 | ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL, &prd, tagpnt); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 196 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 197 | /* Packet length consistency check. */ |
| 198 | if (pnt != lim) |
| 199 | return -1; |
Donald Sharp | a3bc7e9 | 2016-01-27 16:54:45 +0000 | [diff] [blame] | 200 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 201 | return 0; |
Donald Sharp | a3bc7e9 | 2016-01-27 16:54:45 +0000 | [diff] [blame] | 202 | #undef VPN_PREFIXLEN_MIN_BYTES |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | int |
paul | fd79ac9 | 2004-10-13 05:06:08 +0000 | [diff] [blame] | 206 | str2prefix_rd (const char *str, struct prefix_rd *prd) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 207 | { |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 208 | int ret; /* ret of called functions */ |
| 209 | int lret; /* local ret, of this func */ |
paul | 5228ad2 | 2004-06-04 17:58:18 +0000 | [diff] [blame] | 210 | char *p; |
| 211 | char *p2; |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 212 | struct stream *s = NULL; |
| 213 | char *half = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 214 | struct in_addr addr; |
| 215 | |
| 216 | s = stream_new (8); |
| 217 | |
| 218 | prd->family = AF_UNSPEC; |
| 219 | prd->prefixlen = 64; |
| 220 | |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 221 | lret = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 222 | p = strchr (str, ':'); |
| 223 | if (! p) |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 224 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 225 | |
| 226 | if (! all_digit (p + 1)) |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 227 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 228 | |
| 229 | half = XMALLOC (MTYPE_TMP, (p - str) + 1); |
| 230 | memcpy (half, str, (p - str)); |
| 231 | half[p - str] = '\0'; |
| 232 | |
| 233 | p2 = strchr (str, '.'); |
| 234 | |
| 235 | if (! p2) |
| 236 | { |
| 237 | if (! all_digit (half)) |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 238 | goto out; |
| 239 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 240 | stream_putw (s, RD_TYPE_AS); |
| 241 | stream_putw (s, atoi (half)); |
| 242 | stream_putl (s, atol (p + 1)); |
| 243 | } |
| 244 | else |
| 245 | { |
| 246 | ret = inet_aton (half, &addr); |
| 247 | if (! ret) |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 248 | goto out; |
| 249 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 250 | stream_putw (s, RD_TYPE_IP); |
| 251 | stream_put_in_addr (s, &addr); |
| 252 | stream_putw (s, atol (p + 1)); |
| 253 | } |
| 254 | memcpy (prd->val, s->data, 8); |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 255 | lret = 1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 256 | |
Lou Berger | 056f376 | 2013-04-10 12:30:04 -0700 | [diff] [blame] | 257 | out: |
| 258 | if (s) |
| 259 | stream_free (s); |
| 260 | if (half) |
| 261 | XFREE(MTYPE_TMP, half); |
| 262 | return lret; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | int |
paul | fd79ac9 | 2004-10-13 05:06:08 +0000 | [diff] [blame] | 266 | str2tag (const char *str, u_char *tag) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 267 | { |
paul | fd79ac9 | 2004-10-13 05:06:08 +0000 | [diff] [blame] | 268 | unsigned long l; |
| 269 | char *endptr; |
| 270 | u_int32_t t; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 271 | |
Ulrich Weber | 664711c | 2011-12-21 02:24:11 +0400 | [diff] [blame] | 272 | if (*str == '-') |
| 273 | return 0; |
paul | fd79ac9 | 2004-10-13 05:06:08 +0000 | [diff] [blame] | 274 | |
Ulrich Weber | 664711c | 2011-12-21 02:24:11 +0400 | [diff] [blame] | 275 | errno = 0; |
| 276 | l = strtoul (str, &endptr, 10); |
| 277 | |
| 278 | if (*endptr != '\0' || errno || l > UINT32_MAX) |
paul | fd79ac9 | 2004-10-13 05:06:08 +0000 | [diff] [blame] | 279 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 280 | |
paul | fd79ac9 | 2004-10-13 05:06:08 +0000 | [diff] [blame] | 281 | t = (u_int32_t) l; |
| 282 | |
| 283 | tag[0] = (u_char)(t >> 12); |
| 284 | tag[1] = (u_char)(t >> 4); |
| 285 | tag[2] = (u_char)(t << 4); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 286 | |
| 287 | return 1; |
| 288 | } |
| 289 | |
| 290 | char * |
| 291 | prefix_rd2str (struct prefix_rd *prd, char *buf, size_t size) |
| 292 | { |
| 293 | u_char *pnt; |
| 294 | u_int16_t type; |
| 295 | struct rd_as rd_as; |
| 296 | struct rd_ip rd_ip; |
| 297 | |
| 298 | if (size < RD_ADDRSTRLEN) |
| 299 | return NULL; |
| 300 | |
| 301 | pnt = prd->val; |
| 302 | |
| 303 | type = decode_rd_type (pnt); |
| 304 | |
| 305 | if (type == RD_TYPE_AS) |
| 306 | { |
| 307 | decode_rd_as (pnt + 2, &rd_as); |
Denis Ovsienko | aea339f | 2009-04-30 17:16:22 +0400 | [diff] [blame] | 308 | snprintf (buf, size, "%u:%d", rd_as.as, rd_as.val); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 309 | return buf; |
| 310 | } |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 311 | else if (type == RD_TYPE_AS4) |
| 312 | { |
| 313 | decode_rd_as4 (pnt + 2, &rd_as); |
| 314 | snprintf (buf, size, "%u:%d", rd_as.as, rd_as.val); |
| 315 | return buf; |
| 316 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 317 | else if (type == RD_TYPE_IP) |
| 318 | { |
| 319 | decode_rd_ip (pnt + 2, &rd_ip); |
| 320 | snprintf (buf, size, "%s:%d", inet_ntoa (rd_ip.ip), rd_ip.val); |
| 321 | return buf; |
| 322 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 323 | return NULL; |
| 324 | } |
| 325 | |
| 326 | /* For testing purpose, static route of MPLS-VPN. */ |
| 327 | DEFUN (vpnv4_network, |
| 328 | vpnv4_network_cmd, |
| 329 | "network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD", |
| 330 | "Specify a network to announce via BGP\n" |
| 331 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 332 | "Specify Route Distinguisher\n" |
| 333 | "VPN Route Distinguisher\n" |
| 334 | "BGP tag\n" |
| 335 | "tag value\n") |
| 336 | { |
Lou Berger | a76d9ca | 2016-01-12 13:41:53 -0500 | [diff] [blame] | 337 | return bgp_static_set_safi (SAFI_MPLS_VPN, vty, argv[0], argv[1], argv[2], NULL); |
| 338 | } |
| 339 | |
| 340 | DEFUN (vpnv4_network_route_map, |
| 341 | vpnv4_network_route_map_cmd, |
| 342 | "network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD route-map WORD", |
| 343 | "Specify a network to announce via BGP\n" |
| 344 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 345 | "Specify Route Distinguisher\n" |
| 346 | "VPN Route Distinguisher\n" |
| 347 | "BGP tag\n" |
| 348 | "tag value\n" |
| 349 | "route map\n" |
| 350 | "route map name\n") |
| 351 | { |
| 352 | return bgp_static_set_safi (SAFI_MPLS_VPN, vty, argv[0], argv[1], argv[2], argv[3]); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | /* For testing purpose, static route of MPLS-VPN. */ |
| 356 | DEFUN (no_vpnv4_network, |
| 357 | no_vpnv4_network_cmd, |
| 358 | "no network A.B.C.D/M rd ASN:nn_or_IP-address:nn tag WORD", |
| 359 | NO_STR |
| 360 | "Specify a network to announce via BGP\n" |
| 361 | "IP prefix <network>/<length>, e.g., 35.0.0.0/8\n" |
| 362 | "Specify Route Distinguisher\n" |
| 363 | "VPN Route Distinguisher\n" |
| 364 | "BGP tag\n" |
| 365 | "tag value\n") |
| 366 | { |
Lou Berger | a76d9ca | 2016-01-12 13:41:53 -0500 | [diff] [blame] | 367 | return bgp_static_unset_safi (SAFI_MPLS_VPN, vty, argv[0], argv[1], argv[2]); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 368 | } |
| 369 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 370 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 371 | show_adj_route_vpn (struct vty *vty, struct peer *peer, struct prefix_rd *prd) |
| 372 | { |
| 373 | struct bgp *bgp; |
| 374 | struct bgp_table *table; |
| 375 | struct bgp_node *rn; |
| 376 | struct bgp_node *rm; |
| 377 | struct attr *attr; |
| 378 | int rd_header; |
| 379 | int header = 1; |
| 380 | char v4_header[] = " Network Next Hop Metric LocPrf Weight Path%s"; |
| 381 | |
| 382 | bgp = bgp_get_default (); |
| 383 | if (bgp == NULL) |
| 384 | { |
| 385 | vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE); |
| 386 | return CMD_WARNING; |
| 387 | } |
| 388 | |
| 389 | for (rn = bgp_table_top (bgp->rib[AFI_IP][SAFI_MPLS_VPN]); rn; |
| 390 | rn = bgp_route_next (rn)) |
| 391 | { |
| 392 | if (prd && memcmp (rn->p.u.val, prd->val, 8) != 0) |
| 393 | continue; |
| 394 | |
| 395 | if ((table = rn->info) != NULL) |
| 396 | { |
| 397 | rd_header = 1; |
| 398 | |
| 399 | for (rm = bgp_table_top (table); rm; rm = bgp_route_next (rm)) |
| 400 | if ((attr = rm->info) != NULL) |
| 401 | { |
| 402 | if (header) |
| 403 | { |
| 404 | vty_out (vty, "BGP table version is 0, local router ID is %s%s", |
| 405 | inet_ntoa (bgp->router_id), VTY_NEWLINE); |
| 406 | vty_out (vty, "Status codes: s suppressed, d damped, h history, * valid, > best, i - internal%s", |
| 407 | VTY_NEWLINE); |
| 408 | vty_out (vty, "Origin codes: i - IGP, e - EGP, ? - incomplete%s%s", |
| 409 | VTY_NEWLINE, VTY_NEWLINE); |
| 410 | vty_out (vty, v4_header, VTY_NEWLINE); |
| 411 | header = 0; |
| 412 | } |
| 413 | |
| 414 | if (rd_header) |
| 415 | { |
| 416 | u_int16_t type; |
| 417 | struct rd_as rd_as; |
| 418 | struct rd_ip rd_ip; |
| 419 | u_char *pnt; |
| 420 | |
| 421 | pnt = rn->p.u.val; |
| 422 | |
| 423 | /* Decode RD type. */ |
| 424 | type = decode_rd_type (pnt); |
| 425 | /* Decode RD value. */ |
| 426 | if (type == RD_TYPE_AS) |
| 427 | decode_rd_as (pnt + 2, &rd_as); |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 428 | else if (type == RD_TYPE_AS4) |
| 429 | decode_rd_as4 (pnt + 2, &rd_as); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 430 | else if (type == RD_TYPE_IP) |
| 431 | decode_rd_ip (pnt + 2, &rd_ip); |
| 432 | |
| 433 | vty_out (vty, "Route Distinguisher: "); |
| 434 | |
| 435 | if (type == RD_TYPE_AS) |
Denis Ovsienko | aea339f | 2009-04-30 17:16:22 +0400 | [diff] [blame] | 436 | vty_out (vty, "%u:%d", rd_as.as, rd_as.val); |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 437 | else if (type == RD_TYPE_AS4) |
| 438 | vty_out (vty, "%u:%d", rd_as.as, rd_as.val); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 439 | else if (type == RD_TYPE_IP) |
| 440 | vty_out (vty, "%s:%d", inet_ntoa (rd_ip.ip), rd_ip.val); |
| 441 | |
| 442 | vty_out (vty, "%s", VTY_NEWLINE); |
| 443 | rd_header = 0; |
| 444 | } |
| 445 | route_vty_out_tmp (vty, &rm->p, attr, SAFI_MPLS_VPN); |
| 446 | } |
| 447 | } |
| 448 | } |
| 449 | return CMD_SUCCESS; |
| 450 | } |
| 451 | |
| 452 | enum bgp_show_type |
| 453 | { |
| 454 | bgp_show_type_normal, |
| 455 | bgp_show_type_regexp, |
| 456 | bgp_show_type_prefix_list, |
| 457 | bgp_show_type_filter_list, |
| 458 | bgp_show_type_neighbor, |
| 459 | bgp_show_type_cidr_only, |
| 460 | bgp_show_type_prefix_longer, |
| 461 | bgp_show_type_community_all, |
| 462 | bgp_show_type_community, |
| 463 | bgp_show_type_community_exact, |
| 464 | bgp_show_type_community_list, |
| 465 | bgp_show_type_community_list_exact |
| 466 | }; |
| 467 | |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 468 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 469 | bgp_show_mpls_vpn (struct vty *vty, struct prefix_rd *prd, enum bgp_show_type type, |
| 470 | void *output_arg, int tags) |
| 471 | { |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 472 | afi_t afi = AFI_IP; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 473 | struct bgp *bgp; |
| 474 | struct bgp_table *table; |
| 475 | struct bgp_node *rn; |
| 476 | struct bgp_node *rm; |
| 477 | struct bgp_info *ri; |
| 478 | int rd_header; |
| 479 | int header = 1; |
| 480 | char v4_header[] = " Network Next Hop Metric LocPrf Weight Path%s"; |
| 481 | char v4_header_tag[] = " Network Next Hop In tag/Out tag%s"; |
| 482 | |
| 483 | bgp = bgp_get_default (); |
| 484 | if (bgp == NULL) |
| 485 | { |
| 486 | vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE); |
| 487 | return CMD_WARNING; |
| 488 | } |
| 489 | |
Lou Berger | 9da04bc | 2016-01-12 13:41:55 -0500 | [diff] [blame] | 490 | if ((afi != AFI_IP) && (afi != AFI_IP6)) |
| 491 | { |
| 492 | vty_out (vty, "Afi %d not supported%s", afi, VTY_NEWLINE); |
| 493 | return CMD_WARNING; |
| 494 | } |
| 495 | |
| 496 | for (rn = bgp_table_top (bgp->rib[afi][SAFI_MPLS_VPN]); rn; rn = bgp_route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 497 | { |
| 498 | if (prd && memcmp (rn->p.u.val, prd->val, 8) != 0) |
| 499 | continue; |
| 500 | |
| 501 | if ((table = rn->info) != NULL) |
| 502 | { |
| 503 | rd_header = 1; |
| 504 | |
| 505 | for (rm = bgp_table_top (table); rm; rm = bgp_route_next (rm)) |
| 506 | for (ri = rm->info; ri; ri = ri->next) |
| 507 | { |
| 508 | if (type == bgp_show_type_neighbor) |
| 509 | { |
| 510 | union sockunion *su = output_arg; |
| 511 | |
| 512 | if (ri->peer->su_remote == NULL || ! sockunion_same(ri->peer->su_remote, su)) |
| 513 | continue; |
| 514 | } |
| 515 | if (header) |
| 516 | { |
| 517 | if (tags) |
| 518 | vty_out (vty, v4_header_tag, VTY_NEWLINE); |
| 519 | else |
| 520 | { |
| 521 | vty_out (vty, "BGP table version is 0, local router ID is %s%s", |
| 522 | inet_ntoa (bgp->router_id), VTY_NEWLINE); |
| 523 | vty_out (vty, "Status codes: s suppressed, d damped, h history, * valid, > best, i - internal%s", |
| 524 | VTY_NEWLINE); |
| 525 | vty_out (vty, "Origin codes: i - IGP, e - EGP, ? - incomplete%s%s", |
| 526 | VTY_NEWLINE, VTY_NEWLINE); |
| 527 | vty_out (vty, v4_header, VTY_NEWLINE); |
| 528 | } |
| 529 | header = 0; |
| 530 | } |
| 531 | |
| 532 | if (rd_header) |
| 533 | { |
| 534 | u_int16_t type; |
| 535 | struct rd_as rd_as; |
| 536 | struct rd_ip rd_ip; |
| 537 | u_char *pnt; |
| 538 | |
| 539 | pnt = rn->p.u.val; |
| 540 | |
| 541 | /* Decode RD type. */ |
| 542 | type = decode_rd_type (pnt); |
| 543 | /* Decode RD value. */ |
| 544 | if (type == RD_TYPE_AS) |
| 545 | decode_rd_as (pnt + 2, &rd_as); |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 546 | else if (type == RD_TYPE_AS4) |
| 547 | decode_rd_as4 (pnt + 2, &rd_as); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 548 | else if (type == RD_TYPE_IP) |
| 549 | decode_rd_ip (pnt + 2, &rd_ip); |
| 550 | |
| 551 | vty_out (vty, "Route Distinguisher: "); |
| 552 | |
| 553 | if (type == RD_TYPE_AS) |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 554 | vty_out (vty, "as2 %u:%d", rd_as.as, rd_as.val); |
| 555 | else if (type == RD_TYPE_AS4) |
| 556 | vty_out (vty, "as4 %u:%d", rd_as.as, rd_as.val); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 557 | else if (type == RD_TYPE_IP) |
Lou Berger | a03bd16 | 2016-01-12 13:41:54 -0500 | [diff] [blame] | 558 | vty_out (vty, "ip %s:%d", inet_ntoa (rd_ip.ip), rd_ip.val); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 559 | |
| 560 | vty_out (vty, "%s", VTY_NEWLINE); |
| 561 | rd_header = 0; |
| 562 | } |
| 563 | if (tags) |
| 564 | route_vty_out_tag (vty, &rm->p, ri, 0, SAFI_MPLS_VPN); |
| 565 | else |
| 566 | route_vty_out (vty, &rm->p, ri, 0, SAFI_MPLS_VPN); |
| 567 | } |
| 568 | } |
| 569 | } |
| 570 | return CMD_SUCCESS; |
| 571 | } |
| 572 | |
| 573 | DEFUN (show_ip_bgp_vpnv4_all, |
| 574 | show_ip_bgp_vpnv4_all_cmd, |
| 575 | "show ip bgp vpnv4 all", |
| 576 | SHOW_STR |
| 577 | IP_STR |
| 578 | BGP_STR |
| 579 | "Display VPNv4 NLRI specific information\n" |
| 580 | "Display information about all VPNv4 NLRIs\n") |
| 581 | { |
| 582 | return bgp_show_mpls_vpn (vty, NULL, bgp_show_type_normal, NULL, 0); |
| 583 | } |
| 584 | |
| 585 | DEFUN (show_ip_bgp_vpnv4_rd, |
| 586 | show_ip_bgp_vpnv4_rd_cmd, |
| 587 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn", |
| 588 | SHOW_STR |
| 589 | IP_STR |
| 590 | BGP_STR |
| 591 | "Display VPNv4 NLRI specific information\n" |
| 592 | "Display information for a route distinguisher\n" |
| 593 | "VPN Route Distinguisher\n") |
| 594 | { |
| 595 | int ret; |
| 596 | struct prefix_rd prd; |
| 597 | |
| 598 | ret = str2prefix_rd (argv[0], &prd); |
| 599 | if (! ret) |
| 600 | { |
| 601 | vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE); |
| 602 | return CMD_WARNING; |
| 603 | } |
| 604 | return bgp_show_mpls_vpn (vty, &prd, bgp_show_type_normal, NULL, 0); |
| 605 | } |
| 606 | |
| 607 | DEFUN (show_ip_bgp_vpnv4_all_tags, |
| 608 | show_ip_bgp_vpnv4_all_tags_cmd, |
| 609 | "show ip bgp vpnv4 all tags", |
| 610 | SHOW_STR |
| 611 | IP_STR |
| 612 | BGP_STR |
| 613 | "Display VPNv4 NLRI specific information\n" |
| 614 | "Display information about all VPNv4 NLRIs\n" |
| 615 | "Display BGP tags for prefixes\n") |
| 616 | { |
| 617 | return bgp_show_mpls_vpn (vty, NULL, bgp_show_type_normal, NULL, 1); |
| 618 | } |
| 619 | |
| 620 | DEFUN (show_ip_bgp_vpnv4_rd_tags, |
| 621 | show_ip_bgp_vpnv4_rd_tags_cmd, |
| 622 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn tags", |
| 623 | SHOW_STR |
| 624 | IP_STR |
| 625 | BGP_STR |
| 626 | "Display VPNv4 NLRI specific information\n" |
| 627 | "Display information for a route distinguisher\n" |
| 628 | "VPN Route Distinguisher\n" |
| 629 | "Display BGP tags for prefixes\n") |
| 630 | { |
| 631 | int ret; |
| 632 | struct prefix_rd prd; |
| 633 | |
| 634 | ret = str2prefix_rd (argv[0], &prd); |
| 635 | if (! ret) |
| 636 | { |
| 637 | vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE); |
| 638 | return CMD_WARNING; |
| 639 | } |
| 640 | return bgp_show_mpls_vpn (vty, &prd, bgp_show_type_normal, NULL, 1); |
| 641 | } |
| 642 | |
| 643 | DEFUN (show_ip_bgp_vpnv4_all_neighbor_routes, |
| 644 | show_ip_bgp_vpnv4_all_neighbor_routes_cmd, |
| 645 | "show ip bgp vpnv4 all neighbors A.B.C.D routes", |
| 646 | SHOW_STR |
| 647 | IP_STR |
| 648 | BGP_STR |
| 649 | "Display VPNv4 NLRI specific information\n" |
| 650 | "Display information about all VPNv4 NLRIs\n" |
| 651 | "Detailed information on TCP and BGP neighbor connections\n" |
| 652 | "Neighbor to display information about\n" |
| 653 | "Display routes learned from neighbor\n") |
| 654 | { |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 655 | union sockunion su; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 656 | struct peer *peer; |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 657 | int ret; |
| 658 | |
| 659 | ret = str2sockunion (argv[0], &su); |
| 660 | if (ret < 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 661 | { |
| 662 | vty_out (vty, "Malformed address: %s%s", argv[0], VTY_NEWLINE); |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 663 | return CMD_WARNING; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 664 | } |
| 665 | |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 666 | peer = peer_lookup (NULL, &su); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 667 | if (! peer || ! peer->afc[AFI_IP][SAFI_MPLS_VPN]) |
| 668 | { |
| 669 | vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE); |
| 670 | return CMD_WARNING; |
| 671 | } |
| 672 | |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 673 | return bgp_show_mpls_vpn (vty, NULL, bgp_show_type_neighbor, &su, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | DEFUN (show_ip_bgp_vpnv4_rd_neighbor_routes, |
| 677 | show_ip_bgp_vpnv4_rd_neighbor_routes_cmd, |
| 678 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D routes", |
| 679 | SHOW_STR |
| 680 | IP_STR |
| 681 | BGP_STR |
| 682 | "Display VPNv4 NLRI specific information\n" |
| 683 | "Display information for a route distinguisher\n" |
| 684 | "VPN Route Distinguisher\n" |
| 685 | "Detailed information on TCP and BGP neighbor connections\n" |
| 686 | "Neighbor to display information about\n" |
| 687 | "Display routes learned from neighbor\n") |
| 688 | { |
| 689 | int ret; |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 690 | union sockunion su; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 691 | struct peer *peer; |
| 692 | struct prefix_rd prd; |
| 693 | |
| 694 | ret = str2prefix_rd (argv[0], &prd); |
| 695 | if (! ret) |
| 696 | { |
| 697 | vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE); |
| 698 | return CMD_WARNING; |
| 699 | } |
| 700 | |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 701 | ret = str2sockunion (argv[1], &su); |
| 702 | if (ret < 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 703 | { |
| 704 | vty_out (vty, "Malformed address: %s%s", argv[0], VTY_NEWLINE); |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 705 | return CMD_WARNING; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 706 | } |
| 707 | |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 708 | peer = peer_lookup (NULL, &su); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 709 | if (! peer || ! peer->afc[AFI_IP][SAFI_MPLS_VPN]) |
| 710 | { |
| 711 | vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE); |
| 712 | return CMD_WARNING; |
| 713 | } |
| 714 | |
Jorge Boncompte [DTI2] | c63b83f | 2012-04-10 16:57:24 +0200 | [diff] [blame] | 715 | return bgp_show_mpls_vpn (vty, &prd, bgp_show_type_neighbor, &su, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | DEFUN (show_ip_bgp_vpnv4_all_neighbor_advertised_routes, |
| 719 | show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd, |
| 720 | "show ip bgp vpnv4 all neighbors A.B.C.D advertised-routes", |
| 721 | SHOW_STR |
| 722 | IP_STR |
| 723 | BGP_STR |
| 724 | "Display VPNv4 NLRI specific information\n" |
| 725 | "Display information about all VPNv4 NLRIs\n" |
| 726 | "Detailed information on TCP and BGP neighbor connections\n" |
| 727 | "Neighbor to display information about\n" |
| 728 | "Display the routes advertised to a BGP neighbor\n") |
| 729 | { |
| 730 | int ret; |
| 731 | struct peer *peer; |
| 732 | union sockunion su; |
| 733 | |
| 734 | ret = str2sockunion (argv[0], &su); |
| 735 | if (ret < 0) |
| 736 | { |
| 737 | vty_out (vty, "%% Malformed address: %s%s", argv[0], VTY_NEWLINE); |
| 738 | return CMD_WARNING; |
| 739 | } |
| 740 | peer = peer_lookup (NULL, &su); |
| 741 | if (! peer || ! peer->afc[AFI_IP][SAFI_MPLS_VPN]) |
| 742 | { |
| 743 | vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE); |
| 744 | return CMD_WARNING; |
| 745 | } |
| 746 | |
| 747 | return show_adj_route_vpn (vty, peer, NULL); |
| 748 | } |
| 749 | |
| 750 | DEFUN (show_ip_bgp_vpnv4_rd_neighbor_advertised_routes, |
| 751 | show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd, |
| 752 | "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D advertised-routes", |
| 753 | SHOW_STR |
| 754 | IP_STR |
| 755 | BGP_STR |
| 756 | "Display VPNv4 NLRI specific information\n" |
| 757 | "Display information for a route distinguisher\n" |
| 758 | "VPN Route Distinguisher\n" |
| 759 | "Detailed information on TCP and BGP neighbor connections\n" |
| 760 | "Neighbor to display information about\n" |
| 761 | "Display the routes advertised to a BGP neighbor\n") |
| 762 | { |
| 763 | int ret; |
| 764 | struct peer *peer; |
| 765 | struct prefix_rd prd; |
| 766 | union sockunion su; |
| 767 | |
| 768 | ret = str2sockunion (argv[1], &su); |
| 769 | if (ret < 0) |
| 770 | { |
| 771 | vty_out (vty, "%% Malformed address: %s%s", argv[0], VTY_NEWLINE); |
| 772 | return CMD_WARNING; |
| 773 | } |
| 774 | peer = peer_lookup (NULL, &su); |
| 775 | if (! peer || ! peer->afc[AFI_IP][SAFI_MPLS_VPN]) |
| 776 | { |
| 777 | vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE); |
| 778 | return CMD_WARNING; |
| 779 | } |
| 780 | |
| 781 | ret = str2prefix_rd (argv[0], &prd); |
| 782 | if (! ret) |
| 783 | { |
| 784 | vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE); |
| 785 | return CMD_WARNING; |
| 786 | } |
| 787 | |
| 788 | return show_adj_route_vpn (vty, peer, &prd); |
| 789 | } |
| 790 | |
| 791 | void |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 792 | bgp_mplsvpn_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 793 | { |
| 794 | install_element (BGP_VPNV4_NODE, &vpnv4_network_cmd); |
Lou Berger | a76d9ca | 2016-01-12 13:41:53 -0500 | [diff] [blame] | 795 | install_element (BGP_VPNV4_NODE, &vpnv4_network_route_map_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 796 | install_element (BGP_VPNV4_NODE, &no_vpnv4_network_cmd); |
| 797 | |
| 798 | |
| 799 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_cmd); |
| 800 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_cmd); |
| 801 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_tags_cmd); |
| 802 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd); |
| 803 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd); |
| 804 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd); |
| 805 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd); |
| 806 | install_element (VIEW_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd); |
| 807 | |
| 808 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_cmd); |
| 809 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_cmd); |
| 810 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_tags_cmd); |
| 811 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_tags_cmd); |
| 812 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_routes_cmd); |
| 813 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_routes_cmd); |
| 814 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_all_neighbor_advertised_routes_cmd); |
| 815 | install_element (ENABLE_NODE, &show_ip_bgp_vpnv4_rd_neighbor_advertised_routes_cmd); |
| 816 | } |