summaryrefslogtreecommitdiffstats
path: root/tests/topotests/bgp_unnumbered
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 13:16:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 13:16:35 +0000
commite2bbf175a2184bd76f6c54ccf8456babeb1a46fc (patch)
treef0b76550d6e6f500ada964a3a4ee933a45e5a6f1 /tests/topotests/bgp_unnumbered
parentInitial commit. (diff)
downloadfrr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.tar.xz
frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.zip
Adding upstream version 9.1.upstream/9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/topotests/bgp_unnumbered')
-rw-r--r--tests/topotests/bgp_unnumbered/__init__.py0
-rw-r--r--tests/topotests/bgp_unnumbered/r1/bgpd.conf9
-rw-r--r--tests/topotests/bgp_unnumbered/r1/zebra.conf10
-rw-r--r--tests/topotests/bgp_unnumbered/r2/bgpd.conf9
-rw-r--r--tests/topotests/bgp_unnumbered/r2/zebra.conf12
-rw-r--r--tests/topotests/bgp_unnumbered/test_bgp_unnumbered.py119
6 files changed, 159 insertions, 0 deletions
diff --git a/tests/topotests/bgp_unnumbered/__init__.py b/tests/topotests/bgp_unnumbered/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/topotests/bgp_unnumbered/__init__.py
diff --git a/tests/topotests/bgp_unnumbered/r1/bgpd.conf b/tests/topotests/bgp_unnumbered/r1/bgpd.conf
new file mode 100644
index 0000000..a9d0ec8
--- /dev/null
+++ b/tests/topotests/bgp_unnumbered/r1/bgpd.conf
@@ -0,0 +1,9 @@
+!
+router bgp 65001
+ timers bgp 1 9
+ no bgp ebgp-requires-policy
+ neighbor r1-eth0 interface remote-as external
+ address-family ipv4 unicast
+ exit-address-family
+ !
+!
diff --git a/tests/topotests/bgp_unnumbered/r1/zebra.conf b/tests/topotests/bgp_unnumbered/r1/zebra.conf
new file mode 100644
index 0000000..1cbaea4
--- /dev/null
+++ b/tests/topotests/bgp_unnumbered/r1/zebra.conf
@@ -0,0 +1,10 @@
+!
+interface lo
+ ip address 172.16.250.254/32
+!
+interface r1-eth0
+ ip address 192.168.0.1/24
+!
+ip forwarding
+!
+
diff --git a/tests/topotests/bgp_unnumbered/r2/bgpd.conf b/tests/topotests/bgp_unnumbered/r2/bgpd.conf
new file mode 100644
index 0000000..fd29cd3
--- /dev/null
+++ b/tests/topotests/bgp_unnumbered/r2/bgpd.conf
@@ -0,0 +1,9 @@
+!
+router bgp 65002
+ no bgp network import-check
+ no bgp ebgp-requires-policy
+ timers bgp 1 9
+ neighbor r2-eth0 interface remote-as external
+ address-family ipv4 uni
+ network 172.16.255.254/32
+!
diff --git a/tests/topotests/bgp_unnumbered/r2/zebra.conf b/tests/topotests/bgp_unnumbered/r2/zebra.conf
new file mode 100644
index 0000000..cf6fb6d
--- /dev/null
+++ b/tests/topotests/bgp_unnumbered/r2/zebra.conf
@@ -0,0 +1,12 @@
+!
+interface r2-eth0
+ ip address 192.168.0.2/24
+!
+interface r2-eth1
+ ip address 192.168.1.1/24
+!
+interface r2-eth2
+ ip address 192.168.2.1/24
+!
+ip forwarding
+!
diff --git a/tests/topotests/bgp_unnumbered/test_bgp_unnumbered.py b/tests/topotests/bgp_unnumbered/test_bgp_unnumbered.py
new file mode 100644
index 0000000..2a53547
--- /dev/null
+++ b/tests/topotests/bgp_unnumbered/test_bgp_unnumbered.py
@@ -0,0 +1,119 @@
+#!/usr/bin/env python
+# SPDX-License-Identifier: ISC
+#
+# Copyright (c) 2022 by
+# Donald Sharp
+#
+
+"""
+Test some bgp interface based issues that show up
+"""
+
+import os
+import sys
+import json
+import pytest
+import functools
+
+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.common_config import step
+
+pytestmark = [pytest.mark.bgpd]
+
+
+def build_topo(tgen):
+
+ 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):
+ tgen = Topogen(build_topo, mod.__name__)
+ tgen.start_topology()
+
+ router_list = tgen.routers()
+
+ for i, (rname, router) in enumerate(router_list.items(), 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()
+
+
+#
+# Test these events:
+# a) create an unnumbered neighbor
+# b) shutdown the interface
+# c) remove the unnumbered peer in bgp and bgp does not crash
+def test_bgp_unnumbered_removal():
+ tgen = get_topogen()
+
+ if tgen.routers_have_failure():
+ pytest.skip(tgen.errors)
+
+ def _bgp_nexthop_cache():
+ output = tgen.gears["r1"].vtysh_cmd("show bgp nexthop")
+ expected = "Current BGP nexthop cache:\n"
+ return output == expected
+
+ def _bgp_converge():
+ output = json.loads(
+ tgen.gears["r1"].vtysh_cmd("show ip bgp 172.16.255.254/32 json")
+ )
+ expected = {"prefix": "172.16.255.254/32"}
+
+ return topotest.json_cmp(output, expected)
+
+ step("Ensure Convergence of BGP")
+ test_func = functools.partial(_bgp_converge)
+ success, result = topotest.run_and_expect(test_func, None, count=60, wait=1)
+
+ assert result is None, 'Failed bgp convergence in "{}"'.format(tgen.gears["r2"])
+
+ step("Shutdown interface r1-eth0")
+
+ tgen.gears["r1"].vtysh_cmd(
+ """
+ configure
+ int r1-eth0
+ shutdown
+ """
+ )
+
+ step("Remove the neighbor from r1")
+ tgen.gears["r1"].vtysh_cmd(
+ """
+ configure
+ router bgp
+ no neighbor r1-eth0 interface remote-as external
+ """
+ )
+
+ step("Ensure that BGP does not crash")
+ test_func = functools.partial(_bgp_nexthop_cache)
+ success, result = topotest.run_and_expect(test_func, True, count=10, wait=1)
+
+ assert result is True, "BGP did not crash on r1"
+
+
+if __name__ == "__main__":
+ args = ["-s"] + sys.argv[1:]
+ sys.exit(pytest.main(args))