From a858e5a62000f164bc4b28125914b4d8db9da3b8 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 22 Apr 2022 22:01:44 +0200 Subject: dhcpv6: T4357: length must be encoded else packet is malformed --- data/templates/dhcp-server/dhcpdv6.conf.j2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/data/templates/dhcp-server/dhcpdv6.conf.j2 b/data/templates/dhcp-server/dhcpdv6.conf.j2 index d4b7f74d9..6d114361e 100644 --- a/data/templates/dhcp-server/dhcpdv6.conf.j2 +++ b/data/templates/dhcp-server/dhcpdv6.conf.j2 @@ -11,7 +11,9 @@ option dhcp6.preference {{ preference }}; {% if global_parameters.name_server is vyos_defined %} option dhcp6.name-servers {{ global_parameters.name_server | join(', ') }}; {% endif %} -option space cisco; + +# Vendor specific options - Cisco +option space cisco code width 2 length width 2; option cisco.tftp-servers code 1 = array of ip6-address; option vsio.cisco code 9 = encapsulate cisco; -- cgit v1.2.3