-
Notifications
You must be signed in to change notification settings - Fork 3
/
A3COM-HUAWEI-IPX-MIB
executable file
·1411 lines (1243 loc) · 42.5 KB
/
A3COM-HUAWEI-IPX-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
-- ============================================================================
-- Copyright (C) 2003 by HUAWEI 3Com TECHNOLOGIES. All rights reserved.
--
-- Description: Huawei-3com Internetwork Packet Exchange MIB
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 created by wanglu.
-- ============================================================================
A3COM-HUAWEI-IPX-MIB DEFINITIONS ::= BEGIN
-- ==================================================================
--
-- Variables and types be imported
--
-- ==================================================================
IMPORTS
Integer32,MODULE-IDENTITY,OBJECT-TYPE,
TimeTicks,Counter32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus
FROM SNMPv2-TC
h3cCommon
FROM A3COM-HUAWEI-OID-MIB;
-- ==================================================================
--
-- module identity part
--
-- ==================================================================
h3cIpx MODULE-IDENTITY
LAST-UPDATED
"200412241036Z"
ORGANIZATION
"Huawei 3Com Technologies Co.,Ltd."
CONTACT-INFO
"Mib Team
Platform Team Huawei 3Com Technologies Co.,Ltd.
Hai-Dian District Beijing P.R. China
http://www.huawei-3com.com
Zip:100085"
DESCRIPTION
"This mib defines management information used on products
which support ipx protocol. It includes 4 parts:
1.ipx interface configuration group - This group
contains configurable management information and statistic
information on each interface.
2.rip group - Rip means route information protocol. This
group contains configurable management information and
route status and route statistic information.
3.sap group - Sap means service access group. This group
contains all service information.
4.ipx statistics group - This group includes ipx statistic
information on all interfaces."
::= { h3cCommon 34 }
-- =============================================================
-- Textual Conventions
-- =============================================================
EnabledStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A simple status value for the object."
SYNTAX INTEGER { enabled(1), disabled(2) }
-- ==================================================================
--
-- =====================object definition begin======================
--
-- ==================================================================
h3cIpxConfig OBJECT IDENTIFIER ::= { h3cIpx 1 }
h3cIpxRip OBJECT IDENTIFIER ::= { h3cIpx 2 }
h3cIpxSap OBJECT IDENTIFIER ::= { h3cIpx 3 }
h3cIpxStat OBJECT IDENTIFIER ::= { h3cIpx 4 }
-- h3cIpxIfConfig contains configurable management information
-- on each interface.
h3cIpxStatus OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to enable or disable ipx globally."
DEFVAL { disabled }
::= { h3cIpxConfig 1 }
h3cIpxIfConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIpxIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of configurable management information on each
interface."
::= { h3cIpxConfig 2 }
h3cIpxIfConfigEntry OBJECT-TYPE
SYNTAX H3cIpxIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table, containing management information
about a single interface."
INDEX { h3cIpxIfIndex }
::= { h3cIpxIfConfigTable 1 }
H3cIpxIfConfigEntry ::=
SEQUENCE {
h3cIpxIfIndex Integer32,
h3cIpxIfNetId OCTET STRING,
h3cIpxIfNodeId OCTET STRING,
h3cIpxIfSplitHorizon EnabledStatus,
h3cIPxIfTick Integer32,
h3cIpxIfUpdateChangeOnly EnabledStatus,
h3cIpxIfRipMtu Integer32,
h3cIpxIfEncapsuleType INTEGER,
h3cIpxIfNetbiosPropagation EnabledStatus,
h3cIpxIfSapStatus EnabledStatus,
h3cIpxIfSapMtu Integer32,
h3cIpxIfGnsReply EnabledStatus,
h3cIpxIfRowStatus RowStatus
}
-- node definition
h3cIpxIfIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This variable uniquely identifies the interface
to which the configurations are applied."
REFERENCE "ifIndex"
::= { h3cIpxIfConfigEntry 1 }
h3cIpxIfNetId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The network number of the IPX address of this
interface."
::= { h3cIpxIfConfigEntry 2 }
h3cIpxIfNodeId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The node number of the IPX address of this interface."
::= { h3cIpxIfConfigEntry 3 }
h3cIpxIfSplitHorizon OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to set the split horizon status.
Its default value is 'enabled'. In this case, the interface
which receives a message can't send this message from the
same interface. This function can avoid route loop. But it
is unused for point to point link. If it is set to
'disabled', split horizon is disable."
DEFVAL { enabled }
::= { h3cIpxIfConfigEntry 4 }
h3cIPxIfTick OBJECT-TYPE
SYNTAX Integer32(1..30000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to set this interface's delay time.
It is counted by ticks which is 1/18 second. By default,
the ethernet interface's delay time is 1 tick,
asynchronous serial interface's delay time is 30 ticks,
WAN interface's delay time is 6 ticks."
::= { h3cIpxIfConfigEntry 5 }
h3cIpxIfUpdateChangeOnly OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When this variable is set to 'enabled', updating change is
on. And sap and rip will send updating packets periodically
to avoid broadcast storm. Whereas updating change is
off."
DEFVAL { disabled }
::= { h3cIpxIfConfigEntry 6 }
h3cIpxIfRipMtu OBJECT-TYPE
SYNTAX Integer32(432..1500)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is used to define the max length of RIP
updating packets."
DEFVAL { 432 }
::= { h3cIpxIfConfigEntry 7 }
h3cIpxIfEncapsuleType OBJECT-TYPE
SYNTAX INTEGER {
dot2(1),
dot3(2),
ethernet-2(3),
snap(4),
unkown(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to define the encapsulating form of
IPX packets. 'dot2' indicates the form is 802.2, while 'dot3'
means 802.3. And 'snap' indicates the form is ethernet-snap.
It takes effect only on ethernet interface, and the default
value is 'dot3', while 'unkown' for other types of port."
DEFVAL { dot3 }
::= { h3cIpxIfConfigEntry 8 }
h3cIpxIfNetbiosPropagation OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to configure whether the current interface
can forward broadcasting packets which IPX type is 20 used
for NetBIOS."
DEFVAL { disabled }
::= { h3cIpxIfConfigEntry 9 }
h3cIpxIfSapStatus OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of sap on the current interface. It is enabled
when ipx is enabled on this interface."
DEFVAL { enabled }
::= { h3cIpxIfConfigEntry 10 }
h3cIpxIfSapMtu OBJECT-TYPE
SYNTAX Integer32(480..1500)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is used to define the max length of SAP
refreshing packets."
DEFVAL { 480 }
::= { h3cIpxIfConfigEntry 11 }
h3cIpxIfGnsReply OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to enable or disable the current
interface to response the IPX GNS request."
DEFVAL { enabled }
::= { h3cIpxIfConfigEntry 12 }
h3cIpxIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. To create a row, user can
select 'createAndGo'. If the row is created successfully,
this object will became 'active'. To delete one row,
user can select 'destory' and the row will be deleted."
::= { h3cIpxIfConfigEntry 13 }
-- rip group
-- basic configurable management information
h3cIpxRouteMultiplier OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This node is used to calculate Rip aging time of route
information.
The absolute aging time =
(h3cIpxRouteMultiplier * h3cIpxRouteUpdateTimer)."
DEFVAL { 3 }
::= { h3cIpxRip 1 }
h3cIpxRouteUpdateTimer OBJECT-TYPE
SYNTAX Integer32(10..60000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This node is used to set rip updating time which is based
on seconds"
DEFVAL { 60 }
::= { h3cIpxRip 2 }
h3cIpxRouteImpRouteStatic OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object determines whether static route can be imported."
DEFVAL { disabled }
::= { h3cIpxRip 3 }
h3cIpxRouteLoadBalancePaths OBJECT-TYPE
SYNTAX Integer32(1..64)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the max equivalent paths to the same
destination. If the newly defined value is smaller than the
current value, the routes out of the new value will be set
inactive."
DEFVAL { 1 }
::= { h3cIpxRip 4 }
h3cIpxRouteMaxResPaths OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the max dynamic routes to the same
destination. If the newly defined value is smaller than the
current value, the routes will not be deleted until they age
out or are deleted manually."
DEFVAL { 4 }
::= { h3cIpxRip 5 }
-- h3cIpxRouteTable contains all ipx route information of
-- this system. There are all kinds of information in this table
-- including direct, rip, inactive, active, etc.
h3cIpxRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIpxRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all dynamic and direct ipx route information
of this system. The information of this table is read only."
::= { h3cIpxRip 6 }
h3cIpxRouteEntry OBJECT-TYPE
SYNTAX H3cIpxRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry includes a dynamic or direct route."
INDEX { h3cIpxRouteIndex }
::= { h3cIpxRouteTable 1 }
H3cIpxRouteEntry ::=
SEQUENCE {
h3cIpxRouteIndex
Integer32,
h3cIpxRouteDestNetId
OCTET STRING,
h3cIpxRouteNextHop
OCTET STRING,
h3cIpxRoutePro
INTEGER,
h3cIpxRoutePre
Integer32,
h3cIpxRouteTicks
Integer32,
h3cIpxRouteHops
Integer32,
h3cIpxRouteTime
Integer32,
h3cIpxRouteOutInterface
OCTET STRING
}
h3cIpxRouteIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object uniquely identifies a route."
::= { h3cIpxRouteEntry 1 }
h3cIpxRouteDestNetId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination network number of this route information,
and its value ranges from 1 to 0xfffffffe."
::= { h3cIpxRouteEntry 2 }
h3cIpxRouteNextHop OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The next hop of this route."
::= { h3cIpxRouteEntry 3 }
h3cIpxRoutePro OBJECT-TYPE
SYNTAX INTEGER{
direct(1),
rip(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol type of this route information."
::= { h3cIpxRouteEntry 4 }
h3cIpxRoutePre OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The preference of this route information. The direct route's
preference is 0, and it can't be modified. Dynamic route's
default preference is 100."
::= { h3cIpxRouteEntry 5 }
h3cIpxRouteTicks OBJECT-TYPE
SYNTAX Integer32(1..65534)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time, in ticks, that the packet takes to reach the destination."
::= { h3cIpxRouteEntry 6 }
h3cIpxRouteHops OBJECT-TYPE
SYNTAX Integer32(0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the number of hops that the packet must be
passed through to reach the destination."
::= { h3cIpxRouteEntry 7 }
h3cIpxRouteTime OBJECT-TYPE
SYNTAX Integer32(0..60000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The aging time of this route information. The aging time of
static and interface route information is 0."
::= { h3cIpxRouteEntry 8 }
h3cIpxRouteOutInterface OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The out interface of this route information."
::= { h3cIpxRouteEntry 9 }
-- h3cIpxStaticRouteTable contains all static route
-- information
h3cIpxStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIpxStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all static ipx route information of
this system."
::= { h3cIpxRip 7 }
h3cIpxStaticRouteEntry OBJECT-TYPE
SYNTAX H3cIpxStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry includes one static route information."
INDEX { h3cIpxStaticRouteDestNetId,
h3cIpxStaticRouteNextHop }
::= { h3cIpxStaticRouteTable 1 }
H3cIpxStaticRouteEntry ::=
SEQUENCE {
h3cIpxStaticRouteDestNetId
OCTET STRING,
h3cIpxStaticRouteNextHop
OCTET STRING,
h3cIpxStaticRoutePre
Integer32,
h3cIpxStaticRouteOutIf
OCTET STRING,
h3cIpxStaticRouteTicks
Integer32,
h3cIpxStaticRouteHops
Integer32,
h3cIpxStaticRouteStatus
INTEGER,
h3cIpxStaticRouteRowStatus
RowStatus
}
h3cIpxStaticRouteDestNetId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of Static Route Table. This object and
h3cIpxStaticRouteNextHop uniquely identify a static route.
The destination network number of this static route
information,and its value ranges from 1 to 0xfffffffe.
Note that the broadcast network number is 0xffffffff
and is not allowed in IPX. The network number of
0xfffffffe would be considered to be the network
number of default route."
::= { h3cIpxStaticRouteEntry 1 }
h3cIpxStaticRouteNextHop OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(10))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sub-index of Static Route Table. The next hop of
this static route information."
::= { h3cIpxStaticRouteEntry 2 }
h3cIpxStaticRoutePre OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The preference of this route information. Static route's
preference is 60, and it can be configured."
DEFVAL { 60 }
::= { h3cIpxStaticRouteEntry 3 }
h3cIpxStaticRouteOutIf OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..30))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The out interface of this route. This interface can be serial
or pos interface. "
::= { h3cIpxStaticRouteEntry 4 }
h3cIpxStaticRouteTicks OBJECT-TYPE
SYNTAX Integer32(1..65534)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The time, in ticks that the packet takes to reach the destination
with the static route."
::= { h3cIpxStaticRouteEntry 5 }
h3cIpxStaticRouteHops OBJECT-TYPE
SYNTAX Integer32(1..15)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates how many hops are needed to arrive
at the destination network."
DEFVAL { 1 }
::= { h3cIpxStaticRouteEntry 6 }
h3cIpxStaticRouteStatus OBJECT-TYPE
SYNTAX INTEGER{
active(1),
inactive(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this static route."
::= { h3cIpxStaticRouteEntry 7 }
h3cIpxStaticRouteRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. To create a row, user can
select 'createAndGo'. If the row is created successfully,
this object will became 'active'. To delete one row,
user can select 'destory' and the row will be deleted."
::= { h3cIpxStaticRouteEntry 8 }
-- h3cIpxRouteStatTable includes statistic route information
h3cIpxRouteStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIpxRouteStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table includes all statistic route information."
::= { h3cIpxRip 8 }
h3cIpxRouteStatEntry OBJECT-TYPE
SYNTAX H3cIpxRouteStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry records a statistic information of route."
INDEX { h3cIpxRouteStatPro }
::= { h3cIpxRouteStatTable 1 }
H3cIpxRouteStatEntry ::=
SEQUENCE {
h3cIpxRouteStatPro
INTEGER,
h3cIpxRouteStatRoutes
Counter32,
h3cIpxRouteStatActives
Counter32,
h3cIpxRouteStatAddeds
Counter32,
h3cIpxRouteStatDeleteds
Counter32,
h3cIpxRouteStatFreeds
Counter32
}
h3cIpxRouteStatPro OBJECT-TYPE
SYNTAX INTEGER{
direct(1),
static(2),
rip(3),
default(4),
total(5)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The protocol type of the route information. The value of
'total' is the total amount of all kinds of IPX routes."
::= { h3cIpxRouteStatEntry 1 }
h3cIpxRouteStatRoutes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The route amount of the corresponding protocol type."
::= { h3cIpxRouteStatEntry 2 }
h3cIpxRouteStatActives OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active route amount of the corresponding protocol type."
::= { h3cIpxRouteStatEntry 3 }
h3cIpxRouteStatAddeds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The added route amount of the corresponding protocol type."
::= { h3cIpxRouteStatEntry 4 }
h3cIpxRouteStatDeleteds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The deleted but not freed route amount of the corresponding
protocol type."
::= { h3cIpxRouteStatEntry 5 }
h3cIpxRouteStatFreeds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The freed route amount of the corresponding protocol type."
::= { h3cIpxRouteStatEntry 6 }
-- sap group
-- basic configurable management information
h3cIpxSapMultiplier OBJECT-TYPE
SYNTAX Integer32(1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This node is used to calculate aging time of service
information.
The absolute aging time =
(h3cIpxSapMultiplier * h3cIpxSapUpdateTimer)."
DEFVAL { 3 }
::= { h3cIpxSap 1 }
h3cIpxSapUpdateTimer OBJECT-TYPE
SYNTAX Integer32(10..60000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This node is used to set service packet updating time which
is based on seconds."
DEFVAL { 60 }
::= { h3cIpxSap 2 }
h3cIpxSapGnsLoadBalance OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to set whether the system will reply to the
GNS request with the Round-Robin way. By default, the system will
response to the GNS request with the servers known to the device
in turn, preventing from the nearest server's over loading. With
value of disabled, in this way, the system will response to the
request with the nearest server(who has smallest hop in system's
service information table)."
DEFVAL { enabled }
::= { h3cIpxSap 3 }
h3cIpxSapMaxResServers OBJECT-TYPE
SYNTAX Integer32(1..2048)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure maximum number of servers of a type.
If the newly defined value is smaller than the previous value, the
information out of the value will not be deleted. If the queue reaches
to the maximum number, no new information can be added."
DEFVAL { 2048 }
::= { h3cIpxSap 4 }
-- h3cIpxServiceTable contains the service information
h3cIpxServiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIpxServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table inlcudes all dynamic service information.
The dynamic service information can be read only."
::= { h3cIpxSap 5}
h3cIpxServiceEntry OBJECT-TYPE
SYNTAX H3cIpxServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"One entry records one service"
INDEX { h3cIpxServiceIndex }
::= { h3cIpxServiceTable 1 }
H3cIpxServiceEntry ::=
SEQUENCE{
h3cIpxServiceIndex
Integer32,
h3cIpxServiceName
OCTET STRING,
h3cIpxServiceType
OCTET STRING,
h3cIpxServiceNetId
OCTET STRING,
h3cIpxServiceNodeId
OCTET STRING,
h3cIpxServiceSocketNo
OCTET STRING,
h3cIpxServicePreference
Integer32,
h3cIpxServiceHops
Integer32,
h3cIpxServiceRecvIf
OCTET STRING
}
-- node definition
h3cIpxServiceIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object uniquely identifies a service information."
::= { h3cIpxServiceEntry 1 }
h3cIpxServiceName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..47))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the service."
::= { h3cIpxServiceEntry 2 }
h3cIpxServiceType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The service type."
::= { h3cIpxServiceEntry 3 }
h3cIpxServiceNetId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPX network number portion of the IPX address of the service."
::= { h3cIpxServiceEntry 4 }
h3cIpxServiceNodeId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPX node number portion of the IPX address of the service."
::= { h3cIpxServiceEntry 5 }
h3cIpxServiceSocketNo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The socket portion of the IPX address of the service"
::= { h3cIpxServiceEntry 6 }
h3cIpxServicePreference OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The service preference of the service"
::= { h3cIpxServiceEntry 7 }
h3cIpxServiceHops OBJECT-TYPE
SYNTAX Integer32(0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hops from the device to the server."
::= { h3cIpxServiceEntry 8 }
h3cIpxServiceRecvIf OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface from which the service is receieved"
::= { h3cIpxServiceEntry 9 }
-- h3cIpxStaticServiceTable This table contains all static service information
h3cIpxStaticServiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIpxStaticServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table inlcudes all static service information.
This table supports to creation and deletione of a static service,
but not supports to modification"
::= { h3cIpxSap 6 }
h3cIpxStaticServiceEntry OBJECT-TYPE
SYNTAX H3cIpxStaticServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry records one service"
INDEX { h3cIpxStaticServiceType,
h3cIpxStaticServiceName,
h3cIpxStaticServiceNetId }
::= { h3cIpxStaticServiceTable 1 }
H3cIpxStaticServiceEntry ::=
SEQUENCE{
h3cIpxStaticServiceType
OCTET STRING,
h3cIpxStaticServiceName
OCTET STRING,
h3cIpxStaticServiceNetId
OCTET STRING,
h3cIpxStaticServiceNodeId
OCTET STRING,
h3cIpxStatciServiceSocketNo
OCTET STRING,
h3cIpxStaticServicePreference
Integer32,
h3cIpxStaticServiceHops
Integer32,
h3cIpxStaticServiceStatus
INTEGER,
h3cIpxStaticServiceRowStatus
RowStatus
}
-- node definition
h3cIpxStaticServiceType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of static service table."
::= { h3cIpxStaticServiceEntry 1 }
h3cIpxStaticServiceName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..47))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sub-index of static service table. The name of
the service."
::= { h3cIpxStaticServiceEntry 2 }
h3cIpxStaticServiceNetId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The sub-index of static service table. The IPX network
number portion of the IPX address of the service."
::= { h3cIpxStaticServiceEntry 3 }
h3cIpxStaticServiceNodeId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The IPX node number portion of the IPX address of the
service."
::= { h3cIpxStaticServiceEntry 4 }
h3cIpxStatciServiceSocketNo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The socket portion of the IPX address of the service."
::= { h3cIpxStaticServiceEntry 5 }
h3cIpxStaticServicePreference OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The service preference of the server."
DEFVAL { 60 }
::= { h3cIpxStaticServiceEntry 6 }
h3cIpxStaticServiceHops OBJECT-TYPE
SYNTAX Integer32(1..15)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The hops from the device to the server."
::= { h3cIpxStaticServiceEntry 7 }
h3cIpxStaticServiceStatus OBJECT-TYPE
SYNTAX INTEGER{
active(1),
inactive(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the service that you created. The value of
this object is determined by system."
::= { h3cIpxStaticServiceEntry 8 }
h3cIpxStaticServiceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. To create a row, user can
select 'createAndGo'. If the row is created successfully,
this object will became 'active'. To delete one row,
user can select 'destory' and the row will be deleted."
::= { h3cIpxStaticServiceEntry 9 }
-- ipx statistics group
-- statistic information about packets Input/Output
h3cIpxStatGlobal OBJECT IDENTIFIER ::= { h3cIpxStat 1 }
h3cIpxStatInterface OBJECT IDENTIFIER ::= { h3cIpxStat 2 }
-- received
h3cIpxStatTotalReceives OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of packets received."
::= { h3cIpxStatGlobal 1 }
h3cIpxStatPitchs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received packets filled by device when forwarding
or delivering up to upper protocol."
::= { h3cIpxStatGlobal 2 }
h3cIpxStatLenErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received packets discarded due to length error."
::= { h3cIpxStatGlobal 3 }