-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFOUNDRY-SN-IP-MIB
5256 lines (4642 loc) · 144 KB
/
FOUNDRY-SN-IP-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
FOUNDRY-SN-IP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,IpAddress, Counter32, TimeTicks,Counter64,Integer32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC
router,snRip, snDvmrp, snFsrp,snGblRt, snPim, snLoopbackIf
FROM FOUNDRY-SN-ROOT-MIB
InterfaceIndex, ifIndex, InterfaceIndexOrZero
FROM IF-MIB
InetAddressType
FROM INET-ADDRESS-MIB
DisplayString
FROM FOUNDRY-SN-AGENT-MIB
PortMask
FROM FOUNDRY-SN-SWITCH-GROUP-MIB;
snIp MODULE-IDENTITY
LAST-UPDATED "201006020000Z" -- 04 June 2010
ORGANIZATION "Brocade Communications Systems, Inc."
CONTACT-INFO
"Technical Support Center
130 Holger Way,
San Jose, CA 95134
Email: [email protected]
Phone: 1-800-752-8061
URL: www.brocade.com"
DESCRIPTION
"Copyright 1996-2010 Brocade Communications Systems, Inc.
All rights reserved.
This Brocade Communications Systems SNMP Management Information Base Specification
embodies Brocade Communications Systems' confidential and proprietary
intellectual property. Brocade Communications Systems retains all
title and ownership in the Specification, including any revisions.
This Specification is supplied AS IS, and Brocade Communications Systems makes
no warranty, either express or implied, as to the use,
operation, condition, or performance of the specification, and any unintended
consequence it may on the user environment."
REVISION "201006020000Z" -- 04 June 2010
DESCRIPTION
"Changed the ORGANIZATION, CONTACT-INFO and DESCRIPTION fields."
REVISION "200909300000Z" -- September 30, 2009
DESCRIPTION
"convert from SMIv1 to SMIv2"
::= { router 2 }
-- textual conventions
RtrStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
RtrStatus Values
"
SYNTAX INTEGER { disabled(0), enabled (1) }
ClearStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
Clear Status Values
"
SYNTAX INTEGER { normal(0), clear(1) }
RowSts ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
Row Creation/Deletion Values
"
SYNTAX INTEGER { other(1),
valid(2),
delete(3),
create(4)
}
PortIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
The bits 0-7 = port number.
The bits 8-15 = slot number (slot for chassis only).
ve port format bits 16-24 = 0x01, bits 0-15 = ve number
loopback port format bits 16-24 = 0x02, bits 0-15= lb number
"
SYNTAX Integer32
Action ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
Represents a action value such as deny or permit.
"
SYNTAX INTEGER { deny(0), permit(1) }
Metric ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
The OSPF Metric is defined as an unsigned value in the range
"
SYNTAX INTEGER (0..65535)
-- SECTION 2: MIB
-- Global Router MIB
-- This section contains global MIB object definitions applicable to the
-- switching router. These objects should be independent to any routing
-- protocol.
snGblRtGeneral OBJECT IDENTIFIER ::= { snGblRt 1 }
snGblRtRouteOnly OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this object is 'enabled', this switching router will only
route packets. If this object is 'disabled', this switching
router will first route packets. If route cannot perform,
it will switch packets."
::= { snGblRtGeneral 1 }
-- Router IP MIB
-- This section contains IP specific router MIB object definitions.
-- IP general group
snRtIpGeneral OBJECT IDENTIFIER ::= { snIp 1 }
snRtClearArpCache OBJECT-TYPE
SYNTAX ClearStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"clear(1) will clear arp cache table."
::= { snRtIpGeneral 1 }
snRtClearIpCache OBJECT-TYPE
SYNTAX ClearStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"clear(1) will clear ip route cache table."
::= { snRtIpGeneral 2 }
snRtClearIpRoute OBJECT-TYPE
SYNTAX ClearStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"clear(1) will clear ip route table."
::= { snRtIpGeneral 3 }
snRtBootpServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"IP address of bootp server to
which bootp packet need to be relayed."
::= { snRtIpGeneral 4 }
snRtBootpRelayMax OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of hop the bootp packet
should travel."
::= { snRtIpGeneral 5 }
snRtArpAge OBJECT-TYPE
SYNTAX INTEGER (0..240)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time in minutes an ARP entry can
be valid without relearning.
0 - Don't not age."
::= { snRtIpGeneral 6 }
snRtIpIrdpEnable OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Perform router advertisement on this box."
::= { snRtIpGeneral 7 }
snRtIpLoadShare OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If more than one route available,
use them to share load."
::= { snRtIpGeneral 8 }
snRtIpProxyArp OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable proxy arp function
in the box."
::= { snRtIpGeneral 9 }
snRtIpRarp OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable RARP server."
::= { snRtIpGeneral 10 }
snRtIpTtl OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time to live value to be used
in IP header of IP packet generated
by the box."
::= { snRtIpGeneral 11 }
snRtIpSetAllPortConfig OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of this object is an index number of a
snRtIpPortConfigTable row (i.e. snRtIpPortConfigPortIndex),
which is the selected row to copy all of its read-writable
data (i.e. snRtIpPortMtu and snRtIpPortEncap) to the rest
of the rows in snRtIpPortConfigTable.
Note: prior setting this object, all the intended data of
the given row of the table must be set. Otherwise, the
current data of the row will be used to set the entire ip
interface configuration table. The previous setting will
be overwritten by the new one."
::= { snRtIpGeneral 12 }
snRtIpFwdCacheMaxEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of ip forwarding table entries."
::= { snRtIpGeneral 13 }
snRtIpFwdCacheCurEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of ip forwarding table entries."
::= { snRtIpGeneral 14 }
snRtIpMaxStaticRouteEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of static route entries in the static route table."
::= { snRtIpGeneral 15 }
snRtIpDirBcastFwd OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable directed broadcast forwarding."
DEFVAL { enabled }
::= { snRtIpGeneral 16 }
snRtIpLoadShareNumOfPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of routes are used to share load."
::= { snRtIpGeneral 17 }
snRtIpLoadShareMaxPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of routes can be configured to share load."
::= { snRtIpGeneral 18 }
snRtIpLoadShareMinPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum number of routes can be configured to share load."
::= { snRtIpGeneral 19 }
snRtIpProtocolRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Router Id for all IP Protocols."
::= { snRtIpGeneral 20 }
snRtIpSourceRoute OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable source routing support, ability to drop the
source routing packets."
DEFVAL { enabled }
::= { snRtIpGeneral 21 }
-- IP static route table
snRtIpStaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtIpStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP static/default route table."
::= { snIp 2 }
snRtIpStaticRouteEntry OBJECT-TYPE
SYNTAX SnRtIpStaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the IP static route table."
INDEX { snRtIpStaticRouteIndex }
::= { snRtIpStaticRouteTable 1 }
SnRtIpStaticRouteEntry ::= SEQUENCE {
snRtIpStaticRouteIndex
Integer32,
snRtIpStaticRouteDest
IpAddress,
snRtIpStaticRouteMask
IpAddress,
snRtIpStaticRouteNextHop
IpAddress,
snRtIpStaticRouteMetric
Integer32,
snRtIpStaticRouteRowStatus
RowSts,
snRtIpStaticRouteDistance
INTEGER
}
snRtIpStaticRouteIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index for a static route entry."
::= { snRtIpStaticRouteEntry 1 }
snRtIpStaticRouteDest OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination IP address.
0.0.0.0 for default route."
::= { snRtIpStaticRouteEntry 2 }
snRtIpStaticRouteMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Subnet mask associated with
the destination IP address.
0.0.0.0 for default route mask."
::= { snRtIpStaticRouteEntry 3 }
snRtIpStaticRouteNextHop OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of next hop router that
is located on one of the directly
attached IP subnet."
::= { snRtIpStaticRouteEntry 4 }
snRtIpStaticRouteMetric OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The metrics to next hop router."
::= { snRtIpStaticRouteEntry 5 }
snRtIpStaticRouteRowStatus OBJECT-TYPE
SYNTAX RowSts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To create or delete a static route
entry."
::= { snRtIpStaticRouteEntry 6 }
snRtIpStaticRouteDistance OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administration distance."
::= { snRtIpStaticRouteEntry 7 }
-- ip filter table
snRtIpFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtIpFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP filter table."
::= { snIp 3 }
snRtIpFilterEntry OBJECT-TYPE
SYNTAX SnRtIpFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the IP filter table."
INDEX { snRtIpFilterIndex }
::= { snRtIpFilterTable 1 }
SnRtIpFilterEntry ::= SEQUENCE {
snRtIpFilterIndex
Integer32,
snRtIpFilterAction
INTEGER,
snRtIpFilterProtocol
INTEGER,
snRtIpFilterSourceIp
IpAddress,
snRtIpFilterSourceMask
IpAddress,
snRtIpFilterDestIp
IpAddress,
snRtIpFilterDestMask
IpAddress,
snRtIpFilterOperator
INTEGER,
snRtIpFilterOperand
INTEGER,
snRtIpFilterRowStatus
RowSts,
snRtIpFilterEstablished
RtrStatus,
snRtIpFilterQosPriority
INTEGER
}
snRtIpFilterIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index for a filter entry."
::= { snRtIpFilterEntry 1 }
snRtIpFilterAction OBJECT-TYPE
SYNTAX INTEGER { deny(0), permit(1), qosEnabled(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action to take if the ip packet match
with this filter."
::= { snRtIpFilterEntry 2 }
snRtIpFilterProtocol OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transport protocol. 0 means don't care"
::= { snRtIpFilterEntry 3 }
snRtIpFilterSourceIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source IP address."
::= { snRtIpFilterEntry 4 }
snRtIpFilterSourceMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source IP subnet mask."
::= { snRtIpFilterEntry 5 }
snRtIpFilterDestIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination IP address."
::= { snRtIpFilterEntry 6 }
snRtIpFilterDestMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination IP subnet mask."
::= { snRtIpFilterEntry 7 }
snRtIpFilterOperator OBJECT-TYPE
SYNTAX INTEGER { greater(1), equal(2), less(3), notEqual(4) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of comparison to perform.
for now, this only applys to tcp or udp
to compare the port number"
::= { snRtIpFilterEntry 8 }
snRtIpFilterOperand OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For now this only refers to transport
protocol port number. 0 means NA"
::= { snRtIpFilterEntry 9 }
snRtIpFilterRowStatus OBJECT-TYPE
SYNTAX RowSts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To create or delete a filter
entry."
::= { snRtIpFilterEntry 10 }
snRtIpFilterEstablished OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the filtering of established TCP
packets of which the ACK or RESET flag is on. This
additional filter only applies to TCP transport
protocol."
::= { snRtIpFilterEntry 11 }
snRtIpFilterQosPriority OBJECT-TYPE
SYNTAX INTEGER {
level0(0),
level1(1),
level2(2),
level3(3),
level4(4),
level5(5),
level6(6),
level7(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The router L4 Qos Priority values are:
low(0) -- low prority
high(1) -- high prority.
The Priority values are:
level0(0), level1(1), level2(2), level3(3),
level4(4), level5(5), level6(6), level7(7) "
::= { snRtIpFilterEntry 12 }
-- RARP table
snRtIpRarpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtIpRarpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP RARP table."
::= { snIp 4 }
snRtIpRarpEntry OBJECT-TYPE
SYNTAX SnRtIpRarpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the IP Rarp table."
INDEX { snRtIpRarpIndex }
::= { snRtIpRarpTable 1 }
SnRtIpRarpEntry ::= SEQUENCE {
snRtIpRarpIndex
INTEGER,
snRtIpRarpMac
OCTET STRING,
snRtIpRarpIp
IpAddress,
snRtIpRarpRowStatus
RowSts
}
snRtIpRarpIndex OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index for a Rarp entry."
::= { snRtIpRarpEntry 1 }
snRtIpRarpMac OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (6))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Mac address for a Rarp entry."
::= { snRtIpRarpEntry 2 }
snRtIpRarpIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address for a Rarp entry."
::= { snRtIpRarpEntry 3 }
snRtIpRarpRowStatus OBJECT-TYPE
SYNTAX RowSts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To create or delete a Rarp
entry."
::= { snRtIpRarpEntry 4 }
-- Static ARP table
snRtStaticArpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtStaticArpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP static arp table."
::= { snIp 5 }
snRtStaticArpEntry OBJECT-TYPE
SYNTAX SnRtStaticArpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the IP static arp table."
INDEX { snRtStaticArpIndex }
::= { snRtStaticArpTable 1 }
SnRtStaticArpEntry ::= SEQUENCE {
snRtStaticArpIndex
INTEGER,
snRtStaticArpIp
IpAddress,
snRtStaticArpMac
OCTET STRING,
snRtStaticArpPort
PortIndex,
snRtStaticArpRowStatus
RowSts
}
snRtStaticArpIndex OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index for a static arp entry."
::= { snRtStaticArpEntry 1 }
snRtStaticArpIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address for a static arp entry."
::= { snRtStaticArpEntry 2 }
snRtStaticArpMac OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (6))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Mac address for a static arp entry."
::= { snRtStaticArpEntry 3 }
snRtStaticArpPort OBJECT-TYPE
SYNTAX PortIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port index for a static arp entry."
::= { snRtStaticArpEntry 4 }
snRtStaticArpRowStatus OBJECT-TYPE
SYNTAX RowSts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To create or delete a Static Arp
entry."
::= { snRtStaticArpEntry 5 }
-- ip interface address table
-- this table was replaced by the snRtIpPortIfAddrTable,
-- of which the index was changed to ifIndex, not another
-- indexing method used by this table
snRtIpPortAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtIpPortAddrEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"IP port address table."
::= { snIp 6 }
snRtIpPortAddrEntry OBJECT-TYPE
SYNTAX SnRtIpPortAddrEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry in the IP Port Address table."
INDEX { snRtIpPortAddrPortIndex, snRtIpPortAddress }
::= { snRtIpPortAddrTable 1 }
SnRtIpPortAddrEntry ::= SEQUENCE {
snRtIpPortAddrPortIndex
PortIndex,
snRtIpPortAddress
IpAddress,
snRtIpPortSubnetMask
IpAddress,
snRtIpPortAddrType
INTEGER,
snRtIpPortRowStatus
RowSts
}
snRtIpPortAddrPortIndex OBJECT-TYPE
SYNTAX PortIndex
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The port index for port address entry."
::= { snRtIpPortAddrEntry 1 }
snRtIpPortAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The port IP address."
::= { snRtIpPortAddrEntry 2 }
snRtIpPortSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The port IP address subnet mask."
::= { snRtIpPortAddrEntry 3 }
snRtIpPortAddrType OBJECT-TYPE
SYNTAX INTEGER { primary(1), secondary(2) }
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The port IP address type."
DEFVAL { primary }
::= { snRtIpPortAddrEntry 4 }
snRtIpPortRowStatus OBJECT-TYPE
SYNTAX RowSts
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"To create or delete a port address
entry."
::= { snRtIpPortAddrEntry 5 }
-- ip interface access table
-- this table was replaced by the snRtIpPortIfAccessTable,
-- of which the index was changed to ifIndex, not another
-- indexing method used by this table
snRtIpPortAccessTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtIpPortAccessEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"IP port access table."
::= { snIp 7 }
snRtIpPortAccessEntry OBJECT-TYPE
SYNTAX SnRtIpPortAccessEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry in the IP Port access table."
INDEX { snRtIpPortAccessPortIndex, snRtIpPortAccessDirection }
::= { snRtIpPortAccessTable 1 }
SnRtIpPortAccessEntry ::= SEQUENCE {
snRtIpPortAccessPortIndex
PortIndex,
snRtIpPortAccessDirection
INTEGER,
snRtIpPortAccessFilters
OCTET STRING,
snRtIpPortAccessRowStatus
RowSts
}
snRtIpPortAccessPortIndex OBJECT-TYPE
SYNTAX PortIndex
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The port index for port access entry."
::= { snRtIpPortAccessEntry 1 }
snRtIpPortAccessDirection OBJECT-TYPE
SYNTAX INTEGER { in(1), out(2) }
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The incoming or outgoing check
for port access."
::= { snRtIpPortAccessEntry 2 }
snRtIpPortAccessFilters OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"1st octet correspond to 1st filter
number and so on."
::= { snRtIpPortAccessEntry 3 }
snRtIpPortAccessRowStatus OBJECT-TYPE
SYNTAX RowSts
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"To create or delete a port access
entry."
::= { snRtIpPortAccessEntry 4 }
-- ip interface configuration table
-- this table was replaced by the snRtIpPortIfConfigTable,
-- of which the index was changed to ifIndex, not another
-- indexing method used by this table
snRtIpPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtIpPortConfigEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"IP port Config table."
::= { snIp 8 }
snRtIpPortConfigEntry OBJECT-TYPE
SYNTAX SnRtIpPortConfigEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry in the IP Port Config table."
INDEX { snRtIpPortConfigPortIndex }
::= { snRtIpPortConfigTable 1 }
SnRtIpPortConfigEntry ::= SEQUENCE {
snRtIpPortConfigPortIndex
PortIndex,
snRtIpPortMtu
INTEGER,
snRtIpPortEncap
INTEGER,
snRtIpPortMetric
INTEGER,
snRtIpPortDirBcastFwd
RtrStatus
}
snRtIpPortConfigPortIndex OBJECT-TYPE
SYNTAX PortIndex
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The port index for port config entry."
::= { snRtIpPortConfigEntry 1 }
snRtIpPortMtu OBJECT-TYPE
SYNTAX INTEGER (576..4470)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The maximun transfer unit."
::= { snRtIpPortConfigEntry 2 }
snRtIpPortEncap OBJECT-TYPE
SYNTAX INTEGER {
ethernet(1),
snap(2),
hdlc(3),
ppp(4)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Data link encapsulation to be used
on the IP frame transmitted on the
port."
::= { snRtIpPortConfigEntry 3 }
snRtIpPortMetric OBJECT-TYPE
SYNTAX INTEGER (1..15)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The metric."
DEFVAL { 1 }
::= { snRtIpPortConfigEntry 4 }
snRtIpPortDirBcastFwd OBJECT-TYPE
SYNTAX RtrStatus
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Enable/Disable directed broadcast forwarding on the port."
DEFVAL { enabled }
::= { snRtIpPortConfigEntry 5 }
-- ip interface address table, PortIndex is changed to ifIndex
snRtIpPortIfAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnRtIpPortIfAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP port If address table."
::= { snIp 18 }
snRtIpPortIfAddrEntry OBJECT-TYPE
SYNTAX SnRtIpPortIfAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the IP Port Address table."
INDEX { snRtIpPortIfAddrInterfaceIndex, snRtIpPortIfAddress }
::= { snRtIpPortIfAddrTable 1 }
SnRtIpPortIfAddrEntry ::= SEQUENCE {
snRtIpPortIfAddrInterfaceIndex
InterfaceIndex,
snRtIpPortIfAddress
IpAddress,
snRtIpPortIfSubnetMask
IpAddress,
snRtIpPortIfAddrType
INTEGER,
snRtIpPortIfRowStatus
RowSts
}
snRtIpPortIfAddrInterfaceIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only