diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2024-01-22 20:29:42 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2024-01-22 20:29:42 +0100 |
commit | c5b9edb2f76322e27c3eb0092e4e02d1591fef82 (patch) | |
tree | 2bc10787e78f2f1a4198a683a347d81d0938c8d2 /smoketest/scripts | |
parent | 90a50f8c21433188257766be1b971cae365a7a0c (diff) | |
download | vyos-1x-c5b9edb2f76322e27c3eb0092e4e02d1591fef82.tar.gz vyos-1x-c5b9edb2f76322e27c3eb0092e4e02d1591fef82.zip |
dhcp: T5787: Allow disabled duplicates on static-mapping
Diffstat (limited to 'smoketest/scripts')
-rwxr-xr-x | smoketest/scripts/cli/test_service_dhcp-server.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_service_dhcp-server.py b/smoketest/scripts/cli/test_service_dhcp-server.py index 849a411f1..194289567 100755 --- a/smoketest/scripts/cli/test_service_dhcp-server.py +++ b/smoketest/scripts/cli/test_service_dhcp-server.py @@ -387,6 +387,9 @@ class TestServiceDHCPServer(VyOSUnitTestSHIM.TestCase): self.cli_set(pool + ['static-mapping', 'dupe1', 'ip-address', inc_ip(subnet, 10)]) with self.assertRaises(ConfigSessionError): self.cli_commit() + # Should allow disabled duplicate + self.cli_set(pool + ['static-mapping', 'dupe1', 'disable']) + self.cli_commit() self.cli_delete(pool + ['static-mapping', 'dupe1']) # cannot have mappings with duplicate MAC addresses |