router / switch wizard SNMPv3
Posted: Wed May 14, 2014 1:41 pm
Hi,
the problem I mentioned in 2014 beta version still exists in final version.
I try to query a switch with SNMPv3, privacy: AES-128, authentication: SHA.
The bandwidth is working fine but there is a little bug in checking the interface state.
The following command is generated by your wizard:
This would use DES as privacy encryption method as it's the default. As I mentioned, we are using AES, so it has to look like this:
This should be really easy to fix.
When I change the command it works, XI says:
Here you see the next small problem. In an old version of your script something like the following output is shown:
I wish to work again. It really should show the 'real' ifindex and not the SNMP ifindex. You can do that with another very simple SNMP query like in pseudocode:
As I mentioned, you already got that in 2012 version. So bring it back, please.
Thanks.
the problem I mentioned in 2014 beta version still exists in final version.
I try to query a switch with SNMPv3, privacy: AES-128, authentication: SHA.
The bandwidth is working fine but there is a little bug in checking the interface state.
The following command is generated by your wizard:
Code: Select all
check_xi_service_ifoperstatusnag!10124!-v3 -u manager -A df3Uvo0QfaA1bP3n -X 1qv6hJ3C9Q1PvzR8 -a SHA -l authPriv
Code: Select all
check_xi_service_ifoperstatusnag!10124!-v3 -u manager -x AES -A df3Uvo0QfaA1bP3n -X 1qv6hJ3C9Q1PvzR8 -a SHA -l authPriv
When I change the command it works, XI says:
Code: Select all
OK - Interface 10124 is up.Code: Select all
OK - Gig0/24 is up.Code: Select all
ifname = snmpget IF-MIB::ifDescr.ifindex
print OK - ifname is up.
Thanks.