blob: a37d0b092a37866af9c8999a272ea4ee14aa49dc (
plain)
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
|
-- *******************************************************************
-- Juniper Tunnel Statistics MIB.
--
-- Copyright (c) 2017, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
-- *******************************************************************
JUNIPER-TUNNEL-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, OBJECT-TYPE,
MODULE-IDENTITY
FROM SNMPv2-SMI
jnxTunnelStatsMibRoot
FROM JUNIPER-SMI;
jnxTunnelStatsMIB MODULE-IDENTITY
LAST-UPDATED "201702211502Z" -- Tue Feb 21 15:02:46 2017 UTC
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"This is Juniper Networks' implementation of enterprise
specific MIB for tunnel statistics."
::= { jnxTunnelStatsMibRoot 1 }
jnxTunnelStatsObjects OBJECT IDENTIFIER ::= { jnxTunnelStatsMIB 1 }
--Tunnels statistics Table
jnxTunnelStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TunnelStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for tunnel Statistics stored against each tunnel type."
::= { jnxTunnelStatsObjects 1 }
jnxTunnelStatsEntry OBJECT-TYPE
SYNTAX TunnelStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv4 over IPv6 tunnel details :
jnxTunnelCount : Count of tunnels created in Routing Protocol Daemon.
jnxTunnelCountInKernel : Count of tunnels created in Routing Protocol Daemon and successfully sent to kernel.
jnxTunnelCountInPfe : Count of tunnels in PFE, which are UP."
INDEX { jnxTunnelType }
::= { jnxTunnelStatsTable 1 }
TunnelStatisticsEntry ::= SEQUENCE {
jnxTunnelType INTEGER,
jnxTunnelCount Integer32,
jnxTunnelCountInKernel Integer32,
jnxTunnelCountInPfe Integer32
}
jnxTunnelType OBJECT-TYPE
SYNTAX INTEGER {
v4ov6(1) -- IPV4 over IPV6 tunnels
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The encapsulation method used by the tunnel."
::= { jnxTunnelStatsEntry 1 }
jnxTunnelCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count of tunnels created in Routing Protocol Daemon."
::= { jnxTunnelStatsEntry 2 }
jnxTunnelCountInKernel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count of tunnels which are successfully sent to kernel."
::= { jnxTunnelStatsEntry 3 }
jnxTunnelCountInPfe OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count of tunnels which are in Packet Forwarding Engine i.e. tunnel status is UP."
::= { jnxTunnelStatsEntry 4 }
-- ***************************************************************
-- END of File
-- ***************************************************************
END
|