/usr/share/pyshared/pysnmp_mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.py is in python-pysnmp4-mibs 0.1.3-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 | # PySNMP SMI module. Autogenerated from smidump -f python IANA-ADDRESS-FAMILY-NUMBERS-MIB
# by libsmi2pysnmp-0.1.3 at Mon Apr 2 20:39:04 2012,
# Python version sys.version_info(major=2, minor=7, micro=2, releaselevel='final', serial=0)
# Imports
( Integer, ObjectIdentifier, OctetString, ) = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
( NamedValues, ) = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
( ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint, ) = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
( Bits, Integer32, ModuleIdentity, MibIdentifier, TimeTicks, mib_2, ) = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Integer32", "ModuleIdentity", "MibIdentifier", "TimeTicks", "mib-2")
( TextualConvention, ) = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention")
# Types
class AddressFamilyNumbers(Integer):
subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(65535,4,11,10,17,25,15,23,13,0,8,16,20,19,9,12,1,2,22,14,21,3,24,18,6,5,7,)
namedValues = NamedValues(("other", 0), ("ipV4", 1), ("x121", 10), ("ipx", 11), ("appleTalk", 12), ("decnetIV", 13), ("banyanVines", 14), ("e164withNsap", 15), ("dns", 16), ("distinguishedName", 17), ("asNumber", 18), ("xtpOverIpv4", 19), ("ipV6", 2), ("xtpOverIpv6", 20), ("xtpNativeModeXTP", 21), ("fibreChannelWWPN", 22), ("fibreChannelWWNN", 23), ("gwid", 24), ("afi", 25), ("nsap", 3), ("hdlc", 4), ("bbn1822", 5), ("all802", 6), ("reserved", 65535), ("e163", 7), ("e164", 8), ("f69", 9), )
# Objects
ianaAddressFamilyNumbers = ModuleIdentity((1, 3, 6, 1, 2, 1, 72)).setRevisions(("2002-03-14 00:00","2000-09-08 00:00","2000-03-01 00:00","2000-02-04 00:00","1999-08-26 00:00",))
if mibBuilder.loadTexts: ianaAddressFamilyNumbers.setOrganization("IANA")
if mibBuilder.loadTexts: ianaAddressFamilyNumbers.setContactInfo("Postal: Internet Assigned Numbers Authority\nInternet Corporation for Assigned Names\n and Numbers\n4676 Admiralty Way, Suite 330\nMarina del Rey, CA 90292-6601\nUSA\n\nTel: +1 310-823-9358\nE-Mail: iana&iana.org")
if mibBuilder.loadTexts: ianaAddressFamilyNumbers.setDescription("The MIB module defines the AddressFamilyNumbers\ntextual convention.")
# Augmentions
# Exports
# Module identity
mibBuilder.exportSymbols("IANA-ADDRESS-FAMILY-NUMBERS-MIB", PYSNMP_MODULE_ID=ianaAddressFamilyNumbers)
# Types
mibBuilder.exportSymbols("IANA-ADDRESS-FAMILY-NUMBERS-MIB", AddressFamilyNumbers=AddressFamilyNumbers)
# Objects
mibBuilder.exportSymbols("IANA-ADDRESS-FAMILY-NUMBERS-MIB", ianaAddressFamilyNumbers=ianaAddressFamilyNumbers)
|