diff options
author | Christian Breunig <christian@poessinger.com> | 2023-01-07 17:49:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-07 17:49:40 +0100 |
commit | 47216bbe29e0af8004040b5f1c9dc8450c0e8865 (patch) | |
tree | eac9fb791a8b85d15c4f46cc857f5af251e2757d /smoketest | |
parent | 873240f6c8783d62f5f7431843f3a689bb1eea1c (diff) | |
parent | d281cf5a26a5bb73eff432307dde3d5a263f5045 (diff) | |
download | vyos-1x-47216bbe29e0af8004040b5f1c9dc8450c0e8865.tar.gz vyos-1x-47216bbe29e0af8004040b5f1c9dc8450c0e8865.zip |
Merge pull request #1741 from vfreex/ospf-fix-passive-interface
T4920: ospf: Fix `passive-interface default` option
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospf.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_protocols_ospf.py b/smoketest/scripts/cli/test_protocols_ospf.py index 62e5f2134..8dd0160d3 100755 --- a/smoketest/scripts/cli/test_protocols_ospf.py +++ b/smoketest/scripts/cli/test_protocols_ospf.py @@ -74,6 +74,7 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase): self.cli_set(base_path + ['parameters', 'rfc1583-compatibility']) self.cli_set(base_path + ['log-adjacency-changes', 'detail']) self.cli_set(base_path + ['default-metric', metric]) + self.cli_set(base_path + ['passive-interface', 'default']) # commit changes self.cli_commit() @@ -88,6 +89,7 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase): self.assertIn(f' timers throttle spf 200 1000 10000', frrconfig) # defaults self.assertIn(f' capability opaque', frrconfig) self.assertIn(f' default-metric {metric}', frrconfig) + self.assertIn(f' passive-interface default', frrconfig) def test_ospf_03_access_list(self): |