Sponsored Content
Operating Systems HP-UX Setting Fiber Card to Auto Negotiate Post 302328957 by scotbuff on Thursday 25th of June 2009 02:18:35 PM
Old 06-25-2009
Setting Fiber Card to Auto Negotiate

I have the Fiber Card assigned to a vPar and I am trying to use it with our HP EVA 4000. Our SAN switch is only a 2GB switch. The card has three LED lights labeled 4GB, 2GB and 1GB and the 4GB light has an amber light. I need to change the link speed, how do you do this on HP-UX? Also here is the output of fcmsutil

Code:
Seconds since last stats were reset                    253958
# fcmsutil /dev/fcd0         

                           Vendor ID is = 0x001077
                           Device ID is = 0x002422
            PCI Sub-system Vendor ID is = 0x00103c
                   PCI Sub-system ID is = 0x0012d6
                               PCI Mode = PCI-X 133 MHz
                       ISP Code version = 4.2.2
                       ISP Chip version = 3
                               Topology = PTTOPT_FABRIC
                             Link Speed = 4Gb
                     Local N_Port_id is = 0x010c00
                  Previous N_Port_id is = 0x010c00
            N_Port Node World Wide Name = 0x50014380013122ef
            N_Port Port World Wide Name = 0x50014380013122ee
            Switch Port World Wide Name = 0x200c00051e35badb
            Switch Node World Wide Name = 0x100000051e35badb
                           Driver state = ONLINE
                       Hardware Path is = 1/0/2/1/0
                     Maximum Frame Size = 2048
         Driver-Firmware Dump Available = NO
         Driver-Firmware Dump Timestamp = N/A
                         Driver Version = @(#) libfcd.a HP Fibre Channel ISP 23xx & 24xx Driver B.11.23.0903 /ux/core/isu/FCD/kern/src/common/wsio/fcd_init.c:Dec 10 2008,22:54:55

Thanks in advance.
 

9 More Discussions You Might Find Interesting

1. Solaris

Check Duplex setting of intrerface card ?

Hi there, On solaris 8, hat is the command to show the duplex and speed of the attached network cards ?? Alos , if its not what I want ....what command can i use to reconfigure it cheers (5 Replies)
Discussion started by: hcclnoodles
5 Replies

2. Solaris

Identify fiber card

All, Is there a way to identify which fiber card (brand) I have in my system? I believe my solaris 8 box has an LP9002LE card, I'm just not 100% sure. Thanks, Kevin (4 Replies)
Discussion started by: kjbaumann
4 Replies

3. AIX

fiber with 4GB

Hi, It's my first time I will use a 4BG fiber with two ports on one card. I used only one port 2GB before. What will be the drivers I need to install on my AIX5.3? Is the two ports going to be just one line? Or I can use the other ports on another connection. Thanks in advance, itik (1 Reply)
Discussion started by: itik
1 Replies

4. AIX

aix with two fiber

Hi, I got an advise from an old colleague that it's not recommended to have a two fiber for performance purposes on aix. Only use it for redundancy or rdac. Is that true? I was thinking to divide the use of two fiber with the 8 vg so I each one would have 4 vg to serve. Is there anyone... (4 Replies)
Discussion started by: itik
4 Replies

5. Solaris

Fiber Channel StorageTek Array Visible to OS

I installed a FC array for the first time and everything looks OK in mpathadm, cfgadm, but I don't know what to do next. # stmsboot -L non-STMS device name STMS device name ------------------------------------------------------------------ /dev/rdsk/c2t1d0 ... (3 Replies)
Discussion started by: photon
3 Replies

6. Solaris

1 or 2 Fiber cables?

Hi Community, I'm working on Solaris 10 installation with 1 Server V490 and 1 StoredgeTek 3510 (Standalone configuration). I'd connect the Server to the Storedge with a fiber cable but I' m in doubt becouse I don't know if using 1 or 2 fiber cable. Could you provide me any solution? ... (2 Replies)
Discussion started by: Sunb3
2 Replies

7. UNIX Desktop Questions & Answers

Does Red Hat Fedora support Nvidia card 8800GTX and 260 card?

Does Red Hat Fedora support Nvidia card 8800GTX and 260 card? Does any Linux OS support Nvidia card? (1 Reply)
Discussion started by: sito
1 Replies

8. Solaris

Solaris 10 new fiber connected tape

Hello all, how can i see configured fc tapes in solaris system and how can i install a new fc shared tape device , thanks Best Regards (2 Replies)
Discussion started by: bogacd
2 Replies

9. AIX

Virtualizing the Fiber card (VFC) on P595

Hi, We have a P595 machine with a dual port Fiber card per VIOs. We have two VIOs in the box. VIO1: ---> 2 port Fiber Card VIO2: ---> 2 port Fiber Card One port on each fiber card is utilized. Connected to SAN switches. We are getting all disks from SAN both for VIOs and LPARs. Now... (0 Replies)
Discussion started by: aixromeo
0 Replies
csx_Parse_CISTPL_MANFID(9F)				   Kernel Functions for Drivers 			       csx_Parse_CISTPL_MANFID(9F)

NAME
csx_Parse_CISTPL_MANFID - parse Manufacturer Identification tuple SYNOPSIS
#include <sys/pccard.h> int32_t csx_Parse_CISTPL_MANFID(client_handle_t ch, tuple_t *tu, cistpl_manfid_t *cm); INTERFACE LEVEL
Solaris DDI Specific (Solaris DDI) PARAMETERS
ch Client handle returned from csx_RegisterClient(9F). tu Pointer to a tuple_t structure (see tuple(9S)) returned by a call to csx_GetFirstTuple(9F) or csx_GetNextTuple(9F). cm Pointer to a cistpl_manfid_t structure which contains the parsed CISTPL_MANFID tuple information upon return from this function. DESCRIPTION
This function parses the Manufacturer Identification tuple, CISTPL_MANFID, into a form usable by PC Card drivers. The CISTPL_MANFID tuple is used to describe the information about the manufacturer of a PC Card. There are two types of information, the PC Card's manufacturer and a manufacturer card number. STRUCTURE MEMBERS
The structure members of cistpl_manfid_t are: uint32_t manf; /* PCMCIA assigned manufacturer code */ uint32_t card; /* manufacturer information (part number and/or revision) */ RETURN VALUES
CS_SUCCESS Successful operation. CS_BAD_HANDLE Client handle is invalid. CS_UNKNOWN_TUPLE Parser does not know how to parse tuple. CS_NO_CARD No PC Card in socket. CS_NO_CIS No Card Information Structure (CIS) on PC card. CS_UNSUPPORTED_FUNCTION No PCMCIA hardware installed. CONTEXT
This function may be called from user or kernel context. SEE ALSO
csx_GetFirstTuple(9F), csx_GetTupleData(9F), csx_RegisterClient(9F), csx_ValidateCIS(9F), tuple(9S) PC Card 95 Standard, PCMCIA/JEIDA SunOS 5.11 20 Dec 1996 csx_Parse_CISTPL_MANFID(9F)
All times are GMT -4. The time now is 07:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy