-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathORiNOCO-MIB
9672 lines (8699 loc) · 338 KB
/
ORiNOCO-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
--=============================================================================
--
-- Proxim Corporation - Enterprise LAN Division
-- 3950 Shackleford Rd. Suite 500
-- Duluth, GA 30096
-- USA
--
--=============================================================================
--
-- ORiNOCO Management Information Base (MIB)
--
--=============================================================================
--
-- FILENAME: orinoco.mib
--
-- DESIGNER: Daniel R. Borges (DRB)
--
-- TITLE: ORiNOCO Management Information Base
--
-- USED IN: ORiNOCO Product Line for SNMP Management. This MIB is
-- intended for the following products:
-- Access Point
-- Broadband Gateway
-- Outdoor Router
--
--=============================================================================
--
-- Document History Information
--
--=============================================================================
--
-- Version Date Authors Decription
--
--=============================================================================
-- v1.00 Aug 29 DRB, Lucent Intitial Document Creation
-- 2000
--=============================================================================
-- v1.10 Sept 01 DRB, Lucent Removal of unecessary objects.
-- 2000
--=============================================================================
-- v1.20 Sept 04 DRB, Lucent Correction on Ranges for IAPP
-- 2000 Parameters.
--=============================================================================
-- v1.30 Sept 07 DRB, Lucent Appropriate values set fro the IAPP
-- 2000 Parameters.
--=============================================================================
-- v1.40 Sept 08 NRP, Lucent Updated all objects.
-- 2000
--=============================================================================
-- v1.50 Sept 12 DRB, Lucent Added objects to enable/disable the
-- 2000 trap Groups and also added new traps.
-- Added Session Idle Timeout object to
-- PPP Group.
--=============================================================================
-- v1.60 Sept 26 DRB, Lucent Change name of group from web to HTTP.
-- 2000 Added RG-2000 to ORiNOCO product tree.
--=============================================================================
-- v1.70 Oct 30 DRB, Lucent Added trap and trap variable to inform
-- 2000 when a software task has suspended.
--=============================================================================
-- v1.80 Nov 15 DRB, Lucent Changed underscore characters to dashes
-- 2000 and removed conflict between two trap
-- variables:
-- oriConfigurationTrapsStatus
-- oriTrapVarTaskSuspended
--=============================================================================
-- v1.90 Feb 05 DRB, Lucent Sync up between ORiNOCO MIB and AS-2000
-- 2001 MIB objects. The following changes
-- were made:
-- 1. Changed the following indeces from
-- non-accessible to read-only:
-- - oriSNMPAccessTableIndex
-- - oriSNMPTrapHostTableIndex
-- - oriProtocolFilterTableIndex
-- - oriAccessControlTableIndex
-- - oriStaticMACAddressFilterTableIndex
-- - oriLinkIntTableIndex
-- - oriPPPMACtoIPTableIndex
-- - oriPPPIPPoolTableIndex
-- - oriDHCPServerIPPoolTableIndex
-- - oriProxyAgentAPTableIndex
-- - oriStormThresholdIfIndex
-- 2. Added the following objects:
-- - oriSystemInvMgmtBSPBootloaderVersion
-- - AS Client IPX Table
-- 3. Change to range value of
-- oriTFTPFileType, included all file
-- type available on the AS-2000
-- device. This should be reviewed
-- and decided if going to be supported
-- in other ORiNOCO devices.
-- 4. Added the following objects the
-- the Link Test Table:
-- - oriLinkTestInterface
-- - oriLinkTestRadioType
-- 5. Added Access Server IAPP station
-- table to IAPP group.
-- 6. Added Traps for RADIUS Auth and
-- Acct not configured.
-- 7. Changed range on
-- oriPPPSessionIdleTimeout object.
--=============================================================================
-- v2.00 Feb 13 DRB, Lucent Added the following objects to sync up
-- 2001 AS-2000 MIB:
-- - oriIfProfileCode
-- - oriSystemReboot
-- - oriSystemContactEmail
-- - oriIfMACAddress
-- Made Inventory Management a sub-group
-- of System Group.
-- Removed oriPPPNumIPPoolTableEntry from
-- PPP group - duplicate object.
--=============================================================================
-- v2.01 Feb 13 DRB, Lucent Added default value to appropriate
-- 2001 objects.
--=============================================================================
-- v2.02 Mar 05 DRB, Agere Following Changes have been made to the
-- 2001 ORiNOCO MIB:
-- 1. Created Interface group and placed
-- wireless and ethernet interfaces as
-- sub-group.
-- 2. Created two tables under the
-- wireless interface group for
-- properties and security objects.
-- 3. Create IP and IPX sub-group under
-- Network group.
-- 4. Moved DHCP Client Type into the
-- Network IP sub-group.
-- 5. Created Authentication and
-- Accounting sub-groups under the
-- RADIUS group.
-- 6. Created Hardware, Software,
-- Firmware, and BSP/BL sub-groups
-- under System Inventory Mgmt Group.
-- 7. Removed
-- oriIfInvMgmtRadioFirmwareDate for it
-- does not exist.
-- 8. Renamed oriWirelessIfDeliveryTraffi-
-- cIndicationMap to
-- oriWirelessIfDTIMPeriod and made
-- corrections to description.
-- 9. Created Miscellaneous Trap group.
--=============================================================================
-- v2.03 Mar 14 DRB, Agere Following Changes have been made to the
-- 2001 ORiNOCO MIB:
-- 1. Add delete as an integer value to
-- the following tables:
-- - oriProtocolFilterTable
-- - oriAccessControlTable
-- - oriStaticMACAddressFilterTable
-- 2. Added the following object required
-- for AP-2000 software:
-- - oriSystemContactPhoneNumber
-- - oriProtocolFilterProtocol-
-- Comment to Protocol Table.
-- - oriHTTPUserName
-- 3. Fixed range for Storm Threshold
-- Broadcast and Multicast Objects.
-- 4. Removed the
-- oriStormThresholdIfIndex from
-- Storm Threshold table. The IfIndex
-- from MIB-II interface table shall
-- be used.
-- 5. Moved Gateway IP Address, default
-- lease time, maximum lease time from
-- DHCP group to the DHCP IP Pool
-- Table.
--=============================================================================
-- v2.04 Mar 26 DRB, Agere Removed Proxy Agent Group.
-- 2001 Specified values for
-- oriSNMPAccessTableInterface.
-- Added SNMPSetupStatus in order to
-- enable/disable SNMP based Management.
-- Added oriIAPPSendAnnounceRequestOnStart
-- to the IAPP Group.
-- Added the following objects to the
-- Systems Group:
-- - oriSystemFlashUpdate
-- - oriSystemFlashBackupInterval
-- - oriSystemEmergencyResetToDefault
-- Added the following Groups:
-- - Proxy ARP (orinocoProxyARP)
-- - Spanning Tree (orinocoSpanningTree)
-- - PTP (orinocoPTP)
--=============================================================================
-- v2.05 Mar 30 DRB, Agere Added Import of ifIndex from RFC-1213
-- 2001 and correct object name ot ifIndex.
--=============================================================================
-- v2.06 Apr 03 DRB, Agere Removed the
-- 2001 oriSNMPTestReadWritepassword from the
-- MIB.
--=============================================================================
-- v2.07 Apr 10 DRB, Agere Renamed Inventory Management Objects
-- 2001 from ComputerID to ComponentID.
-- Defined Inventory Management Parameters
-- for BSP/BL, ORiNOCO MIB, and Wireless
-- Interface Cards.
--=============================================================================
-- v2.08 Apr 18 DRB, Agere Added Wireless Card primary firmware
-- 2001 inventory management objects, compID,
-- variant, major, and minor versions.
--=============================================================================
-- v2.09 Apr 26 DRB, Agere Changed PTP group name to WDS.
-- 2001 Modified the Spanning Tree Status
-- object modifying enable/disable
-- enumeration.
--=============================================================================
-- v2.10 May 09 DRB, Agere Added the following Traps:
-- 2001 oriTrapZeroSizeImage
-- oriTrapInvalidImage
-- oriTrapImageTooLarge
-- oriTrapBootPFailed
-- oriTrapDHCPFailed
-- oriTrapDuplicateIPAddressEncountered
-- oriTrapWLCVoltageDiscrepancy
-- oriTrapWLCIncompatibleVendor
-- oriTrapWLCFirmwareDonwloadFailure
-- oriTrapWLCIncompatibleFirmware
-- Added the following Trap Variables:
-- oriTrapVarUnauthorizedClientMACAddress
-- oriTrapVarWirelessCard
-- Added object in order to enable/disable
-- the image trap group.
--=============================================================================
-- v2.11 May 16 DRB, Agere Added necessary objects to support
-- 2001 AP-2000 features/modules:
-- oriWirelessIfLoadBalancing
-- oriWirelessIfMediumDensityDistribution
-- oriStaticMACAddressFilterComment
-- oriDHCPServerIPPoolTableDNSIPAddress
-- Added 802.1x group with one object to
-- enable/disable this feature.
-- Added the following traps:
-- oriTrapIncompatibleImage
--=============================================================================
-- v3.00 May 18 DRB, Agere Converted MIB Definition from SMIv1 to
-- 2001 SMIv2. Modified 802.1x group to
-- security group and added security
-- configuration object and encryption key
-- length table per wireless interface.
--=============================================================================
-- v3.01 May 21 DRB, Agere Added RG-1100 in the product branch as
-- 2001 orinocoproduct number 8. Updated
-- comments to the link integrity objects.
-- Corrected RADIUS shared secret from
-- read-only to read-write. Added index
-- to interface table. Created a generic
-- inventory management table for
-- components and component interfaces.
--=============================================================================
-- v3.02 May 23/24 DRB, Agere Added Protocol Packet Filter sub-group
-- 2001 under Filtering Group. Added interface
-- bit mask to Protocol Filtering table.
-- Added PPPoE Group. Removed Gateway IP
-- Address, Subnetmask, and DNS IP Address
-- from DHCP Server Table and made them
-- scalar objects. Added Secondary DNS IP
-- Address in DHCP group.
-- Added System mode to be supported by
-- RG-2. Added Configuration File group
-- for RG-2. Added HTTP file name
-- table, refresh delay, and HTTP mgmt per
-- interface in the HTTP group. Added
-- DNS Redirect Group. Added Event Log
-- to system group. Added an AOL group.
-- Changed EthernetIf Settings into a
-- table since RG-2 has two ethernet ifs.
-- Added network IP configuration table
-- since RG-2 has two ethernet interfaces.
--=============================================================================
-- v3.03 May 30 DRB, Agere Corrected oriPPPoEMACtoSessionTableISP-
-- 2001 Name object type to DisplayString.
--=============================================================================
-- v3.04 June 11 DRB, Agere Updated trap description with severity
-- 2001 level. Changed trap variables from
-- read-only to not-accessible.
--=============================================================================
-- v3.05 June 20 DRB, Agere Added two new sub-groups to the DHCP
-- 2001 group, namely server and client.
-- Added Create State to all tables.
-- Modified oriConfigFileName to read-only
-- Added index to the oriPPPoESessionTable
-- and oriPPPoEMACtoSessionTable.
-- Changed HTTP Status and SNMP Status
-- interface bit mask. Modified
-- description on multicast rate.
--=============================================================================
-- v3.06 June 21 DRB, Agere Removed IP Address Type object, since
-- 2001 object added to DHCP client group.
-- Added index to EventLog Table and
-- added create to HTTP table status
-- object. Changed data-type of WEP keys
-- to OCTET STRING. Added statement
-- to description of objects that ought to
-- be treated as write-only (masked):
-- - Encryption Keys (WEP)
-- - Passwords
-- - RADIUS Shared Secret
--=============================================================================
-- v3.07 Oct 15 DRB, Agere Added ADSL Interface Group as a
-- 2001 subgroup to ORiNOCO Interface.
--=============================================================================
-- v3.08 Oct 16, 17 DRB, Agere Changed data-type of WEP keys to
-- 2001 DisplayString. Added object to SNMP
-- group disable/enable the IP Access
-- Table. Added object for Protocol
-- Filter interface bit mask. Added the
-- port filter sub-group to filtering
-- group. Removed Primary and Secondary
-- DNS IP address objects from DHCP Server
-- group and added it to DNS group.
-- Changed DNSRedirect group to DNS group.
-- Changed OID of DHCP Client ID object to
-- 1 (instead of 2). Removed DHCP Client
-- address type since it is already in the
-- network group. Added NAT group. Added
-- system user name and password for HTTP
-- and telnet access. Removed default
-- values for network IP address, subnet
-- mask and gateway IP address objects
-- since it is product specific. Added
-- manual value to PPPoE WAN Connect mode
-- object. Added a PPPoE WAN connect mode
-- status object. Added a Ping Test
-- group. Added a mask for filtering the
-- severity of the event log table.
-- Changed the following object names:
-- oriProtocolFilterIfMask to
-- oriProtocolFilterInterfaceBitMask
-- oriProtocolFilterFlag to
-- oriProtocolFilterOperationType
-- Added Counter64 to data type import
-- list. Changed MAX-ACCESS of trap
-- variables from not-accessible to
-- read-only. Updated contact info for
-- MIB module identity. Removed Event Log
-- index from Event Log Table.
--=============================================================================
-- v3.09 Oct 22 DRB, Agere Removed the following traps:
-- 2001 oriTrapsADSLIfProfile0Status
-- oriTrapsADSLIfProfile1Status
-- Added a single trap control object for
-- ADSL interface related traps and added
-- and ADSL trap group.
--=============================================================================
-- v3.10 Oct 23 DRB, Agere Changed the ADSL Interface Profile
-- 2001 configuration to index 1 and 2.
--=============================================================================
-- v3.11 Oct 30 DRB, Agere Added ADSL Advanced Statistics Group
-- 2001 and respective objects.
--=============================================================================
-- v3.12 Oct 31 DRB, Agere Added the following objects to the
-- 2001 System group for Telnet and HTTP
-- interface access:
-- - oriSystemAccessUserName
-- - oriSystemAccessPassword
-- - oriSystemAccessLoginTimeout
-- - oriSystemAccessIdleTimeout
--=============================================================================
-- v3.13 Dec 03 DRB, Agere Added objects for the following
-- 2001 feature groups:
-- - HereUare
-- - SpectraLink VoIP
-- - Advanced Bridging Filter
-- Modified Proxy ARP group to IP/ARP
-- group and added required objects for
-- IP/ARP filtering.
-- Changed the following table object
-- names for consistency:
-- - oriAccessControlMACAddress ->
-- oriAccessControlTableMACAddress
-- - oriAccessControlComment ->
-- oriAccessControlTableComment
-- - oriAccessControlEntryStatus ->
-- oriAccessControlTableEntryStatus
-- - oriLinkIntTableStatus ->
-- oriLinkIntTableEntryStatus
-- - oriWDSSetupTableStatus ->
-- oriWDSSetupTableEntryStatus
-- Changed default value of
-- oriTelnetLoginTimeout to 30 seconds.
-- Changed description of
-- oriLinkIntPollInterval.
-- Added oriHTTPHelpInformationLink to
-- HTTP group.
-- Added oriTrapWLCFirmwareFailure trap.
-- Changed the values of the Wireless Card
-- Distance between APs object to support
-- UHD firmware enhancement.
-- Added oriWirelessIfAutoChannelSelect
-- object to Wireless If Properties table.
--=============================================================================
-- v3.14 Dec 18 DRB, Agere Added VLAN group and required objects.
-- 2001 Added Primary and Secondary DNS Server
-- IP Addresses to DHCP Server group.
-- Updated description of Link Integrity
-- Interval and default value definition.
-- Default value defined for Link Test
-- table timeout. Changed location of
-- MODULE-IDENTITY macro to comply with
-- SNMP v2c. Modififed IAPP
-- Retransmission default value to 4.
-- Modified the following object names for
-- consistency:
-- - oriNetworkIPXClientStatus ->
-- oriNetworkIPXClientTableEntryStatus
-- - oriRADIUSAuthServerStatus ->
-- oriRADIUSAuthServerTableEntryStatus
-- - oriRADIUSAcctServerStatus ->
-- oriRADIUSAcctServerTableEntryStatus
-- - oriWirelessIfEncryptionStatus ->
-- oriWirelessIfEncryptionTableEntryStatus
-- - oriStaticMACAddressFilterStatus ->
-- oriStaticMACAddressFilterTableEntryStatus
-- - oriBroadcastFilteringStatus ->
-- oriBroadcastFilteringTableEntryStatus
-- Added trap variable to specify the
-- client failed authentication type.
-- Modified enterprise OID to Agere
-- Systems assigned OID number 11898.
--=============================================================================
-- v3.15 Jan 08 DRB, Agere Updated description for
-- 2002 oriWirelessIfAllowedSupportedDataRates.
-- Modified the VLAN group to include
-- the following objects:
-- - Status
-- - Frame Types
-- - Table of VLAN IDs
-- Added the following groups, subgroups,
-- and objects for the OR-2000 Product.
-- - orinocoWORP
-- - orinocoWORPConfiguration
-- - orinocoWORPAuthentication
-- - orinocoDHCPRelay
-- Added 5 Traps for the OR-2000 Product.
-- Changed default value for Auto Channel
-- Select object. Modified status of
-- oriTelnetSessions to obsolete since no
-- longer used.
-- Modified the following object names for
-- consistency:
-- - oriProtocolFilterStatus ->
-- oriProtocolFilterTableEntryStatus
-- - oriWirelessIfAutoChannelSelect ->
-- oriWirelessIfAutoChannelSelectStatus
-- - oriWirelessIfEncryptionTableEntryStatus
-- oriWirelessIfEncryptionStatus
--=============================================================================
-- v3.16 Jan 28 DRB, Agere Added Textual Convention for VLAN Tag
-- 2002 ID Type. Added VLAN Mgmt Tag ID to
-- VLAN group. Changed the VLAN ID object
-- type to the defined textual convention.
-- Added the following groups, subgroups,
-- tables, and objects for mgmt of the
-- COR/ROR-2000 product, which could be
-- used by other products in the future:
-- - WORP Interface Config Subgroup and
-- table to orinocoIf group.
-- - WORP Statistics table to WORP
-- Interface subgroup.
-- - Feature based Licensing subgroup to
-- orinocoSys and added Feature table.
-- - Added group for monitoring station
-- statistics, orinocoStationStats
-- Modified the trap OIDs for conformance
-- with SMIv2 and SNMPv2c.
-- Removed the orinocoWORP group and
-- subgroups since this group was moved to
-- a subgroup for orinocoIf. Added RIP
-- subgroup to orinocoNETRIP.
--=============================================================================
-- v3.17 Feb 04 DRB, Agere Added Textual convention for Interface
-- 2002 Bitmask object.
-- Updated the description for the
-- following objects:
-- - oriSystemMode
-- - oriHTTPWebsiteNameTable
-- - oriHTTPWebSitenameTableIndex
-- - oriHTTPWebSiteFilename
-- - oriHTTPWebSiteLanguage
-- - oriHTTPWebSiteDescription
-- - oriHTTPWebSitenameTableStatus
-- - oriNetworkIPConfigTable
-- - oriSNMPAccessTableInterfaceBitmask
-- - oriSNMPInterfaceBitmask
-- - oriProtocolFilterInterfaceBitmask
-- - oriPortFilterTableEntryInterfaceBitmask
-- - oriTelnetInterfaceBitmask
-- - oriHTTPInterfaceBitmask
-- - oriSystemFeatureTable
-- - oriSystemFeatureTableEnry
-- - oriWORPIfConfigTableRegistrationTimeout
-- - oriWORPIfConfigTableRetries
-- Corrected the Notification Type OID.
-- Removed VLAN Frame Type Object and
-- reassigned OIDs to VLAN groups.
--=============================================================================
-- v3.18 Feb 05 DRB, Agere Added Tx Rate control to Wireless
-- 2002 interface table.
--=============================================================================
-- v3.19 Feb 21 DRB, Agere Corrected enumerated values for station
-- 2002 statistics table station type. Added
-- object for enabling/disabling
-- monitoring station statistics.
--=============================================================================
-- v3.20 Mar 25 DRB, Agere Merge between previous MIB version and
-- 2002 BG MIB.
-- Added TEXTUAL-CONVENTION,
-- MODULE-COMPLIANCE, and OBJECT-GROUP.
-- Modified INTEGER to Integer32 for the
-- VlanId textual convention.
-- Changed module identity and the
-- MIB tree structure.
-- Added oriSystemAccessMaxSessions to the
-- orinocoSys group.
-- Modified the enumerated values for the
-- oriTFTPFileType object.
-- Added the following object for
-- Bandwidth Throttling feature:
-- - oriWirelessIfBandwidthLimitIn
-- - oriWirelessIfBandwidthLimitOut
-- - oriEthernetIfBandwidthLimitIn
-- - oriEthernetIfBandwidthLimitOut
-- Added oriDHCPClientInterfaceBitmask to
-- DHCP Client subgroup.
-- Removed the following WORP Traps:
-- - oriWORPLinkDown
-- - oriWORPRegistrationIndication
-- - oriWORPSystemAuthenticationFailure
-- Added the following WORP Traps:
-- - oriWORPStationRegister
-- - oriWORPStationDeRegister
-- Added the following traps for System
-- Feature based License:
-- - oriTrapIncompatibleLicenseFile
-- - oriTrapFeatureNotSupported
-- - oriTrapZeroLicenseFiles
-- - oriTrapInvalidLicenseFile
-- - oriTrapUselessLicense
-- Added oriTrapVarInterface to the trap
-- variable group.
-- Changed type from Gauge32 to Integer32
-- and configured ranges for the following
-- objects:
-- - oriWORPIfStatTableAverageLocalSignal
-- - oriWORPIfStatTableAverageLocalNoise
-- - oriWORPIfStatTableAverageRemoteSignal
-- - oriWORPIfStatTableAverageRemoteNoise
-- - oriStationStatTableInSignal
-- - oriStationStatTableInNoise
-- - oriStationStatTableRemoteSignal
-- - oriStationStatTableRemoteNoise
-- Configured ranges for the following
-- objects:
-- - oriStationStatTableIndex
-- Updated description for the following
-- objects:
-- - oriStationStatTableAdminStatus
-- - oriStationStatTableOperStatus
-- - oriTrapAuthenticationFailure
-- - oriSystemFeatureTable
-- Removed the following objects from the
-- oriWORPIfStatTable:
-- - oriWORPIfStatTableRegistrationAborts
-- - oriWORPIfStatTableRequestIgnored
-- - oriWORPIfStatTableQueueLength
-- Added oriWORPIfConfigTableNetworkSecret
-- to oriWORPIfTable.
-- Removed orinocoNetRIP subgroup.
--=============================================================================
-- v3.21 Apr 01 DRB, Agere Updated the ADSL Interface Group with
-- 2002 requirements provided by BG team.
-- Changed object descriptions to be
-- generic and providing more information.
-- oriWirelessIfMACAddress status has been
-- changed to deprecated.
-- oriTelnetSessions status has been
-- changed to deprecated.
-- Added Trap for invalid VLAN ID
-- configuration.
-- Changed the data type and range for
-- oriWirelessIfEncryptionTxKey to
-- integer32 and size of 0-3.
-- Removed wep enumerated value from the
-- oriSecurityConfiguration object.
--=============================================================================
-- v3.22 Apr 24 DRB, Agere Added rekeying interval object to the
-- 2002 Security Group.
--=============================================================================
-- v3.23 June 25 DRB, Agere Added the following groups/subgroups/
-- 2002 objects to support AP-2000 2.1 release:
-- - Packet Forwarding
-- - IBSS Traffic Control
-- - Syslog
-- - DNS Client
-- - Syslog
-- Added RADIUS MAC Address format object
-- to RADIUS group. Added RADIUS Server
-- name and addressing type to both
-- Authentication and Accounting RADIUS
-- Server tables.
--=============================================================================
-- v3.24 June 28 DRB, Agere Changed RADIUS IP Address object status
-- 2002 to obsolete. Added two enumerated
-- values to PPPoE Session Connect Mode.
-- Added object to configure the interface
-- where the PPPoE client should try to
-- establish a PPPoE connection.
--=============================================================================
-- v3.25 July 2 DRB, Agere Added default value for RADIUS Server
-- 2002 Addressing Format. Added object to HTTP
-- group for enabling/disabling SSL.
--=============================================================================
-- v3.26 July 17 DRB, Agere Added certificate to TFTP File Type
-- 2002 Object. Added SSL password to HTTP
-- group. Added AlphaOne to the orinoco
-- product tree.
--=============================================================================
-- v3.27 July 23 DRB, Agere Added two additional values to RADIUS
-- 2002 MAC address delimiters. Changed DNS
-- Client status default value to disable.
-- Removed PPPoE Connection Interface obj.
-- Removed value from PPPoE connect mode.
-- Added Trap for when the DNS client can
-- not resolve a specified host name.
-- Added Turbo Mode obj in Wireless If
-- properties table. Updated description
-- on the data rates obj to address Turbo
-- mode speeds. Added value to key length
-- table for wide-key support. Added trap
-- for Radar Interference detected.
-- Corrected values in the encryption key
-- lenght table. Added object to enable
-- or disable the HTTP setup wizard.
--=============================================================================
-- v3.28 Aug 20 DRB, Agere Added orinocoSNTP group and respective
-- 2002 mgmt objs. Removed SSL and HereUare
-- objs since not supported.
--=============================================================================
-- v3.29 Sept 04 DRB, Proxim Added trap for SNTP failure. Changed
-- 2002 MIB header and Module Identity to
-- Proxim Corporation.
--=============================================================================
-- v3.30 Sept 18 DRB, Proxim Removed certificate from the TFTP File
-- 2002 type values. Removed AlwaysOnForRADIUS
-- from the PPPoE WAN connect mode values.
--=============================================================================
-- v3.31 Nov 23 AP, Proxim Removed onehundredandfiftytwo option (for 11a cards) from oriSecurityEncryptionKeyLength
-- 2002 object
--=============================================================================
--
-- COMPILERS: NuDesign, MG-Soft, VxWorks, and HP-OpenView MIB Compilers
--
--=============================================================================
--=============================================================================
-- Copyright (C) 2002 Proxim Corporation
-- Proxim Corporation - PROPRIETARY
-- Disclosure to third parties or reproduction in any from
-- whatsoever, without prior written consent, is strictly forbiden.
--=============================================================================
--=============================================================================
-- Includes
--=============================================================================
--#condInclude "rfc1155.smi"
--#condInclude "rfc1212.smi"
--#condInclude "rfc1213.inc"
--#condInclude "rfc1215.smi"
--=============================================================================
-- ORiNOCO MIB Begin
--=============================================================================
ORiNOCO-MIB DEFINITIONS ::= BEGIN
--=============================================================================
-- ORiNOCO MIB Imports
--=============================================================================
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, OBJECT-IDENTITY,
enterprises, IpAddress, Counter32, Gauge32, TimeTicks, Integer32,
Counter64
FROM SNMPv2-SMI
DisplayString, PhysAddress, MacAddress, TruthValue, TimeStamp,
TimeInterval, DateAndTime, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
ifIndex
FROM RFC1213-MIB;
--=============================================================================
-- ORiNOCO MIB Module Identity: orinoco
--=============================================================================
orinoco MODULE-IDENTITY
LAST-UPDATED "200211230000Z"
ORGANIZATION "Proxim Corporation"
CONTACT-INFO
"Daniel R. Borges
Proxim Corporation
Enterprise LAN Division
3950 Shackleford Rd. Suite 500
Duluth, GA 30096
USA
Tel: +1.678.924.6533
Fax: +1.678.924.6512
Email: [email protected]"
DESCRIPTION
"MIB Definition used in the ORiNOCO Wireless Product Line:
iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).
agere(11898).orinoco(2)"
::= { agere 2 }
--=============================================================================
-- Definition of Textual Conventions
--=============================================================================
VlanId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A 12-bit VLAN ID used in the VLAN Tag header."
SYNTAX Integer32 (0..4094)
InterfaceBitmask ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An Interface Bitmask used to enable or disable access or
functionality of an interface in the system. Each bit in this
object represents a network interface in the system consistent
with the ifIndex object in MIB-II. The value for this object is
interpreted as a bitfield, where the value of 1 means enabled.
Examples of Usage:
1. For a system with the following interfaces:
- Ethernet If = 1
- Loopback If = 2
- Wireless If A = 3
- Wireless If B = 4
Interface Bitmask usage:
- 00000000 (0x00): all Interfaces disabled
- 00000001 (0x01): Ethernet If enabled
- 00000100 (0x04): Wireless If A enabled
- 00001000 (0x08): Wireless If B enabled
- 00001101 (0x0D): All Interfaces enabled
- 00001111 (0x0F): All Interfaces enabled (see Note)
- 00000101 (0x05): Ethernet and Wireless If A enabled
- 00000111 (0x07): Ethernet and Wireless If A enabled (see Note)
Note: The internal loopback interface bit (00000010, 0x02) is
ignored in the usage of the interface bitmask object.
2. For a system with the following interfaces:
- Ethernet WAN If = 1
- Ethernet LAN If = 2
- Wireless If A = 3
Inteface Bitmask usage:
- 00000000 (0x00): all Interfaces disabled
- 00000001 (0x01): Ethernet WAN If enabled
- 00000010 (0x02): Ethernet LAN If enabled
- 00000011 (0x03): Ethernet WAN and LAN If enabled
- 00000100 (0x04): Wireless If A enabled
- 00000101 (0x05): Ethernet WAN and Wireless If A enabled
- 00000110 (0x06): Ethernet LAN and Wireless If A enabled
- 00000111 (0x07): All Interfaces enabled
3. For a system with the following interfaces:
- Ethernet If = 1
- Loopback If = 2
- Wireless If A = 3
Interface Bitmask usage:
- 00000000 (0x00): all Interfaces disabled
- 00000001 (0x01): Ethernet If enabled
- 00000100 (0x04): Wireless If A enabled
- 00000101 (0x05): Ethernet and Wireless If A enabled
- 00000111 (0x07): Ethernet and Wireless If A enabled (see Note)
Note: The internal loopback interface bit (00000010, 0x02) is
ignored in the usage of the interface bitmask object."
SYNTAX Integer32 (0..255)
--=============================================================================
-- Definition of Agere MIB OID Tree
--=============================================================================
agere OBJECT IDENTIFIER ::= { enterprises 11898 }
--=============================================================================
-- Definition of the ORiNOCO MIB Objects: orincoObjects
--=============================================================================
orinocoObjects OBJECT IDENTIFIER ::= { orinoco 1 }
--=============================================================================
-- Definition of the ORiNOCO Notifications: orinocoNotifications
--=============================================================================
orinocoNotifications OBJECT IDENTIFIER ::= { orinoco 2 }
--=============================================================================
-- Definition of the ORiNOCO Conformance: orinocoConformance
--=============================================================================
orinocoConformance OBJECT IDENTIFIER ::= { orinoco 3 }
orinocoGroups OBJECT IDENTIFIER ::= { orinocoConformance 1 }
orinocoCompliances OBJECT IDENTIFIER ::= { orinocoConformance 2 }
--=============================================================================
-- Definition of the ORiNOCO Products: orinocoProducts
--=============================================================================
orinocoProducts OBJECT IDENTIFIER ::= { orinoco 4 }
ap1000 OBJECT IDENTIFIER ::= { orinocoProducts 1 }
rg1000 OBJECT IDENTIFIER ::= { orinocoProducts 2 }
as1000 OBJECT IDENTIFIER ::= { orinocoProducts 3 }
as2000 OBJECT IDENTIFIER ::= { orinocoProducts 4 }
ap500 OBJECT IDENTIFIER ::= { orinocoProducts 5 }
ap2000 OBJECT IDENTIFIER ::= { orinocoProducts 6 }
bg2000 OBJECT IDENTIFIER ::= { orinocoProducts 7 }
rg1100 OBJECT IDENTIFIER ::= { orinocoProducts 8 }
or2000 OBJECT IDENTIFIER ::= { orinocoProducts 9 }
alphaOne OBJECT IDENTIFIER ::= { orinocoProducts 10 }
--=============================================================================
-- Definition of the ORiNOCO MIB Object Groups and Subgroups
--=============================================================================
-- System Group and System Inventory Management Group
orinocoSys OBJECT IDENTIFIER ::= { orinocoObjects 1 }
-- Interface Group
orinocoIf OBJECT IDENTIFIER ::= { orinocoObjects 2 }
-- Network Group
orinocoNet OBJECT IDENTIFIER ::= { orinocoObjects 3 }
-- SNMP Group
orinocoSNMP OBJECT IDENTIFIER ::= { orinocoObjects 4 }
-- Filtering Group
orinocoFiltering OBJECT IDENTIFIER ::= { orinocoObjects 5 }
-- Remote Authentication Dial In User Service Group
orinocoRADIUS OBJECT IDENTIFIER ::= { orinocoObjects 6 }
-- Telnet Group
orinocoTelnet OBJECT IDENTIFIER ::= { orinocoObjects 7 }
-- TFTP Group
orinocoTFTP OBJECT IDENTIFIER ::= { orinocoObjects 8 }
-- Serial Group
orinocoSerial OBJECT IDENTIFIER ::= { orinocoObjects 9 }
-- Inter-Access Point Protocol Group
orinocoIAPP OBJECT IDENTIFIER ::= { orinocoObjects 10 }
-- Link Test Group
orinocoLinkTest OBJECT IDENTIFIER ::= { orinocoObjects 11 }
-- Link Integrity Group
orinocoLinkInt OBJECT IDENTIFIER ::= { orinocoObjects 12 }
-- Encryption Control Protocol Group
orinocoECP OBJECT IDENTIFIER ::= { orinocoObjects 13 }
-- Point to Point Group
orinocoPPP OBJECT IDENTIFIER ::= { orinocoObjects 14 }
-- Dynamic Host Configuration Protocol Group
orinocoDHCP OBJECT IDENTIFIER ::= { orinocoObjects 15 }
-- HTTP (web) Group
orinocoHTTP OBJECT IDENTIFIER ::= { orinocoObjects 16 }
-- WDS Group
orinocoWDS OBJECT IDENTIFIER ::= { orinocoObjects 17 }
-- Traps Group
orinocoTrap OBJECT IDENTIFIER ::= { orinocoObjects 18 }
-- IP/ARP Group
orinocoIPARP OBJECT IDENTIFIER ::= { orinocoObjects 19 }
-- Spanning Tree Group
orinocoSpanningTree OBJECT IDENTIFIER ::= { orinocoObjects 20 }
-- Security Group
orinocoSecurity OBJECT IDENTIFIER ::= { orinocoObjects 21 }
-- PPPoE Group
orinocoPPPoE OBJECT IDENTIFIER ::= { orinocoObjects 22 }
-- Configuration Group
orinocoConfig OBJECT IDENTIFIER ::= { orinocoObjects 23 }
-- DNS Group
orinocoDNS OBJECT IDENTIFIER ::= { orinocoObjects 24 }
-- AOL Group
orinocoAOL OBJECT IDENTIFIER ::= { orinocoObjects 25 }
-- NAT Group
orinocoNAT OBJECT IDENTIFIER ::= { orinocoObjects 26 }
-- Ping Group
orinocoPing OBJECT IDENTIFIER ::= { orinocoObjects 27 }
-- SpectraLink VoIP Group
orinocoSpectraLink OBJECT IDENTIFIER ::= { orinocoObjects 29 }
-- VLAN Group
orinocoVLAN OBJECT IDENTIFIER ::= { orinocoObjects 30 }
-- DMZ Group
orinocoDMZ OBJECT IDENTIFIER ::= { orinocoObjects 31 }
-- OEM Group
orinocoOEM OBJECT IDENTIFIER ::= { orinocoObjects 32 }
-- Station Statistics Group
orinocoStationStatistics OBJECT IDENTIFIER ::= { orinocoObjects 33 }
-- Simple Network Time Protocol Group
orinocoSNTP OBJECT IDENTIFIER ::= { orinocoObjects 34 }
--=============================================================================
-- Definition of the System Subgroups
--=============================================================================
-- System Inventory Management Subgroup
orinocoSysInvMgmt OBJECT IDENTIFIER ::= { orinocoSys 1 }
-- System Feature based License Subgroup
orinocoSysFeature OBJECT IDENTIFIER ::= { orinocoSys 19 }
-- System Log (Syslog) Subgroup
orinocoSyslog OBJECT IDENTIFIER ::= { orinocoSys 21 }
--=============================================================================
-- Definition of the Interface Subgroups
--=============================================================================
-- Wireless Interface Subgroup
orinocoWirelessIf OBJECT IDENTIFIER ::= { orinocoIf 1 }
-- Ethernet Interface Subgroup
orinocoEthernetIf OBJECT IDENTIFIER ::= { orinocoIf 2 }
-- ADSL Interface Subgroup
orinocoADSLIf OBJECT IDENTIFIER ::= { orinocoIf 3 }
-- WORP Interface Subgroup
orinocoWORPIf OBJECT IDENTIFIER ::= { orinocoIf 5 }
--=============================================================================
-- Definition of the Network Subgroups
--=============================================================================
-- IP Network Subgroup
orinocoNetIP OBJECT IDENTIFIER ::= { orinocoNet 1 }
-- IPX Network Subgroup
orinocoNetIPX OBJECT IDENTIFIER ::= { orinocoNet 2 }
--=============================================================================
-- Definition of the RADIUS Subgroups
--=============================================================================
-- Authentication RADIUS Subgroup
orinocoRADIUSAuth OBJECT IDENTIFIER ::= { orinocoRADIUS 1 }
-- Accounting RADIUS Subgroup
orinocoRADIUSAcct OBJECT IDENTIFIER ::= { orinocoRADIUS 2 }
--=============================================================================
-- Definition of the Filtering Subgroups
--=============================================================================
-- Protocol Filtering Subgroup
orinocoProtocolFilter OBJECT IDENTIFIER ::= { orinocoFiltering 1 }
-- Access Control Filter Subgroup
orinocoAccessControl OBJECT IDENTIFIER ::= { orinocoFiltering 2 }
-- Static MAC Address Filter Subgroup
orinocoStaticMACAddressFilter
OBJECT IDENTIFIER ::= { orinocoFiltering 3 }
-- Storm Threshold Filter Subgroup
orinocoStormThreshold OBJECT IDENTIFIER ::= { orinocoFiltering 4 }
-- IP Packet and Port Filtering Subgroup
orinocoPortFilter OBJECT IDENTIFIER ::= { orinocoFiltering 5 }