-
Notifications
You must be signed in to change notification settings - Fork 57
/
AirPair-MIB_18.0.3.v1.mib
4696 lines (3851 loc) · 168 KB
/
AirPair-MIB_18.0.3.v1.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
-- File Name : AirPair-MIB_18.0.0.mib
-- Version : 18.0.0
-- Date : July 25, 2006
-- Author : DragonWave Inc.
--
-- $Log: AirPair-MIB_18.0.3.v1.mib $
-- Revision 1.1 2006/11/03 22:28:26Z ssayeed
-- Initial revision
-- Revision 1.12 2006/11/03 21:35:37Z ssayeed
-- Revision 1.1 2006/09/18 18:50:40Z ssayeed
-- Initial revision
-- Revision 1.2 2006/09/08 18:43:32Z ssayeed
-- v3 trap host entry made read only
-- Revision 1.1 2006/08/31 19:12:46Z ssayeed
-- Initial revision
-- Revision 1.13 2006/08/29 20:55:26Z jxu
-- Excessive cable loss change.
-- Revision 1.12 2006/07/26 18:30:38Z ssayeed
-- mib file was updated to be same as 4.3.1 releases
-- Revision 1.11 2006/07/26 18:03:28Z aanantha
-- Revision 1.10 2006/07/25 19:01:53Z aanantha
-- Revision 1.9 2006/07/25 18:59:25Z aanantha
-- Added new radio bands in 'frequencyType' object. Also made some of the apLinkAnalysis objects as 'OBSOLETE'.
-- Revision 1.8 2006/07/13 16:12:32Z aguhanathan
-- to add radius related mib
-- Revision 1.7 2006/07/13 14:51:39Z ssayeed
-- v3 trap host table added
-- Revision 1.6 2006/06/30 20:51:47Z jxu
-- some stuff.
-- Revision 1.5 2006/06/16 13:08:58Z aguhanathan
-- cableloss threshold not supported
-- Revision 1.4 2006/06/13 20:12:50Z ssayeed
-- mdmAmplitudeImbalance is defined back to string
-- Revision 1.3 2006/06/13 18:53:51Z aanantha
-- Taken care of -1 value for 0 Mbps in Mib file.
-- Revision 1.2 2006/06/13 17:15:03Z ssayeed
-- syntax error fixed
-- Revision 1.1 2006/06/12 20:25:09Z ssayeed
-- Initial revision
-- Revision 1.2 2006/06/09 13:21:38Z aguhanathan
-- to add cable loss threshold, bw utilization
-- Revision 1.1 2006/06/07 14:39:38Z aanantha
-- Initial revision
-- Revision 1.4 2006/04/11 13:27:15Z aguhanathan
-- to add radioserialNumMisMatch trap
-- Revision 1.3 2006/04/10 15:12:44Z jxu
-- change wording and add primary radio faulty trap.
-- Revision 1.1 2006/03/01 20:24:32Z kadeney
-- Initial revision
-- Revision 1.3 2006/02/23 16:01:07Z aguhanathan
-- for aam, radio redundancy
-- Revision 1.2 2006/01/06 16:10:45Z aanantha
-- Support for new frequency file related alarms and traps. New radio bands , airpair types(airpari65, airpair150), SDR_0.
-- Revision 1.1 2005/11/01 21:28:30Z bkay
-- Initial revision
-- Revision 1.6 2005/10/17 13:54:56Z jxu
-- Add more mib nodes.
-- Revision 1.5 2005/10/07 13:19:34Z jxu
-- More nodes.
-- Revision 1.4 2005/10/05 19:33:04Z pliu
-- radio firmware upgrade.
-- Revision 1.3 2005/10/05 18:53:15Z jxu
-- New objects for RLS.
-- Revision 1.2 2005/09/26 22:52:54Z rtharmalingam
-- Added log configs and the modem frame in/out counts
-- Revision 1.1 2005/09/21 20:31:52Z jxu
-- Initial revision
-- Revision 1.2 2005/06/05 21:21:11Z jxu
-- Added ranges for some object.
-- Revision 1.1 2005/06/01 19:08:56Z jxu
-- Initial revision
-- Revision 1.1 2005/05/18 20:29:09Z bkay
-- Initial revision
--
--
AirPair-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter, Gauge,TimeTicks
FROM RFC1155-SMI
snmp
FROM SNMPv2-MIB
OBJECT-TYPE,
ifIndex
FROM RFC-1212;
PhysAddress ::= OCTET STRING
DisplayString ::= OCTET STRING
-- Important!! For HP OpenView, the following OID definition for ISO must be commented out,
-- otherwise it won't compile. HP openView has already defined ISO.
-- iso OBJECT IDENTIFIER ::= { 1 }
org OBJECT IDENTIFIER
::= { iso 3 }
dod OBJECT IDENTIFIER
::= { org 6 }
internet OBJECT IDENTIFIER
::= { dod 1 }
private OBJECT IDENTIFIER
::= { internet 4 }
enterprises OBJECT IDENTIFIER
::= { private 1 }
dragonwave OBJECT IDENTIFIER
::= { enterprises 7262 }
airPair OBJECT IDENTIFIER
::= { dragonwave 1 }
--
-- AIR PAIR TOP LEVEL OBJECTS
--
apResetSystem OBJECT-TYPE
SYNTAX INTEGER ( 0 .. 1 )
ACCESS write-only
STATUS mandatory
DESCRIPTION "Writing '1' to this object resets the NIC, Modem, and radio."
::= { airPair 1 }
apSaveMIB OBJECT-TYPE
SYNTAX INTEGER { save ( 1 ) }
ACCESS write-only
STATUS mandatory
DESCRIPTION "Writing '1' to this object save all MIB values. Note: If the AirPair type is
'airpair120' or 'airpair170' and the radio band doesn't match the AirPair type,
Mib can't be saved."
::= { airPair 2 }
apAdminStatus OBJECT-TYPE
SYNTAX INTEGER { up ( 1 ) , down ( 2 ) , testing ( 3 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "NOT IMPLEMENTED
The desired state of the system. 'testing' and 'down' indicates that no user
packet data can be passed.'down' disables the transmitter, while 'testing'
does not.'up' enables the transmitter."
DEFVAL { up }
::= { airPair 3 }
apOperStatus OBJECT-TYPE
SYNTAX INTEGER { up ( 1 ) , down ( 2 ) , testing ( 3 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current operational state of the system.
Testing indicates that no operational packets can be passed."
::= { airPair 4 }
apAirInterfaceEncryption OBJECT-TYPE
SYNTAX INTEGER { disabled ( 1 ) , enabled ( 2 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "OBSOLETE. This enables encryption on the air interface. "
DEFVAL { disabled }
::= { airPair 5 }
apMibVersionNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The version number of the MIB."
::= { airPair 6 }
apType OBJECT-TYPE
SYNTAX INTEGER { airPair50 ( 1 ) , airPair100 ( 2 ) , airPairOC3 ( 3 ) , airPairFLEX ( 4 ), airPair120 ( 5 ), airPair170 ( 6 ), airPair200 ( 7 ), airpair150 ( 8 ), airpair65 ( 9 ), airpair40 ( 10 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the specific type of system this is."
::= { airPair 7 }
apSpeed OBJECT-TYPE
SYNTAX INTEGER {flex-0Mbps ( -1 ), flex-10Mbps ( 1 ) , flex-20Mbps ( 2 ) , flex-30Mbps ( 3 ) , flex-40Mbps ( 4 )
, flex-50Mbps ( 5 ) , flex-60Mbps ( 6 ) , flex-70Mbps ( 7 )
, flex-80Mbps ( 8 ) , flex-90Mbps ( 9 ) , flex-100Mbps ( 10 )
,flex-110Mbps ( 11 ) , flex-120Mbps ( 12 ) , flex-130Mbps ( 13 )
,flex-140Mbps ( 14 ) , flex-150Mbps ( 15 ) , flex-160Mbps ( 16 )
,flex-170Mbps ( 17 ) , flex-180Mbps ( 18 ) , flex-190Mbps ( 19 )
,flex-200Mbps ( 20 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Changes the working speed of the Airpair.
Writes are only valid if system is a FLEX. Due to backwards compatibility issue, 0 value should
be treated as 0 Mbps."
::= { airPair 8 }
apMaxSpeed OBJECT-TYPE
SYNTAX INTEGER {flex-0Mbps ( -1 ) , flex-10Mbps ( 1 ) , flex-20Mbps ( 2 ) , flex-30Mbps ( 3 ) , flex-40Mbps ( 4 )
, flex-50Mbps ( 5 ) , flex-60Mbps ( 6 ) , flex-70Mbps ( 7 )
, flex-80Mbps ( 8 ) , flex-90Mbps ( 9 ) , flex-100Mbps ( 10 )
,flex-110Mbps ( 11 ) , flex-120Mbps ( 12 ) , flex-130Mbps ( 13 )
,flex-140Mbps ( 14 ) , flex-150Mbps ( 15 ) , flex-160Mbps ( 16 )
,flex-170Mbps ( 17 ) , flex-180Mbps ( 18 ) , flex-190Mbps ( 19 )
,flex-200Mbps ( 20 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the maximum speed that this system can operate at. Due to backwards compatibility issue, 0 value should
be treated as 0 Mbps."
::= { airPair 9 }
apKey OBJECT-TYPE
SYNTAX DisplayString
ACCESS write-only
STATUS mandatory
DESCRIPTION "Enter your AirPairFLEX key here along with the maximum speed for
that key to upgrade the FLEX system.
Format: [speed] [key]
Example: 50 abc123"
::= { airPair 10 }
apAuthentication OBJECT IDENTIFIER
::= { airPair 11 }
apNetworkInterfaceCard OBJECT IDENTIFIER
::= { airPair 12 }
apIntermediateFrequencyCard OBJECT IDENTIFIER
::= { airPair 13 }
apFrequencies OBJECT IDENTIFIER
::= { airPair 14 }
apModem OBJECT IDENTIFIER
::= { airPair 15 }
apRadio OBJECT IDENTIFIER
::= { airPair 16 }
apCalendar OBJECT IDENTIFIER
::= { airPair 17 }
apLeds OBJECT IDENTIFIER
::= { airPair 18 }
apSystemAlarms OBJECT IDENTIFIER
::= { airPair 19 }
apSnmpTraps OBJECT IDENTIFIER
::= { airPair 20 }
apSnmpManagers OBJECT IDENTIFIER
::= { airPair 21 }
apLinkAnalysis OBJECT IDENTIFIER
::= { airPair 22 }
apCoS OBJECT IDENTIFIER
::= { airPair 23 }
apManagementSessions OBJECT IDENTIFIER
::= { airPair 24 }
apInstall OBJECT IDENTIFIER
::= { airPair 25 }
httpSecure OBJECT IDENTIFIER
::= { airPair 27 }
gigaEQos OBJECT IDENTIFIER
::= { airPair 28 }
rapidLinkShutdown OBJECT IDENTIFIER
::= { airPair 29 }
sntp OBJECT IDENTIFIER
::= { airPair 30 }
apLogs OBJECT IDENTIFIER
::= { airPair 31 }
radius OBJECT IDENTIFIER
::= { airPair 32 }
--
-- NESTED OBJECTS BELOW:
--
--
-- AIRPAIR PEER NODE AUTHENTICATION INFORMATION
--
uniquePeerAuthenticationKey OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 34 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The serial number of the peer node that this node will communicate with.
This is only used when authentication mode is set to unique."
::= { apAuthentication 1 }
peerDetectedSerialNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The serial number of the peer node that the system is presently communicating
with. This is only used when authentication is set to unique."
::= { apAuthentication 2 }
authenticationMode OBJECT-TYPE
SYNTAX INTEGER { none ( 1 ) , unique ( 2 ) , group ( 3 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "This sets the authentication mode for the system.If configured for unique
authentication, an AIRPAIR node only exchanges user traffic with one other
AIRPAIR node. The serial number is used in this case.
If configured for group authentication, an AIRPAIR node exchanges user
traffic with another AIRPAIR node of the same group and uses the
authentication keys."
DEFVAL { none }
::= { apAuthentication 3 }
authenticationFailureAction OBJECT-TYPE
SYNTAX INTEGER { blockTraffic ( 1 ) , passTraffic ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "This sets the authentication failure action for the system.
Block traffic will block all user traffic including remote
management access. Pass traffic will allow all user traffic
to be sent and recieved"
DEFVAL { blockTraffic }
::= { apAuthentication 4 }
peerAuthenticationStatus OBJECT-TYPE
SYNTAX INTEGER { authenticated ( 1 ) , notAuthenticated ( 2 ) , explicitAuthenticationFailure ( 3 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Specifies the current authentication status of the system.
Authenticated means authentication is on and the system
has been authenticated, notAuthenticated means authentication
is off or the system has not communicated yet with the other node,
explicit authentication failure means authentication is on and
authentication has failed"
::= { apAuthentication 5 }
--
-- NETWORK CARD INFORMATION
--
networkInterfaceDesc OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "A textual string containing information about the modem.
Includes the manufacturer, product name, software
version, and hardware version of the modem card."
::= { apNetworkInterfaceCard 1 }
ipAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IP Address of the network interface card."
::= { apNetworkInterfaceCard 2 }
subnetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The subnet mask for the network interface card."
::= { apNetworkInterfaceCard 3 }
defaultGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The default gateway for the network interface card"
::= { apNetworkInterfaceCard 4 }
autoNegotiationSetup OBJECT-TYPE
SYNTAX INTEGER { off ( 1 ) , on ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Turns auto-negotiation on or off. Turning off results in
the interface defaulting to 100BaseT, Full Duplex. "
DEFVAL { on }
::= { apNetworkInterfaceCard 5 }
negotiatedLinkParameters OBJECT-TYPE
SYNTAX INTEGER { x100BaseTFullDublex ( 1 ) , x100BaseTHalfDublex ( 2 ) , x1000BaseTFullDublex ( 3 ) , x1000BaseTHalfDublex ( 4 ), notKnown ( 5 ), x10BaseTFullDublex ( 6 ), x10BaseTHalfDublex ( 7 ), linkNotUp ( 8 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Displays the Interface card current operating negotiated
parameters."
::= { apNetworkInterfaceCard 6 }
minimumNegotiableLinkParameters OBJECT-TYPE
SYNTAX INTEGER { x100BaseTFullDublex ( 1 ) , x100BaseTHalfDublex ( 2 ) , x1000BaseTFullDublex ( 3 ) , x1000BaseTHalfDublex ( 4 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Displays the minimum negotiable parameter set for the enet
interface."
::= { apNetworkInterfaceCard 7 }
serialNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Serial number of the network interface card."
::= { apNetworkInterfaceCard 8 }
snmpSetRequests OBJECT-TYPE
SYNTAX INTEGER { disabled ( 1 ) , enabled ( 2 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates whether SNMP SET requests are allowed."
DEFVAL { disabled }
::= { apNetworkInterfaceCard 9 }
httpAccessMode OBJECT-TYPE
SYNTAX INTEGER { disabled ( 1 ) , enabled ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "NOT IMPLEMENTED
Indicates whether HTTP access is allowed."
DEFVAL { disabled }
::= { apNetworkInterfaceCard 10 }
telnetAccessMode OBJECT-TYPE
SYNTAX INTEGER { disabled ( 1 ) , enabled ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Indicates whether Telnet access is allowed."
DEFVAL { enabled }
::= { apNetworkInterfaceCard 11 }
dnsServer OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "NOT IMPLEMENTED
Indicates the DNS for the system."
::= { apNetworkInterfaceCard 12 }
vlanTagging OBJECT-TYPE
SYNTAX INTEGER { disabled ( 1 ) , enabled ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Indicates whether VLAN tagging is enabled."
DEFVAL { disabled }
::= { apNetworkInterfaceCard 13 }
vlanTag OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 8 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The first two bytes are set to 0x8100. The two byte
control tag is set by the user."
DEFVAL { "81000000" }
::= { apNetworkInterfaceCard 14 }
--
-- NETWORK STATISTICS
--
nicStatistics OBJECT IDENTIFIER
::= { apNetworkInterfaceCard 15 }
nicFramesIn OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames received."
::= { nicStatistics 1 }
nicFramesOut OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames sent."
::= { nicStatistics 2 }
nicFramesInError OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames received in error."
::= { nicStatistics 3 }
nicUndersizedFramesIn OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of undersized NIC frames received."
::= { nicStatistics 4 }
nicOversizedFramesIn OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of oversized NIC frames received."
::= { nicStatistics 5 }
nicFramesInQueue1Discarded OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames received in queue 2 that
were discarded, but due to an error. One possible reason
is lack of buffer space."
::= { nicStatistics 6 }
nicFramesInQueue2Discarded OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames received in queue 2 that
were discarded, but due to an error. One possible reason
is lack of buffer space."
::= { nicStatistics 7 }
nicFramesInQueue1 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames passed through queue 1."
::= { nicStatistics 8 }
nicFramesInQueue2 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames passed through queue 2."
::= { nicStatistics 9 }
nicFramesInQueue3 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames passed through queue 3."
::= { nicStatistics 10 }
nicFramesInQueue4 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames passed through queue 4."
::= { nicStatistics 11 }
nicFramesInQueue3Discarded OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames received in queue 3 that
were discarded, but due to an error. One possible reason
is lack of buffer space."
::= { nicStatistics 12 }
nicFramesInQueue4Discarded OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current count of NIC frames received in queue 4 that
were discarded, but due to an error. One possible reason
is lack of buffer space."
::= { nicStatistics 13 }
maxFrameSize OBJECT-TYPE
SYNTAX INTEGER ( 1600..9600 )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The default maximum frame size is 1600 bytes. The settable
maximum frame size must be a multiple of 128. If the chosen
maximum frame size is not a multiple of 128, its closest
number which is a multiple of 128 is actually used. The
settable lowest maximum frame size is 1664, and the settable
highest maximum frame size is 9600. If the chosen maximum
frame size is out of this range, the default maximum frame
size of 1600 is used. "
DEFVAL { 1600 }
::= { apNetworkInterfaceCard 16 }
pauseFrameEnable OBJECT-TYPE
SYNTAX INTEGER { disabled ( 1 ) , enabled ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "When PAUSE is enabled, pause frames can be generated by the
system and the pause frames will flow toward the link partner
on the network. When PAUSE is enabled,
Qos is disabled automatically. When PAUSE is not enabled,
no pause frames will be generated by the system. "
DEFVAL { disabled }
::= { apNetworkInterfaceCard 17 }
opticalTransmitterState OBJECT-TYPE
SYNTAX INTEGER { off ( 1 ) , on ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "When it is on, optical transmitter is enabled. Otherwise
optical transmitter is disabled."
DEFVAL { off }
::= { apNetworkInterfaceCard 18 }
intermediateFrequencyDesc OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "A textual string containing information about the modem.
Includes the manufacturer, product name, software
version, and hardware version of the modem card."
::= { apIntermediateFrequencyCard 1 }
ifTxSynthesizerLock OBJECT-TYPE
SYNTAX INTEGER { unlocked ( 1 ) , locked ( 2 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates if the transmit synthesizer is locked."
::= { apIntermediateFrequencyCard 2 }
ifRxSynthesizerLock OBJECT-TYPE
SYNTAX INTEGER { unlocked ( 1 ) , locked ( 2 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates if the receive synthesizer is locked."
::= { apIntermediateFrequencyCard 3 }
--
-- FREQENCY INFORMATION
--
frequencyType OBJECT-TYPE
SYNTAX INTEGER { freqNone ( 1 ),fcc18a ( 2 ),fcc18b ( 3 ),fcc18c ( 4 ),
ic18a ( 5 ),ic18b ( 6 ),ic18c ( 7 ),fcc23a ( 8 ),fcc23b ( 9 ),fcc23c ( 10 ),
fcc23d ( 11 ),ic23a ( 12 ),ic23b ( 13 ),fcc28a ( 14 ),fcc28b ( 15 ),
china23 ( 16 ) , un24 (17) , etsi23a-28 ( 18 ), etsi23a-56 ( 19 ), etsi26b-28 ( 20 ),
etsi26b-56 ( 21 ),aus23b-50 ( 22 ),aus23b-28 ( 23 ), dems24-20 ( 24 ), dems24-40 ( 25 ), un24-etsi ( 26 ),
etsi18d-27-5 ( 27 ), aus18-27-5 ( 28 ), etsi18d-55 ( 29 ), aus18-55 ( 30 ),
itu23c-28 ( 31 ), nz23c-56 ( 32 ), etsi18c-27-5 ( 33 ), etsi18c-55 (34),
fcc11a-40 ( 35 ), ic11a-40 (36), fcc11a-30 ( 37), ic11a-30 ( 38 ), etsi26d-28 ( 39 ),
etsi26d-56 ( 40 ), uk23a-56 ( 41 ), ic18c-50 ( 42 ), etsi11a-40 ( 43 ), etsi13a-14 ( 44 ),
etsi13a-28 ( 45 ), nz13a-14 ( 46 ), nz13a-28 ( 47 ), aus13a-28 ( 48 ), france18d-27-5 ( 49 ),
france18c-27-5 ( 50 ), ic15-40 ( 51 ), itu15-28 ( 52 ), mex15b-28 ( 53 ), nz15-28 ( 54 ),
aus15-28 ( 55 ), etsi15-28 ( 56 ), mex15a-28 ( 57 ), etsi15-14 ( 58 ), aus15-14 ( 59 ), nz15-14 ( 60 ),
mex15b-14 ( 61 ), lmds28a1x-50(62), lmds28a1x-25 (63),fcc23c-40(64), fcc23d-40(65) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "The radio frequency standard used in the system.
Frequency bands are divided into sub bands.
ie FCC 23 Ghz Band is comprised of fcc23a, fcc23b, fcc23c and
fcc23d which make up the entire FCC23 band"
DEFVAL { freqNone }
::= { apFrequencies 1 }
freqGroupSelected OBJECT-TYPE
SYNTAX INTEGER { txLow ( 1 ) , txHigh ( 2 ) , go ( 3 ) , return ( 4 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "The frequency group selected for the system.
The frequency subbands are divided into frequency groups txHigh
and txLow. An AIRPAIR system must have one node configured to
txLow and the other node configure to txHigh"
::= { apFrequencies 2 }
txHighFreqTable OBJECT-TYPE
SYNTAX SEQUENCE OF TxHighFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table of txHigh frequency settings for the system"
::= { apFrequencies 3 }
txHighFreqEntry OBJECT-TYPE
SYNTAX TxHighFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A txHighFrequency entry containing all the frequency values"
INDEX { txHighFreqIndex }
::= { txHighFreqTable 1 }
TxHighFreqEntry ::= SEQUENCE {
txHighFreqIndex INTEGER,
txHighFreqChannelIndex DisplayString,
txHighFreqTransmitIfFrequency INTEGER,
txHighFreqReceiveIfFrequency INTEGER,
txHighFreqTransmitRfFrequency INTEGER,
txHighFreqReceiveRfFrequency INTEGER,
txHighFreqAvailable INTEGER,
txHighFreqSelected INTEGER
}
txHighFreqIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value for each frequency channel. "
::= { txHighFreqEntry 1 }
txHighFreqChannelIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The channel index for the frequency."
::= { txHighFreqEntry 2 }
txHighFreqTransmitIfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IF TX frequency in MHz."
::= { txHighFreqEntry 3 }
txHighFreqReceiveIfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IF RX frequency in MHz."
::= { txHighFreqEntry 4 }
txHighFreqTransmitRfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The RF TX frequency in MHz."
::= { txHighFreqEntry 5 }
txHighFreqReceiveRfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The RF RX frequency in MHz."
::= { txHighFreqEntry 6 }
txHighFreqAvailable OBJECT-TYPE
SYNTAX INTEGER { notAvailable ( 1 ) , available ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specifies whether the frequency channel can be used."
DEFVAL { notAvailable }
::= { txHighFreqEntry 7 }
txHighFreqSelected OBJECT-TYPE
SYNTAX INTEGER { active ( 1 ) , notActive ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specifies the operating frequency channel for the modem.
***Only 1 index may be selected in a 1 modem system."
DEFVAL { notActive }
::= { txHighFreqEntry 8 }
txLowFreqTable OBJECT-TYPE
SYNTAX SEQUENCE OF TxLowFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table of txLow frequency settings for the system"
::= { apFrequencies 4 }
txLowFreqEntry OBJECT-TYPE
SYNTAX TxLowFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A txLowFrequeny entry containing the frequency values
for a specific index"
INDEX { txLowFreqIndex }
::= { txLowFreqTable 1 }
TxLowFreqEntry ::= SEQUENCE {
txLowFreqIndex INTEGER,
txLowFreqChannelIndex DisplayString,
txLowFreqTransmitIfFrequency INTEGER,
txLowFreqReceiveIfFrequency INTEGER,
txLowFreqTransmitRfFrequency INTEGER,
txLowFreqReceiveRfFrequency INTEGER,
txLowFreqAvailable INTEGER,
txLowFreqSelected INTEGER
}
txLowFreqIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value for each frequency channel. "
::= { txLowFreqEntry 1 }
txLowFreqChannelIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The channel index for the frequency. "
::= { txLowFreqEntry 2 }
txLowFreqTransmitIfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IF TX frequency in MHz."
::= { txLowFreqEntry 3 }
txLowFreqReceiveIfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IF RX frequency in MHz."
::= { txLowFreqEntry 4 }
txLowFreqTransmitRfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The RF TX frequency in MHz."
::= { txLowFreqEntry 5 }
txLowFreqReceiveRfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The RF RX frequency in MHz."
::= { txLowFreqEntry 6 }
txLowFreqAvailable OBJECT-TYPE
SYNTAX INTEGER { notAvailable ( 1 ) , available ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specifies whether the frequency channel can be used. "
DEFVAL { notAvailable }
::= { txLowFreqEntry 7 }
txLowFreqSelected OBJECT-TYPE
SYNTAX INTEGER { active ( 1 ) , notActive ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specifies the operating frequency channel for the modem.
***Only 1 index may be selected in a 1 modem system. "
DEFVAL { notActive }
::= { txLowFreqEntry 8 }
goFreqTable OBJECT-TYPE
SYNTAX SEQUENCE OF GoFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table of go frequency settings for the system"
::= { apFrequencies 5 }
goFreqEntry OBJECT-TYPE
SYNTAX GoFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A goFrequency entry containing all the frequency values"
INDEX { goFreqIndex }
::= { goFreqTable 1 }
GoFreqEntry ::= SEQUENCE {
goFreqIndex INTEGER,
goFreqChannelIndex DisplayString,
goFreqTransmitIfFrequency INTEGER,
goFreqReceiveIfFrequency INTEGER,
goFreqTransmitRfFrequency INTEGER,
goFreqReceiveRfFrequency INTEGER,
goFreqAvailable INTEGER,
goFreqSelected INTEGER
}
goFreqIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value for each frequency channel. "
::= { goFreqEntry 1 }
goFreqChannelIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The channel index for the frequency."
::= { goFreqEntry 2 }
goFreqTransmitIfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IF TX frequency in MHz."
::= { goFreqEntry 3 }
goFreqReceiveIfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IF RX frequency in MHz."
::= { goFreqEntry 4 }
goFreqTransmitRfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The RF TX frequency in MHz."
::= { goFreqEntry 5 }
goFreqReceiveRfFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The RF RX frequency in MHz."
::= { goFreqEntry 6 }
goFreqAvailable OBJECT-TYPE
SYNTAX INTEGER { notAvailable ( 1 ) , available ( 2 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Specifies whether the frequency channel can be used."
DEFVAL { notAvailable }
::= { goFreqEntry 7 }
goFreqSelected OBJECT-TYPE
SYNTAX INTEGER { active ( 1 ) , notActive ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specifies the operating frequency channel for the modem.
***Only 1 index may be selected in a 1 modem system."
DEFVAL { notActive }
::= { goFreqEntry 8 }
returnFreqTable OBJECT-TYPE
SYNTAX SEQUENCE OF ReturnFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table of return frequency settings for the system"
::= { apFrequencies 6 }
returnFreqEntry OBJECT-TYPE
SYNTAX ReturnFreqEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A returnFrequency entry containing all the frequency values"
INDEX { returnFreqIndex }
::= { returnFreqTable 1 }
ReturnFreqEntry ::= SEQUENCE {
returnFreqIndex INTEGER,
returnFreqChannelIndex DisplayString,
returnFreqTransmitIfFrequency INTEGER,
returnFreqReceiveIfFrequency INTEGER,
returnFreqTransmitRfFrequency INTEGER,
returnFreqReceiveRfFrequency INTEGER,
returnFreqAvailable INTEGER,
returnFreqSelected INTEGER
}
returnFreqIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value for each frequency channel. "
::= { returnFreqEntry 1 }
returnFreqChannelIndex OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only