diff options
author | khramshinr <khramshinr@gmail.com> | 2024-03-28 16:01:30 +0800 |
---|---|---|
committer | khramshinr <khramshinr@gmail.com> | 2024-03-28 16:29:06 +0800 |
commit | 0d82dfa3725a23969fd6ae02b76b135a29be6df3 (patch) | |
tree | 9444033736a7efcf8961e13a8e72063d53be4dbc /python/vyos/template.py | |
parent | 63b9889f2070ae09774c71ff1449a5c1f7b99881 (diff) | |
download | vyos-1x-0d82dfa3725a23969fd6ae02b76b135a29be6df3.tar.gz vyos-1x-0d82dfa3725a23969fd6ae02b76b135a29be6df3.zip |
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 bde8e3554..19a469c8f 100644 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -794,7 +794,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 |