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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
|
SL-SECU-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, transmission, IpAddress
FROM SNMPv2-SMI
InterfaceIndex FROM IF-MIB
DisplayString, TruthValue, RowStatus, DateAndTime
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
slMain FROM SL-MAIN-MIB;
-- This is the MIB module for PL security.
slSecuMib MODULE-IDENTITY
LAST-UPDATED "201105170000Z"
ORGANIZATION "PacketLight Networks Ltd."
CONTACT-INFO
"Omri_Viner@PacketLight.com"
DESCRIPTION
"This security module. This mib is used to configure the firewall."
::= { slMain 24 }
SlSecuType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The security protocol types:
Telnet - CLI
SSH - Secured Telnet
HTTP - Hyper Text
HTTPS - Secured HTTP
ICMP - Ping
SNMP - Simple Network Management (only 161 is supported)
FTP - File Transfer
TFTP - Trivial FTP
TL1 - TL1 over Telnet
TL1SSH - TL1 over SSH
WL - White list (port number is 0)
SNMPOVERTCP - SNMP over TCP
SFTP - Client side"
SYNTAX INTEGER {
telnet(1),
ssh(2),
http(3),
https(4),
icmp(5),
snmp(6),
ftp(7),
tftp(8),
tl1(9),
tl1ssh(10),
wl(11),
snmpovertcp(12),
sftp(13)
}
slSecuGen OBJECT IDENTIFIER ::= { slSecuMib 1 }
slSecuSelect OBJECT IDENTIFIER ::= { slSecuMib 2 }
slSecuWl OBJECT IDENTIFIER ::= { slSecuMib 3 }
slSecuEncryption OBJECT IDENTIFIER ::= { slSecuMib 4 }
-- The Security general part
slSecuFirewallEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"General Enable/Disable of the firewall operation."
::= { slSecuGen 1 }
-- The Security Selection Table
slSecuSelectTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlSecuSelectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The security protocol selection table."
::= { slSecuSelect 1 }
slSecuSelectEntry OBJECT-TYPE
SYNTAX SlSecuSelectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the security selection table."
INDEX { slSecuSelectType }
::= { slSecuSelectTable 1 }
SlSecuSelectEntry ::=
SEQUENCE {
slSecuSelectType SlSecuType,
slSecuSelectPort INTEGER,
slSecuSelectEnable TruthValue
}
slSecuSelectType OBJECT-TYPE
SYNTAX SlSecuType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The secutity protocol type"
::= { slSecuSelectEntry 1 }
slSecuSelectPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The corresponding port number of the protocol.
Port number 0 is used when not applicable/available."
::= { slSecuSelectEntry 2 }
slSecuSelectEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"True - Enables the firewall for the corresponding protocol.
False - Dsables the firewall for the corresponding protocol.
When enabled the firewall blocks the protocol."
::= { slSecuSelectEntry 3 }
-- IP White List Table
-- The IP white list Table odefine which IP addresses are allowed.
slSecuWlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlSecuWlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This white list table."
::= { slSecuWl 1 }
slSecuWlEntry OBJECT-TYPE
SYNTAX SlSecuWlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular IP address."
INDEX { slSecuWlIp }
::= { slSecuWlTable 1 }
SlSecuWlEntry ::=
SEQUENCE {
slSecuWlIp
IpAddress,
slSecuWlMask
IpAddress,
slSecuWlStatus
RowStatus
}
slSecuWlIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address to allow"
::= { slSecuWlEntry 1 }
slSecuWlMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the mask to be logical-ANDed with the
destination address before being compared to
the value in the slSecuWlIp field."
::= { slSecuWlEntry 2 }
slSecuWlStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { slSecuWlEntry 3 }
-- *******************************************
--
-- The Encryption Table
--
-- *******************************************
slSecuEncryptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlSecuEncryptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The encryption table. This table has an entry per transponder."
::= { slSecuEncryption 1 }
slSecuEncryptionEntry OBJECT-TYPE
SYNTAX SlSecuEncryptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry is used to control the necryption per transponder."
INDEX { slSecuEncryptionIfIndex }
::= { slSecuEncryptionTable 1 }
SlSecuEncryptionEntry ::=
SEQUENCE {
slSecuEncryptionIfIndex InterfaceIndex,
slSecuEncryptionEnable TruthValue,
slSecuEncryptionStatus INTEGER,
slSecuEncryptionForceInit INTEGER,
slSecuEncryptionPreShared DisplayString,
slSecuEncryptionKeyExchangePeriod INTEGER,
slSecuEncryptionLock TruthValue,
slSecuEncryptionProtectedStatus INTEGER
}
slSecuEncryptionIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Interface Index of the uplink port."
::= { slSecuEncryptionEntry 1 }
slSecuEncryptionEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the encryption on this uplink."
::= { slSecuEncryptionEntry 2 }
slSecuEncryptionStatus OBJECT-TYPE
SYNTAX INTEGER {
init(1), --- init/link-failure state
exchange(2), --- public key exchange state
kdf(3), --- key derivation function state
active(4) --- active state
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the encryption finite state machine."
::= { slSecuEncryptionEntry 3 }
slSecuEncryptionForceInit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Writing this valiable forces init to the encryption state machine."
::= { slSecuEncryptionEntry 4 }
slSecuEncryptionPreShared OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The pre-shared secret.
Either the pre-shared key, or the shared secret to avoid Mitm when using DH public key exchange."
::= { slSecuEncryptionEntry 5 }
slSecuEncryptionKeyExchangePeriod OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Key Exchage Period, specified in minutes.
The value 0 means to perform the key exchange only once at link establishment."
::= { slSecuEncryptionEntry 6 }
slSecuEncryptionLock OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lock/Unlock the encrypted service for this uplink."
::= { slSecuEncryptionEntry 7 }
slSecuEncryptionProtectedStatus OBJECT-TYPE
SYNTAX INTEGER {
init(1), --- init/link-failure state
exchange(2), --- public key exchange state
kdf(3), --- key derivation function state
active(4) --- active state
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protected port state of the encryption finite state machine."
::= { slSecuEncryptionEntry 8 }
END
|