# How to check if my AIX server has Dual HBA's?

**URL:** https://community.unix.com/t/how-to-check-if-my-aix-server-has-dual-hbas/291078
**Category:** AIX
**Created:** [July 6, 2011, 7:12pm UTC](https://community.unix.com/t/how-to-check-if-my-aix-server-has-dual-hbas/291078 "2011-07-06T19:12:46Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![300zxmuro](https://community.unix.com/user_avatar/community.unix.com/300zxmuro/32/1256_2.png) [@300zxmuro](https://community.unix.com/u/300zxmuro)
#### Post date: [July 6, 2011, 7:12pm UTC](https://community.unix.com/t/how-to-check-if-my-aix-server-has-dual-hbas/291078/1 "2011-07-06T19:12:46Z")

</div>

Thanks I need to know if my server has dual HBA and if multipath has been configured. For Multipath I ran lspath and it shows all drives and if MPIO is configured for that drive.

Thanks for any input.

---

<div class="post-metadata">

### Author: ![lo-lp-kl](https://community.unix.com/letter_avatar/lo-lp-kl/32/5_5575768a8748004e209b776fc1b2916d.png) [@lo-lp-kl](https://community.unix.com/u/lo-lp-kl)
#### Post date: [July 7, 2011, 1:05pm UTC](https://community.unix.com/t/how-to-check-if-my-aix-server-has-dual-hbas/291078/2 "2011-07-07T13:05:46Z")

</div>

You can type this command

lsdev -Cc adapter

And you will see a list of devices

Then you can type lscfg -vl fcsX for every hba that has in the list.

To see the kind of multipath on your disks type lsdev -Cc disk

I hope this helps you

Greetings

---

<div class="post-metadata">

### Author: ![kah00na](https://community.unix.com/user_avatar/community.unix.com/kah00na/32/578_2.png) [@kah00na](https://community.unix.com/u/kah00na)
#### Post date: [July 14, 2011, 4:49pm UTC](https://community.unix.com/t/how-to-check-if-my-aix-server-has-dual-hbas/291078/3 "2011-07-14T16:49:01Z")

</div>

You could look at the description of the "lsdev" output as well. Mine say "Dual Port"

```nohighlight
hostname:/:# lsdev -Cc adapter | grep fcs
fcs0 Available 01-00 8Gb PCI Express Dual Port FC Adapter (df1000d222122b15)
fcs1 Available 01-01 8Gb PCI Express Dual Port FC Adapter (df1000d222122b16)
hostname:/:#

```

You can also see that only the last "T#" is different in the "Hardware Location Code" as shown by the "lscfg" command indicating that they are both located in the same physical location which also points to a dual port adapter.:

```nohighlight
hostname:/:# lscfg -vl fcs0 | grep "Hardware Location Code"
        Hardware Location Code......U55AA.001.XXXX2X5-P1-C4-T1
hostname:/:# lscfg -vl fcs1 | grep "Hardware Location Code"
        Hardware Location Code......U55AA.001.XXXX2X5-P1-C4-T2
hostname:/:#

```
