feat(snmp): add SNMPv3 noAuthNoPriv support with backend test (#6552)

Co-authored-by: dipok-1 <dipokdutta8099@gmail.com>
Co-authored-by: Frank Elsinga <frank@elsinga.de>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
dipok
2026-01-18 10:29:02 +05:30
committed by GitHub
parent b926446a5c
commit 30ee8cec1f
7 changed files with 875 additions and 573 deletions
@@ -0,0 +1,11 @@
exports.up = async function (knex) {
await knex.schema.alterTable("monitor", (table) => {
table.string("snmp_v3_username", 255);
});
};
exports.down = async function (knex) {
await knex.schema.alterTable("monitor", (table) => {
table.dropColumn("snmp_v3_username");
});
};