-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDEVETHERNET-MIB
92 lines (75 loc) · 1.94 KB
/
DEVETHERNET-MIB
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
DEVETHERNET-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
device
FROM ANIROOT-MIB;
aniDevEthernet MODULE-IDENTITY
LAST-UPDATED "0210251725Z" -- Fri Oct 25 17:25:00 PDT 2002
ORGANIZATION "Aperto Networks"
CONTACT-INFO
"
Postal: Aperto Networks Inc
1637 S Main Street
Milpitas, California 95035
Tel: +1 408 719 9977
"
DESCRIPTION
"This group provides Ethernet related information for BSU or SU.
"
::= { device 11 }
aniDevEthernetConfig OBJECT IDENTIFIER ::= { aniDevEthernet 1 }
-- the BSU/SU Ethernet Configuration group
aniDevEthernetConfigMode OBJECT-TYPE
SYNTAX INTEGER {
auto-negotiate(1),
speed-100mbps-full(2),
speed-100mbps-half(3),
speed-10mbps-full(4),
speed-10mbps-half(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the Ethernet Speed (10 or 100 Mbps) and
Duplex Setting (Half or Full)
or to set the device to auto-negotiate.
"
DEFVAL { auto-negotiate }
::= { aniDevEthernetConfig 1 }
aniDevEthernetCurrentLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Displays the current ethernet link status of the device
"
::= { aniDevEthernetConfig 2 }
aniDevEthernetCurrentSpeed OBJECT-TYPE
SYNTAX INTEGER {
speed-10-mbps(1),
speed-100-mbps(2),
not-applicable(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Displays the current ethernet speed of the device
"
::= { aniDevEthernetConfig 3 }
aniDevEthernetCurrentDuplex OBJECT-TYPE
SYNTAX INTEGER {
half-duplex(1),
full-duplex(2),
not-applicable(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Displays the current ethernet duplex mode of the device
"
::= { aniDevEthernetConfig 4 }
END