Before you do the insf, do
# ioscan -fnCdisk > /tmp/ios1
then do insf
# insf -Cdisk
then another ioscan
# ioscan -fnCdisk > /tmp/ios2
Now, you can diff the listings.
# diff /tmp/ios1 /tmp/ios2
That should show you the added disks.
for converting HW address to LUN number,
see the thread
http://h30499.www3.hp.com/t5/System-Administration/LUN-details-with-mount-point/m-p/4780405#M390941
Basically:
To verify the devices to LUN numbers the storage admin presented @ server, use formula:
Taking the last 3 octets of the disk HW address,
...m.n.p
you can calculate the LUN from the array by:
LUN= $(( 128*m + 8*n + p ))
For example,
if the LUN presented is LUN 110,
then 110 = $(( 128*0 + 8*13 + 6 ))
then the HW path FOR EACH san path to the disk will be like :
disk ... 0//....0.13.6
I.e., all the paths' HW addresses will end in 0.13.6
So you could search the listing for
^disk.*0\.13\.6
and find each associated /dev/dsk/cNtTdL .
bv