summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-02-19 13:09:17 +0100
committerChristian Poessinger <christian@poessinger.com>2022-02-19 13:09:45 +0100
commit29ba813fb65b8b292105cdae4f8f71fcce6350a1 (patch)
treeff986770fda248a0da1a2ffb343b112c8f2e99f7
parentae65ff7cc62959608d190923737283480398277d (diff)
downloadvyos-1x-29ba813fb65b8b292105cdae4f8f71fcce6350a1.tar.gz
vyos-1x-29ba813fb65b8b292105cdae4f8f71fcce6350a1.zip
smoketest: T4258: dhcp: bugfix failover ports
Commit 5fc9ef9e ("DHCP : T4258: Set correct port for dhcp-failover") changed how the failover port is rendered into the ISC DHCPd configuration - adjustment of the smoketests was missed out.
-rwxr-xr-xsmoketest/scripts/cli/test_service_dhcp-server.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_service_dhcp-server.py b/smoketest/scripts/cli/test_service_dhcp-server.py
index 14666db15..9adb9c042 100755
--- a/smoketest/scripts/cli/test_service_dhcp-server.py
+++ b/smoketest/scripts/cli/test_service_dhcp-server.py
@@ -461,12 +461,11 @@ class TestServiceDHCPServer(VyOSUnitTestSHIM.TestCase):
self.assertIn(f'mclt 1800;', config)
self.assertIn(f'mclt 1800;', config)
self.assertIn(f'split 128;', config)
- self.assertIn(f'port 520;', config)
- self.assertIn(f'peer port 520;', config)
+ self.assertIn(f'port 647;', config)
+ self.assertIn(f'peer port 647;', config)
self.assertIn(f'max-response-delay 30;', config)
self.assertIn(f'max-unacked-updates 10;', config)
self.assertIn(f'load balance max seconds 3;', config)
- self.assertIn(f'peer port 520;', config)
self.assertIn(f'address {failover_local};', config)
self.assertIn(f'peer address {failover_remote};', config)