Database scheme for storing SNMP data
I am trying to build a MYSQL DB for storing SNMP MIB information (a small subset of OIDs only).. Is there a DB schema that I may refer to?
开发者_运维技巧Thanks, Neel
I've been thinking about this of late. I would hazard a guess that you just map your MIB types to whatever fits your database e.g. Unsigned32
in the MIB would be UNSIGNED INT
in SQL. Then use the OID as your primary key.
精彩评论