mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 18:01:54 +00:00
Merge pull request #4425 from ton31337/feature/show_fqdn_in_show_ip_bgp_7.1
bgpd: [7.1] Show FQDN in `show [ip] bgp` output
This commit is contained in:
commit
0643ec535f
175
bgpd/bgp_route.c
175
bgpd/bgp_route.c
@ -6863,6 +6863,13 @@ static void route_vty_short_status_out(struct vty *vty,
|
|||||||
vty_out(vty, " ");
|
vty_out(vty, " ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char *bgp_nexthop_fqdn(struct peer *peer)
|
||||||
|
{
|
||||||
|
if (peer->hostname && bgp_flag_check(peer->bgp, BGP_FLAG_SHOW_HOSTNAME))
|
||||||
|
return peer->hostname;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* called from terminal list command */
|
/* called from terminal list command */
|
||||||
void route_vty_out(struct vty *vty, struct prefix *p,
|
void route_vty_out(struct vty *vty, struct prefix *p,
|
||||||
struct bgp_path_info *path, int display, safi_t safi,
|
struct bgp_path_info *path, int display, safi_t safi,
|
||||||
@ -6879,6 +6886,7 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
bool nexthop_othervrf = false;
|
bool nexthop_othervrf = false;
|
||||||
vrf_id_t nexthop_vrfid = VRF_DEFAULT;
|
vrf_id_t nexthop_vrfid = VRF_DEFAULT;
|
||||||
const char *nexthop_vrfname = VRF_DEFAULT_NAME;
|
const char *nexthop_vrfname = VRF_DEFAULT_NAME;
|
||||||
|
char *nexthop_fqdn = bgp_nexthop_fqdn(path->peer);
|
||||||
|
|
||||||
if (json_paths)
|
if (json_paths)
|
||||||
json_path = json_object_new_object();
|
json_path = json_object_new_object();
|
||||||
@ -6974,42 +6982,58 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
if (json_paths) {
|
if (json_paths) {
|
||||||
json_nexthop_global = json_object_new_object();
|
json_nexthop_global = json_object_new_object();
|
||||||
|
|
||||||
json_object_string_add(json_nexthop_global, "afi",
|
json_object_string_add(
|
||||||
(af == AF_INET) ? "ip" : "ipv6");
|
json_nexthop_global, "afi",
|
||||||
json_object_string_add(json_nexthop_global,
|
nexthop_fqdn ? "fqdn"
|
||||||
(af == AF_INET) ? "ip" : "ipv6",
|
: (af == AF_INET) ? "ip" : "ipv6");
|
||||||
nexthop);
|
json_object_string_add(
|
||||||
|
json_nexthop_global,
|
||||||
|
nexthop_fqdn ? "fqdn"
|
||||||
|
: (af == AF_INET) ? "ip" : "ipv6",
|
||||||
|
nexthop_fqdn ? nexthop_fqdn : nexthop);
|
||||||
json_object_boolean_true_add(json_nexthop_global,
|
json_object_boolean_true_add(json_nexthop_global,
|
||||||
"used");
|
"used");
|
||||||
} else
|
} else
|
||||||
vty_out(vty, "%s%s", nexthop, vrf_id_str);
|
vty_out(vty, "%s%s",
|
||||||
|
nexthop_fqdn ? nexthop_fqdn : nexthop,
|
||||||
|
vrf_id_str);
|
||||||
} else if (safi == SAFI_EVPN) {
|
} else if (safi == SAFI_EVPN) {
|
||||||
if (json_paths) {
|
if (json_paths) {
|
||||||
json_nexthop_global = json_object_new_object();
|
json_nexthop_global = json_object_new_object();
|
||||||
|
|
||||||
json_object_string_add(json_nexthop_global, "ip",
|
json_object_string_add(
|
||||||
inet_ntoa(attr->nexthop));
|
json_nexthop_global,
|
||||||
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
|
nexthop_fqdn ? nexthop_fqdn
|
||||||
|
: inet_ntoa(attr->nexthop));
|
||||||
json_object_string_add(json_nexthop_global, "afi",
|
json_object_string_add(json_nexthop_global, "afi",
|
||||||
"ipv4");
|
"ipv4");
|
||||||
json_object_boolean_true_add(json_nexthop_global,
|
json_object_boolean_true_add(json_nexthop_global,
|
||||||
"used");
|
"used");
|
||||||
} else
|
} else
|
||||||
vty_out(vty, "%-16s%s", inet_ntoa(attr->nexthop),
|
vty_out(vty, "%-16s%s",
|
||||||
|
nexthop_fqdn ?: inet_ntoa(attr->nexthop),
|
||||||
vrf_id_str);
|
vrf_id_str);
|
||||||
} else if (safi == SAFI_FLOWSPEC) {
|
} else if (safi == SAFI_FLOWSPEC) {
|
||||||
if (attr->nexthop.s_addr != 0) {
|
if (attr->nexthop.s_addr != 0) {
|
||||||
if (json_paths) {
|
if (json_paths) {
|
||||||
json_nexthop_global = json_object_new_object();
|
json_nexthop_global = json_object_new_object();
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_global, "ip",
|
json_nexthop_global,
|
||||||
inet_ntoa(attr->nexthop));
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(attr->nexthop));
|
||||||
json_object_string_add(json_nexthop_global,
|
json_object_string_add(json_nexthop_global,
|
||||||
"afi", "ipv4");
|
"afi", "ipv4");
|
||||||
json_object_boolean_true_add(
|
json_object_boolean_true_add(
|
||||||
json_nexthop_global,
|
json_nexthop_global,
|
||||||
"used");
|
"used");
|
||||||
} else {
|
} else {
|
||||||
vty_out(vty, "%-16s", inet_ntoa(attr->nexthop));
|
vty_out(vty, "%-16s",
|
||||||
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(attr->nexthop));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (p->family == AF_INET && !BGP_ATTR_NEXTHOP_AFI_IP6(attr)) {
|
} else if (p->family == AF_INET && !BGP_ATTR_NEXTHOP_AFI_IP6(attr)) {
|
||||||
@ -7018,12 +7042,19 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
|
|
||||||
if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_EVPN))
|
if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_EVPN))
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_global, "ip",
|
json_nexthop_global,
|
||||||
inet_ntoa(attr->mp_nexthop_global_in));
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(
|
||||||
|
attr->mp_nexthop_global_in));
|
||||||
else
|
else
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_global, "ip",
|
json_nexthop_global,
|
||||||
inet_ntoa(attr->nexthop));
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(attr->nexthop));
|
||||||
|
|
||||||
json_object_string_add(json_nexthop_global, "afi",
|
json_object_string_add(json_nexthop_global, "afi",
|
||||||
"ipv4");
|
"ipv4");
|
||||||
@ -7033,7 +7064,9 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
char buf[BUFSIZ];
|
char buf[BUFSIZ];
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "%s%s",
|
snprintf(buf, sizeof(buf), "%s%s",
|
||||||
inet_ntoa(attr->nexthop), vrf_id_str);
|
nexthop_fqdn ? nexthop_fqdn
|
||||||
|
: inet_ntoa(attr->nexthop),
|
||||||
|
vrf_id_str);
|
||||||
vty_out(vty, "%-16s", buf);
|
vty_out(vty, "%-16s", buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -7046,9 +7079,13 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
if (json_paths) {
|
if (json_paths) {
|
||||||
json_nexthop_global = json_object_new_object();
|
json_nexthop_global = json_object_new_object();
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_global, "ip",
|
json_nexthop_global,
|
||||||
inet_ntop(AF_INET6, &attr->mp_nexthop_global,
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
buf, BUFSIZ));
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntop(AF_INET6,
|
||||||
|
&attr->mp_nexthop_global,
|
||||||
|
buf, BUFSIZ));
|
||||||
json_object_string_add(json_nexthop_global, "afi",
|
json_object_string_add(json_nexthop_global, "afi",
|
||||||
"ipv6");
|
"ipv6");
|
||||||
json_object_string_add(json_nexthop_global, "scope",
|
json_object_string_add(json_nexthop_global, "scope",
|
||||||
@ -7060,10 +7097,14 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
|| (path->peer->conf_if)) {
|
|| (path->peer->conf_if)) {
|
||||||
json_nexthop_ll = json_object_new_object();
|
json_nexthop_ll = json_object_new_object();
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_ll, "ip",
|
json_nexthop_ll,
|
||||||
inet_ntop(AF_INET6,
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
&attr->mp_nexthop_local, buf,
|
nexthop_fqdn
|
||||||
BUFSIZ));
|
? nexthop_fqdn
|
||||||
|
: inet_ntop(
|
||||||
|
AF_INET6,
|
||||||
|
&attr->mp_nexthop_local,
|
||||||
|
buf, BUFSIZ));
|
||||||
json_object_string_add(json_nexthop_ll, "afi",
|
json_object_string_add(json_nexthop_ll, "afi",
|
||||||
"ipv6");
|
"ipv6");
|
||||||
json_object_string_add(json_nexthop_ll, "scope",
|
json_object_string_add(json_nexthop_ll, "scope",
|
||||||
@ -7102,10 +7143,12 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
} else {
|
} else {
|
||||||
len = vty_out(
|
len = vty_out(
|
||||||
vty, "%s%s",
|
vty, "%s%s",
|
||||||
inet_ntop(
|
nexthop_fqdn
|
||||||
AF_INET6,
|
? nexthop_fqdn
|
||||||
&attr->mp_nexthop_local,
|
: inet_ntop(
|
||||||
buf, BUFSIZ),
|
AF_INET6,
|
||||||
|
&attr->mp_nexthop_local,
|
||||||
|
buf, BUFSIZ),
|
||||||
vrf_id_str);
|
vrf_id_str);
|
||||||
len = 16 - len;
|
len = 16 - len;
|
||||||
|
|
||||||
@ -7117,10 +7160,13 @@ void route_vty_out(struct vty *vty, struct prefix *p,
|
|||||||
} else {
|
} else {
|
||||||
len = vty_out(
|
len = vty_out(
|
||||||
vty, "%s%s",
|
vty, "%s%s",
|
||||||
inet_ntop(AF_INET6,
|
nexthop_fqdn
|
||||||
&attr->mp_nexthop_global, buf,
|
? nexthop_fqdn
|
||||||
BUFSIZ),
|
: inet_ntop(
|
||||||
vrf_id_str);
|
AF_INET6,
|
||||||
|
&attr->mp_nexthop_global,
|
||||||
|
buf, BUFSIZ),
|
||||||
|
vrf_id_str);
|
||||||
len = 16 - len;
|
len = 16 - len;
|
||||||
|
|
||||||
if (len < 1)
|
if (len < 1)
|
||||||
@ -7848,6 +7894,7 @@ void route_vty_out_detail(struct vty *vty, struct bgp *bgp, struct prefix *p,
|
|||||||
bool nexthop_self =
|
bool nexthop_self =
|
||||||
CHECK_FLAG(path->flags, BGP_PATH_ANNC_NH_SELF) ? true : false;
|
CHECK_FLAG(path->flags, BGP_PATH_ANNC_NH_SELF) ? true : false;
|
||||||
int i;
|
int i;
|
||||||
|
char *nexthop_fqdn = bgp_nexthop_fqdn(path->peer);
|
||||||
|
|
||||||
if (json_paths) {
|
if (json_paths) {
|
||||||
json_path = json_object_new_object();
|
json_path = json_object_new_object();
|
||||||
@ -7982,21 +8029,33 @@ void route_vty_out_detail(struct vty *vty, struct bgp *bgp, struct prefix *p,
|
|||||||
|| safi == SAFI_EVPN) {
|
|| safi == SAFI_EVPN) {
|
||||||
if (json_paths)
|
if (json_paths)
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_global, "ip",
|
json_nexthop_global,
|
||||||
inet_ntoa(
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
attr->mp_nexthop_global_in));
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(
|
||||||
|
attr->mp_nexthop_global_in));
|
||||||
else
|
else
|
||||||
vty_out(vty, " %s",
|
vty_out(vty, " %s",
|
||||||
inet_ntoa(
|
nexthop_fqdn
|
||||||
attr->mp_nexthop_global_in));
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(
|
||||||
|
attr->mp_nexthop_global_in));
|
||||||
} else {
|
} else {
|
||||||
if (json_paths)
|
if (json_paths)
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_global, "ip",
|
json_nexthop_global,
|
||||||
inet_ntoa(attr->nexthop));
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(
|
||||||
|
attr->nexthop));
|
||||||
else
|
else
|
||||||
vty_out(vty, " %s",
|
vty_out(vty, " %s",
|
||||||
inet_ntoa(attr->nexthop));
|
nexthop_fqdn
|
||||||
|
? nexthop_fqdn
|
||||||
|
: inet_ntoa(
|
||||||
|
attr->nexthop));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (json_paths)
|
if (json_paths)
|
||||||
@ -8005,19 +8064,28 @@ void route_vty_out_detail(struct vty *vty, struct bgp *bgp, struct prefix *p,
|
|||||||
} else {
|
} else {
|
||||||
if (json_paths) {
|
if (json_paths) {
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_global, "ip",
|
json_nexthop_global,
|
||||||
inet_ntop(AF_INET6,
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
&attr->mp_nexthop_global, buf,
|
nexthop_fqdn
|
||||||
INET6_ADDRSTRLEN));
|
? nexthop_fqdn
|
||||||
|
: inet_ntop(
|
||||||
|
AF_INET6,
|
||||||
|
&attr->mp_nexthop_global,
|
||||||
|
buf,
|
||||||
|
INET6_ADDRSTRLEN));
|
||||||
json_object_string_add(json_nexthop_global,
|
json_object_string_add(json_nexthop_global,
|
||||||
"afi", "ipv6");
|
"afi", "ipv6");
|
||||||
json_object_string_add(json_nexthop_global,
|
json_object_string_add(json_nexthop_global,
|
||||||
"scope", "global");
|
"scope", "global");
|
||||||
} else {
|
} else {
|
||||||
vty_out(vty, " %s",
|
vty_out(vty, " %s",
|
||||||
inet_ntop(AF_INET6,
|
nexthop_fqdn
|
||||||
&attr->mp_nexthop_global, buf,
|
? nexthop_fqdn
|
||||||
INET6_ADDRSTRLEN));
|
: inet_ntop(
|
||||||
|
AF_INET6,
|
||||||
|
&attr->mp_nexthop_global,
|
||||||
|
buf,
|
||||||
|
INET6_ADDRSTRLEN));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8199,10 +8267,15 @@ void route_vty_out_detail(struct vty *vty, struct bgp *bgp, struct prefix *p,
|
|||||||
if (json_paths) {
|
if (json_paths) {
|
||||||
json_nexthop_ll = json_object_new_object();
|
json_nexthop_ll = json_object_new_object();
|
||||||
json_object_string_add(
|
json_object_string_add(
|
||||||
json_nexthop_ll, "ip",
|
json_nexthop_ll,
|
||||||
inet_ntop(AF_INET6,
|
nexthop_fqdn ? "fqdn" : "ip",
|
||||||
&attr->mp_nexthop_local, buf,
|
nexthop_fqdn
|
||||||
INET6_ADDRSTRLEN));
|
? nexthop_fqdn
|
||||||
|
: inet_ntop(
|
||||||
|
AF_INET6,
|
||||||
|
&attr->mp_nexthop_local,
|
||||||
|
buf,
|
||||||
|
INET6_ADDRSTRLEN));
|
||||||
json_object_string_add(json_nexthop_ll, "afi",
|
json_object_string_add(json_nexthop_ll, "afi",
|
||||||
"ipv6");
|
"ipv6");
|
||||||
json_object_string_add(json_nexthop_ll, "scope",
|
json_object_string_add(json_nexthop_ll, "scope",
|
||||||
|
0
tests/topotests/bgp_show_ip_bgp_fqdn/__init__.py
Normal file
0
tests/topotests/bgp_show_ip_bgp_fqdn/__init__.py
Normal file
4
tests/topotests/bgp_show_ip_bgp_fqdn/r1/bgpd.conf
Normal file
4
tests/topotests/bgp_show_ip_bgp_fqdn/r1/bgpd.conf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
router bgp 65000
|
||||||
|
neighbor 192.168.255.2 remote-as 65001
|
||||||
|
address-family ipv4 unicast
|
||||||
|
redistribute connected
|
9
tests/topotests/bgp_show_ip_bgp_fqdn/r1/zebra.conf
Normal file
9
tests/topotests/bgp_show_ip_bgp_fqdn/r1/zebra.conf
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
!
|
||||||
|
interface lo
|
||||||
|
ip address 172.16.255.254/32
|
||||||
|
!
|
||||||
|
interface r1-eth0
|
||||||
|
ip address 192.168.255.1/24
|
||||||
|
!
|
||||||
|
ip forwarding
|
||||||
|
!
|
5
tests/topotests/bgp_show_ip_bgp_fqdn/r2/bgpd.conf
Normal file
5
tests/topotests/bgp_show_ip_bgp_fqdn/r2/bgpd.conf
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
router bgp 65001
|
||||||
|
bgp default show-hostname
|
||||||
|
neighbor 192.168.255.1 remote-as 65000
|
||||||
|
address-family ipv4 unicast
|
||||||
|
redistribute connected
|
9
tests/topotests/bgp_show_ip_bgp_fqdn/r2/zebra.conf
Normal file
9
tests/topotests/bgp_show_ip_bgp_fqdn/r2/zebra.conf
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
!
|
||||||
|
interface lo
|
||||||
|
ip address 172.16.255.253/32
|
||||||
|
!
|
||||||
|
interface r2-eth0
|
||||||
|
ip address 192.168.255.2/24
|
||||||
|
!
|
||||||
|
ip forwarding
|
||||||
|
!
|
@ -0,0 +1,109 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
#
|
||||||
|
# test_bgp_show_ip_bgp_fqdn.py
|
||||||
|
# Part of NetDEF Topology Tests
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 by
|
||||||
|
# Network Device Education Foundation, Inc. ("NetDEF")
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and/or distribute this software
|
||||||
|
# for any purpose with or without fee is hereby granted, provided
|
||||||
|
# that the above copyright notice and this permission notice appear
|
||||||
|
# in all copies.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS" AND NETDEF DISCLAIMS ALL WARRANTIES
|
||||||
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NETDEF BE LIABLE FOR
|
||||||
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
|
||||||
|
# DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
|
# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
||||||
|
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
|
# OF THIS SOFTWARE.
|
||||||
|
#
|
||||||
|
|
||||||
|
"""
|
||||||
|
test_bgp_show_ip_bgp_fqdn.py:
|
||||||
|
Test if FQND is visible in `show [ip] bgp` output if
|
||||||
|
`bgp default show-hostname` is toggled.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import json
|
||||||
|
import time
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
CWD = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
sys.path.append(os.path.join(CWD, '../'))
|
||||||
|
|
||||||
|
# pylint: disable=C0413
|
||||||
|
from lib import topotest
|
||||||
|
from lib.topogen import Topogen, TopoRouter, get_topogen
|
||||||
|
from lib.topolog import logger
|
||||||
|
from mininet.topo import Topo
|
||||||
|
|
||||||
|
class TemplateTopo(Topo):
|
||||||
|
def build(self, *_args, **_opts):
|
||||||
|
tgen = get_topogen(self)
|
||||||
|
|
||||||
|
for routern in range(1, 3):
|
||||||
|
tgen.add_router('r{}'.format(routern))
|
||||||
|
|
||||||
|
switch = tgen.add_switch('s1')
|
||||||
|
switch.add_link(tgen.gears['r1'])
|
||||||
|
switch.add_link(tgen.gears['r2'])
|
||||||
|
|
||||||
|
def setup_module(mod):
|
||||||
|
tgen = Topogen(TemplateTopo, mod.__name__)
|
||||||
|
tgen.start_topology()
|
||||||
|
|
||||||
|
router_list = tgen.routers()
|
||||||
|
|
||||||
|
for i, (rname, router) in enumerate(router_list.iteritems(), 1):
|
||||||
|
router.load_config(
|
||||||
|
TopoRouter.RD_ZEBRA,
|
||||||
|
os.path.join(CWD, '{}/zebra.conf'.format(rname))
|
||||||
|
)
|
||||||
|
router.load_config(
|
||||||
|
TopoRouter.RD_BGP,
|
||||||
|
os.path.join(CWD, '{}/bgpd.conf'.format(rname))
|
||||||
|
)
|
||||||
|
|
||||||
|
tgen.start_router()
|
||||||
|
|
||||||
|
def teardown_module(mod):
|
||||||
|
tgen = get_topogen()
|
||||||
|
tgen.stop_topology()
|
||||||
|
|
||||||
|
def test_bgp_maximum_prefix_invalid():
|
||||||
|
tgen = get_topogen()
|
||||||
|
|
||||||
|
if tgen.routers_have_failure():
|
||||||
|
pytest.skip(tgen.errors)
|
||||||
|
|
||||||
|
def _bgp_converge(router, neighbor):
|
||||||
|
cmd = "show ip bgp neighbor {0} json".format(neighbor)
|
||||||
|
while True:
|
||||||
|
output = json.loads(tgen.gears[router].vtysh_cmd(cmd))
|
||||||
|
if output[neighbor]['bgpState'] == 'Established':
|
||||||
|
time.sleep(3)
|
||||||
|
return True
|
||||||
|
|
||||||
|
def _bgp_show_nexthop(router, prefix):
|
||||||
|
cmd = "show ip bgp json"
|
||||||
|
output = json.loads(tgen.gears[router].vtysh_cmd(cmd))
|
||||||
|
for nh in output['routes'][prefix][0]['nexthops']:
|
||||||
|
if 'fqdn' in nh:
|
||||||
|
return 'fqdn'
|
||||||
|
return 'ip'
|
||||||
|
|
||||||
|
if _bgp_converge('r2', '192.168.255.1'):
|
||||||
|
assert _bgp_show_nexthop('r2', '172.16.255.254/32') == 'fqdn'
|
||||||
|
|
||||||
|
if _bgp_converge('r1', '192.168.255.2'):
|
||||||
|
assert _bgp_show_nexthop('r1', '172.16.255.253/32') == 'ip'
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
args = ["-s"] + sys.argv[1:]
|
||||||
|
sys.exit(pytest.main(args))
|
Loading…
Reference in New Issue
Block a user