0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

サーバー監視においてIPMIからSNMP Trap送信動作確認手順

Last updated at Posted at 2020-04-23

Supermicroのサーバーを監視する際に、
IPMIの設定からSNMP Trapを飛ばすことが可能。
SNMPマネージャなどが準備できないとき、
SNMP Trap の設定が正しいか、パケットキャプチャリングで中身を確認する手順。

#SNMP Trap の送信先設定
IPMI Web 管理画面より、SNMPTrapの送信先を設定する。

image.png

AlertNO1にセットされる
image.png

#受信側パケットキャプチャリング設定

受信側へログインする。(今回は Linux 環境にて tcpdump を使う)
下記コマンドでキャプチャリング開始。

$ sudo tcpdump -n -s 0 -i ens32 -w /tmp/dump.log host (サーバーIPアドレス)

#テスト用 SNMP Trap 送信
サーバー側のIPMI Web 画面から [Send Test Alert] にてテストパケットを飛ばす
image.png

#受信した SNMPTrap 内容の確認
tcpdump で生成した、dump.log をwireshark にて確認する。
(SNMPバージョンやCommunity名などが確認できる)
image.png

以上、SNMPManagerなどが準備できないときに、問題なく送信できているか確認することができました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?