summaryrefslogtreecommitdiff
path: root/ovn/lib
diff options
context:
space:
mode:
authorLucas Alvares Gomes <lucasagomes@gmail.com>2019-03-07 16:28:35 +0000
committerBen Pfaff <blp@ovn.org>2019-03-07 14:11:51 -0800
commit2a7be04ea9275317f295f66a9335f37af7e864e0 (patch)
treed3f1d3f6c9b25676cc74e3999de2f41dfc388082 /ovn/lib
parent318799a286c1a80c3c19415d878dc374e4f00cc8 (diff)
downloadopenvswitch-2a7be04ea9275317f295f66a9335f37af7e864e0.tar.gz
OVN: Add support for DHCP option 150 - TFTP server address
OpenStack Ironic relies on a few DHCP options [0] that were not supported in OVN yet. This patch is adding the last one which is the option 150 (TFTP server address, RFC5859 [1]). Note that this option is Cisco proprietary, the IEEE standard that matches with this requirement is Option 66. The difference is that 150 allows to multiple IPs to be specified and 66 only allows one. [0] https://github.com/openstack/ironic/blob/3f6d4c6a789b12512d6cc67cdbc93ba5fbf29848/ironic/common/pxe_utils.py#L44-L54 [1] https://tools.ietf.org/html/rfc5859 Signed-off-by: Lucas Alvares Gomes <lucasagomes@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ovn/lib')
-rw-r--r--ovn/lib/ovn-l7.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ovn/lib/ovn-l7.h b/ovn/lib/ovn-l7.h
index a2224d019..fe3104e1f 100644
--- a/ovn/lib/ovn-l7.h
+++ b/ovn/lib/ovn-l7.h
@@ -73,6 +73,8 @@ struct gen_opts_map {
#define DHCP_OPT_BOOTFILE DHCP_OPTION("bootfile_name", 67, "str")
#define DHCP_OPT_WPAD DHCP_OPTION("wpad", 252, "str")
#define DHCP_OPT_PATH_PREFIX DHCP_OPTION("path_prefix", 210, "str")
+#define DHCP_OPT_TFTP_SERVER_ADDRESS \
+ DHCP_OPTION("tftp_server_address", 150, "ipv4")
static inline uint32_t
gen_opt_hash(char *opt_name)