summaryrefslogtreecommitdiff
path: root/src/conf_mode/container.py
diff options
context:
space:
mode:
authorJonathan Voss <jvoss@onvox.net>2024-04-09 18:21:23 +0000
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-04-09 18:34:10 +0000
commit5497edf69c7ed2b92de4e3ec0b21040f513bfbaa (patch)
tree4aaddba78d2a78b27941cd15e43fb29644fcca77 /src/conf_mode/container.py
parent9a965086a3eb44e43560df68b01bafaf22f9fba7 (diff)
downloadvyos-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/conf_mode/container.py')
-rwxr-xr-xsrc/conf_mode/container.py2
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