Hi,<br><br>On 2.6 kernels, I always used to issue the commands directly:<br><br>1) Find what's the host number for the HBA:<br><br>ls /sys/class/fc_host/<br><br>(You'll have something like host1 or host2, I'll refer to them as host$NUMBER from now on)
<br><br>2) Ask the HBA to issue a LIP signal to rescan the FC bus:<br><br>echo 1 >/sys/class/fc_host/host$NUMBER/issue_lip<br><br>3) Wait around 15 seconds for the LIP command to have effect<br><br>4) Ask Linux to rescan the SCSI devices on that HBA:
<br><br>echo - - - >/sys/class/scsi_host/host$NUMBER/scan<br><br>The wildcards "- - -" mean to look at every channel, every target, every lun.<br><br>That's it. You can look for log messages at "dmesg" to see if it's working, and you can look at /proc/scsi/scsi to see if the devices are there.
<br><br>These commands should work with all HBAs, at least I know for sure they work with QLogic's and Emulex'es.<br><br>Hope it helps,<br>Filipe<br><br>