PDA

View Full Version : snmp values (version and public strings)


riegersteve
14-06-2006, 19:18
is there any way to change these values across the board, instead of each one individually.

riffe
15-06-2006, 08:29
you can change them via mysql. use the zabbix database.

riegersteve
22-09-2006, 00:07
UPDATE `items` SET `snmp_community` = 'change_here',
`lastvalue` = NULL ,
`lastclock` = NULL ,
`prevvalue` = NULL ,
`prevorgvalue` = NULL WHERE CONVERT( `snmp_community` USING utf8 ) = 'public';


will update the snmp public to whatever you put in change_here.