-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNS-INTERFACE
696 lines (624 loc) · 20 KB
/
NS-INTERFACE
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
-- This module defines enterprise MIBs for interface configuration
--
-- Copyright (c) 1999-2004, Juniper Networks, Inc.
-- All rights reserved.
NETSCREEN-INTERFACE-MIB DEFINITIONS ::= BEGIN
IMPORTS
netscreenInterface
FROM NETSCREEN-SMI
Counter32, Integer32, IpAddress, MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
DisplayString,PhysAddress
FROM SNMPv2-TC
;
netscreenInterfaceMibModule MODULE-IDENTITY
LAST-UPDATED "200405032022Z" -- May 03, 2004
ORGANIZATION
"Juniper Networks, Inc."
CONTACT-INFO
"Customer Support
1194 North Mathilda Avenue
Sunnyvale, California 94089-1206
USA
Tel: 1-800-638-8296
E-mail: [email protected]
HTTP://www.juniper.net"
DESCRIPTION
"This module defines the object that are used to monitor NS's
interface configuration"
REVISION "200405030000Z" -- May 03, 2004
DESCRIPTION
"Modified copyright and contact information"
REVISION "200403030000Z" -- March 03, 2004
DESCRIPTION
"Converted to SMIv2 by Longview Software"
REVISION "200109280000Z" -- September 28, 2001
DESCRIPTION
"No Comment"
REVISION "200105110000Z" -- May 11, 2001
DESCRIPTION
"Creation Date"
::= { netscreenInterface 0 }
NsIfEntry ::= SEQUENCE
{
nsIfIndex Integer32,
nsIfName DisplayString,
nsIfVsys Integer32,
nsIfZone Integer32,
nsIfStatus INTEGER,
nsIfIp IpAddress,
nsIfNetmask IpAddress,
nsIfGateway IpAddress,
nsIfMngIp IpAddress,
nsIfMode INTEGER,
nsIfMAC PhysAddress,
nsIfMngTelnet INTEGER,
nsIfMngSCS INTEGER,
nsIfMngWEB INTEGER,
nsIfMngSSL INTEGER,
nsIfMngSNMP INTEGER,
nsIfMngGlobal INTEGER,
nsIfMngGlobalPro INTEGER,
nsIfMngPing INTEGER,
nsIfMngIdentReset INTEGER,
nsIfInfo Integer32,
nsIfDescr DisplayString
}
NsIfFlowEntry ::= SEQUENCE
{
nsIfFlowIfIdx Integer32,
nsIfFlowVsys Integer32,
nsIfFlowInByte Counter32,
nsIfFlowInPacket Counter32,
nsIfFlowOutByte Counter32,
nsIfFlowOutPacket Counter32,
nsIfFlowInVpn Counter32,
nsIfInVlan Counter32,
nsIfOutVlan Counter32,
nsIfFlowIfInfo Integer32
}
NsIfMonEntry ::= SEQUENCE
{
nsIfMonIfIdx Integer32,
nsIfMonVsys Integer32,
nsIfMonPlyDeny Counter32,
nsIfMonAuthFail Counter32,
nsIfMonUrlBlock Counter32,
nsIfMonTrMngQueue Counter32,
nsIfMonTrMngDrop Counter32,
nsIfMonEncFail Counter32,
nsIfMonNoSa Counter32,
nsIfMonNoSaPly Counter32,
nsIfMonSaInactive Counter32,
nsIfMonSaPolicyDeny Counter32,
nsIfMonIfInfo Integer32
}
NsIfSecondaryIpEntry ::= SEQUENCE
{
nsIfSecondaryIpIndex Integer32,
nsIfSecondaryIpIfIdx Integer32,
nsIfSecondaryIpVsys Integer32,
nsIfSecondaryIpZone Integer32,
nsIfSecondaryIpAddress IpAddress,
nsIfSecondaryIpNetmask IpAddress,
nsIfSecondaryIpIfInfo Integer32
}
nsIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"All NetScreen devices have a trusted interface and an
untrusted interface. The NetScreen-10 and -100 also have a DMZ
interface. Additionally, on each of the virtual systems
supported by the NetScreen-1000 there can be on or more tursted
subinterfaces linking a particular virtual system to one or
more virtual LANs. Other interfaces-some physical, some
logical, and some virtual-provide exclusive channels for
administrative traffic, or for communication among member in a
redundant group. In this table, it will collect following
interface: tursted interface, untrusted interface, DMZ
interface, Management Interface and Subinterface."
::= { netscreenInterface 1 }
nsIfEntry OBJECT-TYPE
SYNTAX NsIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"nsIfEntry collects some attributes about NetScreen interface
settings."
INDEX
{ nsIfIndex }
::= { nsIfTable 1 }
nsIfIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface number which uniquely identifies an interface."
::= { nsIfEntry 1 }
nsIfName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each interface has a readable name such as 'trust', 'trust/1',
etc."
::= { nsIfEntry 2 }
nsIfVsys OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"According NetScreen's concepts, each interface belongs to one
virtual system. This attribute displays the virtual system name
an interface belongs to. If the device is device which doesn't
support vsys such as NS-100, we can logically think all the
setting belongs to 'root' vsys."
::= { nsIfEntry 3 }
nsIfZone OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each interface belongs to one security zone. This attribute
displays the security zone name an interface belongs to."
::= { nsIfEntry 4 }
nsIfStatus OBJECT-TYPE
SYNTAX INTEGER {
down(0),
up(1),
ready(2),
inactive(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface status which indicates interface's operational
status."
::= { nsIfEntry 5 }
nsIfIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each interface must be assigned an IP address."
::= { nsIfEntry 6 }
nsIfNetmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each interface must belong to a subnet represented by
netmask."
::= { nsIfEntry 7 }
nsIfGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Default gateway ip address."
::= { nsIfEntry 8 }
nsIfMngIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Trusted, untrusted and DMZ interfaces can have two IP address:
an interface IP address that corresponds to the physical port
through which that interface connects to a network, and a
Manage IP address that can be used to receive administrative
traffic"
::= { nsIfEntry 9 }
nsIfMode OBJECT-TYPE
SYNTAX INTEGER {
transparent(0),
nat(1),
route(2),
not-applicable(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NetScreen interface can has three operation modes. They are
transparent, nat and route."
::= { nsIfEntry 10 }
nsIfMAC OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MAC address the interface has."
::= { nsIfEntry 11 }
nsIfMngTelnet OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits telnet management."
::= { nsIfEntry 12 }
nsIfMngSCS OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits Secure Command Shell management."
::= { nsIfEntry 13 }
nsIfMngWEB OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits WEB UI management."
::= { nsIfEntry 14 }
nsIfMngSSL OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits SSL management."
::= { nsIfEntry 15 }
nsIfMngSNMP OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits SNMP management."
::= { nsIfEntry 16 }
nsIfMngGlobal OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits NS Global management."
::= { nsIfEntry 17 }
nsIfMngGlobalPro OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits NS Global Pro management."
::= { nsIfEntry 18 }
nsIfMngPing OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits Ping go-through."
::= { nsIfEntry 19 }
nsIfMngIdentReset OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute is used to indicate whether the interface
permits ident reset."
::= { nsIfEntry 20 }
nsIfInfo OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internal id assigned to this interface. Stays persistent across resets."
::= { nsIfEntry 21 }
nsIfDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each interface has a a configurable descriptor string."
::= { nsIfEntry 22 }
nsIfSecondaryIpTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsIfSecondaryIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"In some ScreenOS, it supports multiple IP addresses and
related subnets based on the same interface. This table
collects the multiple IP addresses configuration on an
interface."
::= { netscreenInterface 2 }
nsIfSecondaryIpEntry OBJECT-TYPE
SYNTAX NsIfSecondaryIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"nsIfSecondaryIpEntry collects some attributes about multiple
IP configurations on an interface."
INDEX
{ nsIfSecondaryIpIndex }
::= { nsIfSecondaryIpTable 1 }
nsIfSecondaryIpIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index used as primary key when retrieving the
table."
::= { nsIfSecondaryIpEntry 1 }
nsIfSecondaryIpIfIdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index value which uniquely identifies an interface the
secodary ip belongs to. The interface identified by a
particular value of this index is the same interface as
identified by the same value of ifIndex."
::= { nsIfSecondaryIpEntry 2 }
nsIfSecondaryIpVsys OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"According NetScreen's concepts, each interface belongs to one
virtual system. This attribute displays the virtual system ID
an interface belongs to. If the device is device which doesn't
support vsys such as NS-100, we can logically think all the
setting belongs to 'root' vsys."
::= { nsIfSecondaryIpEntry 3 }
nsIfSecondaryIpZone OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"each interface belongs to one security zone. this attribute
displays the security zone name an interface belongs to."
::= { nsIfSecondaryIpEntry 4 }
nsIfSecondaryIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ip Address value."
::= { nsIfSecondaryIpEntry 5 }
nsIfSecondaryIpNetmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subnet of a ip belongs to."
::= { nsIfSecondaryIpEntry 6 }
nsIfSecondaryIpIfInfo OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internal id assigned to this interface. Stays persistent across resets."
::= { nsIfSecondaryIpEntry 7 }
nsIfFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsIfFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"nsIfFlowTable is used to get flow statistical information of
the interface."
::= { netscreenInterface 3 }
nsIfFlowEntry OBJECT-TYPE
SYNTAX NsIfFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entry collect some attributes about interface flow
counters."
INDEX
{ nsIfFlowIfIdx }
::= { nsIfFlowTable 1 }
nsIfFlowIfIdx OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique interface id, also used as table index."
::= { nsIfFlowEntry 1 }
nsIfFlowVsys OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"According NetScreen's concepts. each interface belongs to one
virtual system. This attribute displays the virtual system name
an interface belongs to."
::= { nsIfFlowEntry 2 }
nsIfFlowInByte OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Incoming byte number arriving at the this interface"
::= { nsIfFlowEntry 3 }
nsIfFlowInPacket OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Incoming packet number arriving at the this interface"
::= { nsIfFlowEntry 4 }
nsIfFlowOutByte OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Outgoing byte number sending through this interface"
::= { nsIfFlowEntry 5 }
nsIfFlowOutPacket OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Outgoing packet number sending through this interface"
::= { nsIfFlowEntry 6 }
nsIfFlowInVpn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VPN packet go through this interface"
::= { nsIfFlowEntry 7 }
nsIfInVlan OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Incoming vlan packet"
::= { nsIfFlowEntry 8 }
nsIfOutVlan OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Outgoing vlan packet"
::= { nsIfFlowEntry 9 }
nsIfFlowIfInfo OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internal id assigned to this interface. Stays persistent across resets."
::= { nsIfFlowEntry 10 }
nsIfMonTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsIfMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table collects some of dropped packet counters of
interface"
::= { netscreenInterface 4 }
nsIfMonEntry OBJECT-TYPE
SYNTAX NsIfMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing tunnel information"
INDEX
{ nsIfMonIfIdx }
::= { nsIfMonTable 1 }
nsIfMonIfIdx OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique interface id, also used as table index."
::= { nsIfMonEntry 1 }
nsIfMonVsys OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"According NetScreen's concepts, each interface belongs to one
virtual system. This attribute displays the virtual system name
an interface belongs to."
::= { nsIfMonEntry 2 }
nsIfMonPlyDeny OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet drop since denied by policy."
::= { nsIfMonEntry 3 }
nsIfMonAuthFail OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet drop due to authentication failed."
::= { nsIfMonEntry 4 }
nsIfMonUrlBlock OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet drop due to URL blocking."
::= { nsIfMonEntry 5 }
nsIfMonTrMngQueue OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"packet queue up due to traffic management"
::= { nsIfMonEntry 6 }
nsIfMonTrMngDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet drop due to traffic management"
::= { nsIfMonEntry 7 }
nsIfMonEncFail OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPSec enc failed due to sa not available, no ipak, etc"
::= { nsIfMonEntry 8 }
nsIfMonNoSa OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"packet drop due to no sa found for incomig spi"
::= { nsIfMonEntry 9 }
nsIfMonNoSaPly OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"packet drop due to no policy associated with found sa"
::= { nsIfMonEntry 10 }
nsIfMonSaInactive OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"packet drop due to sa not active"
::= { nsIfMonEntry 11 }
nsIfMonSaPolicyDeny OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"packet drop due to denial by sa policy"
::= { nsIfMonEntry 12 }
nsIfMonIfInfo OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internal id assigned to this interface. Stays persistent across resets."
::= { nsIfMonEntry 13 }
END