-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathL3mgmtDgs3620-52T.mib
3925 lines (3540 loc) · 133 KB
/
L3mgmtDgs3620-52T.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
-- *****************************************************************************
-- DGS-3620-52T-L3MGMT-MIB
-- *****************************************************************************
-- MODIFICTION HISTORY:
-- *****************************************************************************
--
-- Version 0.20, 2013/8/26, Randy Xie
-- [New Object]
-- 1. Added swL3IpCtrlIpDhcpOption12State and swL3IpCtrlIpDhcpOption12State
--
-- Version 0.19, 2013/8/14, Mandy Fang
-- [New Object]
-- 1. Added swL3IpCtrlDhcpv6ClientRapidCommit and swL3IpCtrlDhcpv6ClientPDRapidCommit
-- to support the two-message exchange method for address/prefix assignment.
-- Request by Mandy Fang for DGS-3620.
--
-- Version 0.18
-- 2013/6/25 Kaiser Yang
-- Description:
-- [Modification]
-- 1. Add swL3ospfIfBfdStatus and swL3VrrpOperBfdPeerAddr to support BFD.
--
-- Version 0.17
-- 2013/03/12 Mandy Fang
-- Description:
-- [New Object]
-- 1. Added swL3IpCtrlIpv6AutoConfigState and swL3IpCtrlIpv6AutoConfigDefault
-- to support the IPv6 stateless address autoconfiguration state of the IP
-- interface.
--
-- Version 0.16
-- 2012/11/14 Kaiser Yang
-- Description:
-- [Modification]
-- 1. Modify the description of node swL3IpStaticRouteMetric
-- for Null interface.
--
-- Version 0.15
-- 2012/10/12 Dinah Zhou
-- Description:
-- [New Object]
-- 1. Add swL3OspfDefInfoOrigMgmt to support
-- OSPF default information origination.
--
-- Version 0.14
-- 2012/09/27 Dinah Zhou
-- Description:
-- [Modification]
-- 1. Modify the value range of nodes swL3RouteRedistriRouteMapName,
-- swL3ospfIfDistributeListInName,swL3RIPInboundRouteFilterName
-- for IWL test.
--
-- Version 0.13
-- 2012/09/27 Kevin Wang
-- Description:
-- [New Object]
-- 1. Change the value range of objects swL3RIPUpdateTime,
-- swL3RIPTimeOutTime and swL3RIPGarbageCollectionTime.
--
-- Version 0.12
-- 2012/09/11 Dinah Zhou
-- Description:
-- [New Object]
-- 1. Add swL3RIPInboundRouteFilterTable to support
-- inbound route filter for RIP;
-- 2. Add swL3Route6RedistriTable to support
-- IPv6 route redistribution.
--
-- Version 0.11
-- 2012/8/14 Kaiser Yang
-- Description:
-- [New Object]
-- 1.Delete objects: swL3VrrpOperAuthType, swL3VrrpOperAuthKey.
-- 2.Modify objects: swL3ospfIfType to read-write.
--
-- Version 0.10, 2012/08/13, Dinah Zhou
-- Description:
-- [New Object]
-- 1. Add swL3ospfIfDistributeListInType and swL3ospfIfDistributeListInName
-- to support OSPF distribute list in.
--
-- Version 0.09
-- 2010/12/2 Kevin Wang
-- Description:
-- [New Object]
-- 1.Add RIP timers related objects.
--
-- Version 0.08
-- 2010/11/24 Kevin Wang
-- Description:
-- [New Object]
-- 1.Modify objects: swL3ospfIfType, swL3ospfIfTransitDelay, swL3ospfIfRetransInterval,
-- swL3ospfIfPollInterval,swL3ospfIfMulticastForwarding, swL3ospfIfDemand,
-- swL3ospfVirtIfTransitDelay swL3ospfVirtIfRetransInterval to
-- read-only.
--
-- Version 0.07
-- 2010/11/10 Wesley Wang
-- Description:
-- [New Object]
-- 1.Add swL3IpMcastMgmt to support Static Multicast Route.
--
-- Version 0.06
-- 2010/11/01 Bruce Ge
-- Description:
-- [New Object]
-- 1. Add object swL3DevCtrlDVMRPState.
-- 2. Add swL3dvmrpInterfaceTable table.
-- Version 0.05
-- 2010/9/8 Sammy Xiao
-- Description:
-- [New Object]
-- 1. Add swL3IpStaticRouteTunnelTable.
--
-- Version 0.04
-- 2010/8/18 Kevin Wang
-- Description:
-- [New Object]
-- 1. Add swL3RoutePreferenceEBGP and swL3RoutePreferenceIBGP objects.
-- 2. Add object swL3RouteRedistriRouteMapName in swL3RouteRedistriTable.
--
-- Version 0.03
-- 2010/7/14 Easion Tang
-- Description:
-- [New Object]
-- 1. Add swL3IpCtrlDhcpv6ClientState and swL3IpCtrlIpDirectedBroadcastState objects.
--
-- Version 0.02
-- 2010/6/25 Kevin Wang
-- Description:
-- [New Object]
-- 1. Add MD5, OSPF, VRRP, RIP objects.
--
-- Version 0.01
--
-- Description:
--
-- *****************************************************************************
DGS-3620-52T-L3MGMT-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter32,MODULE-IDENTITY,OBJECT-TYPE,IpAddress,
NOTIFICATION-TYPE, Integer32,Unsigned32
FROM SNMPv2-SMI
PhysAddress,TruthValue,DisplayString,RowStatus,MacAddress,TimeStamp
FROM SNMPv2-TC
Ipv6Address FROM IPV6-TC
dlink-Dgs3620Proj-Dgs3620-52T FROM SWDGS3620PRIMGMT-MIB
TOSType, Metric, AreaID, RouterID,UpToMaxAge,
HelloRange, PositiveInteger, Status, DesignatedRouterPriority
FROM OSPF-MIB
InterfaceIndex FROM IF-MIB;
swL3MgmtMIB MODULE-IDENTITY
LAST-UPDATED "1308260000Z"
ORGANIZATION " "
CONTACT-INFO
" "
DESCRIPTION
"The Structure of Layer 3 Network Management Information for the
proprietary enterprise."
::= { dlink-Dgs3620Proj-Dgs3620-52T 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 }
swL3IpMcastMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 6 }
swL3OspfLsdbMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 13 }
swL3VrrpOperMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 14 }
-- swL3RoutePreference OBJECT IDENTIFIER ::= { swL3MgmtMIB 9 }
swL3IpCtrlMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 1 }
swL3IpFdbMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 2 }
-- swL3IpFilterMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 3 }
-- swL3RelayBootpMgmt OBJECT IDENTIFIER ::= { swL3RelayMgmt 2 }
swL3RelayDnsMgmt OBJECT IDENTIFIER ::= { swL3RelayMgmt 3 }
swL3OspfECMPMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 15 }
swL3RIPTimerMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 17 }
swL3OspfDefInfoOrigMgmt OBJECT IDENTIFIER ::= { swL3MgmtMIB 18 }
-- ****************************************************************************
-- Textual Conventions
-- ****************************************************************************
VrId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A number which, along with an interface index (ifIndex),
serves to uniquely identify a virtual router on a given VRRP
router. A set of one or more associated addresses is assigned
to a VRID."
SYNTAX Integer32 (1..255)
-- ********************************************************************
-- 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 if the 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 if the DVMRP protocol is enabled or disabled."
::= { swL3DevCtrl 3 }
-- swL3DevCtrlPIMDMState OBJECT-TYPE
-- SYNTAX INTEGER {
-- other(1),
-- disabled(2),
-- enabled(3)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object indicates if the PIM-DM protocol is enabled or disabled."
-- ::= { swL3DevCtrl 4 }
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 5 }
swL3DevCtrlVrrpPingState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates VRRP protocol Ping is enabled or disabled."
::= { swL3DevCtrl 6 }
-- ********************************************************************
-- swL3IpCtrlMgmt OBJECT IDENTIFIER ::= { swL3IpMgmt 1 }
-- ********************************************************************
-- swL3IpCtrlIpv4State OBJECT-TYPE
-- SYNTAX INTEGER {
-- enabled(1),
-- disabled(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object indicates the IPv4 function state of the device."
-- ::= { swL3IpCtrlMgmt 1 }
-- swL3IpCtrlIpv6State OBJECT-TYPE
-- SYNTAX INTEGER {
-- enabled(1),
-- disabled(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object indicates the IPv6 function state of the device."
-- ::= { swL3IpCtrlMgmt 2 }
swL3IpCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3IpCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contain IP interface information."
::= { swL3IpCtrlMgmt 3 }
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,
swL3IpCtrlProxyArp
INTEGER,
swL3IpCtrlSecondary
TruthValue,
swL3IpCtrlMode
INTEGER,
swL3IpCtrlAdminState
INTEGER,
swL3IpCtrlIpv4AdminState
INTEGER,
-- swL3IpCtrlIpv4OperState
-- INTEGER,
swL3IpCtrlIpv6AdminState
INTEGER,
-- swL3IpCtrlIpv6OperState
-- INTEGER,
swL3IpCtrlIpv6LinkLocalAddress
Ipv6Address,
swL3IpCtrlIpv6LinkLocalPrefixLen
INTEGER,
swL3IpCtrlState
RowStatus,
swL3IpCtrlIpv6LinkLocalAutoState
INTEGER,
swL3IpCtrlLocalProxyArp
INTEGER,
swL3IpCtrlIpMtu
INTEGER,
swL3IpCtrlDhcpv6ClientState
INTEGER,
swL3IpCtrlIpDirectedBroadcastState
INTEGER,
swL3IpCtrlIpDhcpOption12State
INTEGER,
swL3IpCtrlIpDhcpOption12HostName
DisplayString,
swL3IpCtrlDhcpv6ClientPDState
INTEGER,
swL3IpCtrlDhcpv6ClientPDPrefixName
DisplayString,
swL3IpCtrlDhcpv6ClientPDPrefix
Ipv6Address,
swL3IpCtrlDhcpv6ClientPDPrefixLen
INTEGER,
swL3IpCtrlIpv6AutoConfigState
INTEGER,
swL3IpCtrlIpv6AutoConfigDefault
TruthValue,
swL3IpCtrlDhcpv6ClientRapidCommit
TruthValue,
swL3IpCtrlDhcpv6ClientPDRapidCommit
TruthValue
}
swL3IpCtrlInterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..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 }
swL3IpCtrlProxyArp OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates enable/disable of the proxy ARP function for IPv4."
::= { swL3IpCtrlEntry 6 }
swL3IpCtrlSecondary OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this is true(1), the IP address is the secondary IP. When
false(2), the IP address is the primary IP."
::= { swL3IpCtrlEntry 7 }
swL3IpCtrlMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
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 are determined by each of the following values.
bootp(3) - The IP address will be set automatically from a BOOTP
server.
dhcp(4) - The IP address will be set automatically from a DHCP
server."
::= { swL3IpCtrlEntry 8 }
swL3IpCtrlAdminState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of the IP interface."
::= { swL3IpCtrlEntry 9 }
swL3IpCtrlIpv4AdminState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv4 admin state of the IP interface. The default state is determined by project.
This state will only be effective when the swL3IpCtrlAdminState is enabled."
::= { swL3IpCtrlEntry 10 }
-- swL3IpCtrlIpv4OperState OBJECT-TYPE
-- SYNTAX INTEGER {
-- other(1),
-- disabled(2)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The current IPv4 operational state of the IP interface.
-- If the swL3IpCtrlIpv4State is disabled, disabled(2) will be displayed.
-- Otherwise, it will be set as other(1)."
-- ::= { swL3IpCtrlEntry 11 }
swL3IpCtrlIpv6AdminState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv6 admin state of the IP interface. The default state is determined by project.
This state will only be effective when the swL3IpCtrlAdminState is enabled."
::= { swL3IpCtrlEntry 12 }
-- swL3IpCtrlIpv6OperState OBJECT-TYPE
-- SYNTAX INTEGER {
-- other(1),
-- disabled(2)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The current IPv6 operational state of the IP interface.
-- If the swL3IpCtrlIpv6State is disabled, disabled(2) will be displayed.
-- Otherwise, it will be set as other(1)."
-- ::= { swL3IpCtrlEntry 13 }
swL3IpCtrlIpv6LinkLocalAddress OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 link local address for this interface."
::= { swL3IpCtrlEntry 14 }
swL3IpCtrlIpv6LinkLocalPrefixLen OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 prefix length for this IPv6 link local address."
::= { swL3IpCtrlEntry 15 }
swL3IpCtrlState OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable displays the status of the entry. The status is used
for creating, modifying, and deleting instances of the objects
in this table."
::= { swL3IpCtrlEntry 16 }
swL3IpCtrlIpv6LinkLocalAutoState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
enabled(2),
disabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of the IPv6 link local auto."
::= { swL3IpCtrlEntry 17 }
swL3IpCtrlLocalProxyArp OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates enable/disable of the local proxy ARP function for IPv4."
::= { swL3IpCtrlEntry 18 }
swL3IpCtrlIpMtu OBJECT-TYPE
SYNTAX INTEGER
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MTU is the largest size of the IP datagram which may be transferred
using a specific data link connection. The MTU value is a design parameter
of a LAN and is a mutually agreed value (i.e. both ends of a link agree to
use the same specific value) for most WAN links.
The MTU range is based on the chip of the current device.
The suggested minimum value is 1500 bytes.
The suggested maximum value is the size of the jumbo frame minus 36.
The suggested default setting is 1500 bytes."
DEFVAL { 1500 }
::={swL3IpCtrlEntry 19}
swL3IpCtrlDhcpv6ClientState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of the Dhcpv6 Client."
::= { swL3IpCtrlEntry 20 }
swL3IpCtrlIpDirectedBroadcastState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of the IP Directed Broadcast."
::= { swL3IpCtrlEntry 21 }
swL3IpCtrlIpDhcpOption12State OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable insertion of option 12 in the DHCPDISCOVER and
DHCPREQUEST message."
::= { swL3IpCtrlEntry 22 }
swL3IpCtrlIpDhcpOption12HostName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the host name to be inserted in the DHCPDISCOVER and
DHCPREQUEST message. The specified host name must start with a
letter, end with a letter or digit, and have only letters, digits,
and hyphen as interior characters; the maximal length is 63. By
default, the host name is empty.
When set an empty host name, means to clear the host name setting and
use the default value to encode option 12."
::= { swL3IpCtrlEntry 23}
swL3IpCtrlDhcpv6ClientPDState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of the Dhcpv6 Client PD."
::= { swL3IpCtrlEntry 24 }
swL3IpCtrlDhcpv6ClientPDPrefixName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the name for the DHCPv6 Client PD. If the
swL3IpCtrlDhcpv6ClientPDState is disabled, this object will be clear and can't write."
::= { swL3IpCtrlEntry 25 }
swL3IpCtrlDhcpv6ClientPDPrefix OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 prefix obtained form delegation router."
::= { swL3IpCtrlEntry 26 }
swL3IpCtrlDhcpv6ClientPDPrefixLen OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 prefix length for the prefix obtained from delegation router."
::= { swL3IpCtrlEntry 27 }
swL3IpCtrlIpv6AutoConfigState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of IPv6 stateless adddress autoconfig."
::= { swL3IpCtrlEntry 28 }
swL3IpCtrlIpv6AutoConfigDefault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this is true(1), a default route will be installed into ipv6
routing table. When false(2), no default route will be installed."
::= { swL3IpCtrlEntry 29 }
swL3IpCtrlDhcpv6ClientRapidCommit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this is true(1), Allows the two-message exchange method for
address assignment."
::= { swL3IpCtrlEntry 30 }
swL3IpCtrlDhcpv6ClientPDRapidCommit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this is true(1), Allows the two-message exchange method for
prefix assignment."
::= { swL3IpCtrlEntry 31 }
swL3Ipv6CtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3Ipv6CtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains IPv6 information of an IP interface."
::= { swL3IpCtrlMgmt 4 }
swL3Ipv6CtrlEntry OBJECT-TYPE
SYNTAX SwL3Ipv6CtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of IPv6 information about a specific IP interface."
INDEX { swL3Ipv6CtrlInterfaceName }
::= { swL3Ipv6CtrlTable 1 }
SwL3Ipv6CtrlEntry ::=
SEQUENCE {
swL3Ipv6CtrlInterfaceName
DisplayString,
swL3Ipv6CtrlMaxReassmblySize
INTEGER,
swL3Ipv6CtrlNsRetransTimer
Unsigned32,
-- swL3Ipv6CtrlRsState
-- INTEGER,
swL3Ipv6CtrlRaState
INTEGER,
swL3Ipv6CtrlRaMinRtrAdvInterval
INTEGER,
swL3Ipv6CtrlRaMaxRtrAdvInterval
INTEGER,
swL3Ipv6CtrlRaLifeTime
INTEGER,
swL3Ipv6CtrlRaReachableTime
INTEGER,
swL3Ipv6CtrlRaRetransTime
Unsigned32,
swL3Ipv6CtrlRaHopLimit
INTEGER,
swL3Ipv6CtrlRaManagedFlag
INTEGER,
swL3Ipv6CtrlRaOtherConfigFlag
INTEGER
}
swL3Ipv6CtrlInterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the name of the IP interface."
::= { swL3Ipv6CtrlEntry 1 }
swL3Ipv6CtrlMaxReassmblySize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Reassembly Size of the IP interface."
::= { swL3Ipv6CtrlEntry 2 }
swL3Ipv6CtrlNsRetransTimer OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Neighbor solicitation's retransmit timer.
The unit is set in milliseconds."
::= { swL3Ipv6CtrlEntry 3 }
-- swL3Ipv6CtrlRsState OBJECT-TYPE
-- SYNTAX INTEGER {
-- enabled(1),
-- disabled(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Router solicited state."
-- ::= { swL3Ipv6CtrlEntry 4 }
swL3Ipv6CtrlRaState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Neighbor solicited state."
::= { swL3Ipv6CtrlEntry 5 }
swL3Ipv6CtrlRaMinRtrAdvInterval OBJECT-TYPE
SYNTAX INTEGER (3..1350)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum time allowed between sending unsolicited multicast Router
Advertisements from the interface. The unit is set in seconds.
It must be no less than 3 seconds and no greater than .75 * MaxRtrAdvInterval.
Default value: 0.33 * MaxRtrAdvInterval"
::= { swL3Ipv6CtrlEntry 6 }
swL3Ipv6CtrlRaMaxRtrAdvInterval OBJECT-TYPE
SYNTAX INTEGER (4..1800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time allowed between sending unsolicited multicast Router
Advertisements from the interface. The unit is set in seconds."
DEFVAL {600}
::= { swL3Ipv6CtrlEntry 7 }
swL3Ipv6CtrlRaLifeTime OBJECT-TYPE
SYNTAX INTEGER (0..9000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the lifetime of the router as the default router."
::= { swL3Ipv6CtrlEntry 8 }
swL3Ipv6CtrlRaReachableTime OBJECT-TYPE
SYNTAX INTEGER (0..3600000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the amount of time that a node can consider a neighboring
node reachable after receiving a reachability confirmation."
::= { swL3Ipv6CtrlEntry 9 }
swL3Ipv6CtrlRaRetransTime OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the amount of time between retransmissions of neighbor
solicited messages.
The unit is set in millisecond."
::= { swL3Ipv6CtrlEntry 10 }
swL3Ipv6CtrlRaHopLimit OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the default value of the hop limit field in the IPv6 header for
packets sent by hosts that receive this RA message."
::= { swL3Ipv6CtrlEntry 11 }
swL3Ipv6CtrlRaManagedFlag OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, it indicates that hosts receiving this RA must use a
stateful address configuration protocol to obtain an address in the addition
to the addresses derived from the stateless address configuration."
::= { swL3Ipv6CtrlEntry 12 }
swL3Ipv6CtrlRaOtherConfigFlag OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, it indicates that hosts receiving this RA must use a stateful
address configuration protocol to obtain an on-link address configuration information."
::= { swL3Ipv6CtrlEntry 13 }
swL3Ipv6AddressCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwL3Ipv6AddressCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contain IPv6 address information for each IP interface."
::= { swL3IpCtrlMgmt 5 }
swL3Ipv6AddressCtrlEntry OBJECT-TYPE
SYNTAX SwL3Ipv6AddressCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about a specific IPv6 address."
INDEX { swL3Ipv6AddressCtrlInterfaceName, swL3Ipv6Address, swL3Ipv6AddressCtrlPrefixLen }
::= { swL3Ipv6AddressCtrlTable 1 }
SwL3Ipv6AddressCtrlEntry ::=
SEQUENCE {
swL3Ipv6AddressCtrlInterfaceName
DisplayString,
swL3Ipv6Address
Ipv6Address,
swL3Ipv6AddressCtrlPrefixLen
INTEGER,
swL3Ipv6AddressCtrlPreferredLifeTime
Unsigned32,
swL3Ipv6AddressCtrlValidLifeTime
Unsigned32,
swL3Ipv6AddressCtrlOnLinkFlag
INTEGER,
swL3Ipv6AddressCtrlAutonomousFlag
INTEGER,
swL3Ipv6AddressCtrlState
RowStatus
}
swL3Ipv6AddressCtrlInterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the name of the IP interface. "
::= { swL3Ipv6AddressCtrlEntry 1 }
swL3Ipv6Address OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the IPv6 address."
::= { swL3Ipv6AddressCtrlEntry 2 }
swL3Ipv6AddressCtrlPrefixLen OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the prefix length of this IPv6 address."
::= { swL3Ipv6AddressCtrlEntry 3 }
swL3Ipv6AddressCtrlPreferredLifeTime OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967294)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number of seconds that an address, based on the specified prefix,
using the stateless address configuration, remains in preferred state.
For an infinite valid lifetime, the value can be set to 0xffffffff."
::= { swL3Ipv6AddressCtrlEntry 4 }
swL3Ipv6AddressCtrlValidLifeTime OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967294)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number of seconds that an address, based on the specified prefix,
using the stateless address configuration, remains valid.
For an infinite valid lifetime, the value can be set to 0xffffffff."
::= { swL3Ipv6AddressCtrlEntry 5 }
swL3Ipv6AddressCtrlOnLinkFlag OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, the address implied by the specified prefix is available
on the link where the RA message is received."
::= { swL3Ipv6AddressCtrlEntry 6 }
swL3Ipv6AddressCtrlAutonomousFlag OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, the specified prefix will be used to create an autonomous address configuration."
::= { swL3Ipv6AddressCtrlEntry 7 }