Solaris OS having issue accessing LUN from Qlogic swich


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris OS having issue accessing LUN from Qlogic swich
# 15  
Old 03-24-2015
Is autonegotiation enabled?
# 16  
Old 03-24-2015
HI

don't know much details.

how to check that..?
# 17  
Old 03-24-2015
Probably something like:

Code:
for parm in `ndd /dev/net/qlge2 \? | awk '{ print $1 }' | grep -v '?'`;
do
    echo -n $parm:
    ndd /dev/net/qlge2 $parm 2> /dev/null
done

Replace /dev/net/qlge2 with whatever the device path is in your version of Solaris.
This User Gave Thanks to achenle For This Post:
# 18  
Old 03-25-2015
Hi

iit's not runnig

Code:
operation:operation failed: Invalid argument
bash-3.2# sh -x auto
+ grep -v ?
+ awk { print $1 }
+ ndd /dev/qlge2 ?
+ echo -n operation:
-n operation:
+ ndd /dev/qlge2 operation
operation failed: Invalid argument

---------- Post updated at 01:38 AM ---------- Previous update was at 12:01 AM ----------

HI

i am getting invalid argument on ndd

Code:
bash-3.2# ndd /dev/qlge \?
operation failed: Invalid argument

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

How to get LUN WWN in Solaris?

How to get LUN WWN (i.e LUN mapped from a storage box say Symmetrix or clariion) in Solaris. fcinfo command does give the Target port wwn but what i'm looking for is the LUN WWN. Any help is appreciated. (2 Replies)
Discussion started by: Manish00712
2 Replies

2. Shell Programming and Scripting

Issue with accessing value inside while loop, outside it

Hi, GetName() { if then echo " Please enter the name: " read Name tempvar=0 while read line do if then tempvar=`expr $tempvar + 1` echo $tempvar ... (10 Replies)
Discussion started by: rituparna_gupta
10 Replies

3. Solaris

Problem with Solaris LUN and New FS

Hi All, I'm using Solaris server, SunOS 5.10 Generic_144488-08 sun4u sparc SUNW, SPARC-Enterprise. There is a newly created LUN of 250GB (EMC). I've scanned the system and able to see the new LUN. For example: 103. emcpower19a <DGC-VRAID-0430 cyl 48638 alt 2 hd 256 sec 16>... (4 Replies)
Discussion started by: superHonda123
4 Replies

4. Red Hat

lun masking at qlogic HBA level

need to do LUN masking at qlogic HBA level..at RHEL 5.x I am using qla* module at part of the Unix kernel, it is not OEM drivers that come with the HBA card, so I can't use Sansurfer to do this.. Is there a way to do this at all ?? :wall: (0 Replies)
Discussion started by: ppchu99
0 Replies

5. Linux

EMC, PowerPath and issue on using LUN

Hello guys, I'm going crazy over here with a problem with a LUN created on a EMC CX3. I did sucessfully managed to create the LUN on the Storage (the LUN is named DBLNX25EC_TST), after doing the following process: echo "1" > /sys/class/fc_host/host<n>/issue_lip and echo "- - -" >... (10 Replies)
Discussion started by: Zarnick
10 Replies

6. Solaris

new attached lun in solaris 10

hi, what are the steps to detect and configure a new attached lun in Solaris 10. Is there any difference between cfgadm and luxadm command ? rgds, snjksh (5 Replies)
Discussion started by: snjksh
5 Replies

7. Solaris

Solaris 10 - QLogic 4060C iSCSI adapter - multipathed (MPxIO)

System: Sun M3000 and M4000 OS: Solaris 10 (fully up to date with latest patches) iSCSI HBA: 2x QLE4060C (QLogic) In each system are 2 QLE4060C iSCSI adapters. I manage to set up both HBA's to connect to the LUNs on the SAN However I don't manage to enable multi-pathing. Made the... (4 Replies)
Discussion started by: sb008
4 Replies

8. Shell Programming and Scripting

Swich statement based on a grep?

I'm piping the results of a tcpdump into a shell script and want certain commands executed (specifically the firing of an SNMP alert) based on a grep for certain contents in the output of tcpdump. For example, I have #!/bin/bash while read str; do grep 'ttl 64' -q && sudo snmptrap -v 1... (2 Replies)
Discussion started by: paulobrad
2 Replies

9. Solaris

Solaris 9 or 10 LUN Limitations

Is there a limit to the number of LUNS that can be concatenated using Solaris Volume manager with Soft partitions? I have worked with some AIX admins in the past and there was such a limitation therefore limiting the size the filesystem could grow to. Is there such a limitation in Solaris 9... (6 Replies)
Discussion started by: BG_JrAdmin
6 Replies

10. Programming

Structure element accessing issue...

Hi all, Can someone advice, why I'm getting a segmentation fault on a Linux system for a program which looks like the below one--: typedef struct idev{ int p, char q; } Idev; typedef struct abc{ int i; Idev *idev_ptr; } ABC; int main(){ ABC a_var; char str; int... (4 Replies)
Discussion started by: Praveen_218
4 Replies
Login or Register to Ask a Question