snmp query with python

 snmp query with python

  
  
  
  
  1. #!/usr/bin/env python  
  2. import netsnmp 
  3.  
  4. class Snmp(object): 
  5.     """ A basic SNMP session""" 
  6.     def __init__(self, 
  7.                  oid = "sysDescr"
  8.                  Version = 2
  9.                  DestHost = "localhost"
  10.                  Community = "public"): 
  11.         self.oid = oid 
  12.         self.version   = Version 
  13.         self.destHost  = DestHost 
  14.         self.community = Community 
  15.  
  16.     def query(self): 
  17.         """Creates SNMP query session""" 
  18.         try: 
  19.             result = netsnmp.snmpwalk(self.oid, 
  20.                                   Version   = self.version, 
  21.                                   DestHost  = self.destHost, 
  22.                                   Community = self.community) 
  23.         except Exception,err: 
  24.             print err 
  25.             result = None 
  26.         finally: 
  27.             print  result 
  28. snmp=Snmp() 
  29. snmp.query() 

 

你可能感兴趣的:(python,snnp)