World Wide Name (FLEX)


 
Thread Tools Search this Thread
Operating Systems AIX World Wide Name (FLEX)
# 1  
Old 03-27-2014
RedHat World Wide Name (FLEX)

Does anyone know how to find the Worl Wide Name (WWN) on a IBM flex system ?
# 2  
Old 03-27-2014
Yup, easy.
Where are you looking - where can you look?
FSM / HMC / OS / LPAR?
What are you after and where are you allowed to look?
Sorry but you cannot just come here and ask "how long is a piece of string" because all you'll get is "twice as long as half its length"
;0)
What have you tried?
Why do you need to know?
What, exactly, are you after?
Any host OS may have several WWNs....
Please take the time to explain what you know about the system, why you are asking and what you have tried so far, or you are not going to get much help.
HTH
# 3  
Old 03-27-2014
Finding WWN's

Code:
for HBA in $(lsdev -Cc adapter | grep fcs | awk '{print $1}')
do
     HOST=$(uname -n)
     WWN=$(lscfg -vl $HBA | grep Network)
     echo $HOST $HBA $WWN
done

Moderator's Comments:
Mod Comment Thanks for trying to help, but please start using code tags, check your PMs.

Last edited by zaxxon; 03-28-2014 at 04:28 AM.. Reason: code tags
# 4  
Old 03-28-2014
Great answer akitafan, if AIX is installed, the user has access to the shell, Etc.
If they are trying to zone for a SAN install then your answer is clearly well wide of the mark!
# 5  
Old 04-07-2014
Tharsan,

There is a pretty easy solution, and that is the command line from the Chassis Management Module of the Flex System.

Logon to the CMM via ssh, and then (for the purposes of the example) we assume that the fibre card you are interested in is in Slot Bay 3, and I/O Card 2:

Code:
info -T system:blade[3]:exp[2]

If the node is a p460 then the 2nd card would be in:

Code:
info -T system:blade[3]:exp[4]

This is how I would add an node to an existing Flex system where it has no internal disk and would need SAN Zoning for its VIO Server.

Hope that helps
Ross

Last edited by ross.mather; 04-07-2014 at 05:05 PM.. Reason: Adding info
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. What is on Your Mind?

Mad World Remix of Moby Video (Are You Lost In The World Like Me)

This is an excellent video comment on modern society and the remix is good too: https://www.youtube.com/watch?v=5DU1B_XkyIk 5DU1B_XkyIk Watch the video above and post your comments. (3 Replies)
Discussion started by: Neo
3 Replies

2. Red Hat

flex installation problem

hi , when i run ./configure in wine-1.3.10 folder in midway i get error message Your flex version is too old. Please install flex version 2.5.33 or newer. but when i try to install flex using yum install flex it gives me message Package flex-2.5.4a-41.fc6.i386 already installed and latest... (1 Reply)
Discussion started by: anand121
1 Replies

3. HP-UX

flex++ parser for HP-UX11

Hi, can anyone tell me were to download flex++ parser for HP-UX11 BR vasanth (1 Reply)
Discussion started by: vasanthan
1 Replies

4. UNIX for Dummies Questions & Answers

Terminal too wide

Hi Experts, It may be a trivial thing, but I am stuck. Whenver I try to open a file using vi I get error Terminal Too wide. I am using putty to connect to a Sun OS. Please advice. bash-2.05$ vi all_subs_ded_20080203.txt Terminal too wide :q 1 more file to edit:q (3 Replies)
Discussion started by: RishiPahuja
3 Replies

5. UNIX for Advanced & Expert Users

Issues getting FLEX up in HP-UX 11

Hi, I am trying to install FLEX in HP-UX 11 and I am having issues in getting it up. After installing the FLEX I got from the HP-UX site for 11.11, it complained as missing libiconv.sl. Then I got the libiconv installed from the DEPOT got from HP-UX site and now its complaining as... (2 Replies)
Discussion started by: tobsinte
2 Replies
Login or Register to Ask a Question