# # The SNMP table is used to store information about SNMP configurations. # # _rowid is a positive integer, unique within the SNMP table, that # is used to identify a specific row in the table. # # created is the date that this table entry was created # # modified is the date that this table entry was last modified # # name is the name assigned to this SNMP configuration # # version is the version of the SNMP protocol to use when issuing # queries using this SNMP configuration. # # port is the port number to attempt to connect to when issuing # SNMP queries using this configuration. # # timeout is the number of seconds to wait before we assume that the # target interface has timed out. # # retries is the number of times to re-issue the SNMP query before we # assume that the interface has failed. # # read_c is the read community string to use when issuing SNMP queries # # write_c is the write community string to use when issuing SNMP queries # # tags is the application tag storage for this object. # create TABLE snmp ( _rowid int not null, created char(20), modified char(20), name char(16), version smallint, port smallint, retries smallint, timeout smallint, read_c char(127), write_c char(127), tags char(255), primary key (_rowid) );