Skip to content

Commit

Permalink
Added aes128 to snmp v3
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoBiscosi committed Sep 6, 2024
1 parent 8736642 commit d19f24a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion http_src/vue/modal-add-snmp-device.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion httpdocs/dist
Submodule dist updated 1 files
+2 −2 ntopng.js
2 changes: 1 addition & 1 deletion scripts/lua/modules/http_lint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d19f24a

Please sign in to comment.