Sponsored Content
Top Forums UNIX for Advanced & Expert Users Solaris 10 10/09 u8, iSCSI and SUN Trunking Post 302390049 by KSFlyer on Tuesday 26th of January 2010 06:16:34 PM
Old 01-26-2010
Solaris 10 10/09 u8, iSCSI and SUN Trunking

I am running Solaris 10 on a V490. I have Dell EqualLogic SAN attached.
I would like to take full advantage of the iSCSI initiator.
I have a primary network interface and IP addresses for all four SAN ports. Since the four ports are SUN GigaSwift (legacy), I cannot utilize dladm, so I downloaded and installed SUN Trunking 1.3.
All configuration goes well until I actually bring up the trunked interface. At this point I receive the following message:
Code:
Jan 26 10:44:46 ksflyerhost trslm: [ID 140038 kern.notice] NOTICE: trunk link (ce0): Partner Key=0: Please configure valid key value on switch.

I cannot even ping the SAN until I down the trunked interface.
Is this something that needs to be configured on the switch?
Sorry, I do not know what kind of switches we have - Cisco is all I know...

Has anyone seen this before? If so, any recommendations? Thanx much!

Last edited by Yogesh Sawant; 01-27-2010 at 04:13 PM.. Reason: added code tags
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

iscsi commands iscsiadm solaris 10

I'm running solaris 10 and this packages is installed SUNWiscsir - Sun iSCSI Device Driver (root) SUNWiscsiu - Sun iSCSI Management Utilities (usr) But the commands iscsiadm or iscsitadm dont work. He are not in my system. Do you know the problem. (1 Reply)
Discussion started by: simonquest
1 Replies

2. Solaris

Sun Trunking

Does anyone know where I can download Sun Trunking for Solaris 8? Sun gives this away for Solaris 10 but you have to pay for it for Solaris 8? Seems kind of bass ackwards if you ask me..... (3 Replies)
Discussion started by: hshapiro
3 Replies

3. Solaris

SUn Trunking Guide

Hello..Guys I need some help on sun trunking... I have followed the configuration guide C H A P T E R 3 - Configuring the Sun Trunking 1.3 Software from Sun but it doesn't work. Is it suppose to failover from 1 link to another when 1 of the link/port is down in the trunk, or once the head... (2 Replies)
Discussion started by: xiaochensg
2 Replies

4. Solaris

Problem getting SUN trunking to work

Hi all, I am trying to setup SUN trunking per the instructions in the SUN Trunking 1.3 Installation and User's Guide. Dated June - 2007. I am setting it up in a test environment. Pretty simple test bed. 2 Sun V490s connected to a Catalyst 6500 via fiber NICs. 2 NIC's in each 490. Each is a... (9 Replies)
Discussion started by: bruhnf
9 Replies

5. Solaris

Solaris 10 10/08 sparc + iSCSI

hi, I have installed Solaris 10 10/08 on sparc machine. I would like to configure iSCSI on that to mount SAN Volumes. Is there any need to install any additional patches for iSCSI to work. Thanks, Prashant. (4 Replies)
Discussion started by: prashantbhushan
4 Replies

6. UNIX for Dummies Questions & Answers

How to change ethernet cable of iscsi initiator (iscsi client)?

how to change ethernet cable of iscsi initiator (iscsi client) (0 Replies)
Discussion started by: pankajd
0 Replies

7. Solaris

Does iscsi initiator supported on SUN

I have a Sun Blade 2500 with SUN 5.9 OS installed. I have configured ISCSI SAN and one of my Red Hat OS can accessed/mount the ISCSI SAN disk Now i want to access/mount another ISCSI SAN disk on SUN solaris. Is that possible ? Thanks (1 Reply)
Discussion started by: z_haseeb
1 Replies

8. Solaris

Solaris Trunking and its impact on VCS cluster and others

Hello guys, I have a question regarding link aggregation / trunking in Solaris 9 Sun Trunking does not come by default in Solaris 9 unlike Solaris 10 where we can use the "dladm" command to trunk 4 physical NIC interfaces together. My question is in Solaris 9. Will the configurations of... (1 Reply)
Discussion started by: br1an
1 Replies
gnutls_x509_crt_get_subject_alt_name(3) 			      gnutls				   gnutls_x509_crt_get_subject_alt_name(3)

NAME
gnutls_x509_crt_get_subject_alt_name - API function SYNOPSIS
#include <gnutls/x509.h> int gnutls_x509_crt_get_subject_alt_name(gnutls_x509_crt_t cert, unsigned int seq, void * san, size_t * san_size, unsigned int * critical); ARGUMENTS
gnutls_x509_crt_t cert should contain a gnutls_x509_crt_t structure unsigned int seq specifies the sequence number of the alt name (0 for the first one, 1 for the second etc.) void * san is the place where the alternative name will be copied to size_t * san_size holds the size of san. unsigned int * critical will be non-zero if the extension is marked as critical (may be null) DESCRIPTION
This function retrieves the Alternative Name (2.5.29.17), contained in the given certificate in the X509v3 Certificate Extensions. When the SAN type is otherName, it will extract the data in the otherName's value field, and GNUTLS_SAN_OTHERNAME is returned. You may use gnutls_x509_crt_get_subject_alt_othername_oid() to get the corresponding OID and the "virtual" SAN types (e.g., GNUTLS_SAN_OTHERNAME_XMPP). If an otherName OID is known, the data will be decoded. Otherwise the returned data will be DER encoded, and you will have to decode it yourself. Currently, only the RFC 3920 id-on-xmppAddr SAN is recognized. RETURNS
the alternative subject name type on success, one of the enumerated gnutls_x509_subject_alt_name_t. It will return GNUTLS_E_SHORT_MEM- ORY_BUFFER if san_size is not large enough to hold the value. In that case san_size will be updated with the required size. If the cer- tificate does not have an Alternative name with the specified sequence number then GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE is returned. REPORTING BUGS
Report bugs to <bug-gnutls@gnu.org>. General guidelines for reporting bugs: http://www.gnu.org/gethelp/ GnuTLS home page: http://www.gnu.org/software/gnutls/ COPYRIGHT
Copyright (C) 2012 Free Software Foundation, Inc.. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for gnutls is maintained as a Texinfo manual. If the info and gnutls programs are properly installed at your site, the command info gnutls should give you access to the complete manual. As an alternative you may obtain the manual from: http://www.gnu.org/software/gnutls/manual/ gnutls 3.1.15 gnutls_x509_crt_get_subject_alt_name(3)
All times are GMT -4. The time now is 11:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy