-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathALTEON-TS-NETWORK-MIB
4642 lines (4133 loc) · 129 KB
/
ALTEON-TS-NETWORK-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 NOTICE
-- Copyright (c) Alteon WebSystems, Inc. 2001
-- All rights reserved
--
-- HISTORY
-- $Log: tigonNetwork.mib,v $
-- Revision 1.1.1.1 2004/11/01 16:55:42 maxbaker
-- initial import
--
-- Revision work_rmundhra/41 2001/11/28 23:04:47 rmundhra
-- Fixed CR Q00173292: Require apply action after delete ospf
-- area entry.
-- Made delete functionality work thr'o standard mib and doing
-- the ospf config validation i.e if the delete is allowed or
-- not in the rs_routines rather than in an apply as being done
-- previously. Removed the ospfNewCfgAreaDelete mib object.
--
-- Revision ge_wyin/1 2001/11/28 17:58:45 wyin
-- Corrected description on ospf auth type.
--
-- Revision work_rmundhra/38 2001/11/27 23:45:27 rmundhra
-- Fixed the enum values for ospfAreaAuthType to be 1 and 2 as
-- 0 is not allowed.
--
-- Revision work_rmundhra/36 2001/11/07 00:53:39 rmundhra
-- Added entries ospfCurCfgAreaAuthType and ospfNewCfgAreaAuthType as the
-- corresponding entry in rfc1850.mib has been declared obsolete.
--
-- Revision work_rmundhra/34 2001/10/30 19:37:28 rmundhra
-- Added 2 mib entries ospfAreaInfoId and ospfIfInfoIpAddress
-- to map the private mib tables with the standard RFC1850
-- mib as the way they are indexed is different.
--
-- Revision ge_rrekha/2 2001/10/23 00:16:18 rrekha
-- Added enumeration ospf(13) to MIB object ipRouteInfoTag.
--
-- Revision work_rmundhra/32 2001/10/13 02:12:42 rmundhra
-- Changed the indexing of ospfCurCfgAreaTable and
-- ospfNewCfgAreaTable to be indexed by 2 indicies.
-- Added MIB objects ospfCurCfgAreaId, ospfNewCfgAreaId
-- and removed ospfCurCfgAreaDelete as its redundant.
--
-- Revision work_rmundhra/30 2001/09/13 19:04:12 rmundhra
-- Modified comment.
--
-- Revision work_rmundhra/28 2001/09/13 18:36:58 rmundhra
-- Added MIB objects ospfIntfTableMaxSize, ospfAreaTableMaxSize,
-- ospfRangeTableMaxSize, ospfVirtIntfTableMaxSize &
-- ospfHostTableMaxSize.
--
-- Revision work_rmundhra/26 2001/09/11 23:48:34 rmundhra
-- Fixed 13071: Added MIB objects ospfCurCfgAreaDelete and
-- ospfNewCfgAreaDelete objects to support delete functionality
-- thro tigonNetwork.mib as this functionality cannot be
-- provided thr'o std-mibs.
--
-- Revision work_rmundhra/24 2001/07/10 22:12:41 rmundhra
-- Keeping again.
--
-- Revision jmoLatest_jamesob/4 2001/07/02 22:03:26 jamesob
-- CR11586 - Added ripCurCfgVip and ripNewCfgVip objects.
--
-- Revision work_rmundhra/21 2001/06/22 18:39:36 rmundhra
-- Modified description not to exceed 80 characters /
-- line as per coding guidelines.
--
-- Revision work_rmundhra/20 2001/06/22 18:37:11 rmundhra
-- Added MIB objects ospfIntfInfoTable to retrieve information of
-- an OSPF interface.
--
-- Revision genie_rekha/19 2001/06/21 23:18:01 rekha
-- Fixed 11690: Changed ipNewCfgGwInterval and ipCurCfgGwInterval
-- range to 0..60 from 1..60 for consistency with CLI.
--
-- Revision genie_rekha/17 2001/06/20 01:11:05 rekha
-- Removed the range for the index field of a table as these should
-- be obtained from the maxTableSize MIB objects since the range
-- maybe different for AD3 versus AD4.
--
-- Revision work_rmundhra/17 2001/06/18 18:02:12 rmundhra
-- Added MIB objects ospf-info, ospfGeneralInfo, ospfAreaInfoTable for
-- providing SNMP support for OSPF information.
--
-- Revision work_rmundhra/15 2001/06/15 18:26:24 rmundhra
-- Associated ospfCfg with iprouting and not with switch beause
-- of relevance.
--
-- Revision work_rmundhra/14 2001/06/14 19:12:13 rmundhra
-- Added SNMP support for OSPF statistics. Added MIB objects
-- ospfStats, ospfGeneral, ospfInterface (Table), ospfArea (Table)
--
-- Revision genie_rekha/15 2001/06/14 17:41:33 rekha
-- Added MIB objects ipCurCfgGwVlan and ipNewCfgGwVlan.
--
-- Revision genie_rekha/13 2001/06/04 19:24:28 rekha
-- Added MIB objects to support VRRP oper commands.
--
-- Revision genie_rekha/11 2001/05/31 01:06:03 rekha
-- Added MIB objects vrrpInfoVirtRtrOwnership, vrrpInfoVirtRtrServer
-- and vrrpInfoVirtRtrProxy.
--
-- Revision genie_rekha/9 2001/05/29 22:54:39 rekha
-- Removed 'other' from most of the enumerations.
--
-- Revision work_rmundhra/10 2001/05/18 19:02:28 rmundhra
-- Added SNMP support for Tigon OSPF. Added entries
-- ospfGeneral, ospfCurCfgArea Table and ospfNewCfgArea
-- Table to the tigonNetwork mib and ctl files.
--
-- Revision genie_rekha/7 2001/05/11 23:01:27 rekha
-- CR4320: Added MIB object ripStatRoutesAgedOut.
--
-- Revision jmoLatest_jamesob/2 2001/03/27 12:52:05 jamesob
-- CR10892 VRRP: Track HSRP bu VLAN (HSRV)
-- Added MIB objects to support tracking of
-- HSRP by vlan. New Objects: vrrpCurCfgVirtRtrTckHsrv,
-- vrrpNewCfgVirtRtrTckHsrv
-- Added mib objects to support HSRV priority increment.
-- New objects: vrrpCurCfgGenTckHsrvInc, vrrpNewCfgGenTckHsrvInc
-- Added vrrpCurCfgVirtRtrGrpTckHsrv and vrrpCurCfgVirtRtrGrpTckHsrv
-- to support vrrp group track hsrv
--
-- Revision work_rmundhra/3 2001/03/01 16:43:52 rmundhra
-- Fixed 10832: OIDs changed in mib.
--
-- Revision work_rmundhra/2 2001/03/01 00:30:03 rmundhra
-- Corrected the oids associated with ipFwdCurCfgLocalTable,
-- ipFwdNewCfgLocalTable, ipFwdCurCfgState & ipFwdNewCfgState and
-- unused oid's which are obsoleted.
--
-- Revision genie_rekha/5 2001/02/27 20:17:16 rekha
-- Added SNMP support for BOOTP relay per IP interface.
--
-- Revision genie_rekha/2 2001/02/08 18:18:03 rekha
-- As part of the code cleanup split the Tigon MIB into smaller
-- modules. Instead of altswitch.mib these 5 new modules should be
-- used.
--
-- $EndLog$
--
-- Version 10.0.x
--
ALTEON-TS-NETWORK-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress, Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
PhysAddress, DisplayString
FROM RFC1213-MIB
switch
FROM ALTEON-ROOT-MIB
stats, information, operCmds
FROM ALTEON-TIGON-SWITCH-MIB;
iprouting OBJECT IDENTIFIER ::= { switch 3 }
vrrp OBJECT IDENTIFIER ::= { switch 15 }
ripStats OBJECT IDENTIFIER ::= { stats 1 }
arpStats OBJECT IDENTIFIER ::= { stats 3 }
routeStats OBJECT IDENTIFIER ::= { stats 4 }
dnsStats OBJECT IDENTIFIER ::= { stats 5 }
vrrpStats OBJECT IDENTIFIER ::= { stats 9 }
ospfStats OBJECT IDENTIFIER ::= { stats 22 }
ip-info OBJECT IDENTIFIER ::= { information 3 }
vrrp-info OBJECT IDENTIFIER ::= { information 4 }
ospfinfo OBJECT IDENTIFIER ::= { information 5 }
vrrpOper OBJECT IDENTIFIER ::= { operCmds 5 }
-- IP Configuration
ipInterfaceTableMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of rows in the IP interface table."
::= { iprouting 1 }
ipCurCfgIntfTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpCurCfgIntfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of IP interface configuration."
::= { iprouting 2 }
ipCurCfgIntfEntry OBJECT-TYPE
SYNTAX IpCurCfgIntfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the Ip interface table"
INDEX { ipCurCfgIntfIndex }
::= { ipCurCfgIntfTable 1 }
IpCurCfgIntfEntry ::= SEQUENCE {
ipCurCfgIntfIndex INTEGER,
ipCurCfgIntfAddr IpAddress,
ipCurCfgIntfMask IpAddress,
ipCurCfgIntfBroadcast IpAddress,
ipCurCfgIntfVlan INTEGER,
ipCurCfgIntfState INTEGER,
ipCurCfgIntfBootpRelay INTEGER
}
ipCurCfgIntfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The interface number for which the IP information is related."
::= { ipCurCfgIntfEntry 1}
ipCurCfgIntfAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the interface."
::= { ipCurCfgIntfEntry 2 }
ipCurCfgIntfMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The subnet mask of the interface."
::= { ipCurCfgIntfEntry 3 }
ipCurCfgIntfBroadcast OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The broadcast address of the interface."
::= { ipCurCfgIntfEntry 4 }
ipCurCfgIntfVlan OBJECT-TYPE
SYNTAX INTEGER (1..4094)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The VLAN associated with the interface."
::= { ipCurCfgIntfEntry 5 }
ipCurCfgIntfState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the interface."
::= { ipCurCfgIntfEntry 6 }
ipCurCfgIntfBootpRelay OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Enable/disable BOOTP relay."
::= { ipCurCfgIntfEntry 7 }
ipNewCfgIntfTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpNewCfgIntfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of interface configuration in the New Configuration Block."
::= { iprouting 3 }
ipNewCfgIntfEntry OBJECT-TYPE
SYNTAX IpNewCfgIntfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the Ip interface table"
INDEX { ipNewCfgIntfIndex }
::= { ipNewCfgIntfTable 1 }
IpNewCfgIntfEntry ::= SEQUENCE {
ipNewCfgIntfIndex INTEGER,
ipNewCfgIntfAddr IpAddress,
ipNewCfgIntfMask IpAddress,
ipNewCfgIntfBroadcast IpAddress,
ipNewCfgIntfVlan INTEGER,
ipNewCfgIntfState INTEGER,
ipNewCfgIntfDelete INTEGER,
ipNewCfgIntfBootpRelay INTEGER
}
ipNewCfgIntfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The interface number for which the IP information is related."
::= { ipNewCfgIntfEntry 1 }
ipNewCfgIntfAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the interface."
::= { ipNewCfgIntfEntry 2 }
ipNewCfgIntfMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The subnet mask of the interface."
::= { ipNewCfgIntfEntry 3 }
ipNewCfgIntfBroadcast OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The broadcast address of the interface."
::= { ipNewCfgIntfEntry 4 }
ipNewCfgIntfVlan OBJECT-TYPE
SYNTAX INTEGER (1..4094)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The VLAN associated with the interface."
::= { ipNewCfgIntfEntry 5 }
ipNewCfgIntfState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of the interface."
::= { ipNewCfgIntfEntry 6 }
ipNewCfgIntfDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When set to the value of 2 (delete), the entire row is deleted.
When read, other(1) is returned. Setting the value to anything
other than 2(delete) has no effect on the state of the row."
::= { ipNewCfgIntfEntry 7 }
ipNewCfgIntfBootpRelay OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable BOOTP relay."
::= { ipNewCfgIntfEntry 8 }
-- IP Gateway Table Configuration
ipGatewayTableMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of rows in the IP gateway table."
::= { iprouting 4 }
ipCurCfgGwTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpCurCfgGwEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of gateways in the Current configuration Block."
::= { iprouting 5 }
ipCurCfgGwEntry OBJECT-TYPE
SYNTAX IpCurCfgGwEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the Ip gateway table"
INDEX { ipCurCfgGwIndex }
::= { ipCurCfgGwTable 1 }
IpCurCfgGwEntry ::= SEQUENCE {
ipCurCfgGwIndex INTEGER,
ipCurCfgGwAddr IpAddress,
ipCurCfgGwInterval INTEGER,
ipCurCfgGwRetry INTEGER,
ipCurCfgGwState INTEGER,
ipCurCfgGwArp INTEGER,
ipCurCfgGwVlan INTEGER
}
ipCurCfgGwIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The gateway number for which the information is related."
::= { ipCurCfgGwEntry 1}
ipCurCfgGwAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the default gateway."
::= { ipCurCfgGwEntry 2 }
ipCurCfgGwInterval OBJECT-TYPE
SYNTAX INTEGER (0..60)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The interval between ping attempts."
::= { ipCurCfgGwEntry 3 }
ipCurCfgGwRetry OBJECT-TYPE
SYNTAX INTEGER (1..120)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of failed attempts to declare the default gateway DOWN."
::= { ipCurCfgGwEntry 4 }
ipCurCfgGwState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the default gateway."
::= { ipCurCfgGwEntry 5 }
ipCurCfgGwArp OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of ARP only health checks."
::= { ipCurCfgGwEntry 6 }
ipNewCfgGwTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpNewCfgGwEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of gateway configuration in the new configuration block."
::= { iprouting 6 }
ipCurCfgGwVlan OBJECT-TYPE
SYNTAX INTEGER (0..4094)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The VLAN number for this gateway. The first 4 entries in the table
are only used for default gateway load balancing hence the VLAN
cannot be specified for the first 4 entries."
::= { ipCurCfgGwEntry 7 }
ipNewCfgGwEntry OBJECT-TYPE
SYNTAX IpNewCfgGwEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the Ip default gateway table"
INDEX { ipNewCfgGwIndex }
::= { ipNewCfgGwTable 1 }
IpNewCfgGwEntry ::= SEQUENCE {
ipNewCfgGwIndex INTEGER,
ipNewCfgGwAddr IpAddress,
ipNewCfgGwInterval INTEGER,
ipNewCfgGwRetry INTEGER,
ipNewCfgGwState INTEGER,
ipNewCfgGwDelete INTEGER,
ipNewCfgGwArp INTEGER,
ipNewCfgGwVlan INTEGER
}
ipNewCfgGwIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The gateway number for which the information is related."
::= { ipNewCfgGwEntry 1}
ipNewCfgGwAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the default gateway."
::= { ipNewCfgGwEntry 2 }
ipNewCfgGwInterval OBJECT-TYPE
SYNTAX INTEGER (0..60)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The interval in seconds between ping attempts."
::= { ipNewCfgGwEntry 3 }
ipNewCfgGwRetry OBJECT-TYPE
SYNTAX INTEGER (1..120)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of failed attempts to declare the default gateway DOWN."
::= { ipNewCfgGwEntry 4 }
ipNewCfgGwState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of the default gateway."
::= { ipNewCfgGwEntry 5 }
ipNewCfgGwDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When set to the value of 2 (delete), the entire row is deleted.
When read, other is returned. Setting the value to anything other
than 2(delete) has no effect on the state of the row."
::= { ipNewCfgGwEntry 6 }
ipNewCfgGwArp OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of the ARP only health checks."
::= { ipNewCfgGwEntry 7 }
ipNewCfgGwVlan OBJECT-TYPE
SYNTAX INTEGER (0..4094)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The VLAN number for this gateway. The first 4 entries in the table
are only used for default gateway load balancing hence the VLAN
cannot be specified for the first 4 entries."
::= { ipNewCfgGwEntry 8 }
ipCurCfgStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpCurCfgStaticRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of static routes in the current configuration block."
::= { iprouting 7 }
ipCurCfgStaticRouteEntry OBJECT-TYPE
SYNTAX IpCurCfgStaticRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the static IP route table"
INDEX { ipCurCfgStaticRouteIndx }
::= { ipCurCfgStaticRouteTable 1 }
IpCurCfgStaticRouteEntry ::= SEQUENCE {
ipCurCfgStaticRouteIndx INTEGER,
ipCurCfgStaticRouteDestIp IpAddress,
ipCurCfgStaticRouteMask IpAddress,
ipCurCfgStaticRouteGateway IpAddress,
ipCurCfgStaticRouteInterface INTEGER
}
ipCurCfgStaticRouteIndx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of the static routing table."
::= { ipCurCfgStaticRouteEntry 1}
ipCurCfgStaticRouteDestIp OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The destination IP address of this route."
::= { ipCurCfgStaticRouteEntry 2}
ipCurCfgStaticRouteMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The destination IP address of this route."
::= { ipCurCfgStaticRouteEntry 3}
ipCurCfgStaticRouteGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The destination IP address of this route."
::= { ipCurCfgStaticRouteEntry 4}
ipCurCfgStaticRouteInterface OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP interface of this route. The IP address of the specified
interface shall be use as source IP when performs routing."
::= { ipCurCfgStaticRouteEntry 5}
ipNewCfgStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpNewCfgStaticRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of static routes in the new configuration block."
::= { iprouting 8 }
ipNewCfgStaticRouteEntry OBJECT-TYPE
SYNTAX IpNewCfgStaticRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the static IP route table"
INDEX { ipNewCfgStaticRouteIndx }
::= { ipNewCfgStaticRouteTable 1 }
IpNewCfgStaticRouteEntry ::= SEQUENCE {
ipNewCfgStaticRouteIndx INTEGER,
ipNewCfgStaticRouteDestIp IpAddress,
ipNewCfgStaticRouteMask IpAddress,
ipNewCfgStaticRouteGateway IpAddress,
ipNewCfgStaticRouteAction INTEGER,
ipNewCfgStaticRouteInterface INTEGER
}
ipNewCfgStaticRouteIndx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of the static routing table."
::= { ipNewCfgStaticRouteEntry 1}
ipNewCfgStaticRouteDestIp OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The destination IP address of this route."
::= { ipNewCfgStaticRouteEntry 2}
ipNewCfgStaticRouteMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The subnet mask of this route."
::= { ipNewCfgStaticRouteEntry 3}
ipNewCfgStaticRouteGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the gateway for this route."
::= { ipNewCfgStaticRouteEntry 4}
ipNewCfgStaticRouteAction OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When set to the value of 2 (delete), the entire row is deleted.
When read, other is returned. Setting the value to anything other
than 2(delete) has no effect on the state of the row."
::= { ipNewCfgStaticRouteEntry 5 }
ipNewCfgStaticRouteInterface OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP interface of this route. The IP address of the specified
interface shall be use as source IP when performs routing."
::= { ipNewCfgStaticRouteEntry 6 }
-- Forwarding group
ipForward OBJECT IDENTIFIER ::= { iprouting 9 }
ripConfig OBJECT IDENTIFIER ::= { ipForward 1 }
ripCurCfgSupply OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Enable or disable supplying route updates."
::= { ripConfig 1 }
ripNewCfgSupply OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable or disable supplying route updates."
::= { ripConfig 2 }
ripCurCfgListen OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Enable or disable listening to route updates."
::= { ripConfig 3 }
ripNewCfgListen OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable or disable listening to route updates."
::= { ripConfig 4 }
ripCurCfgDefListen OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Enable or disable listening to default routes."
::= { ripConfig 5 }
ripNewCfgDefListen OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable or disable listening to default routes."
::= { ripConfig 6 }
ripCurCfgStaticSupply OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Enable or disable supplying static route updates."
::= { ripConfig 7 }
ripNewCfgStaticSupply OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable or disable supplying static route updates."
::= { ripConfig 8 }
ripCurCfgUpdatePeriod OBJECT-TYPE
SYNTAX INTEGER (1..120)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Update Period in seconds."
::= { ripConfig 9 }
ripNewCfgUpdatePeriod OBJECT-TYPE
SYNTAX INTEGER (1..120)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Update period in seconds."
::= { ripConfig 10 }
ripCurCfgState OBJECT-TYPE
SYNTAX INTEGER {
on(2),
off(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"RIP global state."
::= { ripConfig 11 }
ripNewCfgState OBJECT-TYPE
SYNTAX INTEGER {
on(2),
off(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Globally turn RIP on or off."
::= { ripConfig 12 }
ripCurCfgPoisonReverse OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"RIP poison reverse."
::= { ripConfig 13 }
ripNewCfgPoisonReverse OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"RIP poison reverse."
::= { ripConfig 14 }
ripCurCfgVip OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Advertise VIP Host Routes."
::= { ripConfig 15 }
ripNewCfgVip OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Advertise VIP Host Routes."
::= { ripConfig 16 }
-- Table to turn on/off forwarding per port
ipFwdCurCfgPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpFwdCurCfgPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of ports and their forwarding states"
::= { ipForward 2 }
ipFwdCurCfgPortEntry OBJECT-TYPE
SYNTAX IpFwdCurCfgPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the ipFwdCurCfgPortTable "
INDEX { ipFwdCurCfgPortIndex }
::= { ipFwdCurCfgPortTable 1 }
IpFwdCurCfgPortEntry ::= SEQUENCE {
ipFwdCurCfgPortIndex INTEGER,
ipFwdCurCfgPortState INTEGER
}
ipFwdCurCfgPortIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port number for which the forwarding state information pertains."
::= { ipFwdCurCfgPortEntry 1 }
ipFwdCurCfgPortState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The forwarding state of the port."
::= { ipFwdCurCfgPortEntry 2 }
ipFwdNewCfgPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpFwdNewCfgPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of ports and their forwarding states"
::= { ipForward 3 }
ipFwdNewCfgPortEntry OBJECT-TYPE
SYNTAX IpFwdNewCfgPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the ipFwdNewCfgPortTable "
INDEX { ipFwdNewCfgPortIndex }
::= { ipFwdNewCfgPortTable 1 }
IpFwdNewCfgPortEntry ::= SEQUENCE {
ipFwdNewCfgPortIndex INTEGER,
ipFwdNewCfgPortState INTEGER
}
ipFwdNewCfgPortIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port number for which the forwarding state information pertains."
::= { ipFwdNewCfgPortEntry 1 }
ipFwdNewCfgPortState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The forwarding state of the port."
::= { ipFwdNewCfgPortEntry 2 }
--The following oid's are obsoleted and should not be used
--ipFwdCurCfgLocalSubnet OBJECT IDENTIFIER ::= { ipForward 4 } obsoleted
--ipFwdNewCfgLocalSubnet OBJECT IDENTIFIER ::= { ipForward 5 } obsoleted
--ipFwdCurCfgLocalMask OBJECT IDENTIFIER ::= { ipForward 6 } obsoleted
--ipFwdNewCfgLocalMask OBJECT IDENTIFIER ::= { ipForward 7 } obsoleted
ipFwdCurCfgLocalTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpFwdCurCfgLocalEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of local network definition."
::= { ipForward 14 }