diff options
author | Jonathan Voss <jvoss@onvox.net> | 2024-04-09 18:21:23 +0000 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-04-09 18:34:10 +0000 |
commit | 5497edf69c7ed2b92de4e3ec0b21040f513bfbaa (patch) | |
tree | 4aaddba78d2a78b27941cd15e43fb29644fcca77 /src | |
parent | 9a965086a3eb44e43560df68b01bafaf22f9fba7 (diff) | |
download | vyos-1x-5497edf69c7ed2b92de4e3ec0b21040f513bfbaa.tar.gz vyos-1x-5497edf69c7ed2b92de4e3ec0b21040f513bfbaa.zip |
container: T6218: fix host IPv6 link-local address for VRF networks
(cherry picked from commit 6b5590ae3325320a2b6bbcb34086ddb178860160)
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/container.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/container.py b/src/conf_mode/container.py index 0b57221b2..a73a18ffa 100755 --- a/src/conf_mode/container.py +++ b/src/conf_mode/container.py @@ -473,8 +473,8 @@ def apply(container): # it to a VRF as there's no consumer, yet. if interface_exists(network_name): tmp = Interface(network_name) - tmp.add_ipv6_eui64_address('fe80::/64') tmp.set_vrf(network_config.get('vrf', '')) + tmp.add_ipv6_eui64_address('fe80::/64') return None |