This repository was archived by the owner on Mar 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAIS-IRC-STATSERV.txt
More file actions
121 lines (103 loc) · 2.42 KB
/
AIS-IRC-STATSERV.txt
File metadata and controls
121 lines (103 loc) · 2.42 KB
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
AIS-IRC-STATSERV DEFINITIONS ::= BEGIN
--
-- AIS-IRC-STATSERV.txt
-- SNMP module for the StatServ IRC server
-- Author: Simon Butcher
-- Copyright (c) 2002 Alien Internet Services
--
--
-- We need to include some stuff from other MIBs.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, enterprises
FROM SNMPv2-SMI;
--
-- Begin the StatServ module with the first definition
--
statserv MODULE-IDENTITY
LAST-UPDATED "200202221114Z"
ORGANIZATION "Alien Internet Services"
CONTACT-INFO " Simon Butcher
Alien Internet Services
Taconic House
41 Eastfield Road
Croydon 3136
Victoria, Australia
Phone: +61-3-9879-8052
Fax: +61-3-9893-2793
E-mail: simonb@alien.net.au"
DESCRIPTION
"StatServ top level definitions"
::= { irc 3 }
--
-- Define where this comes from (enterprises.ais.irc)
--
ais OBJECT IDENTIFIER ::= { enterprises 4379 }
irc OBJECT IDENTIFIER ::= { ais 3 }
--
-- Data definitions
--
upTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server up-time"
::= { statserv 1 }
countTx OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bytes sent since startup"
::= { statserv 2 }
countRx OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bytes received since startup"
::= { statserv 3 }
countUserConnects OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of user connections since startup"
::= { statserv 4 }
countVersionReplies OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of CTCP version replies since startup"
::= { statserv 5 }
countVersionRepliesTotal OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of CTCP version replies in memory"
::= { statserv 6 }
countVersionUniqueDB OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of unique CTCP version replies in memory"
::= { statserv 7 }
countVersionSpoofs OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of unrequested version replies"
::= { statserv 8 }
countIgnores OBJECT-TYPE
SYNTAX Gauge
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of nicknames we need to ignore"
::= { statserv 9 }
END