home *** CD-ROM | disk | FTP | other *** search
/ Thomson (Residential) / TGSTPv7203.iso / mac / SNMP_MIBs / snmpv3 / USM-TARGET-TAG-MIB.mib < prev   
Text File  |  2008-02-08  |  3KB  |  85 lines

  1. USM-TARGET-TAG-MIB DEFINITIONS ::= BEGIN
  2.  
  3.     IMPORTS
  4.         snmpResearchMIBs
  5.             FROM SNMP-RESEARCH-MIB
  6.         MODULE-IDENTITY,
  7.         OBJECT-TYPE
  8.             FROM SNMPv2-SMI
  9.         SnmpTagValue
  10.             FROM SNMP-TARGET-MIB
  11.         usmUserEntry
  12.             FROM SNMP-USER-BASED-SM-MIB 
  13.         MODULE-COMPLIANCE,
  14.         OBJECT-GROUP
  15.             FROM SNMPv2-CONF;
  16.  
  17.  
  18.     usmTargetTagMIB MODULE-IDENTITY
  19.         LAST-UPDATED "9801160000"
  20.         ORGANIZATION "SNMP Research, Inc."
  21.         CONTACT-INFO
  22.                       ""
  23.         DESCRIPTION
  24.               ""
  25.         ::= { snmpResearchMIBs 35 }
  26.  
  27.  
  28.     --
  29.     -- The usmTargetTagObjects Group
  30.     --
  31.  
  32.     usmTargetTagObjects OBJECT IDENTIFIER ::=
  33.         { usmTargetTagMIB 1 }
  34.     usmTargetTagConformance OBJECT IDENTIFIER ::=
  35.         { usmTargetTagMIB 3 }
  36.  
  37.     --
  38.     -- The usmTargetTagTable
  39.     --
  40.  
  41.     usmTargetTagTable OBJECT-TYPE
  42.         SYNTAX       SEQUENCE OF UsmTargetTagEntry
  43.         MAX-ACCESS   not-accessible
  44.         STATUS       current
  45.         DESCRIPTION
  46.               "Table to add an SnmpTagValue to the usmUserTable."
  47.         ::= { usmTargetTagObjects 1 }
  48.  
  49.     usmTargetTagEntry OBJECT-TYPE
  50.         SYNTAX       UsmTargetTagEntry
  51.         MAX-ACCESS   not-accessible
  52.         STATUS       current
  53.         DESCRIPTION
  54.                    "Adds an SnmpTagValue to a usmUserEntry."
  55.         AUGMENTS { usmUserEntry }
  56.         ::= { usmTargetTagTable 1 }
  57.  
  58.     UsmTargetTagEntry ::= SEQUENCE {
  59.         usmTargetTag     SnmpTagValue
  60.     }
  61.  
  62.     usmTargetTag OBJECT-TYPE
  63.         SYNTAX       SnmpTagValue
  64.         MAX-ACCESS   read-create
  65.         STATUS       current
  66.         DESCRIPTION
  67.               "This object specifies a set of transport endpoints from which
  68.               an agent will accept management requests.  If a management
  69.               request generated by this user is received on a transport
  70.               endpoint other than the transport endpoints identified
  71.               by this object, the request is deemed unauthentic.
  72.  
  73.               The transports identified by this object are normally
  74.               specified in the snmpTargetAddrTable, and are selected
  75.               using tag matching as specified in the SNMPv3 Applications
  76.               document (rfc2263).
  77.  
  78.               If the value of this object has zero-length, then
  79.               transport endpoints are not checked when authenticating
  80.               messages generated by this user."
  81.          DEFVAL { ''H }     -- the empty string
  82.         ::= { usmTargetTagEntry 1 }
  83.  
  84. END
  85.