summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorDuc Truong <duct@nvidia.com>2023-02-15 20:40:24 +0000
committerDuc Truong <duct@nvidia.com>2023-03-01 16:44:40 -0800
commit005f21c0df8634563f1e7eac7bb1a6b00df9ea4f (patch)
tree2c5c6ff0d533d662b9ec2b18f3372065683142ac /releasenotes
parent381a0eac427dd532e9033ac04f0bd629064b6df0 (diff)
downloadironic-005f21c0df8634563f1e7eac7bb1a6b00df9ea4f.tar.gz
Fix auth_protocol and priv_protocol for SNMP v3
SNMP driver was using the wrong dictionary key to retrieve auth_protocol and priv_protocol from driver info. As a result, the SNMP client was created with empty strings for both those fields. Any nodes configured to use SNMP v3 with those fields failed because the SNMP driver was unable to perform power related operations due to authentication error. - Use correct keys for snmp auth_protocol and priv_protocol when creating SNMP client - Sanitize snmp auth_key and priv_key in API results Story: 2010613 Task: 47535 Change-Id: I5efd3c9f79a021f1a8e613c3d13b6596a7972672
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/bug-2010613-3ab1f32aaa776f28.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/releasenotes/notes/bug-2010613-3ab1f32aaa776f28.yaml b/releasenotes/notes/bug-2010613-3ab1f32aaa776f28.yaml
new file mode 100644
index 000000000..89769bfb8
--- /dev/null
+++ b/releasenotes/notes/bug-2010613-3ab1f32aaa776f28.yaml
@@ -0,0 +1,7 @@
+---
+fixes:
+ - |
+ [`bug 2010613 <https://storyboard.openstack.org/#!/story/2010613>`_]
+ Fixes issue with SNMP v3 auth protocol and priv protocol set in
+ driver info not being retrieved correctly when a SNMP client is
+ initialized.