2

私はデータセンターで働いており、すべてのデバイスをマップし、そこにあるものと請求されているものを教えてくれる PHP ツールを作成中です。

最初に、Mac とその IP の膨大なリストを両方のコアから一時テーブルに引き出します。次に、すべてのラック* をループし、mac が属しているポートを見つけようとします。黄金の命令 (頭上の電球を合図する) がないため、次のことを行う必要があります。

  1. ポートをキーとし、ifindex を値とするマルチアレイを作成します。
  2. ifindex をブリッジ ID に置き換えます。
  3. ブリッジ ID を MAC ハッシュに置き換えます。
  4. Mac ハッシュを実際の Mac に置き換えます

最後に、mac、ips、およびポートを取得し、マスター テーブルに入力します。

問題はステップ1です。1.3.6.1.2.1.31.1.1.1.1 はほとんどのスイッチで動作しますが、いくつかのファウンドリは動作しません。1.3.6.1.4.1.1991.1.1.3.3.1.1.38 は、私が探しているものにちょっと近づいていますが、完全に快適ではありません。特定のデバイス モデルは [foundry] > [products] > [registration] の下で見つけることができましたが、そのフォルダーの下に MIB はありません。だから私の質問は:

  1. ポートと MAC を返すファウンドリ固有の文字列はありますか? ifindexes も機能します。
  2. デバイス固有の MIB (enterprises.foundry.products.registration.snFWSXFamily) を使用するにはどうすればよいですか?

これに関する方向性は素晴らしいでしょう。-ジャスティン

*= ラック モデル: cisco 2900xl、ファウンドリ FI4802 + バリアント

4

3 に答える 3

2

これを行うことができます(HP Procurveでテスト済み):

Linux サーバーから:

$ snmpwalk -v 1 -c public xxx.xxx.xxx.xxx 1.3.6.1.2.1.17.4.3.1.2 | grep "整数: 11"

(ポート番号 11)

戻ります :

SNMPv2-SMI::mib-2.17.4.3.1.2.44.118.138.64.143.95 = 整数: 11 SNMPv2-SMI::mib-2.17.4.3.1.2.56.170.60.108.174.57 = 整数: 11 SNMPv2-SMI::mib -2.17.4.3.1.2.104.181.153.172.54.237 = 整数: 11 SNMPv2-SMI::mib-2.17.4.3.1.2.120.172.192.143.226.236 = 整数: 11 SNMPv2-SMI::mib-2.17.4.3.1.2 .124.195.161.20.109.76 = 整数: 11 SNMPv2-SMI::mib-2.17.4.3.1.2。152.75.225.59.127.180 = 整数: 11

次に、これを実行して、接続されている Mac アドレスを見つけることができます。

$ snmpwalk -v 1 -c public xxx.xxx.xxx.xxx 1.3.6.1.2.1.17.4.3.1.1 | grep "152.75.225.59.127.180"

戻り値の MAC アドレス:

SNMPv2-SMI::mib-2.17.4.3.1.1.152.75.225.59.127.180 = Hex-STRING: 98 4B E1 3B 7F B4

これを行うためにscript.shを作成できます...

于 2013-04-24T15:49:03.920 に答える
0

Windows Server からプログラムでこれを実行したい場合は、SnmpSharpNet ライブラリを使用して同じことを行うことができます。OID 1.3.6.1.2.1.17.7.1.2.2.1.2.1 を使用して、特定の Dell スイッチのすべての MAC アドレスとポートのリストを作成する例を次に示します。

    using SnmpSharpNet;

    List<KeyValuePair<string, string>> portList = new List<KeyValuePair<string, string>>();

    IPAddress ip = IPAddress.Parse("192.168.0.2");
    SnmpWalk(ip, "snmpcommunity", "1.3.6.1.2.1.17.7.1.2.2.1.2.1", "1");

    //SNMPWALK the ports on a switch or stack of switches. Ports will be labeled SwitchNum/Stack Number/Port Numbers.
    private void SnmpWalk(IPAddress ip, string snmpCommunity, string oid, string switchNum)
    {
        UdpTarget target = new UdpTarget(ip);

        // SNMP community name
        OctetString community = new OctetString(snmpCommunity);
        // Define agent parameters class
        AgentParameters param = new AgentParameters(community);
        // Set SNMP version to 1
        param.Version = SnmpVersion.Ver1;


        // Define Oid that is the root of the MIB tree you wish to retrieve
        Oid rootOid = new Oid(oid);

        // This Oid represents last Oid returned by the SNMP agent
        Oid lastOid = (Oid)rootOid.Clone();

        // Pdu class used for all requests
        Pdu pdu = new Pdu(PduType.GetNext);

        // Loop through results
        while (lastOid != null)
        {
            // When Pdu class is first constructed, RequestId is set to a random value
            // that needs to be incremented on subsequent requests made using the
            // same instance of the Pdu class.
            if (pdu.RequestId != 0)
            {
                pdu.RequestId += 1;
            }
            // Clear Oids from the Pdu class.
            pdu.VbList.Clear();
            // Initialize request PDU with the last retrieved Oid
            pdu.VbList.Add(lastOid);
            // Make SNMP request
            SnmpV1Packet result = (SnmpV1Packet)target.Request(pdu, param);
            // You should catch exceptions in the Request if using in real application.

            // If result is null then agent didn't reply or we couldn't parse the reply.
            if (result != null)
            {
                // ErrorStatus other then 0 is an error returned by 
                // the Agent - see SnmpConstants for error definitions
                if (result.Pdu.ErrorStatus != 0)
                {
                    // agent reported an error with the request
                    Console.WriteLine("Error in SNMP reply. Error {0} index {1}",
                        result.Pdu.ErrorStatus,
                        result.Pdu.ErrorIndex);
                    lastOid = null;
                    break;
                }
                else
                {
                    // Walk through returned variable bindings
                    foreach (Vb v in result.Pdu.VbList)
                    {
                        // Check that retrieved Oid is "child" of the root OID
                        if (rootOid.IsRootOf(v.Oid))
                        {
                            //Convert OID to MAC
                            string[] macs = v.Oid.ToString().Split('.');
                            string mac = "";
                            int counter = 0;
                            foreach (string chunk in macs)
                            {
                                if (counter >= macs.Length - 6)
                                {
                                    mac += string.Format("{0:X2}", int.Parse(chunk));
                                }
                                counter += 1;
                            }

                            //Assumes a 48 port switch (52 actual). You need to know these values to correctly iterate through a stack of switches.
                            int dellSwitch = 1 + int.Parse(v.Value.ToString()) / 52;
                            int port = int.Parse(v.Value.ToString()) - (52 * (dellSwitch - 1));
                            KeyValuePair<string, string> Port = new KeyValuePair<string, string>(mac, switchNum + "/" + dellSwitch.ToString() + "/" + port.ToString());
                            portList.Add(Port);

                            //Exit Loop
                            lastOid = v.Oid;
                        }
                        else
                        {
                            //End of the requested MIB tree. Set lastOid to null and exit loop
                            lastOid = null;
                        }
                    }
                }
            }
            else
            {
                Console.WriteLine("No response received from SNMP agent.");
            }
        }
        target.Close();
    }

この例を利用して、この情報をホスト名に解決するプロジェクト全体がここにあります

于 2015-11-24T22:09:57.227 に答える
0

スイッチから MAC やその他の情報を検出する必要があるときは、「snmpwalk」コマンドと「snmpbulkwalk」コマンドを使用して SNMP データの内容を調べました。

例えば:

snmpbulkwalk -v2c 192.168.30.40 -c public 1.3.6.1.2.1.31.1.1.1.1

出力:

IF-MIB::ifName.1 = STRING: Gi0/1
IF-MIB::ifName.2 = STRING: Gi0/2
IF-MIB::ifName.3 = STRING: Gi0/3
IF-MIB::ifName.4 = STRING: Gi0/4
IF-MIB::ifName.5 = STRING: Gi0/5
IF-MIB::ifName.6 = STRING: Gi0/6
IF-MIB::ifName.7 = STRING: Gi0/7
IF-MIB::ifName.8 = STRING: Gi0/8
IF-MIB::ifName.9 = STRING: Gi0/9
IF-MIB::ifName.10 = STRING: Gi0/10
IF-MIB::ifName.11 = STRING: Gi0/11
IF-MIB::ifName.12 = STRING: Gi0/12
IF-MIB::ifName.13 = STRING: Nu0
IF-MIB::ifName.14 = STRING: Vl1
IF-MIB::ifName.15 = STRING: Vl2
IF-MIB::ifName.16 = STRING: Vl416

snmpbulkwalk -v2c 192.168.30.40 -c public 1.3.6.1.2

お気に入りのMACなどを探すことができるたくさんの情報を出力します

于 2010-05-28T18:13:20.627 に答える