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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
WAYSTREAM-IGMP-CACHE-MIB DEFINITIONS ::= BEGIN
--
-- This is the Waystream Management Information Base definition for IGMP
-- cache viewing on Waystream iBOS based products.
--
-- Copyright (c) 2017 Waystream AB, All rights reserved
--
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
IpAddress,
TimeTicks
FROM SNMPv2-SMI
InterfaceIndex
FROM IF-MIB
wsMgmt
FROM WAYSTREAM-SMI;
--
-- Waystream IGMP snoop
--
wsIgmp MODULE-IDENTITY
LAST-UPDATED "201702101100Z" -- February 10, 2017
ORGANIZATION "Waystream AB"
CONTACT-INFO
"Waystream AB
Customer Service
Mail : Farogatan 33
SE-164 51 Kista
Sweden
Tel : +46 8 5626 9450
E-mail: info@waystream.com
Web : http://www.waystream.com"
DESCRIPTION
"Waystream MIB describing IGMP caching and snooping functions of
ASRs"
REVISION "201702101100Z" -- February 10, 2017
DESCRIPTION
"Company name change:
In October 2015 PacketFront Network Products was renamed Waystream.
In this update all PacketFront were changed to Waystream and all
pf* to ws*."
REVISION "201101111754Z" -- January 11, 2011
DESCRIPTION
"Updated company name"
REVISION "200904291349Z"
DESCRIPTION
"Moved pfIgmp from pfExperimental.3 to pfMgmt.13"
REVISION "200903231125Z"
DESCRIPTION
"Updated telephone information in contact-info"
REVISION "200804301348Z"
DESCRIPTION
"Move from PACKETFRONT-MIB"
REVISION "200706131437Z"
DESCRIPTION
"Initial implementation of pfIgmp"
::= { wsMgmt 13 }
wsIgmpCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsIgmpCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing all snooped members of IP multicast groups
that are connected through downstream0-mapped interfaces."
::= { wsIgmp 2 }
wsIgmpCacheEntry OBJECT-TYPE
SYNTAX WsIgmpCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the wsIgmpCacheTable."
INDEX { wsIgmpCacheAddress, wsIgmpCacheIfIndex, wsIgmpCacheReporter }
::= { wsIgmpCacheTable 1 }
WsIgmpCacheEntry ::= SEQUENCE {
wsIgmpCacheAddress IpAddress,
wsIgmpCacheIfIndex InterfaceIndex,
wsIgmpCacheReporter IpAddress,
wsIgmpCacheUpTime TimeTicks
}
wsIgmpCacheAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast group for which this entry
contains information."
::= { wsIgmpCacheEntry 1 }
wsIgmpCacheIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface for which this entry contains
information for an IP multicast group."
::= { wsIgmpCacheEntry 2 }
wsIgmpCacheReporter OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The reporter for which this entry contains
information for an IP multicast group."
::= { wsIgmpCacheEntry 3 }
wsIgmpCacheUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time elapsed since this entry was created."
::= { wsIgmpCacheEntry 4 }
END
|