-- extracted from draft-ietf-psamp-mib-02.txt -- at Thu Feb 19 06:17:25 2004 PSAMP-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Integer32, mib-2 FROM SNMPv2-SMI -- RFC2578 TEXTUAL-CONVENTION, DateAndTime, RowStatus FROM SNMPv2-TC -- RFC2579 MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF -- RFC2580 InterfaceIndex -- RFC2863 FROM IF-MIB InetAddressType, InetAddress FROM INET-ADDRESS-MIB; -- RFC3291 psampMIB MODULE-IDENTITY LAST-UPDATED "200401131200Z" -- 13 February 2004 ORGANIZATION "IETF Packet Sampling Working Group" CONTACT-INFO "WG charter: http://www.ietf.org/html.charters/psamp-charter.html Mailing Lists: General Discussion: psamp@ops.ietf.org To Subscribe: psamp-request@ops.ietf.org In Body: subscribe Archive: https://ops.ietf.org/lists/psamp/ Editor: Thomas Dietz NEC Europe Ltd. Network Laboratories Kurfuersten-Anlage 36 69115 Heidelberg Germany Phone: +49 6221 90511-28 Email: dietz@ccrle.nec.de" DESCRIPTION "The PSAMP MIB defines managed objects for packet sampling. These objects provide information about managed nodes supporting packet sampling, including packet sampling capabilities, configuration and statistics. They also allow to configure packet sampling concerning the IP interface at which packets are sampled, the packet selections methods used for sampling, and the collector to which packet samples are exported. Copyright (C) The Internet Society (2004). This version of this MIB module is part of RFC yyyy; see the RFC itself for full legal notices." -- RFC Ed.: replace yyyy with actual RFC number & remove this notice -- Revision history REVISION "200401131200Z" -- 13 February 2004 DESCRIPTION "Initial version, published as RFC yyyy." -- RFC Ed.: replace yyyy with actual RFC number & remove this notice ::= { mib-2 XXX } -- XXX to be assigned by IANA. -- Textual Conventions PsampMethodAvailability ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "Used to report the availability of a packet selection method: available(1) - the method is supported and can be used notAvailable(2) - the mothos is not available" SYNTAX INTEGER { available(1), notAvailable(2) } -- Top level structure of the MIB psampObjects OBJECT IDENTIFIER ::= { psampMIB 1 } psampConformance OBJECT IDENTIFIER ::= { psampMIB 2 } -- Packet selection sampling methods group of objects psampSamplingMethods OBJECT IDENTIFIER ::= { psampObjects 1 } -- Method 0: Selecting All Packets psampSelectingAll OBJECT IDENTIFIER ::= { psampSamplingMethods 0 } psampSelectingAllAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of the trivial method of selecting all packets." DEFVAL { available } ::= { psampSelectingAll 1 } -- Method 1: Systematic Count-based Sampling psampSystematicCountBasedSampling OBJECT IDENTIFIER ::= { psampSamplingMethods 1 } psampSystematicCountBasedSamplingAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of systematic count-based sampling at the managed node." DEFVAL { notAvailable } ::= { psampSystematicCountBasedSampling 1 } psampSystematicCountBasedSamplingCapabilities OBJECT IDENTIFIER ::= { psampSystematicCountBasedSampling 2 } psampSystematicCountBasedSamplingMaxInterval OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the the maximum number that can be specified for the sampling interval." ::= { psampSystematicCountBasedSamplingCapabilities 1 } psampSystematicCountBasedSamplingMaxSpacing OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the the maximum number that can be specified for the sampling spacing." ::= { psampSystematicCountBasedSamplingCapabilities 2 } psampSystematicCountBasedSamplingParameterSetTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampSystematicCountBasedSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists configurations of systematic count- based packet sampling. A parameter set describing a configuration contains two parameters: the sampling interval length and the spacing." ::= { psampSystematicCountBasedSampling 3 } psampSystematicCountBasedSamplingParameterSetEntry OBJECT-TYPE SYNTAX PsampSystematicCountBasedSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampSystematicCountBasedSamplingParameterSetTable." INDEX { psampSystematicCountBasedSamplingIndex } ::= { psampSystematicCountBasedSamplingParameterSetTable 1 } PsampSystematicCountBasedSamplingParameterSetEntry ::= SEQUENCE { psampSystematicCountBasedSamplingIndex Integer32, psampSystematicCountBasedSamplingInterval Integer32, psampSystematicCountBasedSamplingSpacing Integer32, psampSystematicCountBasedSamplingNext OBJECT IDENTIFIER, psampSystematicCountBasedSamplingRowStatus RowStatus } psampSystematicCountBasedSamplingIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of this parameter set in the psampSystematicCountBasedSamplingParameterSetTable. It is used in entries of the psampInstanceTable as reference to this parameter set." ::= { psampSystematicCountBasedSamplingParameterSetEntry 1 } psampSystematicCountBasedSamplingInterval OBJECT-TYPE SYNTAX Integer32 UNITS "number of packets" MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the sampling interval for systematic count-based sampling." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampSystematicCountBasedSamplingParameterSetEntry 2 } psampSystematicCountBasedSamplingSpacing OBJECT-TYPE SYNTAX Integer32 UNITS "number of packets" MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the sampling spacing for systematic count-based sampling." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampSystematicCountBasedSamplingParameterSetEntry 3 } psampSystematicCountBasedSamplingNext OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the the next sampling method executed after the current sampling method." ::= { psampSystematicCountBasedSamplingParameterSetEntry 4 } psampSystematicCountBasedSamplingRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampSystematicCountBasedSamplingParameterSetEntry 5 } -- Method 2: Systematic Time-based Sampling psampSystematicTimeBasedSampling OBJECT IDENTIFIER ::= { psampSamplingMethods 2 } psampSystematicTimeBasedSamplingAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of systematic time-based sampling at the managed node." DEFVAL { notAvailable } ::= { psampSystematicTimeBasedSampling 1 } psampSystematicTimeBasedSamplingCapabilities OBJECT IDENTIFIER ::= { psampSystematicTimeBasedSampling 2 } psampSystematicTimeBasedSamplingMaxInterval OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the the maximum number that can be specified for the sampling interval." ::= { psampSystematicTimeBasedSamplingCapabilities 1 } psampSystematicTimeBasedSamplingMaxSpacing OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the the maximum number that can be specified for the sampling spacing." ::= { psampSystematicTimeBasedSamplingCapabilities 2 } psampSystematicTimeBasedSamplingParameterSetTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampSystematicTimeBasedSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists configurations of systematic time- based packet sampling. A parameter set describing a configuration contains two parameters: the sampling interval length and the spacing." ::= { psampSystematicTimeBasedSampling 3 } psampSystematicTimeBasedSamplingParameterSetEntry OBJECT-TYPE SYNTAX PsampSystematicTimeBasedSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampSystematicTimeBasedSamplingParameterSetTable." INDEX { psampSystematicTimeBasedSamplingIndex } ::= { psampSystematicTimeBasedSamplingParameterSetTable 1 } PsampSystematicTimeBasedSamplingParameterSetEntry ::= SEQUENCE { psampSystematicTimeBasedSamplingIndex Integer32, psampSystematicTimeBasedSamplingInterval Integer32, psampSystematicTimeBasedSamplingSpacing Integer32, psampSystematicTimeBasedSamplingNext OBJECT IDENTIFIER, psampSystematicTimeBasedSamplingRowStatus RowStatus } psampSystematicTimeBasedSamplingIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of this parameter set in the psampSystematicTimeBasedSamplingParameterSetTable. It is used in entries of the psampInstanceTable as reference to this parameter set." ::= { psampSystematicTimeBasedSamplingParameterSetEntry 1 } psampSystematicTimeBasedSamplingInterval OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" -- might still be too coarse grained MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies a sampling interval for systematic time-based sampling." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampSystematicTimeBasedSamplingParameterSetEntry 2 } psampSystematicTimeBasedSamplingSpacing OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" -- might still be too coarse grained MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies a sampling spacing for systematic time-based sampling." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampSystematicTimeBasedSamplingParameterSetEntry 3 } psampSystematicTimeBasedSamplingNext OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the the next sampling method executed after the current sampling method." ::= { psampSystematicTimeBasedSamplingParameterSetEntry 4 } psampSystematicTimeBasedSamplingRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampSystematicTimeBasedSamplingParameterSetEntry 5 } -- Method 3: Random n-out-of-N Sampling psampRandomOutOfNSampling OBJECT IDENTIFIER ::= { psampSamplingMethods 3 } psampRandomOutOfNSamplingAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of random n-out-of-N sampling at the managed node." DEFVAL { notAvailable } ::= { psampRandomOutOfNSampling 1 } psampRandomOutOfNSamplingCapabilities OBJECT IDENTIFIER ::= { psampRandomOutOfNSampling 2 } -- No capabilities defined, yet. psampRandomOutOfNSamplingParameterSetTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampRandomOutOfNSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists configurations of random n-out-of-N sampling. A parameter set describing a configuration contains a single parameter only: the sampling rate." ::= { psampRandomOutOfNSampling 3 } psampRandomOutOfNSamplingParameterSetEntry OBJECT-TYPE SYNTAX PsampRandomOutOfNSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampRandomOutOfNSamplingParameterSetTable." INDEX { psampRandomOutOfNSamplingIndex } ::= { psampRandomOutOfNSamplingParameterSetTable 1 } PsampRandomOutOfNSamplingParameterSetEntry ::= SEQUENCE { psampRandomOutOfNSamplingIndex Integer32, psampRandomOutOfNSamplingPopulation Integer32, psampRandomOutOfNSamplingSize Integer32, psampRandomOutOfNSamplingNext OBJECT IDENTIFIER, psampRandomOutOfNSamplingRowStatus RowStatus } psampRandomOutOfNSamplingIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of this parameter set in the psampRandomOutOfNSamplingParameterSetTable. It is used in entries of the psampInstanceTable as reference to this parameter set." ::= { psampRandomOutOfNSamplingParameterSetEntry 1 } psampRandomOutOfNSamplingPopulation OBJECT-TYPE SYNTAX Integer32 UNITS "packets" MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the number of elements in the parent population of the sampling algorithm." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampRandomOutOfNSamplingParameterSetEntry 2 } psampRandomOutOfNSamplingSize OBJECT-TYPE SYNTAX Integer32 UNITS "packets" MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the number of elements that are sampled from the parent population of the sampling algorithm." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampRandomOutOfNSamplingParameterSetEntry 3 } psampRandomOutOfNSamplingNext OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the the next sampling method executed after the current sampling method." ::= { psampRandomOutOfNSamplingParameterSetEntry 4 } psampRandomOutOfNSamplingRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampRandomOutOfNSamplingParameterSetEntry 5 } -- Method 4: Random Uniform Probabilistic Sampling psampRandomUniformProbabilisticSampling OBJECT IDENTIFIER ::= { psampSamplingMethods 4 } psampRandomUniformProbabilisticSamplingAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of random uniform probabilistic sampling at the managed node." DEFVAL { notAvailable } ::= { psampRandomUniformProbabilisticSampling 1 } psampRandomUniformProbabilisticSamplingCapabilities OBJECT IDENTIFIER ::= { psampRandomUniformProbabilisticSampling 2 } -- No capabilities defined, yet. psampRandomUniformProbabilisticSamplingParameterSetTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampRandomUniformProbabilisticSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists configurations of random probabilistic sampling. A parameter set describing a configuration contains a single parameter only: the sampling rate." ::= { psampRandomUniformProbabilisticSampling 3 } psampRandomUniformProbabilisticSamplingParameterSetEntry OBJECT-TYPE SYNTAX PsampRandomUniformProbabilisticSamplingParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampRandomUniformProbabilisticSamplingParameterSetTable." INDEX { psampRandomUniformProbabilisticSamplingIndex } ::= { psampRandomUniformProbabilisticSamplingParameterSetTable 1 } PsampRandomUniformProbabilisticSamplingParameterSetEntry ::= SEQUENCE { psampRandomUniformProbabilisticSamplingIndex Integer32, psampRandomUniformProbabilisticSamplingPopulation Integer32, psampRandomUniformProbabilisticSamplingSize Integer32, psampRandomUniformProbabilisticSamplingNext OBJECT IDENTIFIER, psampRandomUniformProbabilisticSamplingRowStatus RowStatus } psampRandomUniformProbabilisticSamplingIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of this parameter set in the psampRandomUniformProbabilisticSamplingParameterSetTable. It is used in entries of the psampInstanceTable as reference to this parameter set." ::= { psampRandomUniformProbabilisticSamplingParameterSetEntry 1 } psampRandomUniformProbabilisticSamplingPopulation OBJECT-TYPE SYNTAX Integer32 UNITS "packets" MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the number of elements in the parent population of the sampling algorithm." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampRandomUniformProbabilisticSamplingParameterSetEntry 2 } psampRandomUniformProbabilisticSamplingSize OBJECT-TYPE SYNTAX Integer32 UNITS "packets" MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the number of elements that are sampled from the parent population of the sampling algorithm." REFERENCE "draft-ietf-psamp-sample-tech-03.txt, Section 5.1" ::= { psampRandomUniformProbabilisticSamplingParameterSetEntry 3 } psampRandomUniformProbabilisticSamplingNext OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the the next sampling method executed after the current sampling method." ::= { psampRandomUniformProbabilisticSamplingParameterSetEntry 4 } psampRandomUniformProbabilisticSamplingRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampRandomUniformProbabilisticSamplingParameterSetEntry 5 } -- Method 5: Random Non-Uniform Probabilistic Sampling psampRandomNonUniformProbabilisticSampling OBJECT IDENTIFIER ::= { psampSamplingMethods 5 } psampRandomNonUniformProbabilisticSamplingAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of random non-uniform probabilistic sampling at the managed node." DEFVAL { notAvailable } ::= { psampRandomNonUniformProbabilisticSampling 1 } -- Method 6: Flow State Sampling psampFlowStateSampling OBJECT IDENTIFIER ::= { psampSamplingMethods 6 } psampFlowStateSamplingAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of flow state sampling at the managed node." DEFVAL { notAvailable } ::= { psampFlowStateSampling 1 } -- Packet selection filtering methods group of objects psampFilteringMethods OBJECT IDENTIFIER ::= { psampObjects 2 } -- Method 0: Mask filtering psampMaskFiltering OBJECT IDENTIFIER ::= { psampFilteringMethods 0 } psampMaskFilteringAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of mask filtering at the managed node." DEFVAL { notAvailable } ::= { psampMaskFiltering 1 } -- to be defined in the next version -- Method 1: Hash filtering psampHashFiltering OBJECT IDENTIFIER ::= { psampFilteringMethods 1 } psampHashFilteringAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of hash filtering at the managed node." DEFVAL { notAvailable } ::= { psampHashFiltering 1 } psampHashFilteringCapabilities OBJECT IDENTIFIER ::= { psampHashFiltering 2 } -- not defined yet psampHashFilteringParameterSetTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampHashFilteringParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists configurations of hash filtering. A parameter set describing a configuration contains one parameter: the hash function used." ::= { psampHashFiltering 3 } psampHashFilteringParameterSetEntry OBJECT-TYPE SYNTAX PsampHashFilteringParameterSetEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampHashFilteringParameterSetTable." INDEX { psampHashFilteringIndex } ::= { psampHashFilteringParameterSetTable 1 } PsampHashFilteringParameterSetEntry ::= SEQUENCE { psampHashFilteringIndex Integer32, psampHashFilteringFunction OBJECT IDENTIFIER, psampHashFilteringNext OBJECT IDENTIFIER, psampHashFilteringRowStatus RowStatus } psampHashFilteringIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of this parameter set in the psampHashFilteringParameterSetTable. It is used in entries of the psampInstanceTable as reference to this parameter set." ::= { psampHashFilteringParameterSetEntry 1 } psampHashFilteringFunction OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the the hash function executed by the current filtering method." ::= { psampHashFilteringParameterSetEntry 2 } psampHashFilteringNext OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-create STATUS current DESCRIPTION "When retrieved, this object specifies the the next sampling method executed after the current sampling method." ::= { psampHashFilteringParameterSetEntry 3 } psampHashFilteringRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampHashFilteringParameterSetEntry 4 } -- Method 2: Router State filtering psampRouterStateFiltering OBJECT IDENTIFIER ::= { psampFilteringMethods 2 } psampRouterStateFilteringAvailability OBJECT-TYPE SYNTAX PsampMethodAvailability MAX-ACCESS read-only STATUS current DESCRIPTION "When retrieved, this object indicates the availability of mask filtering at the managed node." DEFVAL { notAvailable } ::= { psampRouterStateFiltering 1 } -- to be defined in the next version -- Reporting Group psampReporting OBJECT IDENTIFIER ::= { psampObjects 3 } psampCollectorTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampCollectorEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists collectors to which sampled packets are exported." ::= { psampReporting 1 } psampCollectorEntry OBJECT-TYPE SYNTAX PsampCollectorEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampCollectorTable." INDEX { psampCollectorIndex } ::= { psampCollectorTable 1 } PsampCollectorEntry ::= SEQUENCE { psampCollectorIndex Integer32, psampCollectorTargetIpAddressType InetAddressType, psampCollectorTargetIpAddress InetAddress, psampCollectorTargetProtocol Integer32, psampCollectorTargetPort Integer32, psampCollectorReportsSent Integer32, psampCollectorRowStatus RowStatus } psampCollectorIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The locally arbitrary, but unique identifier of a collector. The value is expected to remain constant at least from one re-initialization of the entity's network management system to the next re-initialization." ::= { psampCollectorEntry 1 } psampCollectorTargetIpAddressType OBJECT-TYPE SYNTAX InetAddressType MAX-ACCESS read-create STATUS current DESCRIPTION "The IP address type of the collector." ::= { psampCollectorEntry 2 } psampCollectorTargetIpAddress OBJECT-TYPE SYNTAX InetAddress MAX-ACCESS read-create STATUS current DESCRIPTION "The IP address of the collector." ::= { psampCollectorEntry 3 } psampCollectorTargetProtocol OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION "The transport protocol used for exporting sampled packets to the collector. Allowed values are ... " ::= { psampCollectorEntry 4 } psampCollectorTargetPort OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION "The port number of the collector." ::= { psampCollectorEntry 5 } psampCollectorReportsSent OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of reports sent to the collector." ::= { psampCollectorEntry 6 } psampCollectorRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampCollectorEntry 7 } psampCollectorGroupTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampCollectorGroupEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists groups of collectors to which sampled packets are exported. If sampled packets are exported to only one collector the group consists of exactly one collector." ::= { psampReporting 2 } psampCollectorGroupEntry OBJECT-TYPE SYNTAX PsampCollectorGroupEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampCollectorGroupTable." INDEX { psampCollectorGroupIndex, psampCollectorGroupCollectorIndex } ::= { psampCollectorGroupTable 1 } PsampCollectorGroupEntry ::= SEQUENCE { psampCollectorGroupIndex Integer32, psampCollectorGroupCollectorIndex Integer32, psampCollectorGroupRowStatus RowStatus } psampCollectorGroupIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The locally arbitrary, but unique identifier of a collector group. The value is expected to remain constant at least from one re-initialization of the entity's network management system to the next re-initialization." ::= { psampCollectorGroupEntry 1 } psampCollectorGroupCollectorIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of a collector defined in the psampCollectorTable." ::= { psampCollectorGroupEntry 2 } psampCollectorGroupRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampCollectorGroupEntry 3 } psampTemplateTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampTemplateEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists templates used by the exporter." ::= { psampReporting 3 } psampTemplateEntry OBJECT-TYPE SYNTAX PsampTemplateEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampTemplateTable." INDEX { psampTemplateIndex } ::= { psampTemplateTable 1 } PsampTemplateEntry ::= SEQUENCE { psampTemplateIndex Integer32, psampTemplateId Integer32, psampTemplateReportsSent Integer32, psampTemplateRowStatus RowStatus } psampTemplateIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The locally arbitrary, but unique identifier of a template. The value is expected to remain constant at least from one re-initialization of the entity's network management system to the next re-initialization." ::= { psampTemplateEntry 1 } psampTemplateId OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS read-create STATUS current DESCRIPTION "The unique identifier for the template." REFERENCE "draft-ietf-ipfix-protocol-02.txt" ::= { psampTemplateEntry 2 } psampTemplateReportsSent OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of reports sent with this template." ::= { psampTemplateEntry 3 } psampTemplateRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampTemplateEntry 4 } -- Instance Group psampInstances OBJECT IDENTIFIER ::= { psampObjects 4 } psampInstanceTable OBJECT-TYPE SYNTAX SEQUENCE OF PsampInstanceEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists active instances of packet sampling at the managed node." ::= { psampInstances 1 } psampInstanceEntry OBJECT-TYPE SYNTAX PsampInstanceEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Defines an entry in the psampInstanceTable." INDEX { psampInstanceIndex } ::= { psampInstanceTable 1 } PsampInstanceEntry ::= SEQUENCE { psampInstanceIndex Integer32, psampInstanceIfIndex InterfaceIndex, psampInstanceStartTime DateAndTime, psampInstanceStopTime DateAndTime, psampInstanceParameterSet OBJECT IDENTIFIER, psampInstanceCollectorGroupIndex Integer32, psampInstancePacketsObserved Integer32, psampInstanceReportsSent Integer32, psampInstanceRowStatus RowStatus } psampInstanceIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The locally arbitrary, but unique identifier of an instance. The value is expected to remain constant at least from one re-initialization of the entity's network management system to the next re-initialization." ::= { psampInstanceEntry 1 } psampInstanceIfIndex OBJECT-TYPE SYNTAX InterfaceIndex MAX-ACCESS read-create STATUS current DESCRIPTION "Index of the IP interface at which the packet stream is observed by packet selection method 1." ::= { psampInstanceEntry 2 } psampInstanceStartTime OBJECT-TYPE SYNTAX DateAndTime MAX-ACCESS read-create STATUS current DESCRIPTION "The date and time when collecting samples for this parameter set should start." ::= { psampInstanceEntry 3 } psampInstanceStopTime OBJECT-TYPE SYNTAX DateAndTime MAX-ACCESS read-create STATUS current DESCRIPTION "The date and time when collecting samples for this parameter set should stop." ::= { psampInstanceEntry 4 } psampInstanceParameterSet OBJECT-TYPE SYNTAX OBJECT IDENTIFIER MAX-ACCESS read-create STATUS current DESCRIPTION "The OID of a parameter set in one of the method-specific tables in the Methods group. The identified method is applied to the stream of packets observed at the interface." ::= { psampInstanceEntry 5 } psampInstanceCollectorGroupIndex OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION "The index of the collector group to which packet reports are sent." ::= { psampInstanceEntry 6 } psampInstancePacketsObserved OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of packets observed by method before selecting packets." ::= { psampInstanceEntry 7 } psampInstanceReportsSent OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of reports on sampled packets sent to the collector." ::= { psampInstanceEntry 8 } psampInstanceRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this row of the table." ::= { psampInstanceEntry 9 } -- Conformance information -- Compliance statements psampCompliances OBJECT IDENTIFIER ::= { psampConformance 1 } psampGroups OBJECT IDENTIFIER ::= { psampConformance 2 } -- Compliance statements psampCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION "The compliance statement for the PSAMP-MIB." MODULE -- this module MANDATORY-GROUPS { psampGroup } ::= { psampCompliances 1 } -- MIB groupings psampGroup OBJECT-GROUP OBJECTS { psampSelectingAllAvailability, psampSystematicCountBasedSamplingAvailability, psampSystematicCountBasedSamplingMaxInterval, psampSystematicCountBasedSamplingMaxSpacing, psampSystematicCountBasedSamplingInterval, psampSystematicCountBasedSamplingSpacing, psampSystematicCountBasedSamplingNext, psampSystematicCountBasedSamplingRowStatus, psampSystematicTimeBasedSamplingAvailability, psampSystematicTimeBasedSamplingMaxInterval, psampSystematicTimeBasedSamplingMaxSpacing, psampSystematicTimeBasedSamplingInterval, psampSystematicTimeBasedSamplingInterval, psampSystematicTimeBasedSamplingSpacing, psampSystematicTimeBasedSamplingNext, psampSystematicTimeBasedSamplingRowStatus, psampRandomOutOfNSamplingAvailability, psampRandomOutOfNSamplingPopulation, psampRandomOutOfNSamplingSize, psampRandomOutOfNSamplingNext, psampRandomOutOfNSamplingRowStatus, psampRandomUniformProbabilisticSamplingAvailability, psampRandomUniformProbabilisticSamplingPopulation, psampRandomUniformProbabilisticSamplingSize, psampRandomUniformProbabilisticSamplingNext, psampRandomUniformProbabilisticSamplingRowStatus, psampRandomNonUniformProbabilisticSamplingAvailability, psampFlowStateSamplingAvailability, psampMaskFilteringAvailability, psampHashFilteringAvailability, psampHashFilteringFunction, psampHashFilteringNext, psampHashFilteringRowStatus, psampRouterStateFilteringAvailability, psampCollectorTargetIpAddressType, psampCollectorTargetIpAddress, psampCollectorTargetProtocol, psampCollectorTargetPort, psampCollectorReportsSent, psampCollectorRowStatus, psampCollectorGroupRowStatus, psampTemplateId, psampTemplateReportsSent, psampTemplateRowStatus, psampInstanceIfIndex, psampInstanceStartTime, psampInstanceStopTime, psampInstanceParameterSet, psampInstanceCollectorGroupIndex, psampInstancePacketsObserved, psampInstanceReportsSent, psampInstanceRowStatus } STATUS current DESCRIPTION "The group of all accessible objects of the PSAMP MIB." ::= { psampGroups 1 } END -- -- Copyright (C) The Internet Society (2004). All Rights Reserved. -- -- This document and translations of it may be copied and furnished to -- others, and derivative works that comment on or otherwise explain it -- or assist in its implementation may be prepared, copied, published -- and distributed, in whole or in part, without restriction of any -- kind, provided that the above copyright notice and this paragraph are -- included on all such copies and derivative works. However, this -- document itself may not be modified in any way, such as by removing -- the copyright notice or references to the Internet Society or other -- Internet organizations, except as needed for the purpose of -- developing Internet standards in which case the procedures for -- copyrights defined in the Internet Standards process must be -- followed, or as required to translate it into languages other than -- English. -- -- The limited permissions granted above are perpetual and will not be -- revoked by the Internet Society or its successors or assignees. -- -- This document and the information contained herein is provided on an -- "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -- TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -- BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -- HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF -- MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. -- -- -- Acknowledgment -- -- Funding for the RFC Editor function is currently provided by the -- Internet Society.