summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorBence Romsics <bence.romsics@gmail.com>2023-03-06 13:04:01 +0100
committerBrian Haley <haleyb.dev@gmail.com>2023-04-04 09:39:19 -0400
commit2aee961ab6942ab59aeacdc93d918c8c19023041 (patch)
treee1f00b2f6d5454f0fe6abc641b129b144ab165f1 /releasenotes
parent3eb907c1f413c82d45b24c586da9a9a64b402c6f (diff)
downloadneutron-2aee961ab6942ab59aeacdc93d918c8c19023041.tar.gz
Suppress IPv6 metadata DAD failure and delete address
IPv4 DAD is non-existent in Linux or its failure is silent, so we never needed to catch and ignore it. On the other hand IPv6 DAD failure is explicit, hence comes this change. This of course leaves the metadata service dead on hosts where duplicate address detection failed. But if we catch the DADFailed exception and delete the address, at least other functions of the dhcp-agent should not be affected. With this the IPv6 isolated metadata service is not redundant, which is the best we can do without a redesign. Also document the promised service level of isolated metadata. Added additional tests for the metadata driver as well. Change-Id: I6b544c5528cb22e5e8846fc47dfb8b05f70f975c Partial-Bug: #1953165
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/bug-1953165-6e848ea2c0398f56.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/releasenotes/notes/bug-1953165-6e848ea2c0398f56.yaml b/releasenotes/notes/bug-1953165-6e848ea2c0398f56.yaml
new file mode 100644
index 0000000000..6c79c0daef
--- /dev/null
+++ b/releasenotes/notes/bug-1953165-6e848ea2c0398f56.yaml
@@ -0,0 +1,16 @@
+---
+issues:
+ - |
+ The high availability of metadata service on isolated networks is limited
+ or non-existent. IPv4 metadata is redundant when the DHCP agent managing
+ it is redundant, but recovery is tied to the renewal of the DHCP lease,
+ making most recoveries very slow. IPv6 metadata is not redundant at all
+ as the IPv6 metadata address can only be configured in a single place at
+ a time as it is link-local. Multiple agents trying to configure it will
+ generate an IPv6 duplicate address detection failure.
+
+ Administrators may observe the IPv6 metadata address in "dadfailed" state
+ in the DHCP namespace for this reason, which is only an indication it is
+ not highly available. Until a redesign is made to the isolated metadata
+ service there is not a better deployment option. See `bug 1953165
+ <https://bugs.launchpad.net/neutron/+bug/1953165>`_ for information.