- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Import SNMPv3 credentials for multiple devices
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2021 03:14 PM
I'm trying to import SNMPv3 credentials similar to the way SSH credentials are imported in this article: https://support.infoblox.com/s/article/3636. Any help is appreciated on the exact format of the file.
Thanks.
Solved! Go to Solution.
Re: Import SNMPv3 credentials for multiple devices
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2021 09:10 AM
I can't quickly find a way to do that, but do you really need to import creds per device? Is SNMP guessing not sufficient?
If you're trying to update existing/working creds, you can either:
1) Add the new ones to the global list with a higher priority and then via the NetMRI CLI - "reset snmp". That forces guessing for all devices.
2) Use a perl or python script that executes on the devices of interest. Via the API, it sets the values for each device in the DB and initiates a Discover Now for each one. I used this method when migrating from v2 to v3 and also to update the v3 ones.
Re: Import SNMPv3 credentials for multiple devices
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2021 12:42 PM - edited 09-13-2022 08:18 AM
I had actually found this script on the site. Unfortunately, I can't find the original posting. And I can't attach it here, so here is the text of the perl script. This seems to work well.
###########################################################################
## Export of Script: Change SNMP version or credentials
## Script-Level: 1
## Script-Category:
###########################################################################
# BEGIN-INTERNAL-SCRIPT-BLOCK
# Script:
# Change SNMP version or credentials
# Script-Description:
# 'Changes device monitoring from v2 to v3 or vice versa. Can also be used to change SNMP credentials.
Note: This only changes parameters within the NetMRI device viewer, not on the devices themselves!!!'
# END-INTERNAL-SCRIPT-BLOCK
#
# This script can be used to change the SNMP version/credentials that
# Network Automation uses to communicate with an already discovered
# device (i.e., the "guessed" credentials for that device). This script
# does no validation of user input whatsoever, so be careful.
#
# NOTICE: This script is provided on an "as-is" basis, and is intended to
# serve as an example illustrating how to accomplish certain tasks
# using the NetMRI API. This script is not part of the NetMRI product,
# and is not supported by Infoblox Technical Support.
#
# BEGIN-SCRIPT-BLOCK
#
# Script-Filter:
# true
#
# Script-Login:
# false
#
# Script-Variables:
# $snmp_version integer 3
# $snmp2_community string 'secret'
# $snmp3_user string 'monitoring'
# $snmp3_auth_proto string 'md5'
# $snmp3_auth_pwd string '***************'
# END-SCRIPT-BLOCK
use NetMRI_Easy;
my $easy = new NetMRI_Easy;
if ($snmp_version eq '3') {
print "\nConfiguring SNMPv3 credentials for this device.\n\n";
$easy->broker->discovery_statuses->update_snmp({
DeviceID => $device_id,
SNMPVersion => $snmp_version,
SNMPRead => $snmp3_user,
SNMPAuthProto => $snmp3_auth_proto,
SNMPAuthPW => $snmp3_auth_pwd,
});
}
if ($snmp_version eq '2') {
print "\nConfiguring SNMPv2 credentials for this device.\n\n";
$easy->broker->discovery_statuses->update_snmp({
DeviceID => $device_id,
SNMPVersion => $snmp_version,
SNMPRead => $snmp2_community
});
}
print "\nDone.\n\n";