Development

This commit is contained in:
Matthew Grotke 2026-05-27 03:00:52 -04:00
parent a59d96942e
commit 29b06b250c
3 changed files with 23 additions and 2 deletions

View file

@ -322,6 +322,9 @@ def _config_datasource(name):
row['server_identity_hostnames'] = json.dumps([
s.get('hostname', '') for s in v.get('server_identities', []) if s.get('ip')
])
row['server_identity_gateway'] = (
v.get('dhcp_information', {}).get('explicit_overrides', {}).get('gateway', '')
)
rows.append(row)
return rows