[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

3199.0. "SNMP and the Iconic Map" by VCSESU::WADE (Bill Wade, VAXc Systems & Support Eng) Wed Jun 17 1992 17:20

    
DECmcc 1.2.7
    
I am having a problem with snmp management and a mib that I enrolled.
     

From the FCL I can do the following and it works fine -

      Verb: set
    Entity: snmp cuneyt dec ema EBRMATRIXNAMETABLE mop
 Arguments: ebrMatrixValue (1,2,3:4)
Qualifiers:
   
But when I try it from the Iconic Map I get the error -

"Unsupported wildcard in target entity specification"


I've attached the portion of the MIB that deals with the EBRMATRIXNAMETABLE.
Also, if you want to look at the  Iconic Map display with the error message,
I used print screen and captured it to file -

		VCSESU::USERDISK2:[WADE.PUBLIC]MCC.PS

Any ideas?
    
    
Thanks,
Bill

-----------------------------------------

    ebrDANameTable OBJECT-TYPE
	SYNTAX	SEQUENCE OF EbrDANameEntry
	ACCESS	not-accessible
	STATUS	mandatory
	DESCRIPTION ""
	::= { ebrNportFiltByRef 4 }

    ebrDANameEntry OBJECT-TYPE
	SYNTAX	EbrDANameEntry
	ACCESS	not-accessible
	STATUS	mandatory
	DESCRIPTION "### check on variable length index capabilities."
	INDEX { ebrDAName }
	::= { ebrDANameTable 1 }

	-- lifetime and interpretation come from
	-- ebrNportDAFilterCharacteristicsTable
    EbrDANameEntry ::=
	SEQUENCE {
		ebrDAName	OBJECT IDENTIFIER,
		ebrDANameDA	OCTET STRING,
		ebrDAMatrixName	OBJECT IDENTIFIER,
		ebrDANameStatus	INTEGER
	}

    ebrDAName OBJECT-TYPE
	SYNTAX	OBJECT IDENTIFIER
	ACCESS	read-write
	STATUS	mandatory
	DESCRIPTION "Whatever the user likes."
	::= { ebrDANameEntry 1 }

    ebrDANameDA OBJECT-TYPE
	SYNTAX	OCTET STRING
	ACCESS	read-write
	STATUS	mandatory
	DESCRIPTION "The six-byte destination address.

		Changes to ebrNportStaticDATable for this address are denied
		while filtering of the address is specified by reference to a
		named matrix using this table."
	::= { ebrDANameEntry 2 }
    
    ebrDAMatrixName OBJECT-TYPE
	SYNTAX	OBJECT IDENTIFIER
	ACCESS	read-write
	STATUS	mandatory
	DESCRIPTION "A ebrMatrixName.  Multiple matrices for the same address
		are combined using an elementwise-OR operator."
	::= { ebrDANameEntry 3 }

    ebrDANameStatus OBJECT-TYPE
	SYNTAX	INTEGER {
			invalid(1),
			permanent(2)
		}
	ACCESS	read-write
	STATUS	mandatory
	DESCRIPTION ""
	::= { ebrDANameEntry 4 }

    
T.RTitleUserPersonal
Name
DateLines
3199.1Need to fix your show ident codeBARREL::LEMMONThu Jun 18 1992 13:3724
    You are not supporting the 
    
    	SHOW SNMP cuneyt dec ema ebrDANameTable * ALL IDENTIFIERS 
    
    correctly.  It should be returning an out_e containing the instance
    
    	cuneyt dec ema ebrDANameTable
    	
    not 
    
    	cuneyt dec ema ebrDANameTable * 
    
    because of this the iconic map is trying to the FCL equivalent
    of 
    	SET SNMP cuneyt dec ema ebrDANameTable * ebrDAName = aaa
    
    which will give you the exact same error message!
    
    I bet you just copy in_e to out_e.  out_e should always contain
    the instance (unless there aren't any).  The iconic map depends
    on this behavior to enumerate the children of an entity when
    looking into it.
    
    /Jim