feat: added score to enable snmp_server on brocade switch and a working example
All checks were successful
Run Check Script / check (pull_request) Successful in 2m4s

This commit is contained in:
2025-11-14 12:49:00 -05:00
parent 5953bc58f4
commit 93ac89157a
6 changed files with 166 additions and 2 deletions

View File

@@ -216,7 +216,9 @@ impl BrocadeClient for FastIronClient {
"configure terminal".into(),
"snmp-server view ALL 1 included".into(),
"snmp-server group public v3 priv read ALL".into(),
format!("snmp-server user {user_name} groupname public auth md5 {auth} priv des {des}"),
format!(
"snmp-server user {user_name} groupname public auth md5 auth-password {auth} priv des priv-password {des}"
),
"exit".into(),
];
self.shell

View File

@@ -336,7 +336,9 @@ impl BrocadeClient for NetworkOperatingSystemClient {
"configure terminal".into(),
"snmp-server view ALL 1 included".into(),
"snmp-server group public v3 priv read ALL".into(),
format!("snmp-server user {user_name} groupname public auth md5 {auth} priv des {des}"),
format!(
"snmp-server user {user_name} groupname public auth md5 auth-password {auth} priv des priv-password {des}"
),
"exit".into(),
];
self.shell