diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-30 21:32:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-30 21:32:47 +0100 |
commit | 252d03d6e419aae14ae75caed38d1b1001c916a2 (patch) | |
tree | 750fad15556acda317c8f6381269db1fc74c0ada /python/vyos/template.py | |
parent | 89a6299156b86ac838462fd60af196dcb0d8877c (diff) | |
parent | 0d82dfa3725a23969fd6ae02b76b135a29be6df3 (diff) | |
download | vyos-1x-252d03d6e419aae14ae75caed38d1b1001c916a2.tar.gz vyos-1x-252d03d6e419aae14ae75caed38d1b1001c916a2.zip |
Merge pull request #3195 from HollyGurza/T4718-current
dhcp-server: T4718: Listen-address is not commit if the ip address is on the interface with vrf
Diffstat (limited to 'python/vyos/template.py')
-rw-r--r-- | python/vyos/template.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/template.py b/python/vyos/template.py index 392322d46..1aa9ace8b 100644 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -807,7 +807,7 @@ def kea_address_json(addresses): out = [] for address in addresses: - ifname = is_addr_assigned(address, return_ifname=True) + ifname = is_addr_assigned(address, return_ifname=True, include_vrf=True) if not ifname: continue |