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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
|
HP-SN-IPX-MIB DEFINITIONS ::= BEGIN
-- Foundry SnIpx Group MIB Release 1.0.0
-- Revision 0 1/7/97
-- Copyright 1996-97 Foundry Networks, Inc.
-- All rights reserved.
-- This Foundry Networks SNMP Management Information Base
-- Specification embodies Foundry Networks' confidential and
-- proprietary intellectual property. Foundry Networks retains all
-- title and ownership in the Specification, including any
-- revisions.
-- This Specification is supplied "AS IS," and Foundry Networks makes
-- no warranty, either express or implied, as to the use,
-- operation, condition, or performance of the Specification.
-- SECTION 1: Top Level Definitions
-- Imports
IMPORTS
Counter
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
snIpx
FROM HP-SN-ROOT-MIB;
-- textual conventions
-- RtrStatus Values
RtrStatus ::= INTEGER { disabled(0), enabled(1) }
-- Clear Status Values
ClearStatus ::= INTEGER { normal(0), clear(1) }
-- Port index
PortIndex ::= INTEGER (1..3900)
-- Action
Action ::= INTEGER { deny(0), permit(1) }
PhysAddress ::= OCTET STRING
-- This data type is used to model media addresses. For many
-- types of media, this will be in a binary representation.
-- For example, an ethernet address would be represented as
-- a string of 6 octets.
NetNumber ::= OCTET STRING (SIZE(4))
-- SECTION 2: MIB
-- Router IPX MIB
snIpxGen OBJECT IDENTIFIER ::= { snIpx 1 }
snIpxCache OBJECT IDENTIFIER ::= { snIpx 2 }
snIpxRoute OBJECT IDENTIFIER ::= { snIpx 3 }
snIpxServer OBJECT IDENTIFIER ::= { snIpx 4 }
snIpxFwdFilter OBJECT IDENTIFIER ::= { snIpx 5 }
snIpxRipFilter OBJECT IDENTIFIER ::= { snIpx 6 }
snIpxSapFilter OBJECT IDENTIFIER ::= { snIpx 7 }
snIpxIfFwdAccess OBJECT IDENTIFIER ::= { snIpx 8 }
snIpxIfRipAccess OBJECT IDENTIFIER ::= { snIpx 9 }
snIpxIfSapAccess OBJECT IDENTIFIER ::= { snIpx 10 }
snIpxPortAddr OBJECT IDENTIFIER ::= { snIpx 11 }
snIpxPortCounters OBJECT IDENTIFIER ::= { snIpx 12 }
-- IPX General MIBs
snIpxRoutingMode OBJECT-TYPE
SYNTAX RtrStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enabled/Disabled System IPX Routing Mode status."
::= { snIpxGen 1 }
snIpxNetBiosFilterMode OBJECT-TYPE
SYNTAX RtrStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enabled/Disabled NetBios Filter Mode status."
::= { snIpxGen 2 }
snIpxClearCache OBJECT-TYPE
SYNTAX ClearStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"clear(1) will clear cache table."
::= { snIpxGen 3 }
snIpxClearRoute OBJECT-TYPE
SYNTAX ClearStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"clear(1) will clear ipx route table."
::= { snIpxGen 4 }
snIpxClearTrafficCnts OBJECT-TYPE
SYNTAX ClearStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"clear(1) will clear ipx all traffic counters.
- snIpxRcvPktsCnt, snIpxFwdPktsCnt,
snIpxRcvDropPktsCnt, snIpxTxDropPktsCnt,
snIpxRcvFiltPktsCnt, snIpxTxFiltPktsCnt."
::= { snIpxGen 5 }
snIpxRcvPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX incoming packets counter."
::= { snIpxGen 6 }
snIpxTxPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX Outgoing packets counter."
::= { snIpxGen 7 }
snIpxFwdPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX forwarding packets counter."
::= { snIpxGen 8 }
snIpxRcvDropPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX receiving drop packets counter."
::= { snIpxGen 9 }
snIpxRcvFiltPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX receiving filter packets counter."
::= { snIpxGen 10 }
snIpxRipGblFiltList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An IPX RIP Global Filter List."
::= { snIpxGen 11 }
snIpxRipFiltOnAllPort OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
deleteAllInBound(2),
deleteAllOutBound(3),
addAllInBound(4),
addAllOutBound(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Apply the IPX RIP Global filter list snIpxRipGblFiltList to
all interfaces. This object is used to add all RIP filter
lists and delete all RIP filter lists to/from all ports.
Prior to sending this command, snIpxRipGblFiltList must be ready.
The values that can be written are:
deleteAllInBound(2)...delete all in-bound filter lists from all ports.
deleteAllOutBound(3)..delete all out-bound filter lists from all ports.
addAllInBound(4)......add all in-bound filter lists to all ports.
addAllOutBound(5).....add all out-bound filter lists to all ports.
If set operation is failed, then a SET with
value of (2)or(3) returns error 'GenError'.
Deleted(2)&(3) go away immediately.
The following values can be returned on reads:
noSuch(0)...no such operation yet.
valid(1)....set operation is done and is valid"
::= { snIpxGen 12 }
snIpxSapGblFiltList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An IPX SAP Global Filter List."
::= { snIpxGen 13 }
snIpxSapFiltOnAllPort OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
deleteAllInBound(2),
deleteAllOutBound(3),
addAllInBound(4),
addAllOutBound(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Apply the IPX SAP Global filter list snIpxSapGblFiltList to
all interfaces. This object is used to add all RIP filter
lists and delete all SAP filter lists to/from all ports.
Prior to sending this command, snIpxSapGblFiltList must be ready.
The values that can be written are:
deleteAllInBound(2)...delete all in-bound filter lists from all ports.
deleteAllOutBound(3)..delete all out-bound filter lists from all ports.
addAllInBound(4)......add all in-bound filter lists to all ports.
addAllOutBound(5).....add all out-bound filter lists to all ports.
If set operation is failed, then a SET with
value of (2)or(3) returns error 'GenError'.
Deleted(2)&(3) go away immediately.
The following values can be returned on reads:
noSuch(0)...no such operation yet.
valid(1)....set operation is done and is valid"
::= { snIpxGen 14 }
snIpxTxDropPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX transmitting drop packets counter."
::= { snIpxGen 15 }
snIpxTxFiltPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX transmitting filter packets counter."
::= { snIpxGen 16 }
-- IPX Cache table
snIpxCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxCacheEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX Cache table."
::= { snIpxCache 1 }
snIpxCacheEntry OBJECT-TYPE
SYNTAX SnIpxCacheEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Cache table."
INDEX { snIpxCacheIndex }
::= { snIpxCacheTable 1 }
SnIpxCacheEntry ::= SEQUENCE {
snIpxCacheIndex
INTEGER,
snIpxCacheNetNum
NetNumber,
snIpxCacheNode
PhysAddress,
snIpxCacheOutFilter
RtrStatus,
snIpxCacheEncap
INTEGER,
snIpxCachePort
PortIndex
}
snIpxCacheIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The table index for a IPX Cache entry."
::= { snIpxCacheEntry 1 }
snIpxCacheNetNum OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cache Network number."
::= { snIpxCacheEntry 2 }
snIpxCacheNode OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cache Node Number."
::= { snIpxCacheEntry 3 }
snIpxCacheOutFilter OBJECT-TYPE
SYNTAX RtrStatus
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cache Outbound Filter is ether disabled(0) or enabled(1)."
::= { snIpxCacheEntry 4 }
snIpxCacheEncap OBJECT-TYPE
SYNTAX INTEGER {
ethernetII(1),
ethernet8022(2),
ethernet8023(3),
ethernetSnap(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IPX encapsulation frame type."
::= { snIpxCacheEntry 5 }
snIpxCachePort OBJECT-TYPE
SYNTAX PortIndex
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX Router Port number."
::= { snIpxCacheEntry 6 }
-- IPX route table
snIpxRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX route table."
::= { snIpxRoute 1 }
snIpxRouteEntry OBJECT-TYPE
SYNTAX SnIpxRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX route table."
INDEX { snIpxRouteIndex }
::= { snIpxRouteTable 1 }
SnIpxRouteEntry ::= SEQUENCE {
snIpxRouteIndex
INTEGER,
snIpxDestNetNum
NetNumber,
snIpxFwdRouterNode
PhysAddress,
snIpxDestHopCnts
INTEGER,
snIpxRouteMetric
INTEGER,
snIpxDestPort
INTEGER
}
snIpxRouteIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The table index for a IPX route entry."
::= { snIpxRouteEntry 1 }
snIpxDestNetNum OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Destination Network number."
::= { snIpxRouteEntry 2 }
snIpxFwdRouterNode OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Forward Router Node Number."
::= { snIpxRouteEntry 3 }
snIpxDestHopCnts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of hops to reach the
destination."
::= { snIpxRouteEntry 4 }
snIpxRouteMetric OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The metrics to next hop router."
::= { snIpxRouteEntry 5 }
snIpxDestPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The destination port."
::= { snIpxRouteEntry 6 }
-- IPX Server table
snIpxServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX Server table."
::= { snIpxServer 1 }
snIpxServerEntry OBJECT-TYPE
SYNTAX SnIpxServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Server table."
INDEX { snIpxServerIndex }
::= { snIpxServerTable 1 }
SnIpxServerEntry ::= SEQUENCE {
snIpxServerIndex
INTEGER,
snIpxServerType
INTEGER,
snIpxServerNetNum
NetNumber,
snIpxServerNode
PhysAddress,
snIpxServerSocket
INTEGER,
snIpxServerHopCnts
INTEGER,
snIpxServerName
OCTET STRING
}
snIpxServerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The table index for a IPX Server entry."
::= { snIpxServerEntry 1 }
snIpxServerType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX Server Type."
::= { snIpxServerEntry 2 }
snIpxServerNetNum OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Server Network number."
::= { snIpxServerEntry 3 }
snIpxServerNode OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Server Node Number."
::= { snIpxServerEntry 4 }
snIpxServerSocket OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Server Socket Number."
::= { snIpxServerEntry 5 }
snIpxServerHopCnts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of intervening networks to reach the
server."
::= { snIpxServerEntry 6 }
snIpxServerName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX Server Name."
::= { snIpxServerEntry 7 }
-- IPX Forward Filter table
snIpxFwdFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxFwdFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX Forward Filter table."
::= { snIpxFwdFilter 1 }
snIpxFwdFilterEntry OBJECT-TYPE
SYNTAX SnIpxFwdFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Forward Filter table."
INDEX { snIpxFwdFilterIdx }
::= { snIpxFwdFilterTable 1 }
SnIpxFwdFilterEntry ::= SEQUENCE {
snIpxFwdFilterIdx
INTEGER,
snIpxFwdFilterAction
Action,
snIpxFwdFilterSocket
INTEGER,
snIpxFwdFilterSrcNet
NetNumber,
snIpxFwdFilterSrcNode
PhysAddress,
snIpxFwdFilterDestNet
NetNumber,
snIpxFwdFilterDestNode
PhysAddress,
snIpxFwdFilterRowStatus
INTEGER
}
snIpxFwdFilterIdx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filter ID for a filter entry."
::= { snIpxFwdFilterEntry 1 }
snIpxFwdFilterAction OBJECT-TYPE
SYNTAX Action
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action to take if the ipx packet match
with this filter."
::= { snIpxFwdFilterEntry 2 }
snIpxFwdFilterSocket OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"IPX Forward Filter Socket Number."
::= { snIpxFwdFilterEntry 3 }
snIpxFwdFilterSrcNet OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Source Network Number."
::= { snIpxFwdFilterEntry 4 }
snIpxFwdFilterSrcNode OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Source Node Number."
::= { snIpxFwdFilterEntry 5 }
snIpxFwdFilterDestNet OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Destination Network Number."
::= { snIpxFwdFilterEntry 6 }
snIpxFwdFilterDestNode OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Destination Node Number."
::= { snIpxFwdFilterEntry 7 }
snIpxFwdFilterRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an exsisting row
If the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snIpxFwdFilterEntry 8 }
-- IPX RIP Filter table
snIpxRipFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxRipFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX RIP Filter table."
::= { snIpxRipFilter 1 }
snIpxRipFilterEntry OBJECT-TYPE
SYNTAX SnIpxRipFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX RIP Filter table."
INDEX { snIpxRipFilterId }
::= { snIpxRipFilterTable 1 }
SnIpxRipFilterEntry ::= SEQUENCE {
snIpxRipFilterId
INTEGER,
snIpxRipFilterAction
Action,
snIpxRipFilterNet
NetNumber,
snIpxRipFilterMask
NetNumber,
snIpxRipFilterRowStatus
INTEGER
}
snIpxRipFilterId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filter ID for a filter entry."
::= { snIpxRipFilterEntry 1 }
snIpxRipFilterAction OBJECT-TYPE
SYNTAX Action
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action to take if the ipx packet match
with this filter."
::= { snIpxRipFilterEntry 2 }
snIpxRipFilterNet OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"IPX RIP Filter Network number."
::= { snIpxRipFilterEntry 3 }
snIpxRipFilterMask OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"IPX RIP Filter Network/Subnet Mask."
::= { snIpxRipFilterEntry 4 }
snIpxRipFilterRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an exsisting row
If the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snIpxRipFilterEntry 5 }
-- IPX SAP Filter table
snIpxSapFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxSapFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX SAP Filter table."
::= { snIpxSapFilter 1 }
snIpxSapFilterEntry OBJECT-TYPE
SYNTAX SnIpxSapFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX SAP Filter table."
INDEX { snIpxSapFilterId }
::= { snIpxSapFilterTable 1 }
SnIpxSapFilterEntry ::= SEQUENCE {
snIpxSapFilterId
INTEGER,
snIpxSapFilterAction
Action,
snIpxSapFilterType
INTEGER,
snIpxSapFilterName
OCTET STRING,
snIpxSapFilterRowStatus
INTEGER
}
snIpxSapFilterId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filter ID for a filter entry."
::= { snIpxSapFilterEntry 1 }
snIpxSapFilterAction OBJECT-TYPE
SYNTAX Action
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action to take if the ipx packet match
with this filter."
::= { snIpxSapFilterEntry 2 }
snIpxSapFilterType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"IPX SAP Filter type to be matched."
::= { snIpxSapFilterEntry 3 }
snIpxSapFilterName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"IPX SAP Filter Name."
::= { snIpxSapFilterEntry 4 }
snIpxSapFilterRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an exsisting row
If the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snIpxSapFilterEntry 5 }
-- IPX IF Forward Access table
snIpxIfFwdAccessTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxIfFwdAccessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX IF Forward Access table."
::= { snIpxIfFwdAccess 1 }
snIpxIfFwdAccessEntry OBJECT-TYPE
SYNTAX SnIpxIfFwdAccessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Forward Access table."
INDEX { snIpxIfFwdAccessPort, snIpxIfFwdAccessDir }
::= { snIpxIfFwdAccessTable 1 }
SnIpxIfFwdAccessEntry ::= SEQUENCE {
snIpxIfFwdAccessPort
INTEGER,
snIpxIfFwdAccessDir
INTEGER,
snIpxIfFwdAccessFilterList
OCTET STRING,
snIpxIfFwdAccessRowStatus
INTEGER
}
snIpxIfFwdAccessPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IPX interface to which the Forward Filter applies."
::= { snIpxIfFwdAccessEntry 1 }
snIpxIfFwdAccessDir OBJECT-TYPE
SYNTAX INTEGER { in(1), out(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The access direction of incoming packet filter
or outgoing packet filter."
::= { snIpxIfFwdAccessEntry 2 }
snIpxIfFwdAccessFilterList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An IPX IF Forward Filter List."
::= { snIpxIfFwdAccessEntry 3 }
snIpxIfFwdAccessRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an exsisting row
If the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snIpxIfFwdAccessEntry 4 }
-- IPX IF RIP Access table
snIpxIfRipAccessTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxIfRipAccessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX IF RIP Access table."
::= { snIpxIfRipAccess 1 }
snIpxIfRipAccessEntry OBJECT-TYPE
SYNTAX SnIpxIfRipAccessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Forward Access table."
INDEX { snIpxIfRipAccessPort, snIpxIfRipAccessDir }
::= { snIpxIfRipAccessTable 1 }
SnIpxIfRipAccessEntry ::= SEQUENCE {
snIpxIfRipAccessPort
INTEGER,
snIpxIfRipAccessDir
INTEGER,
snIpxIfRipAccessFilterList
OCTET STRING,
snIpxIfRipAccessRowStatus
INTEGER
}
snIpxIfRipAccessPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IPX interface to which the RIP Filter applies."
::= { snIpxIfRipAccessEntry 1 }
snIpxIfRipAccessDir OBJECT-TYPE
SYNTAX INTEGER { in(1), out(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The access direction of incoming packet filter
or outgoing packet filter."
::= { snIpxIfRipAccessEntry 2 }
snIpxIfRipAccessFilterList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An IPX IF RIP Access Filter List."
::= { snIpxIfRipAccessEntry 3 }
snIpxIfRipAccessRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an exsisting row
If the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snIpxIfRipAccessEntry 4 }
-- IPX IF SAP Access table
snIpxIfSapAccessTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxIfSapAccessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX IF RIP Access table."
::= { snIpxIfSapAccess 1 }
snIpxIfSapAccessEntry OBJECT-TYPE
SYNTAX SnIpxIfSapAccessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Forward Access table."
INDEX { snIpxIfSapAccessPort, snIpxIfSapAccessDir }
::= { snIpxIfSapAccessTable 1 }
SnIpxIfSapAccessEntry ::= SEQUENCE {
snIpxIfSapAccessPort
INTEGER,
snIpxIfSapAccessDir
INTEGER,
snIpxIfSapAccessFilterList
OCTET STRING,
snIpxIfSapAccessRowStatus
INTEGER
}
snIpxIfSapAccessPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IPX interface to which the SAP Filter applies."
::= { snIpxIfSapAccessEntry 1 }
snIpxIfSapAccessDir OBJECT-TYPE
SYNTAX INTEGER { in(1), out(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The access direction of incoming packet filter
or outgoing packet filter."
::= { snIpxIfSapAccessEntry 2 }
snIpxIfSapAccessFilterList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An IPX IF SAP Access Filter List."
::= { snIpxIfSapAccessEntry 3 }
snIpxIfSapAccessRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an exsisting row
If the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snIpxIfSapAccessEntry 4 }
-- ipx interface address table
snIpxPortAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxPortAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX port address table."
::= { snIpxPortAddr 1 }
snIpxPortAddrEntry OBJECT-TYPE
SYNTAX SnIpxPortAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Port Address table."
INDEX { snIpxPortAddrPort, snIpxPortAddrEncap }
::= { snIpxPortAddrTable 1 }
SnIpxPortAddrEntry ::= SEQUENCE {
snIpxPortAddrPort
PortIndex,
snIpxPortAddrEncap
INTEGER,
snIpxPortAddrNetNum
NetNumber,
snIpxPortAddrRowStatus
INTEGER,
snIpxPortAddrNetBiosFilterMode
RtrStatus
}
snIpxPortAddrPort OBJECT-TYPE
SYNTAX PortIndex
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port index for port address entry."
::= { snIpxPortAddrEntry 1 }
snIpxPortAddrEncap OBJECT-TYPE
SYNTAX INTEGER {
ethernet8022(1),
ethernet8023(2),
ethernetII(3),
ethernetSnap(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IPX encapsulation type.
ethernet8022(1), ethernet8023(2),
ethernetII(3), ethernetSnap(4)
Note: Each Network Number can be assigned with one unique Frame type; Otherwise,
a SNMP-SET error will be returned."
::= { snIpxPortAddrEntry 2 }
snIpxPortAddrNetNum OBJECT-TYPE
SYNTAX NetNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An unique Network number for the IPX interface port."
::= { snIpxPortAddrEntry 3 }
snIpxPortAddrRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an exsisting row
If the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snIpxPortAddrEntry 4 }
snIpxPortAddrNetBiosFilterMode OBJECT-TYPE
SYNTAX RtrStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enabled/Disabled NetBios Filter Mode status per Port Address entry."
::= { snIpxPortAddrEntry 5 }
-- ipx port counters table
snIpxPortCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnIpxPortCountersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"IPX port Counters table."
::= { snIpxPortCounters 1 }
snIpxPortCountersEntry OBJECT-TYPE
SYNTAX SnIpxPortCountersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the IPX Port Counters table."
INDEX { snIpxPortCountersPort }
::= { snIpxPortCountersTable 1 }
SnIpxPortCountersEntry ::= SEQUENCE {
snIpxPortCountersPort
PortIndex,
snIpxPortCountersRcvPktsCnt
Counter,
snIpxPortCountersTxPktsCnt
Counter,
snIpxPortCountersFwdPktsCnt
Counter,
snIpxPortCountersRcvDropPktsCnt
Counter,
snIpxPortCountersTxDropPktsCnt
Counter,
snIpxPortCountersRcvFiltPktsCnt
Counter,
snIpxPortCountersTxFiltPktsCnt
Counter
}
snIpxPortCountersPort OBJECT-TYPE
SYNTAX PortIndex
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port index for port Counters entry."
::= { snIpxPortCountersEntry 1 }
snIpxPortCountersRcvPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX incoming packets counter for the interface."
::= { snIpxPortCountersEntry 2 }
snIpxPortCountersTxPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX Outgoing packets counter for the interface."
::= { snIpxPortCountersEntry 3 }
snIpxPortCountersFwdPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX forwarding packets counter for the interface."
::= { snIpxPortCountersEntry 4 }
snIpxPortCountersRcvDropPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX receiving drop packets counter for the interface."
::= { snIpxPortCountersEntry 5 }
snIpxPortCountersTxDropPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX transmitting drop packets counter for the interface."
::= { snIpxPortCountersEntry 6 }
snIpxPortCountersRcvFiltPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX receiving filter packets counter for the interface."
::= { snIpxPortCountersEntry 7 }
snIpxPortCountersTxFiltPktsCnt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IPX transmitting filter packets counter for the interface."
::= { snIpxPortCountersEntry 8 }
END
|