Merge "Add DHCP_OPT_CLIENT_ID_NUM"

This commit is contained in:
Zuul 2018-05-23 14:27:00 +00:00 committed by Gerrit Code Review
commit eaee5da4f0
2 changed files with 10 additions and 0 deletions

View File

@ -46,6 +46,8 @@ EXTRA_DHCP_OPT_KEY_SPECS = [
EXTRADHCPOPTS = 'extra_dhcp_opts'
DHCP_OPT_CLIENT_ID = "client-id"
# client-id option value as defined in RFC 4776
DHCP_OPT_CLIENT_ID_NUM = 61
# The alias of the extension.
ALIAS = 'extra_dhcp_opt'

View File

@ -0,0 +1,8 @@
---
fixes:
- |
For Infiniband support, Ironic needs to send the ``client-id`` DHCP option
as a number in order for IP address assignment to work.
This is now supported in Neutron, and can be specified as option number
61 as defined in RFC 4776. For more information see bug
`1770932 <https://bugs.launchpad.net/neutron/+bug/1770932>`_