diff --git a/data/templates/dhcp-server/kea-dhcp4.conf.j2 b/data/templates/dhcp-server/kea-dhcp4.conf.j2
index bf37b94f6..29cf5e082 100644
--- a/data/templates/dhcp-server/kea-dhcp4.conf.j2
+++ b/data/templates/dhcp-server/kea-dhcp4.conf.j2
@@ -1,80 +1,80 @@
 {
     "Dhcp4": {
         "interfaces-config": {
 {% if listen_address is vyos_defined %}
             "interfaces": {{ listen_address | kea_address_json }},
             "dhcp-socket-type": "udp",
 {% elif listen_interface is vyos_defined %}
             "interfaces": {{ listen_interface | tojson }},
             "dhcp-socket-type": "raw",
 {% else %}
             "interfaces": [ "*" ],
             "dhcp-socket-type": "raw",
 {% endif %}
             "service-sockets-max-retries": 5,
             "service-sockets-retry-wait-time": 5000
         },
         "control-socket": {
             "socket-type": "unix",
             "socket-name": "/run/kea/dhcp4-ctrl-socket"
         },
         "lease-database": {
             "type": "memfile",
             "persist": true,
             "name": "{{ lease_file }}"
         },
         "option-def": [
             {
                 "name": "rfc3442-static-route",
                 "code": 121,
                 "type": "record",
                 "array": true,
-                "record-types": "uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8"
+                "record-types": "uint8,uint8,uint8,uint8,uint8,uint8,uint8"
             },
             {
                 "name": "windows-static-route",
                 "code": 249,
                 "type": "record",
                 "array": true,
-                "record-types": "uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8"
+                "record-types": "uint8,uint8,uint8,uint8,uint8,uint8,uint8"
             },
             {
                 "name": "wpad-url",
                 "code": 252,
                 "type": "string"
             },
             {
                 "name": "unifi-controller",
                 "code": 1,
                 "type": "ipv4-address",
                 "space": "ubnt"
             }
         ],
         "hooks-libraries": [
 {% if high_availability is vyos_defined %}
             {
                 "library": "/usr/lib/{{ machine }}-linux-gnu/kea/hooks/libdhcp_ha.so",
                 "parameters": {
                     "high-availability": [{{ high_availability | kea_high_availability_json }}]
                 }
             },
 {% endif %}
 {% if hostfile_update is vyos_defined %}
             {
                 "library": "/usr/lib/{{ machine }}-linux-gnu/kea/hooks/libdhcp_run_script.so",
                 "parameters": {
                     "name": "/usr/libexec/vyos/system/on-dhcp-event.sh",
                     "sync": false
                 }
             },
 {% endif %}
             {
                 "library": "/usr/lib/{{ machine }}-linux-gnu/kea/hooks/libdhcp_lease_cmds.so",
                 "parameters": {}
             }
         ],
 {% if shared_network_name is vyos_defined %}
         "shared-networks": {{ shared_network_name | kea_shared_network_json }}
 {% endif %}
     }
 }