diff options
| author | Christian Breunig <christian@breunig.cc> | 2023-08-24 17:48:30 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-24 17:48:30 +0200 | 
| commit | 250a5d13c9e463b04fde0216b133065f26f11430 (patch) | |
| tree | c53e8afbc3909d2e828b15d6aad6f7796f45279f | |
| parent | 4ea1b15069406c96fb3c6dc8eceea298ff853ee8 (diff) | |
| parent | 0f3749cb9414b5a66bca56e5c9a7a1f1782d5495 (diff) | |
| download | vyos-1x-250a5d13c9e463b04fde0216b133065f26f11430.tar.gz vyos-1x-250a5d13c9e463b04fde0216b133065f26f11430.zip | |
Merge pull request #2165 from sever-sever/T5506
T5506: Add link-local IPv6 address for container interfaces
| -rwxr-xr-x | src/conf_mode/container.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/conf_mode/container.py b/src/conf_mode/container.py index 478868a9a..754742c37 100755 --- a/src/conf_mode/container.py +++ b/src/conf_mode/container.py @@ -463,6 +463,7 @@ def apply(container):              # it to a VRF as there's no consumer, yet.              if os.path.exists(f'/sys/class/net/{network_name}'):                  tmp = Interface(network_name) +                tmp.add_ipv6_eui64_address('fe80::/64')                  tmp.set_vrf(network_config.get('vrf', ''))      return None | 
