diff options
| author | Kyrylo Yatsenko <hedrok@gmail.com> | 2026-05-06 21:31:35 +0300 |
|---|---|---|
| committer | Kyrylo Yatsenko <hedrok@gmail.com> | 2026-05-09 10:30:17 +0300 |
| commit | 730c0185a0f47fed7ad32a87f28dd7c0ea37fc6c (patch) | |
| tree | efd9c1fec7bb2edc77b012781c932596a447c214 | |
| parent | 45509acb7fb32f4680f2c03162846b21b7aa2f59 (diff) | |
| download | vyos-1x-730c0185a0f47fed7ad32a87f28dd7c0ea37fc6c.tar.gz vyos-1x-730c0185a0f47fed7ad32a87f28dd7c0ea37fc6c.zip | |
tests: T8612: FRR 10.6 ospf ABR required for virtual-link
FRR commit 4257c1dc28e71234f9338f1623a8fe677445db7e introduced check
that virtual-link is allowed only for ABR router.
Update test accordingly.
| -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() |
