-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSWL3MGMT-MIB
1393 lines (1231 loc) · 48 KB
/
SWL3MGMT-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
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
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- SWL3MGMT MIB Ver 0.02 2002/07/30
--
--
-- Modified swL3IpFdbInfoTable
-- Modified swL3IpDomainMgmt to swL3IpCtrlMgmt
-- By Tommy Wang
--
-- SWL3MGMT MIB Ver 0.01 2000/07/05
SWL3MGMT-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter32,MODULE-IDENTITY,OBJECT-TYPE,IpAddress,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
PhysAddress,DisplayString,RowStatus,MacAddress,TruthValue,TimeStamp
FROM SNMPv2-TC
privateMgmt FROM SWPRIMGMT-MIB
TOSType, Metric, AreaID FROM OSPF-MIB
ifIndex FROM IF-MIB;
swL3MgmtMIB MODULE-IDENTITY
LAST-UPDATED "0007150000Z"
ORGANIZATION "enterprise, Inc."
CONTACT-INFO
" Customer Service
Postal:
Tel:
E-mail: "
DESCRIPTION
"The Structure of Layer 3 Network Management Information for the
proprietary enterprise."
::= { privateMgmt 3 }
NodeAddress ::= OCTET STRING (SIZE(6))
NetAddress ::= OCTET STRING (SIZE(4))
swL3DevMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 1 }
swL3IpMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 2 }
swL3RelayMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 3 }
swL3IpCtrlMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 1 }
swL3IpFdbMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 2 }
swL3IpFilterMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 3 }
swL3RelayBootpMgmt OBJECT IDENTIFIER ::= { swL3RelayMgmt 1 }
swL3RelayDnsMgmt OBJECT IDENTIFIER ::= { swL3RelayMgmt 2 }
-- ********************************************************************
-- swL3DevMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 1 }
-- ********************************************************************
swL3DevCtrl OBJECT IDENTIFIER ::= { swL3DevMgmt 1 }
swL3DevCtrlRIPState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates Routing Information Protocol (RIP)
version 2 function is enabled or disabled."
::= { swL3DevCtrl 1 }
swL3DevCtrlOSPFState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates OSPF protocol is enabled or disabled."
::= { swL3DevCtrl 2 }
swL3DevCtrlDVMRPState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates DVMRP protocol is enabled or disabled."
::= { swL3DevCtrl 3 }
swL3DevCtrlVRRPState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates VRRP protocol is enabled or disabled."
::= { swL3DevCtrl 4 }
swL3DevCtrlVRRPPingVirtualAddrState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object let host can ping the virtual ip address or not.
Default is disabled(2)."
::= { swL3DevCtrl 5 }
-- ********************************************************************
-- swL3IpCtrlMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 1 }
-- ********************************************************************
swL3IpCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3IpCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contain IP interface information."
::= { swL3IpCtrlMgmt 1 }
swL3IpCtrlEntry OBJECT-TYPE
SYNTAX SwL3IpCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about a specific IP interface."
INDEX { swL3IpCtrlInterfaceName }
::= { swL3IpCtrlTable 1 }
SwL3IpCtrlEntry ::=
SEQUENCE {
swL3IpCtrlInterfaceName
DisplayString,
swL3IpCtrlIfIndex
INTEGER,
swL3IpCtrlIpAddr
IpAddress,
swL3IpCtrlIpSubnetMask
IpAddress,
swL3IpCtrlVlanName
DisplayString,
swL3IpCtrlMode
INTEGER,
swL3IpCtrlState
RowStatus,
swL3IpCtrlOperState
INTEGER
}
swL3IpCtrlInterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the name of the IP interface."
::= { swL3IpCtrlEntry 1 }
swL3IpCtrlIfIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object uniquely identifies the IP interface number in the
swL3IpCtrlTable."
::= { swL3IpCtrlEntry 2 }
swL3IpCtrlIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the interface. This object only can take the
value of the unicast IP address."
::= { swL3IpCtrlEntry 3 }
swL3IpCtrlIpSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP net mask for this interface."
::= { swL3IpCtrlEntry 4 }
swL3IpCtrlVlanName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the IP control entry's VLAN name. The
VLAN name in each entry must be unique in the IP Control Table."
::= { swL3IpCtrlEntry 5 }
swL3IpCtrlMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
manual(2),
bootp(3),
dhcp(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the IP operation mode.
other(1) - this entry is currently in use but the conditions
under which it will remain so are different from each of the
following values.
manual(2) - the IP address will be set by manual.
bootp(3) - the IP address will be set automatically from BOOTP
server.
dhcp(4) - the IP address will be set automatically from DHCP
server."
::= { swL3IpCtrlEntry 6 }
swL3IpCtrlState OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable displays the status of the entry. The status used
for creating, modifying, and deleting instances of the objects
in this table."
::= { swL3IpCtrlEntry 7 }
swL3IpCtrlOperState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
up(2),
down(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the IP interface."
::= { swL3IpCtrlEntry 8 }
-- ********************************************************************
-- swL3IpFdbMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 2 }
-- ********************************************************************
swL3IpFdbInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3IpFdbInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains forwarding and/or filtering information.
This information is used by the switch in determining how to
propagate the received IP packets."
::= { swL3IpFdbMgmt 1 }
swL3IpFdbInfoEntry OBJECT-TYPE
SYNTAX SwL3IpFdbInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific IP address for which the bridge
has some forwarding and/or filtering information."
INDEX { swL3IpFdbInfoIpAddr }
::= { swL3IpFdbInfoTable 1 }
SwL3IpFdbInfoEntry ::=
SEQUENCE {
-- swL3IpFdbInfoRdIndex
-- INTEGER,
swL3IpFdbInfoIpAddr
IpAddress,
swL3IpFdbInfoIpSubnetMask
IpAddress,
swL3IpFdbInfoPort
INTEGER,
swL3IpFdbInfoType
INTEGER
}
-- swL3IpFdbInfoRdIndex OBJECT-TYPE
-- SYNTAX INTEGER(0..65535)
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The object indicates the IP routing domain index, and should
-- be associated with one of swL3IpDomainStatsIndex."
-- ::= { swL3IpFdbInfoEntry 1 }
swL3IpFdbInfoIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A IP address for which switch has forwarding and/or filtering
information."
::= { swL3IpFdbInfoEntry 1 }
swL3IpFdbInfoIpSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A IP net mask for this interface.for which switch has
forwarding and/or filtering information."
::= { swL3IpFdbInfoEntry 2 }
swL3IpFdbInfoPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Either the value '0', or the port number of the port on which
packet having a IP address equal to the value of the
corresponding instance of swL3IpFdbInfoIpAddr has been seen. A
value of '0' indicates that the port number has not been learned
but that switch does have some forwarding/filtering information
about this address."
::= { swL3IpFdbInfoEntry 3 }
swL3IpFdbInfoType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
static(2),
dynamic(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this entry."
::= { swL3IpFdbInfoEntry 4 }
-- ********************************************************************
-- swL3IpFilterMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 3 }
-- ********************************************************************
swL3IpFilterAddrConfig OBJECT IDENTIFIER ::= { swL3IpFilterMgmt 1 }
swL3IpFilterAddrMaxSupportedEntries OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of entries in the IP address filtering table
(swL3IpFilterAddrCtrlTable) ."
::= { swL3IpFilterAddrConfig 1 }
swL3IpFilterAddrCurrentTotalEntries OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current applied number of entries in the IP address filtering
table. If the swL3IpFilterAddrCtrlState = dst-src-addr, then it
means there are two entries in swL3IpFilterAddrCtrlTable."
::= { swL3IpFilterAddrConfig 2 }
swL3IpFilterAddrCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3IpFilterAddrCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines information for the device to filter packets
with specific IP address (either as the DA and/or as the SA).
The IP address can be a unicast address or multicast address.
This table has higher priority than both static FDB table and
IGMP table. It means that if a IP address appears on this table
also appears on the static FDB table, the device will use the
information provide by this table to process the packet."
::= { swL3IpFilterAddrConfig 3 }
swL3IpFilterAddrCtrlEntry OBJECT-TYPE
SYNTAX SwL3IpFilterAddrCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about a specific unicast/multicast IP
address for which the switch has filtering information."
INDEX { swL3IpFilterAddrIpAddr }
::= { swL3IpFilterAddrCtrlTable 1 }
SwL3IpFilterAddrCtrlEntry ::=
SEQUENCE {
swL3IpFilterAddrIpAddr
IpAddress,
-- swL3IpFilterAddrIpSktGE
-- INTEGER,
-- swL3IpFilterAddrIpSktLE
-- INTEGER,
swL3IpFilterAddrCtrlState
INTEGER
}
swL3IpFilterAddrIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates a unicast/multicast IP address for which
the switch has filtering information. But if the
swL3IpFilterAddrCtrlState = src-addr, then the object can not be
a multicast IP address (Class D IP address)."
::= { swL3IpFilterAddrCtrlEntry 1 }
-- swL3IpFilterAddrIpSktGE OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object indicates a socket number which the used socket
-- number should be greater than or equal to"
-- ::= { swL3IpFilterAddrCtrlEntry 2 }
-- swL3IpFilterAddrIpSktLE OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object indicates a socket number which the used socket
-- number should be less than or equal to"
-- ::= { swL3IpFilterAddrCtrlEntry 3 }
swL3IpFilterAddrCtrlState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
dst-addr(2),
src-addr(3),
dst-src-addr(4),
invalid(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the status of this entry.
other(1) - this entry is currently in use but the conditions
under which it will remain so are different from each of the
following values.
dst-addr(2) - recieved frames's destination address are
currently used to be filtered as it meets with the IP
address entry of the table.
src-addr(3) - recieved frames's source address are currently
used to be filtered as it meets with the IP address entry of
the table.
dst-src-addr(4) - recieved frames's destination address or
source address are currently used to be filtered as it meets
with the IP address entry of the table.
invalid(5) - writing this value to the object, and then the
corresponding entry will be removed from the table."
::= { swL3IpFilterAddrCtrlEntry 2 }
swL3IpArpAgingTime OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period in minutes for aging out dynamically learned
arp information."
::= { swL3IpMgmt 4 }
swL3IpStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3IpStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entity's IP static Routing table."
::= { swL3IpMgmt 5 }
swL3IpStaticRouteEntry OBJECT-TYPE
SYNTAX SwL3IpStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A particular route to a particular destination, under a particular policy."
INDEX {
swL3IpStaticRouteDest,
swL3IpStaticRouteMask,
swL3IpStaticRouteNextHop
}
::= { swL3IpStaticRouteTable 1 }
SwL3IpStaticRouteEntry ::=
SEQUENCE {
swL3IpStaticRouteDest
IpAddress,
swL3IpStaticRouteMask
IpAddress,
swL3IpStaticRouteNextHop
IpAddress,
swL3IpStaticRouteMetric
INTEGER,
swL3IpStaticRouteStatus
INTEGER
}
swL3IpStaticRouteDest OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination IP address of this route.
This object may not take a Multicast (Class D)
address value.
Any assignment (implicit or otherwise) of an
instance of this object to a value x must be
rejected if the bitwise logical-AND of x with
the value of the corresponding instance of the
swL3IpStaticRouteMask object is not equal to x."
::= { swL3IpStaticRouteEntry 1 }
swL3IpStaticRouteMask 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 swL3IpStaticRouteDest field.
For those systems that do not support arbitrary
subnet masks, an agent constructs the value of
the swL3IpStaticRouteMask by reference to the IP
Address Class.
Any assignment (implicit or otherwise) of an
instance of this object to a value x must be
rejected if the bitwise logical-AND of x with
the value of the corresponding instance of the
swL3IpStaticRouteDest object is not equal to
swL3IpStaticRouteDest."
::= { swL3IpStaticRouteEntry 2 }
swL3IpStaticRouteNextHop OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"On remote routes, the address of the next sys-
tem en route; Otherwise, 0.0.0.0."
::= { swL3IpStaticRouteEntry 3 }
swL3IpStaticRouteMetric OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The routing metric for this route."
::= { swL3IpStaticRouteEntry 4 }
swL3IpStaticRouteStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
valid(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry.
other(1) - this entry is currently in use but the conditions
under which it will remain so are different from each of
the following values.
invalid(2) - writing this value to the object, and then the
corresponding entry will be removed from the table.
valid(3) - this entry is reside in the table."
::= { swL3IpStaticRouteEntry 5 }
swL3IpArpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3IpArpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ARP table used for mapping from IP addresses to physical
addresses."
::= { swL3IpMgmt 6 }
swL3IpArpEntry OBJECT-TYPE
SYNTAX SwL3IpArpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains one IpAddress to `physical' address
equivalence."
INDEX { swL3IpArpIfIndex, swL3IpArpNetAddress }
::= { swL3IpArpTable 1 }
SwL3IpArpEntry ::=
SEQUENCE {
swL3IpArpIfIndex
INTEGER,
swL3IpArpNetAddress
IpAddress,
swL3IpArpPhysAddress
MacAddress,
swL3IpArpType
INTEGER,
swL3IpArpDynamicAgingTime
INTEGER
}
swL3IpArpIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface on which this entry's equivalence is effective.
The interface identified by a particular value of this index is
the same interface as identified by the same value of ifIndex."
::= { swL3IpArpEntry 1 }
swL3IpArpNetAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IpAddress corresponding to the media-dependent `physical'
address."
::= { swL3IpArpEntry 2 }
swL3IpArpPhysAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The media-dependent `physical' address."
::= { swL3IpArpEntry 3 }
swL3IpArpType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
invalid(2), -- an invalidated mapping
dynamic(3),
static(4),
local(5),
local-broadcast(6)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of mapping.
Setting this object to the value invalid(2) has the effect of
invalidating the corresponding entry in the swL3IpArpTable.
That is, it effectively dissasociates the interface identified
with said entry from the mapping identified with said entry. It
is an implementation-specific matter as to whether the agent
removes an invalidated entry from the table. Accordingly,
management stations must be prepared to receive tabular
information from agents that corresponds to entries not
currently in use. Proper interpretation of such entries
requires examination of the relevant swL3IpArpType object."
::= { swL3IpArpEntry 4 }
swL3IpArpDynamicAgingTime OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The timeout period in seconds for aging out dynamically learned
arp information. If the swL3IpArpType is not dynamic(3), this
object will display zero."
::= { swL3IpArpEntry 5 }
swL3IpArpReqRateLimitState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable limit ARP requests trapped to CPU or disabled."
::= { swL3IpMgmt 7 }
swL3IpArpReqRateLimitValue OBJECT-TYPE
SYNTAX INTEGER (10..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To configure how much frames per second that ARP request
limit. This value will be usefull only when
swL3IpArpReqRateLimitState is enabled."
DEFVAL { 50 }
::= { swL3IpMgmt 8 }
-- ********************************************************************
-- swL3RelayBootpMgmt OBJECT IDENTIFIER ::= { swL3RelayMgmt 1 }
-- ********************************************************************
swL3RelayBootpState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates BOOTP Relay function is enabled or
disabled."
::= { swL3RelayBootpMgmt 1 }
swL3RelayBootpHopCount OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the maximum number of router hops that
the BOOTP packets can cross."
::= { swL3RelayBootpMgmt 2 }
swL3RelayBootpTimeThreshold OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the minimum time in seconds within which
the switch must relay the BOOTP request. If this time is
exceeded, the switch will drop the BOOTP packet."
::= { swL3RelayBootpMgmt 3 }
swL3RelayBootpCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3RelayBootpCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifys the IP address as a destination to forward
(relay) BOOTP packets to."
::= { swL3RelayBootpMgmt 4 }
swL3RelayBootpCtrlEntry OBJECT-TYPE
SYNTAX SwL3RelayBootpCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information specifies the IP address as a destination
to forward (relay) BOOTP packets to."
INDEX { swL3RelayBootpCtrlInterfaceName, swL3RelayBootpCtrlServer}
::= { swL3RelayBootpCtrlTable 1 }
SwL3RelayBootpCtrlEntry ::=
SEQUENCE {
swL3RelayBootpCtrlInterfaceName
DisplayString,
swL3RelayBootpCtrlServer
IpAddress,
swL3RelayBootpCtrlState
INTEGER
}
swL3RelayBootpCtrlInterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IP interface."
::= { swL3RelayBootpCtrlEntry 1 }
swL3RelayBootpCtrlServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The BOOTP server IP address."
::= { swL3RelayBootpCtrlEntry 2 }
swL3RelayBootpCtrlState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
valid(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the status of this entry.
other(1) - this entry is currently in use but the conditions
under which it will remain so are different from each of
the following values.
invalid(2) - writing this value to the object, and then the
corresponding entry will be removed from the table.
valid(3) - this entry is reside in the table."
::= { swL3RelayBootpCtrlEntry 3 }
-- ********************************************************************
-- swL3RelayDnsMgmt OBJECT IDENTIFIER ::= { swL3RelayMgmt 2 }
-- ********************************************************************
swL3RelayDnsState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates DNS Relay function is enabled or
disabled."
::= { swL3RelayDnsMgmt 1 }
swL3RelayDnsPrimaryServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the address of the primary DNS server."
::= { swL3RelayDnsMgmt 2 }
swL3RelayDnsSecondaryServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the address of the secondary DNS server."
::= { swL3RelayDnsMgmt 3 }
swL3RelayDnsCacheState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates DNS Relay cache is enabled or
disabled."
::= { swL3RelayDnsMgmt 4 }
swL3RelayDnsStaticTableState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates DNS Relay static table is enabled or
disabled."
::= { swL3RelayDnsMgmt 5 }
swL3RelayDnsCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3RelayDnsCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table display the current DNS relay static table."
::= { swL3RelayDnsMgmt 6 }
swL3RelayDnsCtrlEntry OBJECT-TYPE
SYNTAX SwL3RelayDnsCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information display the current DNS relay static
table."
INDEX { swL3RelayDnsCtrlDomainName, swL3RelayDnsCtrlIpAddr}
::= { swL3RelayDnsCtrlTable 1 }
SwL3RelayDnsCtrlEntry ::=
SEQUENCE {
swL3RelayDnsCtrlDomainName
DisplayString,
swL3RelayDnsCtrlIpAddr
IpAddress,
swL3RelayDnsCtrlState
INTEGER
}
swL3RelayDnsCtrlDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The domain name of the entry."
::= { swL3RelayDnsCtrlEntry 1 }
swL3RelayDnsCtrlIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the entry."
::= { swL3RelayDnsCtrlEntry 2 }
swL3RelayDnsCtrlState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
valid(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the status of this entry.
other(1) - this entry is currently in use but the conditions
under which it will remain so are different from each of
the following values.
invalid(2) - writing this value to the object, and then the
corresponding entry will be removed from the table.
valid(3) - this entry is reside in the table."
::= { swL3RelayDnsCtrlEntry 3 }
-- ********************************************************************
-- swL3Md5Table OBJECT IDENTIFIER ::= { swL3MgmtMIB 4 }
-- ********************************************************************
swL3Md5Table OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3Md5Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table display the current MD5 key table."
::= { swL3MgmtMIB 4 }
swL3Md5Entry OBJECT-TYPE
SYNTAX SwL3Md5Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information display the current MD5 key table."
INDEX { swL3Md5KeyId}
::= { swL3Md5Table 1 }
SwL3Md5Entry ::=
SEQUENCE {
swL3Md5KeyId
INTEGER,
swL3Md5Key
DisplayString,
swL3Md5State
INTEGER
}
swL3Md5KeyId OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MD5 key ID."
::= { swL3Md5Entry 1 }
swL3Md5Key OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An MD5 password of up to 16 bytes."
::= { swL3Md5Entry 2 }
swL3Md5State OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
valid(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the status of this entry.
other(1) - this entry is currently in use but the conditions
under which it will remain so are different from each of
the following values.
invalid(2) - writing this value to the object, and then the
corresponding entry will be removed from the table.
valid(3) - this entry is reside in the table."
::= { swL3Md5Entry 3 }
-- ********************************************************************
-- swL3RouteRedistriTable OBJECT IDENTIFIER ::= { swL3MgmtMIB 5 }
-- ********************************************************************
swL3RouteRedistriTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3RouteRedistriEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Route redistribution allows routers on the network. That are