次のIP範囲の50を超える異なるLinuxマシン(BLADEマシン)を備えたシステムがあります
165.23.1.21-165.23.1.64 ( each Linux machine have 4 eth - eth1,2,3,4)
LANSケーブルを介して4つのCiscoスイッチに接続されたシステム
私の目標は、Linuxマシンの各ethがスイッチのどのポートに接続されているかを確認することです
例えば
./my_tool
machine1 results
linux_machine1_eth0 connected to switch_1_port_15
linux_machine1_eth1 connected to switch_2_port_15
linux_machine1_eth2 connected to switch_1_port_16
linux_machine1_eth3 connected to switch_2_port_16
machine2 results
linux_machine2_eth0 connected to switch_1_port_22
linux_machine2_eth1 connected to switch_4_port_7
linux_machine2_eth2 connected to switch_1_port_23
linux_machine2_eth3 connected to switch_4_port_8
.
.
Linuxマシンのどのツールがスイッチのどのポートに接続されているかを特定するのに役立つツールはどれですか?
remark - 1. the tool can be also script that runs on the Linux machines
2. we have access to the switch by telnet
各スイッチに移動してコマンドを発行する必要があると思います
show mac-address-table
提供された情報をメモします。次に、各Linuxマシンに移動して、次のような操作を行います。
echo $(hostname); ifconfig eth0 | grep HWaddr | awk '{print " "$1,$5}'
これで、一致する2つのリストができました。
Net::Telnet::Cisco
とNet::OpenSSH
を使用してPerlスクリプトを記述し、これを自動化することができます。今日時間があれば、ここで提供します。
[〜#〜]更新[〜#〜]
コメントで質問者が尋ねたように:SNMPを介して情報を取得したい場合は、シスコのライブラリに優れたドキュメントがあります: http://www.Cisco.com/en/US/tech/tk648 /tk362/technologies_tech_note09186a00801c9199.shtml
つまり、5つのsnmpwalk
sの出力をマージする必要があります(ここで、crumpy
はスイッチ名です)
snmpwalk -c public crumpy .1.3.6.1.4.1.9.9.46.1.3.1.1.2 # get vlan states
snmpwalk -c public@1 crumpy .1.3.6.1.2.1.17.4.3.1.1 # get mac table
snmpwalk -c public@1 crumpy .1.3.6.1.2.1.17.4.3.1.2 # get the switchport numbers for the vlans (here Vlan1)
snmpwalk -c public@1 crumpy .1.3.6.1.2.1.17.1.4.1.2 # switchport to if number
snmpwalk -c public@1 crumpy .1.3.6.1.2.1.31.1.1.1.1 # get the interface names
ドキュメントから:
6. Link a MAC address to the port on which the address was learned.
* From Step 1, the MAC address is:
17.4.3.1.1.0.0.12.7.172.8 = Hex: 00 00 0C 07 AC 08
* From Step 2, the bridge port tells that the MAC address belongs to bridge port number 13:
17.4.3.1.2.0.0.12.7.172.8 = 13
* From Step 3, the bridge port number 13 has ifIndex number 2:
17.1.4.1.2.13 = 2
* From Step 4, the ifIndex 2 corresponds to port Fast Ethernet 0/1:
ifMIB.ifMIBObjects.ifXTable.ifXEntry.ifName.2 = Fa0/1
[〜#〜] cdp [〜#〜] がスイッチで有効になっている場合は、 cdpr
を試してみてください。これは、サーバー上で実行し、CDPのアナウンスを聞く簡単なプログラムです。
petrus@seth:~$ Sudo cdpr
cdpr - Cisco Discovery Protocol Reporter
Version 2.2.1
Copyright (c) 2002-2006 - MonkeyMental.com
1. eth0 (No description available)
2. wlan0 (No description available)
3. virbr0 (No description available)
<snip>
12. lo (No description available)
Enter the interface number (1-12):1
Using Device: eth0
Waiting for CDP advertisement:
(default config is to transmit CDP packets every 60 seconds)
Device ID
value: switch01
Addresses
value: 192.168.12.15
Port ID
value: 0/15
cdpr
は、GETリクエストを使用して詳細をWebサーバーにアップロードすることもできます。