Find LUN with WWN

Hello all,

I need find in my OS (Sun10) on LUN 1Tb with WWN 6005-08b4-0010-7137-0000-e000-0076-0000 (HBA)

How do it?,

Thanks,

I'm not understanding what you are asking. Are you asking how to mount an FC volume?

Usually if you look at the menu format provides, all detected FC volumes should show up. If not run fcinfo hbaport to see the status of your fibre channel HBA ports:

# format
# fcinfo hba-port

Well if you want to see a lun in OS, then once the lun is zoned to the host, rescann the host using

devfsadm 

to see the new lun and then check either

format 

or

luxadm probe 

to see the lun

This will list all fiber-channel LUNs the OS install can see (bash shell):

for hba in `fcinfo hba-port | grep WWN | awk '{ print $4 }'`; do
    fcinfo remote-port -ls -p $hba;
done