Ad Widget

Collapse

snmp values (version and public strings)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • riegersteve
    Member
    • Oct 2004
    • 68

    #1

    snmp values (version and public strings)

    is there any way to change these values across the board, instead of each one individually.
  • riffe
    Junior Member
    • May 2006
    • 18

    #2
    you can change them via mysql. use the zabbix database.

    Comment

    • riegersteve
      Member
      • Oct 2004
      • 68

      #3
      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.

      Comment

      Working...