diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-10-04 22:25:19 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-10-04 22:25:19 +0200 |
commit | 74a8c4b42b5ad31cdf34ddea07f83f7bff86be87 (patch) | |
tree | 7ae69d25b1c58a9e8b500c1629924b8fdac1fdf1 /smoketest/scripts/cli/test_protocols_bgp.py | |
parent | b7189cd1df327621a304ca65626a517223db6432 (diff) | |
download | vyos-1x-74a8c4b42b5ad31cdf34ddea07f83f7bff86be87.tar.gz vyos-1x-74a8c4b42b5ad31cdf34ddea07f83f7bff86be87.zip |
bgp: T3741: "parameter default no-ipv4-unicast" is now a default option
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_bgp.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_bgp.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_protocols_bgp.py b/smoketest/scripts/cli/test_protocols_bgp.py index 29b5aa9d1..16284ed01 100755 --- a/smoketest/scripts/cli/test_protocols_bgp.py +++ b/smoketest/scripts/cli/test_protocols_bgp.py @@ -221,8 +221,6 @@ class TestProtocolsBGP(VyOSUnitTestSHIM.TestCase): # Default local preference (higher = more preferred, default value is 100) self.cli_set(base_path + ['parameters', 'default', 'local-pref', local_pref]) - # Deactivate IPv4 unicast for a peer by default - self.cli_set(base_path + ['parameters', 'default', 'no-ipv4-unicast']) self.cli_set(base_path + ['parameters', 'graceful-restart', 'stalepath-time', stalepath_time]) self.cli_set(base_path + ['parameters', 'graceful-shutdown']) self.cli_set(base_path + ['parameters', 'ebgp-requires-policy']) @@ -246,7 +244,6 @@ class TestProtocolsBGP(VyOSUnitTestSHIM.TestCase): self.assertIn(f' bgp router-id {router_id}', frrconfig) self.assertIn(f' bgp log-neighbor-changes', frrconfig) self.assertIn(f' bgp default local-preference {local_pref}', frrconfig) - self.assertIn(f' no bgp default ipv4-unicast', frrconfig) self.assertIn(f' bgp graceful-restart stalepath-time {stalepath_time}', frrconfig) self.assertIn(f' bgp graceful-shutdown', frrconfig) self.assertIn(f' bgp bestpath as-path multipath-relax', frrconfig) |