1Dell-VRTX-SMON-MIB DEFINITIONS ::= BEGIN
2
3-- Title:                Dell-VRTX ROS
4--                       Private SMON MIB
5-- Version:              7.46
6-- Date:                 15-Jan-2007
7
8IMPORTS
9    rnd                                                     FROM Dell-VRTX-MIB
10    OBJECT-TYPE, MODULE-IDENTITY                            FROM SNMPv2-SMI
11    TruthValue                                              FROM SNMPv2-TC
12    dot1dBasePort                                           FROM BRIDGE-MIB;
13
14CopyModeType ::= TEXTUAL-CONVENTION
15    STATUS current
16    DESCRIPTION    "copy destination mode type:
17                    1- monitor-only
18                    2- network."
19    SYNTAX INTEGER {
20        monitor-only(1),
21        network     (2)
22}
23rlSmon MODULE-IDENTITY
24                LAST-UPDATED "200701020000Z"
25                ORGANIZATION "Dell"
26                CONTACT-INFO
27                      "www.dell.com"
28                DESCRIPTION
29                      "This private MIB module defines SMON private MIBs."
30                REVISION "200701020000Z"
31                DESCRIPTION
32                      "Initial revision."
33        ::= { rnd 84 }
34
35rlPortCopyMibVersion OBJECT-TYPE
36    SYNTAX  INTEGER
37    MAX-ACCESS  read-only
38    STATUS  current
39    DESCRIPTION
40        "MIB's version, the current version is 1."
41    ::= { rlSmon 1 }
42
43rlPortCopySupport OBJECT-TYPE
44   SYNTAX INTEGER {
45       supported(1),
46       notSupported(2)
47   }
48   MAX-ACCESS read-only
49   STATUS current
50   DESCRIPTION
51       "supported - The standard portCopy is supported.
52        notSupported - the standard portCopy is not supported.
53                       only basic portCopy operation is supported. "
54   ::= { rlSmon 2 }
55
56rlPortCopyVlanTaggingTable OBJECT-TYPE
57    SYNTAX  SEQUENCE OF RlPortCopyVlanTaggingEntry
58    MAX-ACCESS  not-accessible
59    STATUS  current
60    DESCRIPTION
61        "A supplementing table for portCopyTable.
62         For every portCopyDest a vlan-tagging option is available."
63    ::= { rlSmon 3 }
64
65rlPortCopyVlanTaggingEntry OBJECT-TYPE
66    SYNTAX  RlPortCopyVlanTaggingEntry
67    MAX-ACCESS  not-accessible
68    STATUS  current
69    DESCRIPTION
70        "Each entry specify how  mirrored packets will transmit from
71         the portCopyDest:   Tagged or unTagged.
72         The values in this entry will be valid only when the
73         dot1dBasePort will be configured as a portCopyDest
74         in the portCopyTable."
75    INDEX   { dot1dBasePort }
76    ::= { rlPortCopyVlanTaggingTable 1 }
77
78RlPortCopyVlanTaggingEntry ::=
79    SEQUENCE {
80        rlPortCopyVlanTagging     TruthValue
81    }
82
83rlPortCopyVlanTagging  OBJECT-TYPE
84    SYNTAX  TruthValue
85    MAX-ACCESS  read-write
86    STATUS  current
87    DESCRIPTION
88        "TRUE  - Mirrored packets will transmit from portCopyDest - Tagged
89         FALSE - Mirrored packets will transmit from portCopyDest - unTagged"
90    DEFVAL { true }
91    ::= { rlPortCopyVlanTaggingEntry 1 }
92
93rlPortCopyMode          OBJECT-TYPE
94      SYNTAX                CopyModeType
95      MAX-ACCESS            read-write
96      STATUS                current
97      DESCRIPTION "This scalar defines a mode of the copy
98                   destination port"
99      ::= { rlSmon 4}
100
101rlPortCopySessionsEnabled          OBJECT-TYPE
102      SYNTAX                TruthValue
103      MAX-ACCESS            read-write
104      STATUS                current
105      DESCRIPTION "This scalar enables globaly  port monitoring sessions "
106      DEFVAL{ true }
107
108      ::= { rlSmon 5}
109
110END
111