diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-05-11 21:07:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-11 21:07:38 +0200 |
| commit | 4b58c2e05814ba0302cc135900c1c5cc7f193c7b (patch) | |
| tree | b9f9a39a9ed6588ee78e019b313cdbce42c9e5f7 /smoketest/scripts/cli | |
| parent | 86d13cb23df0e473c5e152fd050e136c228bfb1c (diff) | |
| parent | 730c0185a0f47fed7ad32a87f28dd7c0ea37fc6c (diff) | |
| download | vyos-1x-4b58c2e05814ba0302cc135900c1c5cc7f193c7b.tar.gz vyos-1x-4b58c2e05814ba0302cc135900c1c5cc7f193c7b.zip | |
Merge pull request #5184 from hedrok/T8612-update-frr-10.6.1
T8612: upgrade frr to 10.6.1
Diffstat (limited to 'smoketest/scripts/cli')
| -rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospf.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_protocols_ospf.py b/smoketest/scripts/cli/test_protocols_ospf.py index d942a8b98..299f518a8 100755 --- a/smoketest/scripts/cli/test_protocols_ospf.py +++ b/smoketest/scripts/cli/test_protocols_ospf.py @@ -310,6 +310,11 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase): for network in networks: self.cli_set(base_path + ['area', area, 'network', network]) + # FRR requires router to be ABR for virtual-link to work + self.cli_set(base_path + ['area', '0', 'network', '192.178.0.0/16']) + self.cli_set(['interfaces', 'dummy', dummy_if, 'address', '172.16.0.9/12']) + self.cli_set(['interfaces', 'dummy', dummy_if, 'address', '192.178.0.9/16']) + # commit changes self.cli_commit() |
