Работаем на python с протоколом snmp
Есть несколько модулей, которые помогают работать с snmp на python. Гугл в помощь какие. Наиболее популярный: pysnmp. В Ubuntu ставится как:
1 |
pip install pysnmp |
Напишем на Python аналог команды из консоли, которая получает список мак адресов на портах свичей Dlink:
1 |
snmpwalk -v2c -c XFiles 172.18.114.6 1.3.6.1.2.1.17.7.1.2.2.1.2 |
Код:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from pysnmp.entity.rfc3413.oneliner import cmdgen cmdGen = cmdgen.CommandGenerator() errorIndication, errorStatus, errorIndex, varBindTable = cmdGen.nextCmd( cmdgen.CommunityData('XFiles'), cmdgen.UdpTransportTarget(('172.18.114.6', 161)), '1.3.6.1.2.1.17.7.1.2.2.1.2' ) if errorIndication: print(errorIndication) else: if errorStatus: print('%s at %s' % ( errorStatus.prettyPrint(), errorIndex and varBindTable[-1][int(errorIndex)-1] or '?' ) ) else: for varBindTableRow in varBindTable: for name, val in varBindTableRow: print('%s = %s' % (name.prettyPrint(), val.prettyPrint())) |
подскажите как с первой версией snmp работать?
Не пробовал, но гуглится чтото вроде CommunityData(‘public’, mpModel=0),