This file is indexed.

/usr/share/doc/python-pysnmp4-doc/PYSNMP-PROXY-MIB.txt is in python-pysnmp4-doc 4.2.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
PYSNMP-PROXY-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY,
    OBJECT-TYPE
        FROM SNMPv2-SMI
    SnmpAdminString
        FROM SNMP-FRAMEWORK-MIB
    TDomain,
    TAddress,
    RowStatus
        FROM SNMPv2-TC
    pysnmpModuleIDs
        FROM PYSNMP-MIB;

pysnmpProxyMIB MODULE-IDENTITY
    LAST-UPDATED "201204040000Z"          -- 04 April 2012, midnight
    ORGANIZATION "The PySNMP project"
    CONTACT-INFO "E-mail:     ilya@glas.net
                  Subscribe:  pysnmp-users-request@lists.sourceforge.net"
        DESCRIPTION
            "This MIB module defines implementation specific objects
	     that facilitate LCD lookup by RFC2576 procedures at PySNMP."
        REVISION "201204040000Z"          -- 04 April 2012, midnight
        DESCRIPTION "The Initial Revision"
    ::= { pysnmpModuleIDs 5 }

-- Administrative assignments ****************************************

pysnmpProxyMIBObjects     OBJECT IDENTIFIER ::= { pysnmpProxyMIB 1 }
pysnmpProxyMIBConformance OBJECT IDENTIFIER ::= { pysnmpProxyMIB 2 }

--
-- The pysnmpProxySecurityNameTable contains a database of USM users passphrases
-- used for key localization. This table may be consulted during SNMP engine-ID
-- autodiscovery procedure.
--

pysnmpProxySecurityNameTable OBJECT-TYPE
    SYNTAX       SEQUENCE OF PysnmpProxySecurityNameEntry
    MAX-ACCESS   not-accessible
    STATUS       current
    DESCRIPTION
        "The table of USM users passphrases configured in the SNMP 
         engine's Local Configuration Datastore (LCD)."
    ::= { pysnmpProxyMIBObjects 1 }

pysnmpProxySecurityNameEntry OBJECT-TYPE
    SYNTAX       PysnmpProxySecurityNameEntry
    MAX-ACCESS   not-accessible
    STATUS       current
    DESCRIPTION
        "Information about a particular USM user credentials."
    INDEX       { pysnmpProxyCommunityName, pysnmpProxyTransportDomain, pysnmpProxyTransportAddress }
    ::= { pysnmpProxySecurityNameTable 1 }

PysnmpProxySecurityNameEntry ::= SEQUENCE {
    pysnmpProxyCommunityName        OCTET STRING,
    pysnmpProxyTransportDomain      TDomain,
    pysnmpProxyTransportAddress     TAddress,
    pysnmpProxySecurityName         SnmpAdminString,
    pysnmpProxySecurityNameStatus   RowStatus
}

pysnmpProxyCommunityName OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE(0..256))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The username string for which a row in this table
         represents a configuration."
    ::= { pysnmpProxySecurityNameEntry 1 }

pysnmpProxyTransportDomain OBJECT-TYPE
    SYNTAX      TDomain
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The username string for which a row in this table
         represents a configuration."
    ::= { pysnmpProxySecurityNameEntry 2 }

pysnmpProxyTransportAddress OBJECT-TYPE
    SYNTAX      TAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The username string for which a row in this table
         represents a configuration."
    ::= { pysnmpProxySecurityNameEntry 3 }

pysnmpProxySecurityName OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The username string for which a row in this table
         represents a configuration."
    ::= { pysnmpProxySecurityNameEntry 4 }

pysnmpProxySecurityNameStatus OBJECT-TYPE
    SYNTAX       RowStatus
    MAX-ACCESS   read-create
    STATUS       current
    DESCRIPTION
        "Table status"
    ::= { pysnmpProxySecurityNameEntry 5 }


-- Conformance Information *******************************************

pysnmpProxyMIBCompliances OBJECT IDENTIFIER
                            ::= { pysnmpProxyMIBConformance 1 }
pysnmpProxyMIBGroups      OBJECT IDENTIFIER
                            ::= { pysnmpProxyMIBConformance 2 }

END