diff --git a/http_src/vue/modal-add-snmp-device.vue b/http_src/vue/modal-add-snmp-device.vue index e0c8e08010dc..557a4cad8558 100644 --- a/http_src/vue/modal-add-snmp-device.vue +++ b/http_src/vue/modal-add-snmp-device.vue @@ -228,7 +228,8 @@ const snmp_auth_protocols = ref([ const snmp_privacy_protocols = ref([ { id: "des", label: "DES" }, - { id: "aes", label: "AES" } + { id: "aes", label: "AES" }, + { id: "aes128", label: "AES128" }, ]); const selected_privacy_protocol = ref(null); diff --git a/httpdocs/dist b/httpdocs/dist index 0f05c8ed3aa9..e497cc4c6749 160000 --- a/httpdocs/dist +++ b/httpdocs/dist @@ -1 +1 @@ -Subproject commit 0f05c8ed3aa9c5029cf7460dc55afb39b234e728 +Subproject commit e497cc4c6749604b68b91b247b4d7eea82967b6b diff --git a/scripts/lua/modules/http_lint.lua b/scripts/lua/modules/http_lint.lua index 741ee76f8b01..37b2aa970267 100644 --- a/scripts/lua/modules/http_lint.lua +++ b/scripts/lua/modules/http_lint.lua @@ -750,7 +750,7 @@ local function validateSnmpAuthProtocol(protocol) end local function validateSnmpPrivacyProtocol(protocol) - local protocols = {"des", "aes"} + local protocols = {"des", "aes", "aes128"} return validateChoice(protocols, protocol) end