blob: 0948428f1e2b14d316000cbf56fef11c97305ec0 (
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
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
132
133
134
135
136
137
138
|
DELL-NETWORKING-BMP-MIB DEFINITIONS ::= BEGIN
--
-- This module provides authoritative definitions for
-- Dell Networking OS Baremetal Provisioning MIB.
--
-- This module will be extended, as needed.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter32
FROM SNMPv2-SMI
dellNetMgmt
FROM DELL-NETWORKING-SMI;
dellNetBmpMib MODULE-IDENTITY
LAST-UPDATED "201112071248Z" -- Dec 07,2011 12:48:00 GMT
ORGANIZATION "Dell Inc."
CONTACT-INFO "http://www.dell.com/support"
DESCRIPTION "Dell Networking OS Baremetal Provisioning MIB."
REVISION "201407211200Z"
DESCRIPTION
"Adding relay related objects - bmpRelay and bmpRelayRemoteID."
REVISION "201112071248Z"
DESCRIPTION
"Initial version of this mib."
::= { dellNetMgmt 23 }
-- ### Groups ###
dellNetBmp OBJECT IDENTIFIER ::={ dellNetBmpMib 1 }
bmpReloadType OBJECT-TYPE
SYNTAX INTEGER {
normalReload (1),
bmpReload (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure reload type to enable/disable BMP.
normalReload - Regular reload type; BMP process is not
initiated.
bmpReload - Bmp reload type; BMP process is
initiated and image/config files are upgraded
based on the DHCP/BOOTP offer.
Default is bmpReload."
DEFVAL { bmpReload }
::= { dellNetBmp 1 }
bmpAutoSave OBJECT-TYPE
SYNTAX INTEGER {
bmpActionEnable (1),
bmpActionDisable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure auto-save option for downloaded config file.
bmpActionEnable - Enable auto-save option.
bmpActionDisable - Disable auto-save option.
Default is bmpActionDisable."
DEFVAL { bmpActionDisable }
::= { dellNetBmp 2 }
bmpConfigDownload OBJECT-TYPE
SYNTAX INTEGER {
bmpActionEnable (1),
bmpActionDisable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable config file download.
bmpActionEnable - Enable config-download option.
bmpActionDisable - Disable config-download option.
Default is bmpActionEnable."
DEFVAL { bmpActionDisable }
::= { dellNetBmp 3 }
bmpDhcpTimeout OBJECT-TYPE
SYNTAX INTEGER (0..50)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the DHCP timeout value.
Default is infinity which can be set using value 0"
DEFVAL { 0 }
::= { dellNetBmp 4 }
bmpRetryCount OBJECT-TYPE
SYNTAX INTEGER (0..6)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the number of attempts to download a config file.
Default value is 3."
DEFVAL { 0 }
::= { dellNetBmp 5 }
bmpUserDefinedString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A textual string containing information about the option 60."
::= { dellNetBmp 6 }
bmpRelay OBJECT-TYPE
SYNTAX INTEGER {
bmpActionEnable (1),
bmpActionDisable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure relay option in bmp to support option82 information.
bmpActionEnable - Enable option82 - relay information.
bmpActionDisable - Disable option82 - relay information.
Default is bmpActionDisable."
DEFVAL { bmpActionDisable }
::= { dellNetBmp 7 }
bmpRelayRemoteId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A textual string to be appened for the remote-id value."
::= { dellNetBmp 8}
END
|