16

Pythonを使用してfdbテーブルからmacとvlanの値を取得するには?
bash snmpwalk では正常に動作します:

snmpwalk -v2c -c pub 192.168.0.100 1.3.6.1.2.1.17.7.1.2.2.1.2

pysnmp:

import os, sys
import socket
import random
from struct import pack, unpack
from datetime import datetime as dt

from pysnmp.entity.rfc3413.oneliner import cmdgen
from pysnmp.proto.rfc1902 import Integer, IpAddress, OctetString

ip='192.168.0.100'
community='pub'
value=(1,3,6,1,2,1,17,7,1,2,2,1,2)

generator = cmdgen.CommandGenerator()
comm_data = cmdgen.CommunityData('server', community, 1) # 1 means version SNMP v2c
transport = cmdgen.UdpTransportTarget((ip, 161))

real_fun = getattr(generator, 'getCmd')
res = (errorIndication, errorStatus, errorIndex, varBinds)\
    = real_fun(comm_data, transport, value)

if not errorIndication is None  or errorStatus is True:
       print "Error: %s %s %s %s" % res
else:
       print "%s" % varBinds

出力: [(ObjectName(1.3.6.1.2.1.17.7.1.2.2.1.2), NoSuchInstance(''))]

import netsnmp

def getmac():
    oid = netsnmp.VarList(netsnmp.Varbind('.1.3.6.1.2.1.17.7.1.2.2.1.2'))
    res = netsnmp.snmpgetbulk(oid, Version = 2, DestHost='192.168.0.100',
                           Community='pub')
    return res

print getmac()

出力: ('27', '27', '25', '27', '27', '27', '24', '27', '25', '18', '4', '27' , '25', '27', '27', '25', '27', '27', '27', '27', '27', '27', '27', '27', ' 27'、'27'、'27'、'27'、'27'、'27'、'27'、'27'、'23'、'25'、'27'、'27'、'27' , '25', '27', '25', '27', '27', '25', '27', '27', '27', '27', '27', '27', ' 27'、'27'、'27'、'25'、'27'、'27'、'27'、'27'、'27'、'27'、'27'、'27', '27', '27', '27', '27', '25', '25', '25', '7', '27', '27', '9', '25 '、'27'、'20'、'19'、'27'、'27'、'27'、'27'、'27'、'27'、'27'、'27'、'27'、 '27', '27', '27', '27', '27', '11', '25', '27', '27', '27', '27', '27', '27 '、'27'、'27'、'27'、'27'、'27'、'27'、'27'、'27'、'25'、'27'、'27'、'27'、 '27', '27', '27', '27', '27', '27', '2', '27', '5', '27', '0','27', '27', '27', '27', '27')

最初のスクリプト (pysnmp) は NoSuchInstance を返します。2 番目のスクリプト (netsnmp) はポートのリストを返しますが、mac と vlan はありません。どうしたの?

4

1 に答える 1

15

pysnmpの例では、GETNEXT(snmpwalk)ではなくSNMPGET(snmpget)を実行しています。変更した場合、

real_fun = getattr(generator, 'getCmd')

real_fun = getattr(generator, 'nextCmd')

有用な結果が見られるようになります。

snmpwalkとpythonnet-snmpバインディングの結果の間の結果に見られる不一致については、次のようsnmpwalksnmpbulkget動作します。snmpbulkgetと同じオプションを使用してコマンドラインからを実行すると、Pythonの例snmpwalkと同じ結果が得られます。net-snmp

Pythonのnet-snmp例で次の行を更新すると、

res = netsnmp.snmpgetbulk(oid, Version=2, DestHost='192.168.0.100', 
                          Community='pub')

res = netsnmp.snmpwalk(oid, Version=2, DestHost='192.168.0.100', 
                       Community='pub')

次に、コマンドラインでnet-snmp実行したときと同じ結果のリストをPythonの例から取得する必要があります。snmpwalk

于 2011-12-22T16:10:14.757 に答える