ファイバー チャネル (FC) HBA の WWN とそのステータス (オンライン/オフライン) を確認するためのコマンドがいくつかあります。この投稿では、最も一般的に使用されるいくつかの方法について説明します。
方法 1
システムにインストールされている HBA カードを見つけるには:
# lspci -nn | grep -i hba 07:00.0 Fibre Channel [0c04]: QLogic Corp. ISP2532-based 8Gb Fibre Channel to PCI Express HBA [1077:2532] (rev 02) 07:00.1 Fibre Channel [0c04]: QLogic Corp. ISP2532-based 8Gb Fibre Channel to PCI Express HBA [1077:2532] (rev 02)
利用可能な HBA ポートを確認するには:
# ls -l /sys/class/fc_host total 0 drwxr-xr-x 3 root root 0 Feb 3 2015 host2 drwxr-xr-x 3 root root 0 Feb 3 2015 host3
HBA ポートの状態 (オンライン/オフライン) を確認するには:
# more /sys/class/fc_host/host?/port_state :::::::::::::: /sys/class/fc_host/host2/port_state :::::::::::::: Online :::::::::::::: /sys/class/fc_host/host3/port_state :::::::::::::: Online
上記のポートの WWN 番号を見つけるには:
# more /sys/class/fc_host/host?/port_name :::::::::::::: /sys/class/fc_host/host2/port_name :::::::::::::: 0x500143802426baf4 :::::::::::::: /sys/class/fc_host/host3/port_name :::::::::::::: 0x500143802426baf6
方法 2 :systool を使用する
HBA に関する情報を見つけるためのもう 1 つの便利なコマンドは、systool です。 .まだインストールしていない場合は、sysfsutils をインストールする必要がある場合があります パッケージ。
# yum install sysfsutils
利用可能な HBA ポートを確認するには:
# systool -c fc_host Class = "fc_host" Class Device = "host2" Device = "host2" Class Device = "host3" Device = "host3"
HBA ポートの WWN を見つけるには:
# systool -c fc_host -v | grep port_name port_name = "0x500143802426baf4" port_name = "0x500143802426baf6"
HBA ポートの状態 (オンライン/オフライン) を確認するには:
# systool -c fc_host -v | grep port_state port_state = "Online" port_state = "Online"Solaris で HBA カード/ポートと WWN を識別する方法