- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to get LUNPATH of a given Legacy cXtYdZ in HP-...
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2008 03:54 PM
12-31-2008 03:54 PM
How to get LUNPATH of a given Legacy cXtYdZ in HP-UX 11.31
scsimgr lun_path -D /dev/disk/12345
And I can get the HW Path in the form:
Hardware path = 0/6/0/0/0/0/0/0/0/1.0x50060e8000c413f7.0x405d000 000000000
How can I get the LUN/HW Path for a cXtYdZ?
Traditional IOSCAN's HW PAth differ:
# ioscan -kf /dev/rdsk/c126t11d5
Class I H/W Path Driver S/W State H/W Type Description
==================================================================
disk 5224 0/6/0/0/0/0/0/0/0/1.6.217.0.0.11.5 sdisk CLAIMED DEVICE HITACHI DF600F
I am basically wanting to find out the HW Path as argument to scsimgr to set the preferred path to a HW PATh format that it accepts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2008 04:26 PM
12-31-2008 04:26 PM
Re: How to get LUNPATH of a given Legacy cXtYdZ in HP-UX 11.31
#ioscan -m hwpath
this will show the LUN HW path , Lunpath Hwpath and the legacy HW path.
#ioscan -m dsf
this will show the mappings of the Persistent DSFs to the legacy DSFs.
#ioscan -m lun /dev/disk/disk45
this shall show all the LUNpath hardware path assocaited with a DSF that u will specify.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2008 04:51 PM
12-31-2008 04:51 PM
Re: How to get LUNPATH of a given Legacy cXtYdZ in HP-UX 11.31
with the scsimgr command u can use the -H option followedby the HW_Path for passing a HW_PAth to the scsimgr command as an argument.
the hardware path that u specify with the -H option can be a Legacy HW path.
regards
Sujit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2008 10:41 PM
12-31-2008 10:41 PM
Re: How to get LUNPATH of a given Legacy cXtYdZ in HP-UX 11.31
Problem: Find LUN HW Path for a given Legacy Dev cXtYdZ
Solution:
1.) Get Legacy HW Path of given cXtYdZ:
[ /root/HDS/TWEAK ]
root@goofy # ioscan -kf /dev/rdsk/c126t11d5
Class I H/W Path Driver S/W State H/W Type Description
==================================================================
disk 5224 0/6/0/0/0/0/0/0/0/1.6.217.0.0.11.5 sdisk CLAIMED DEVICE HITACHI DF600F
2) Use "ioscan -m hwpath" to get the new LUN HW Path that can be used as argument to Path Preferencing in SCSIMGR:
[ /root/HDS/TWEAK ]
root@goofy # ioscan -m hwpath -H 0/6/0/0/0/0/0/0/0/1.6.217.0.0.11.5
Lun H/W Path Lunpath H/W Path Legacy H/W Path
====================================================================
64000/0xfa00/0x580
0/6/0/0/0/0/0/0/0/1.0x50060e8000c413f7.0x405d000000000000 0/6/0/0/0/0/0/0/0/1.6.217.0.0.11.5
Bingo!
Legacy HW Path for c126t11d5 is:
0/6/0/0/0/0/0/0/0/1.6.217.0.0.11.5
And its LUN HW Path is:
0/6/0/0/0/0/0/0/0/1.0x50060e8000c413f7.0x405d000000000000
Note -- you need this process to script Path Preferencing that is required for partially supported Active Passive Arrays whose vendors are slow in providing compliant ALUA modules to HP-UX...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2008 11:02 PM
12-31-2008 11:02 PM
Re: How to get LUNPATH of a given Legacy cXtYdZ in HP-UX 11.31
sujit