mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 09:00:55 +00:00
topotests: test bgp ipv6 vrf lite unnumbered with ipv6 rt advertisements
bgp ipv6 implies that routing advertisements be available for all vrf. in the case of the vrf backend is network namespace, this should be tested too. in addition to configure addresses per interface on a separate vrf, the test also checks for BGP connectivity. Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
This commit is contained in:
parent
689bb56613
commit
37ce18dcfc
0
tests/topotests/bgp_vrf_lite_ipv6_rtadv/__init__.py
Normal file
0
tests/topotests/bgp_vrf_lite_ipv6_rtadv/__init__.py
Normal file
13
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/bgpd.conf
Normal file
13
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/bgpd.conf
Normal file
@ -0,0 +1,13 @@
|
||||
router bgp 101 vrf r1-cust1
|
||||
bgp router-id 10.254.254.1
|
||||
neighbor r2g peer-group
|
||||
neighbor r2g remote-as external
|
||||
neighbor r2g bfd
|
||||
neighbor r1-eth0 interface peer-group r2g
|
||||
address-family ipv4 unicast
|
||||
redistribute connected
|
||||
exit-address-family
|
||||
address-family ipv6 unicast
|
||||
neighbor r2g activate
|
||||
exit-address-family
|
||||
!
|
50
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/ipv4_routes.json
Normal file
50
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/ipv4_routes.json
Normal file
@ -0,0 +1,50 @@
|
||||
{
|
||||
"10.254.254.2/32": [
|
||||
{
|
||||
"prefix": "10.254.254.2/32",
|
||||
"protocol": "bgp",
|
||||
"vrfId":3,
|
||||
"selected": true,
|
||||
"destSelected": true,
|
||||
"distance": 20,
|
||||
"metric": 0,
|
||||
"installed": true,
|
||||
"internalStatus": 34,
|
||||
"internalFlags": 8,
|
||||
"nexthops": [
|
||||
{
|
||||
"flags": 3,
|
||||
"fib": true,
|
||||
"afi": "ipv6",
|
||||
"interfaceIndex": 2,
|
||||
"interfaceName": "r1-eth0",
|
||||
"active": true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"10.254.254.1/32": [
|
||||
{
|
||||
"prefix": "10.254.254.1/32",
|
||||
"protocol": "connected",
|
||||
"vrfId":3,
|
||||
"selected": true,
|
||||
"destSelected": true,
|
||||
"distance": 0,
|
||||
"metric": 0,
|
||||
"installed": true,
|
||||
"internalStatus": 32,
|
||||
"internalFlags": 8,
|
||||
"nexthops": [
|
||||
{
|
||||
"flags": 3,
|
||||
"fib": true,
|
||||
"directlyConnected": true,
|
||||
"interfaceIndex": 4,
|
||||
"interfaceName": "loop1",
|
||||
"active": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
44
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/ipv6_routes.json
Normal file
44
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/ipv6_routes.json
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
"2001:db8:1::/64": [
|
||||
{
|
||||
"prefix": "2001:db8:1::/64",
|
||||
"protocol": "bgp",
|
||||
"vrfId":3,
|
||||
"distance": 20,
|
||||
"metric": 0,
|
||||
"internalStatus": 2,
|
||||
"internalFlags": 0,
|
||||
"nexthops": [
|
||||
{
|
||||
"flags": 1,
|
||||
"afi": "ipv6",
|
||||
"interfaceIndex": 2,
|
||||
"interfaceName": "r1-eth0",
|
||||
"active": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"prefix": "2001:db8:1::/64",
|
||||
"protocol": "connected",
|
||||
"vrfId":3,
|
||||
"selected": true,
|
||||
"destSelected": true,
|
||||
"distance": 0,
|
||||
"metric": 0,
|
||||
"installed": true,
|
||||
"internalStatus": 32,
|
||||
"internalFlags": 8,
|
||||
"nexthops": [
|
||||
{
|
||||
"flags": 3,
|
||||
"fib": true,
|
||||
"directlyConnected": true,
|
||||
"interfaceIndex": 2,
|
||||
"interfaceName": "r1-eth0",
|
||||
"active": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
9
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/zebra.conf
Normal file
9
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r1/zebra.conf
Normal file
@ -0,0 +1,9 @@
|
||||
debug zebra packet recv
|
||||
debug zebra packet send
|
||||
log stdout
|
||||
interface loop1 vrf r1-cust1
|
||||
ip address 10.254.254.1/32
|
||||
!
|
||||
interface r1-eth0 vrf r1-cust1
|
||||
ipv6 address 2001:db8:1::1/64
|
||||
!
|
16
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/bgpd.conf
Normal file
16
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/bgpd.conf
Normal file
@ -0,0 +1,16 @@
|
||||
router bgp 102 vrf r2-cust1
|
||||
bgp router-id 10.254.254.2
|
||||
neighbor r2g peer-group
|
||||
neighbor r2g remote-as external
|
||||
neighbor r2g bfd
|
||||
neighbor r2-eth0 interface peer-group r2g
|
||||
!
|
||||
address-family ipv4 unicast
|
||||
redistribute connected
|
||||
exit-address-family
|
||||
!
|
||||
address-family ipv6 unicast
|
||||
redistribute connected
|
||||
neighbor r2g activate
|
||||
exit-address-family
|
||||
!
|
50
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/ipv4_routes.json
Normal file
50
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/ipv4_routes.json
Normal file
@ -0,0 +1,50 @@
|
||||
{
|
||||
"10.254.254.2/32": [
|
||||
{
|
||||
"prefix": "10.254.254.2/32",
|
||||
"protocol": "connected",
|
||||
"vrfId":3,
|
||||
"selected": true,
|
||||
"destSelected": true,
|
||||
"distance": 0,
|
||||
"metric": 0,
|
||||
"installed": true,
|
||||
"internalStatus": 32,
|
||||
"internalFlags": 8,
|
||||
"nexthops": [
|
||||
{
|
||||
"flags": 3,
|
||||
"fib": true,
|
||||
"directlyConnected": true,
|
||||
"interfaceIndex": 4,
|
||||
"interfaceName": "loop1",
|
||||
"active": true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"10.254.254.1/32": [
|
||||
{
|
||||
"prefix": "10.254.254.1/32",
|
||||
"protocol": "bgp",
|
||||
"vrfId":3,
|
||||
"selected": true,
|
||||
"destSelected": true,
|
||||
"distance": 20,
|
||||
"metric": 0,
|
||||
"installed": true,
|
||||
"internalStatus": 34,
|
||||
"internalFlags": 8,
|
||||
"nexthops": [
|
||||
{
|
||||
"flags": 3,
|
||||
"fib": true,
|
||||
"afi": "ipv6",
|
||||
"interfaceIndex": 2,
|
||||
"interfaceName": "r2-eth0",
|
||||
"active": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
26
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/ipv6_routes.json
Normal file
26
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/ipv6_routes.json
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"2001:db8:1::/64": [
|
||||
{
|
||||
"prefix": "2001:db8:1::/64",
|
||||
"protocol": "connected",
|
||||
"vrfId":3,
|
||||
"selected": true,
|
||||
"destSelected": true,
|
||||
"distance": 0,
|
||||
"metric": 0,
|
||||
"installed": true,
|
||||
"internalStatus": 32,
|
||||
"internalFlags": 8,
|
||||
"nexthops": [
|
||||
{
|
||||
"flags": 3,
|
||||
"fib": true,
|
||||
"directlyConnected": true,
|
||||
"interfaceIndex": 2,
|
||||
"interfaceName": "r2-eth0",
|
||||
"active": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
9
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/zebra.conf
Normal file
9
tests/topotests/bgp_vrf_lite_ipv6_rtadv/r2/zebra.conf
Normal file
@ -0,0 +1,9 @@
|
||||
ip forwarding
|
||||
ipv6 forwarding
|
||||
!
|
||||
interface loop1 vrf r2-cust1
|
||||
ip address 10.254.254.2/32
|
||||
!
|
||||
interface r2-eth0 vrf r2-cust1
|
||||
ipv6 address 2001:db8:1::2/64
|
||||
!
|
@ -0,0 +1,44 @@
|
||||
## Color coding:
|
||||
#########################
|
||||
## Main FRR: #f08080 red
|
||||
## Switches: #d0e0d0 gray
|
||||
## RIP: #19e3d9 Cyan
|
||||
## RIPng: #fcb314 dark yellow
|
||||
## OSPFv2: #32b835 Green
|
||||
## OSPFv3: #19e3d9 Cyan
|
||||
## ISIS IPv4 #fcb314 dark yellow
|
||||
## ISIS IPv6 #9a81ec purple
|
||||
## BGP IPv4 #eee3d3 beige
|
||||
## BGP IPv6 #fdff00 yellow
|
||||
##### Colors (see http://www.color-hex.com/)
|
||||
|
||||
graph template {
|
||||
label="bfd-topo2";
|
||||
|
||||
# Routers
|
||||
r1 [
|
||||
shape=doubleoctagon,
|
||||
label="r1",
|
||||
fillcolor="#f08080",
|
||||
style=filled,
|
||||
];
|
||||
r2 [
|
||||
shape=doubleoctagon
|
||||
label="r2",
|
||||
fillcolor="#f08080",
|
||||
style=filled,
|
||||
];
|
||||
|
||||
# Switches
|
||||
sw1 [
|
||||
shape=oval,
|
||||
label="sw1\n2001:db8:1::/64",
|
||||
fillcolor="#d0e0d0",
|
||||
style=filled,
|
||||
];
|
||||
|
||||
# Connections
|
||||
r1 -- sw1 [label="eth0"];
|
||||
r2 -- sw1 [label="eth0"];
|
||||
|
||||
}
|
@ -0,0 +1,154 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
#
|
||||
# test_bgp_ipv6_rtadv.py
|
||||
# Part of NetDEF Topology Tests
|
||||
#
|
||||
# Copyright (c) 2019 by 6WIND
|
||||
#
|
||||
# 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_ipv6_rtadv.py: Test the FRR/Quagga BGP daemon with BGP IPv6 interface
|
||||
with route advertisements on a separate netns.
|
||||
"""
|
||||
|
||||
import os
|
||||
import sys
|
||||
import json
|
||||
from functools import partial
|
||||
import pytest
|
||||
|
||||
# Save the Current Working Directory to find configuration files.
|
||||
CWD = os.path.dirname(os.path.realpath(__file__))
|
||||
sys.path.append(os.path.join(CWD, '../'))
|
||||
|
||||
# pylint: disable=C0413
|
||||
# Import topogen and topotest helpers
|
||||
from lib import topotest
|
||||
from lib.topogen import Topogen, TopoRouter, get_topogen
|
||||
from lib.topolog import logger
|
||||
|
||||
# Required to instantiate the topology builder class.
|
||||
from mininet.topo import Topo
|
||||
|
||||
|
||||
class BGPIPV6RTADVVRFTopo(Topo):
|
||||
"Test topology builder"
|
||||
def build(self, *_args, **_opts):
|
||||
"Build function"
|
||||
tgen = get_topogen(self)
|
||||
|
||||
# Create 2 routers.
|
||||
tgen.add_router('r1')
|
||||
tgen.add_router('r2')
|
||||
|
||||
switch = tgen.add_switch('s1')
|
||||
switch.add_link(tgen.gears['r1'])
|
||||
switch.add_link(tgen.gears['r2'])
|
||||
|
||||
def setup_module(mod):
|
||||
"Sets up the pytest environment"
|
||||
tgen = Topogen(BGPIPV6RTADVVRFTopo, mod.__name__)
|
||||
tgen.start_topology()
|
||||
|
||||
router_list = tgen.routers()
|
||||
|
||||
logger.info('Testing with VRF Lite support')
|
||||
|
||||
cmds = ['ip link add {0}-cust1 type vrf table 1001',
|
||||
'ip link add loop1 type dummy',
|
||||
'ip link set loop1 master {0}-cust1',
|
||||
'ip link set {0}-eth0 master {0}-cust1']
|
||||
|
||||
for rname, router in router_list.iteritems():
|
||||
for cmd in cmds:
|
||||
output = tgen.net[rname].cmd(cmd.format(rname))
|
||||
|
||||
for rname, router in router_list.iteritems():
|
||||
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))
|
||||
)
|
||||
|
||||
# Initialize all routers.
|
||||
tgen.start_router()
|
||||
|
||||
def teardown_module(_mod):
|
||||
"Teardown the pytest environment"
|
||||
tgen = get_topogen()
|
||||
|
||||
tgen.stop_topology()
|
||||
|
||||
|
||||
def test_protocols_convergence():
|
||||
"""
|
||||
Assert that all protocols have converged
|
||||
statuses as they depend on it.
|
||||
"""
|
||||
tgen = get_topogen()
|
||||
if tgen.routers_have_failure():
|
||||
pytest.skip(tgen.errors)
|
||||
|
||||
# Check IPv4 routing tables.
|
||||
logger.info("Checking IPv4 routes for convergence")
|
||||
|
||||
for router in tgen.routers().values():
|
||||
json_file = '{}/{}/ipv4_routes.json'.format(CWD, router.name)
|
||||
if not os.path.isfile(json_file):
|
||||
logger.info('skipping file {}'.format(json_file))
|
||||
continue
|
||||
|
||||
expected = json.loads(open(json_file).read())
|
||||
test_func = partial(topotest.router_json_cmp,
|
||||
router, 'show ip route vrf {}-cust1 json'.format(router.name), expected)
|
||||
_, result = topotest.run_and_expect(test_func, None, count=160,
|
||||
wait=0.5)
|
||||
assertmsg = '"{}" JSON output mismatches'.format(router.name)
|
||||
assert result is None, assertmsg
|
||||
|
||||
# Check IPv6 routing tables.
|
||||
logger.info("Checking IPv6 routes for convergence")
|
||||
for router in tgen.routers().values():
|
||||
json_file = '{}/{}/ipv6_routes.json'.format(CWD, router.name)
|
||||
if not os.path.isfile(json_file):
|
||||
logger.info('skipping file {}'.format(json_file))
|
||||
continue
|
||||
|
||||
expected = json.loads(open(json_file).read())
|
||||
test_func = partial(topotest.router_json_cmp,
|
||||
router, 'show ipv6 route vrf {}-cust1 json'.format(router.name), expected)
|
||||
_, result = topotest.run_and_expect(test_func, None, count=160,
|
||||
wait=0.5)
|
||||
assertmsg = '"{}" JSON output mismatches'.format(router.name)
|
||||
assert result is None, assertmsg
|
||||
|
||||
def test_memory_leak():
|
||||
"Run the memory leak test and report results."
|
||||
tgen = get_topogen()
|
||||
if not tgen.is_memleak_enabled():
|
||||
pytest.skip('Memory leak test/report is disabled')
|
||||
|
||||
tgen.report_memory_leaks()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
args = ["-s"] + sys.argv[1:]
|
||||
sys.exit(pytest.main(args))
|
Loading…
Reference in New Issue
Block a user