Updating SNMP from v1 to v3
![](https://secure.gravatar.com/avatar/c6dd8036da5a317ed173c8a41c583e72.jpg?s=120&d=mm&r=g)
Hello,
We have about 80 devices that we are updating from SNMP v1 to v3. I can¹t seem to find a way to do this in bulk either from CLI or from web UI. I can update the devices one by one in the web ui, if I try from the CLI with the add_user.php script it complains about the device being known.
Can someone offer some insight on how I might accomplish this without changing each device individually in the UI?
Thanks
Tim
![](https://secure.gravatar.com/avatar/0fa97865a0e1ab36152b6b2299eedb49.jpg?s=120&d=mm&r=g)
You could change the entries directly in MySQL
UPDATE `devices` SET `snmp_ver` = 'blah', `snmp_thing` = 'foo' WHERE `device_id` IN ('2', '3', '4');
Or something similar.
adam. On 11/11/2015 16:05:09, Timothy Kaufman tkaufman@batblue.com wrote: Hello,
We have about 80 devices that we are updating from SNMP v1 to v3. I can’t seem to find a way to do this in bulk either from CLI or from web UI. I can update the devices one by one in the web ui, if I try from the CLI with the add_user.php script it complains about the device being known.
Can someone offer some insight on how I might accomplish this without changing each device individually in the UI?
Thanks
Tim
participants (2)
-
Adam Armstrong
-
Timothy Kaufman