summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-07-22 00:54:38 +0000
committerGerrit Code Review <review@openstack.org>2022-07-22 00:54:38 +0000
commitb7c71bdbb89b8fc158cd43375ee4a771b0b45694 (patch)
treeeb899ae422e3c9cbe5d96408b2c8e9e9c19ebd94 /releasenotes
parent7673cb827b0ef247fa87c852f370b4f5d7f5e39a (diff)
parent79f82c0262c84f1e317991052d065259b3a4683d (diff)
downloadironic-b7c71bdbb89b8fc158cd43375ee4a771b0b45694.tar.gz
Merge "[iRMC] Add SNMPv3 authentication functionality"
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/irmc-add-snmpv3-security-fca05bfc30f50d1a.yaml30
1 files changed, 30 insertions, 0 deletions
diff --git a/releasenotes/notes/irmc-add-snmpv3-security-fca05bfc30f50d1a.yaml b/releasenotes/notes/irmc-add-snmpv3-security-fca05bfc30f50d1a.yaml
new file mode 100644
index 000000000..7a6bde3fd
--- /dev/null
+++ b/releasenotes/notes/irmc-add-snmpv3-security-fca05bfc30f50d1a.yaml
@@ -0,0 +1,30 @@
+---
+features:
+ - |
+ Adds SNMPv3 message authentication and encryption features to iRMC driver.
+ To enable these features, the following parameters should be used in the
+ node's ``driver_info``:
+
+ * ``irmc_snmp_user``
+ * ``irmc_snmp_auth_password``
+ * ``irmc_snmp_priv_password``
+ * ``irmc_snmp_auth_proto`` (Optional, defaults to ``sha``)
+ * ``irmc_snmp_priv_proto`` (Optional, defaults to ``aes``)
+
+ ``irmc_snmp_auth_proto`` and ``irmc_snmp_priv_proto`` can also be set
+ through the following options in the ``[irmc]`` section of
+ ``/etc/ironic/ironic.conf``:
+
+ * ``snmp_auth_proto``
+ * ``snmp_priv_proto``
+
+deprecations:
+ - |
+ Deprecates the ``irmc_snmp_security`` field in ``driver_info`` for iRMC
+ driver, it will be removed in the future. Please use ``irmc_snmp_user``
+ field instead.
+
+other:
+ - |
+ Updates the minimum version of ``python-scciclient`` library to
+ ``0.12.1``.