列出 Solaris 11 操作系统上的 HBA 信息

列出 Solaris 11 操作系统上的 HBA 信息

实际上我想知道如何查看使用 HBA WWN 提供的 Luns。

我想要的视图是这样的:

LUN(在服务器端,如 /dev/rdsk/...)| WWN(来自服务器)|路径(将我的 hba wwn 从服务器连接到存储的 hba wwn 的路径)

答案1

fcinfo可能会提供您需要的信息。

例子:

# fcinfo remote-port -s -p 10000000c993b528
Remote Port WWN: 5006016239a01db6
        Active FC4 Types: SCSI
        SCSI Target: yes
        Node WWN: 50060160b9a01db6
        LUN: 0
          Vendor: DGC
          Product: LUNZ
          OS Device Name: /dev/rdsk/c2t5006016239A01DB6d0s2
        LUN: 1
          Vendor: DGC
          Product: RAID 5
          OS Device Name: /dev/rdsk/c3t60060160545D1C00C0369BCD3361DC11d0s2
[etc]

更多示例位于https://www.thegeekdiary.com/how-to-identify-the-hba-cardsports-and-wwn-in-solaris/

答案2

使用以下命令发现所有 HBA

fcinfo hba-port

过滤 wwid

fcinfo hba-port | awk '/HBA Port WWN/ { print $4 ; } ' | while read wwid
do
  echo fcinfo remote-port -sl -p $wwid
  fcinfo remote-port -sl -p $wwid
done

这将为您提供连接到本地 HBA 的设备。

配置切换区域使用Remote Port WWN:字段。 (请注意,您只能在分区后才能看到此信息)

就我而言,本地和远程 HBA 是

## local
HBA Port WWN: 2100001b329ca67b
        Node WWN: 2000001b329ca67b
HBA Port WWN: 2101001b32bca67b
        Node WWN: 2001001b32bca67b
HBA Port WWN: 2100001b329b4169
        Node WWN: 2000001b329b4169
HBA Port WWN: 2101001b32bb4169
        Node WWN: 2001001b32bb4169

## disk (HUS)
Remote Port WWN: 50060e80103efe51
        Node WWN: 50060e80103efe51
Remote Port WWN: 50060e80103efe59
        Node WWN: 50060e80103efe59

## Tape
Remote Port WWN: 500104f000cd769d
        Node WWN: 500104f000cd769c
Remote Port WWN: 500104f000cd76a3
        Node WWN: 500104f000cd76a2
Remote Port WWN: 500104f000cd768b
        Node WWN: 500104f000cd768a
Remote Port WWN: 500104f000cd7691
        Node WWN: 500104f000cd7690

## disk
Remote Port WWN: 50060e80103efe50
        Node WWN: 50060e80103efe50
Remote Port WWN: 50060e80103efe58
        Node WWN: 50060e80103efe58

### tape
Remote Port WWN: 500104f000cd769a
        Node WWN: 500104f000cd7699
Remote Port WWN: 500104f000cd76a0
        Node WWN: 500104f000cd769f
Remote Port WWN: 500104f000cd7688
        Node WWN: 500104f000cd7687
Remote Port WWN: 500104f000cd768e
        Node WWN: 500104f000cd768d

注意端口和节点是不同的,端口用于分区。

相关内容