-
Notifications
You must be signed in to change notification settings - Fork 14
/
PICO-SMI-MIB.txt
1874 lines (1664 loc) · 69 KB
/
PICO-SMI-MIB.txt
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
-- PICO Product Vendor MIB
-- From file: "PICO-SMI"
-- Copyright (c) NEC Corporation 2001-2016. All rights reserved.
-- Update History
--
-- 2002/12/20 : R0.1 Draft
-- 2003/03/11 : R1.0 Initial release
-- 2003/05/12 : R2.0 add ALBTRS Power and FAN MIB/Trap
-- 2003/09/26 : R3.0 add sysObjectID ag431,ag531
-- 2003/11/10 : R4.0 add sysObjectID ix2015,ix3010
-- 2004/01/21 : R4.1 change picoFanRpm SYNTAX ( delete OutOfRange,rpm ) DESCRIPTION ( add comment )
-- 2004/02/03 : R4.2 change Trap name(picoTemperatureRestoration,picoVoltageRestoration,picoFanRestoration
-- picoPowerSupplyInserted,picoPowerSupplyRemoved)
-- 2004/02/03 : R5.0 add Equipment Sched MIB, Equipment Heap memory MIB
-- 2004/02/05 : R6.0 change picoSched MIB, picoHeap memory MIB
-- change SYNTAX picoXxxx -> PicoXxxx
-- change picoPowerSupplyType
-- SystemACPS(1) -> systemACPS(1)
-- 802dot3af-PoE-ACPS(2) -> ieee802dot3af-PoE-ACPS(2)
-- add IMPORT Gauge, etc.
-- 2004/02/09 : R6.0a change nomal(1) -> normal(1)
-- 2004/04/27 : R7.0 add picoLoginMIB, picoConfigEventMIB
-- 2004/05/12 : R7.0a change picoLoginSessionTerminalType SYNTAX (add unknown)
-- 2004/05/19 : R7.0b cosmetic change
-- 2004/07/16 : R8.0 add picoExtIfMIB
-- 2004/08/26 : R8.0a change PicoSwHubEntry -> picoExtIfEntry
-- 2004/09/07 : R8.0b add picoExtIfLinkDown/picoExtIfLinkUp trap
-- 2004/09/29 : R8.1 Added sysObjectID ix2004-Series,ag600-Series
-- Added IMPORTS DisplayString
-- Setted a range restriction (picoFanIndex,picoPowerSupplyIndex,picoExtIfInstalledSlot,picoExtIfIndex)
-- Changed Unsigned32 -> INTEGER
-- Corrected typo (s/picoExtIndex/picoExtIfIndex/)
-- 2005/01/31 : R9.0 Added picoNetworkMonitorMIB
-- 2005/02/28 : R9.1 Added sysObjectID ag611,ag650,ag651
-- 2006/03/02 : R9.2 add picoSchedRtUtl1Hour(4)
-- 2006/07/21 : R9.3 Added sysObjectID ix2005-Series
-- 2007/06/26 : R9.4 Added sysObjectID ix3100-Series
-- 2008/04/09 : R9.5 Added sysObjectID rtu-Series,ix2025-Series
-- 2008/05/29 : R9.6 Added ethernet-csmacd(6) for picoExtIfType
-- 2010/03/12 : R9.7 Added sysObjectID ix2105-Series
-- 2010/09/08 : R9.8 Changed copyright
-- 2010/11/09 : R10.0 Added picoIsdnMIB
-- 2011/02/02 : R10.1 Changed picoLoginSessionTerminalType SYNTAX (console -> local, telnet -> remote)
-- 2011/05/30 : R11.0 Separated sysObjectID
-- Corrected typographic error (picoFanRpm,picoCelsius DESCRIPTION)
-- 2011/08/18 : R12.0 Added picoNgnMIB
-- Added IMPORTS InterfaceIndex
-- 2013/10/29 : R12.1 Added IMPORTS (ifIndex, isdnLapdOperStatus)
-- 2013/12/17 : R13.0 Added picoPostMIB
-- 2015/02/19 : R14.0 Added picoMobileMIB
-- 2015/05/28 : R14.1 Corrected syntactic error (picoMobileMIB)
-- 2015/06/08 : R15.0 add picoMobileDeviceDown/picoMobileDeviceUp/picoMobileSignalStatusChange Trap
-- 2016/06/09 : R16.0 Changed picoHeapSize SYNTAX (INTEGER -> Gauge)
-- 2017/07/07 : R17.0 Added picoIPv4MIB/picoIPv6MIB
-- 2018/06/03 : R18.0 Added picoNAPTMIB
-- 2018/06/12 : R19.0 Added picoQoSMIB
PICO-SMI DEFINITIONS ::= BEGIN
IMPORTS
enterprises, NetworkAddress, IpAddress, Counter, Counter64, Gauge,
TimeTicks
FROM RFC1155-SMI
PhysAddress, TimeStamp, DisplayString
FROM SNMPv2-TC
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215
Ipv6Address
FROM IPV6-TC
ifIndex,
InterfaceIndex
FROM IF-MIB
isdnLapdOperStatus
FROM ISDN-MIB;
-- The following definition is privately defined for pico Private MIB
-- 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 }
nec OBJECT IDENTIFIER ::= { enterprises 119}
-- sysObjectID
--
-- The PICO Software Products.
--
necProduct OBJECT IDENTIFIER ::= { nec 1 }
pico OBJECT IDENTIFIER ::= { necProduct 84 }
-- nec MIB
nec-mib OBJECT IDENTIFIER ::= { nec 2 }
necProductDepend OBJECT IDENTIFIER ::= { nec-mib 3 }
--
-- pico Private MIB
--
pico-mib OBJECT IDENTIFIER ::= { necProductDepend 84 }
picoOriginal OBJECT IDENTIFIER ::= { pico-mib 1 }
picoSystem OBJECT IDENTIFIER ::= { pico-mib 2 }
picoIpSecFlowMonitorMIB OBJECT IDENTIFIER ::= { pico-mib 3 }
picoLoginMIB OBJECT IDENTIFIER ::= { pico-mib 4 }
picoConfigEventMIB OBJECT IDENTIFIER ::= { pico-mib 5 }
picoExtIfMIB OBJECT IDENTIFIER ::= { pico-mib 6 }
picoNetworkMonitorMIB OBJECT IDENTIFIER ::= { pico-mib 7 }
picoIsdnMIB OBJECT IDENTIFIER ::= { pico-mib 8 }
picoNgnMIB OBJECT IDENTIFIER ::= { pico-mib 9 }
picoPostMIB OBJECT IDENTIFIER ::= { pico-mib 10 }
picoMobileMIB OBJECT IDENTIFIER ::= { pico-mib 11 }
picoIPv4MIB OBJECT IDENTIFIER ::= { pico-mib 12 }
picoIPv6MIB OBJECT IDENTIFIER ::= { pico-mib 13 }
picoQoSMIB OBJECT IDENTIFIER ::= { pico-mib 14 }
picoNAPTMIB OBJECT IDENTIFIER ::= { pico-mib 15 }
-- Equipment Temperature MIB
picoTemperature OBJECT IDENTIFIER ::= { picoSystem 1 }
picoCelsius OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the temperature of the equipment inside,
in degree (Celsius)."
::= { picoTemperature 1 }
picoFahrenheit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the temperature of the equipment inside,
in degree (Fahrenheit)."
::= { picoTemperature 2 }
-- Equipment Voltage MIB
picoVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the observed voltage, in milli-volt (mV)."
::= { picoSystem 2 }
-- Fan module table
picoFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoFanEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The table of fan status."
::= { picoSystem 3 }
picoFanEntry OBJECT-TYPE
SYNTAX PicoFanEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"Fan module entry."
INDEX { picoFanIndex }
::= { picoFanTable 1 }
PicoFanEntry ::=
SEQUENCE {
picoFanIndex
INTEGER,
picoFanStatus
INTEGER,
picoFanRpm
INTEGER
}
picoFanIndex OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS optional
DESCRIPTION
"Unique index for each fan module."
::= { picoFanEntry 1 }
picoFanStatus OBJECT-TYPE
SYNTAX INTEGER { normal(1),failure(2) }
ACCESS read-only
STATUS optional
DESCRIPTION
"Status of a fan module"
::= { picoFanEntry 2 }
picoFanRpm OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS optional
DESCRIPTION
"Fan speed (Revolution Per Minutes).
picoFanRpm will be set to 0 if Fan speed is less than 5294(rpm)."
::= { picoFanEntry 3 }
-- PowerSupply module table
picoPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoPowerSupplyEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The table of Power Supply module status."
::= { picoSystem 4 }
picoPowerSupplyEntry OBJECT-TYPE
SYNTAX PicoPowerSupplyEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"System Power Supply module entry."
INDEX { picoPowerSupplyIndex }
::= { picoPowerSupplyTable 1 }
PicoPowerSupplyEntry ::=
SEQUENCE {
picoPowerSupplyIndex
INTEGER,
picoPowerSupplyType
INTEGER,
picoPowerSupplyStatus
INTEGER
}
picoPowerSupplyIndex OBJECT-TYPE
SYNTAX INTEGER (1..16)
ACCESS read-only
STATUS optional
DESCRIPTION
"Unique index for each power supply module."
::= { picoPowerSupplyEntry 1 }
picoPowerSupplyType OBJECT-TYPE
SYNTAX INTEGER {
notInstalled(0),
systemACPS(1),
ieee802dot3af-PoE-ACPS(2)
}
ACCESS read-only
STATUS optional
DESCRIPTION
" Power supply module type."
::= { picoPowerSupplyEntry 2 }
picoPowerSupplyStatus OBJECT-TYPE
SYNTAX INTEGER { notInstalled(0),normal(1),failure(2) }
ACCESS read-only
STATUS optional
DESCRIPTION
"Status of a Power Supply module."
::= { picoPowerSupplyEntry 3 }
-- Equipment Sched MIB
picoSched OBJECT IDENTIFIER ::= { picoSystem 5 }
picoSchedRtUtl1Sec OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the observed system utilization
for last 1 second, in percent (%)."
::= { picoSched 1 }
picoSchedRtUtl5Sec OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the observed system utilization
for last 5 seconds, in percent (%)."
::= { picoSched 2 }
picoSchedRtUtl1Min OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the observed system utilization
for last 1 minute, in percent (%)."
::= { picoSched 3 }
picoSchedRtUtl1Hour OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the observed system utilization
for last 1 hour, in percent (%)."
::= { picoSched 4 }
-- Equipment Heap Memory MIB
picoHeap OBJECT IDENTIFIER ::= { picoSystem 6 }
picoHeapSize OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the observed total heap size,
in bytes."
::= { picoHeap 1 }
picoHeapUtil OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the observed current heap utilization,
in percent (%)."
::= { picoHeap 2 }
-- Equipment Login MIB
picoLoginSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoLoginSessionEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of login session."
::= { picoLoginMIB 1 }
picoLoginSessionEntry OBJECT-TYPE
SYNTAX PicoLoginSessionEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Login session entry."
INDEX { picoLoginSessionIndex }
::= { picoLoginSessionTable 1 }
PicoLoginSessionEntry ::=
SEQUENCE {
picoLoginSessionIndex
INTEGER,
picoLoginSessionStatus
INTEGER,
picoLoginSessionPrivilege
INTEGER,
picoLoginSessionProcessMode
INTEGER,
picoLoginSessionTerminalType
INTEGER,
picoLoginSessionPeerIpAddress
IpAddress,
picoLoginSessionPeerIpv6Address
Ipv6Address
}
picoLoginSessionIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Unique index for each login."
::= { picoLoginSessionEntry 1 }
picoLoginSessionStatus OBJECT-TYPE
SYNTAX INTEGER { login(1), logout(2), fail(3) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of a login session."
::= { picoLoginSessionEntry 2 }
picoLoginSessionPrivilege OBJECT-TYPE
SYNTAX INTEGER { administrator(1), monitor(2), operator(3), unknown(4) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"User privilege of a login session."
::= { picoLoginSessionEntry 3 }
picoLoginSessionProcessMode OBJECT-TYPE
SYNTAX INTEGER { operation(1), configure(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"User process status of a login session."
::= { picoLoginSessionEntry 4 }
picoLoginSessionTerminalType OBJECT-TYPE
SYNTAX INTEGER { unknown(1), local(2), remote(3) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Terminal type of a login session."
::= { picoLoginSessionEntry 5 }
picoLoginSessionPeerIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Peer ipv4 address of a login session."
::= { picoLoginSessionEntry 6 }
picoLoginSessionPeerIpv6Address OBJECT-TYPE
SYNTAX Ipv6Address
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Peer ipv6 address of a login session."
::= { picoLoginSessionEntry 7 }
-- Equipment Configuration MIB
picoConfigType OBJECT-TYPE
SYNTAX INTEGER { default-config(1), startup-config(2), license(3) }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Configuration type."
-- this object is used only for the trap
::= { picoConfigEventMIB 1 }
picoConfigEventType OBJECT-TYPE
SYNTAX INTEGER { write(1), erase(2) }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Event type of configuration modified."
-- this object is used only for the trap
::= { picoConfigEventMIB 2 }
-- Equipment Extension Card SwHub MIB
picoExtIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoExtIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of interface entries."
::= { picoExtIfMIB 1 }
picoExtIfEntry OBJECT-TYPE
SYNTAX PicoExtIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An interface entry containing objects at the
subnetwork layer and below for a particular
interface."
INDEX { picoExtIfInstalledSlot, picoExtIfIndex }
::= { picoExtIfTable 1 }
PicoExtIfEntry ::=
SEQUENCE {
picoExtIfInstalledSlot
INTEGER,
picoExtIfIndex
INTEGER,
picoExtIfDescr
DisplayString,
picoExtIfUpperLayer
INTEGER,
picoExtIfType
INTEGER,
picoExtIfSpeed
INTEGER,
picoExtIfDuplex
INTEGER,
picoExtIfEffectiveMtu
INTEGER,
picoExtIfPhysicalAddress
PhysAddress,
picoExtIfAdminStatus
INTEGER,
picoExtIfOperStatus
INTEGER,
picoExtIfLastChange
TimeStamp
}
picoExtIfInstalledSlot OBJECT-TYPE
SYNTAX INTEGER (1..16)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The slot number in which the extension card
was installed."
::= { picoExtIfEntry 1 }
picoExtIfIndex OBJECT-TYPE
SYNTAX INTEGER (1..32)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A unique value for each extension card."
::= { picoExtIfEntry 2 }
picoExtIfDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual string containing information
about the interface."
::= { picoExtIfEntry 3 }
picoExtIfUpperLayer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index of interface to upper layers."
::= { picoExtIfEntry 4 }
picoExtIfType OBJECT-TYPE
SYNTAX INTEGER {
ethernet-csmacd(6),
fastEther(62)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of interface,, distinguished according to
the physical/link protocol(s) immediately `below'
the network layer in the protocol stack."
::= { picoExtIfEntry 5 }
picoExtIfSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An estimate of the interface's current bandwidth
in bits per second."
::= { picoExtIfEntry 6 }
picoExtIfDuplex OBJECT-TYPE
SYNTAX INTEGER {
halfduplex(1),
fullduplex(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current mode of this link."
::= { picoExtIfEntry 7 }
picoExtIfEffectiveMtu OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The size of the largest datagram which can be
sent/received on the interface, specified in
octets."
::= { picoExtIfEntry 8 }
picoExtIfPhysicalAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The interface's address at the protocol layer
immediately `below' the network layer in the
protocol stack."
::= { picoExtIfEntry 9 }
picoExtIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The desired state of the interface."
::= { picoExtIfEntry 10 }
picoExtIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current operational state of the interface."
::= { picoExtIfEntry 11 }
picoExtIfLastChange OBJECT-TYPE
SYNTAX TimeStamp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime at the time the interface
entered its current operational state."
::= { picoExtIfEntry 12 }
-- Equipment Netmon MIB
picoNetmonMibObjects OBJECT IDENTIFIER ::= { picoNetworkMonitorMIB 1 }
picoNetmonWatchgroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoNetmonWatchgroupEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of Netmon entry."
::= { picoNetmonMibObjects 1 }
picoNetmonWatchgroupEntry OBJECT-TYPE
SYNTAX PicoNetmonWatchgroupEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Netmon Watchgroup entry."
INDEX { picoNetmonWatchgroupIndex }
::= { picoNetmonWatchgroupTable 1 }
PicoNetmonWatchgroupEntry ::=
SEQUENCE {
picoNetmonWatchgroupIndex
INTEGER,
picoNetmonWatchgroupName
DisplayString,
picoNetmonWatchgroupSequenceNumber
INTEGER,
picoNetmonWatchgroupStatus
INTEGER,
picoNetmonWatchgroupVarianceCounts
INTEGER
}
picoNetmonWatchgroupIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Unique index for each Netmon Watchgroup."
::= { picoNetmonWatchgroupEntry 1 }
picoNetmonWatchgroupName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Netmon Watchgroup Name."
::= { picoNetmonWatchgroupEntry 2 }
picoNetmonWatchgroupSequenceNumber OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Netmon Watchgroup sequence number."
::= { picoNetmonWatchgroupEntry 3 }
picoNetmonWatchgroupStatus OBJECT-TYPE
SYNTAX INTEGER { normal(1), stand(2), disable(3) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of a Netmon Watchgroup."
::= { picoNetmonWatchgroupEntry 4 }
picoNetmonWatchgroupVarianceCounts OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Netmon Watchgroup variance statistics."
::= { picoNetmonWatchgroupEntry 5 }
-- ISDN MIB
picoIsdnMIBObjects OBJECT IDENTIFIER ::= { picoIsdnMIB 1 }
-- NGN MIB
-- NGN information table
picoNgnMIBObjects OBJECT IDENTIFIER ::= { picoNgnMIB 1 }
picoNgnTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoNgnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of the NGN entry."
::= { picoNgnMIBObjects 1 }
picoNgnEntry OBJECT-TYPE
SYNTAX PicoNgnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"NGN entry."
INDEX { picoNgnIfIndex }
::= { picoNgnTable 1 }
PicoNgnEntry ::=
SEQUENCE {
picoNgnIfIndex
INTEGER,
picoNgnType
INTEGER,
picoNgnIfType
INTEGER,
picoNgnStatus
INTEGER,
picoNgnSipServerIpAddress
IpAddress,
picoNgnSipUri
DisplayString,
picoNgnUpTime
TimeTicks
}
picoNgnIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The interface index value of the interface
for which NGN is enabled."
::= { picoNgnEntry 1 }
picoNgnType OBJECT-TYPE
SYNTAX INTEGER {
standard(1),
numbergate(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The mode of the NGN service can be:
standard(1) :NGN service is standard.
numbergate(2) :NGN service is numbergate.
"
::= { picoNgnEntry 2 }
picoNgnIfType OBJECT-TYPE
SYNTAX INTEGER {
global(1),
private(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the NGN interface can be:
global(1) :NGN interface type is global.
private(2):NGN interface type is private.
"
::= { picoNgnEntry 3 }
picoNgnStatus OBJECT-TYPE
SYNTAX INTEGER {
notReady(1),
initializing(2),
registering(3),
registered(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the NGN SIP-UA register can be:
notReady(1) :NGN service is not Ready.
initializing(2):During initialization of the registration.
registering(3) :During registration.
registered(4) :Registration complete.
"
::= { picoNgnEntry 4 }
picoNgnSipServerIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object of the SIP server address."
::= { picoNgnEntry 5 }
picoNgnSipUri OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object of the SIP URI."
::= { picoNgnEntry 6 }
picoNgnUpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time elapsed since registered."
::= { picoNgnEntry 7 }
-- VPN table
picoNgnVpnTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoNgnVpnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of the NGN VPN entry."
::= { picoNgnMIBObjects 2 }
picoNgnVpnEntry OBJECT-TYPE
SYNTAX PicoNgnVpnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Ngn VPN entry."
INDEX { picoNgnVpnIfIndex }
::= { picoNgnVpnTable 1 }
PicoNgnVpnEntry ::=
SEQUENCE {
picoNgnVpnIfIndex
INTEGER,
picoNgnVpnStatus
INTEGER,
picoNgnVpnPeerAddress
DisplayString,
picoNgnVpnBandwidth
INTEGER,
picoNgnVpnUsedTime
TimeTicks,
picoNgnVpnSbcIpAddress
IpAddress,
picoNgnVpnSbcPort
INTEGER
}
picoNgnVpnIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The interface index value of the interface
for which NGN binding is enabled."
::= { picoNgnVpnEntry 1 }
picoNgnVpnStatus OBJECT-TYPE
SYNTAX INTEGER {
disconnected(1),
connecting(2),
connected(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the NGN SIP-UA session can be:
disconnected(1):SIP session is disconnected.
connecting(2) :SIP session is connecting.
connected(3) :SIP session is established.
"
::= { picoNgnVpnEntry 2 }
picoNgnVpnPeerAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object of the NGN peer address."
::= { picoNgnVpnEntry 3 }
picoNgnVpnBandwidth OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object of the NGN session bandwidth."
::= { picoNgnVpnEntry 4 }
picoNgnVpnUsedTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time elapsed since this connected NGN session."
::= { picoNgnVpnEntry 5 }
picoNgnVpnSbcIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object of the NGN session SBC address."
::= { picoNgnVpnEntry 6 }
picoNgnVpnSbcPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object of the NGN session SBC port."
::= { picoNgnVpnEntry 7 }
-- POST-FAIL MIB
picoPostMIBObjects OBJECT IDENTIFIER ::= { picoPostMIB 1 }
picoPostTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoPostEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of POST entry."
::= { picoPostMIBObjects 1 }
picoPostEntry OBJECT-TYPE
SYNTAX PicoPostEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"POST entry."
INDEX { picoPostIndex }
::= { picoPostTable 1 }
PicoPostEntry ::=
SEQUENCE {
picoPostIndex
INTEGER,
picoPostFail
DisplayString
}
picoPostIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Unique index for each POST."
::= { picoPostEntry 1 }
picoPostFail OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"POST fail information"
::= { picoPostEntry 2 }
-- Mobile MIB
picoMobileMIBObjects OBJECT IDENTIFIER ::= { picoMobileMIB 1 }
-- Mobile device table
picoMobileDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF PicoMobileDeviceEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"The table of the Mobile device entry."
::= { picoMobileMIBObjects 1 }
picoMobileDeviceEntry OBJECT-TYPE
SYNTAX PicoMobileDeviceEntry
ACCESS not-accessible
STATUS optional
DESCRIPTION
"Mobile device entry."
INDEX { picoMobileDeviceIndex }
::= { picoMobileDeviceTable 1 }
PicoMobileDeviceEntry ::=
SEQUENCE {
picoMobileDeviceIndex
INTEGER,
picoMobileDeviceVendorName
DisplayString,
picoMobileDeviceName
DisplayString,
picoMobileDeviceProductID
DisplayString,
picoMobileDeviceSoftwareVersion
DisplayString,
picoMobileDeviceSignalBar
INTEGER,
picoMobileDeviceSignalStrength
INTEGER,
picoMobileDeviceSignalQuality
DisplayString,
picoMobileDeviceSignalElapsedTime
TimeTicks,
picoMobileDeviceRadioInterface
DisplayString,
picoMobileDeviceCarrier
DisplayString,
picoMobileDeviceDialerString
DisplayString,
picoMobileDeviceDialStatus
INTEGER,
picoMobileDeviceInRangeCounts
Gauge,
picoMobileDeviceOutRangeCounts
Gauge,
picoMobileDeviceResetCounts
Gauge
}
picoMobileDeviceIndex OBJECT-TYPE
SYNTAX INTEGER (1..2)