diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2024-02-25 23:26:33 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2024-02-25 23:26:33 +0100 |
commit | 83b435ffe1a6cda47d260fea81c6c6cca1aedd48 (patch) | |
tree | e08c9213d4d9453c1036f279eacf08f813157c02 /python | |
parent | 52df4d62074a76eb173931c5fbaf5a4e22d6e346 (diff) | |
download | vyos-1x-83b435ffe1a6cda47d260fea81c6c6cca1aedd48.tar.gz vyos-1x-83b435ffe1a6cda47d260fea81c6c6cca1aedd48.zip |
dhcp-server: T6063: Add `ignore-client-id` to relax client identifier checks for leases
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/kea.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/vyos/kea.py b/python/vyos/kea.py index 894ac9e9a..2328d0b00 100644 --- a/python/vyos/kea.py +++ b/python/vyos/kea.py @@ -113,6 +113,9 @@ def kea_parse_subnet(subnet, config): if 'bootfile_server' in config['option']: out['next-server'] = config['option']['bootfile_server'] + if 'ignore_client_id' in config: + out['match-client-id'] = False + if 'lease' in config: out['valid-lifetime'] = int(config['lease']) out['max-valid-lifetime'] = int(config['lease']) |