1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
|
--
-- Copyright (c) 2004-2016, Infoblox, Inc
-- All rights reserved.
IB-PLATFORMONE-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, enterprises
FROM SNMPv2-SMI
TEXTUAL-CONVENTION FROM SNMPv2-TC
Counter FROM RFC1155-SMI
ibPlatformOne, IbString, IbIpAddr, IbFloat FROM IB-SMI-MIB;
ibPlatformModule MODULE-IDENTITY
LAST-UPDATED "201606120000Z" -- Jun 12, 2016
ORGANIZATION "Infoblox"
CONTACT-INFO "Please See IB-SMI-MIB."
DESCRIPTION "This file defines the Infoblox One platform MIB."
REVISION "201606120000Z" -- Jun 12, 2016
DESCRIPTION "Add BFD service status"
REVISION "201606070000Z" -- June 07, 2016
DESCRIPTION "Add Outbound traps"
REVISION "201605060000Z" -- May 06, 2016
DESCRIPTION "Removed ibCPUTemperature OBJECT-TYPE"
REVISION "201511190000Z" -- November 19, 2015
DESCRIPTION "Add SNIC interface statistics"
REVISION "201510290000Z" -- Oct 29, 2015
DESCRIPTION "Add Taxii service status"
REVISION "201510090000Z" -- Oct 9, 2015
DESCRIPTION "Add Analytics service status"
REVISION "201505190000Z" -- May 19, 2015
DESCRIPTION "Add new float OIDs for CPU temprature"
REVISION "201407300000Z" -- July 30, 2014
DESCRIPTION "Add Cloud API service status"
REVISION "201310290000Z" -- October 29, 2013
DESCRIPTION "Add Threat Protection service status info"
REVISION "201310220000Z" -- October 22, 2013
DESCRIPTION "Add Discovery Capacity info"
REVISION "201308020000Z" -- August 02, 2013
DESCRIPTION "Add Swap Usage info"
REVISION "201305070000Z" -- May 07, 2013
DESCRIPTION "Added Discovery status services"
REVISION "201205240000Z" -- May 24, 2012
DESCRIPTION "Rename Node1, Node2 to Node, PassiveNode"
REVISION "201204130000Z" -- April 13, 2012
DESCRIPTION "Added DNS Cache Acceleration info"
REVISION "201112020000Z" -- December 02, 2011
DESCRIPTION "Add support for 8 fans and 8 raid disks"
REVISION "201112010000Z" -- December 01, 2011
DESCRIPTION "Added second power-supply service"
REVISION "201105050000Z" -- May 05, 2011
DESCRIPTION "Removed Radius service status info"
REVISION "201011150000Z" -- November 15, 2010
DESCRIPTION "Added Bloxtools_move service status info"
REVISION "201010190000Z" -- October 19, 2010
DESCRIPTION "Added BGP service status info"
REVISION "201007280000Z" -- July 28, 2010
DESCRIPTION "Added MIBs for Node status info"
REVISION "200906050000Z" -- June 05, 2009
DESCRIPTION "Added MIBs for CPU, Memory usage"
REVISION "200809290000Z" -- Sep 29, 2008
DESCRIPTION "Added security counters"
REVISION "200501100000Z" -- Jan 10, 2005
DESCRIPTION "Added copyright"
REVISION "200405210000Z" -- May 21, 2004
DESCRIPTION "Creation of the MIB file"
::= { ibPlatformOne 1 }
-- PlatformOne Mib Definitions
ibClusterReplicationStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbClusterReplicationStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of Physical Node's Grid Replication Status."
::= { ibPlatformModule 2 }
ibClusterReplicationStatusEntry OBJECT-TYPE
SYNTAX IbClusterReplicationStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row containing info about a particular
grid replication status."
INDEX {ibNodeIPAddress}
::= { ibClusterReplicationStatusTable 1 }
IbClusterReplicationStatusEntry ::=
SEQUENCE {
ibNodeIPAddress IbIpAddr,
ibNodeReplicationStatus IbString,
ibNodeQueueFromMaster INTEGER,
ibNodeLastRepTimeFromMaster IbString,
ibNodeQueueToMaster INTEGER,
ibNodeLastRepTimeToMaster IbString
}
ibNodeIPAddress OBJECT-TYPE
SYNTAX IbIpAddr
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Physical node IP address."
::= { ibClusterReplicationStatusEntry 1 }
ibNodeReplicationStatus OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Replication queue status for this node."
::= { ibClusterReplicationStatusEntry 2 }
ibNodeQueueFromMaster OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sent queue size from master."
::= { ibClusterReplicationStatusEntry 3 }
ibNodeLastRepTimeFromMaster OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Last sent time from master."
::= { ibClusterReplicationStatusEntry 4 }
ibNodeQueueToMaster OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Receive queue size to master."
::= { ibClusterReplicationStatusEntry 5 }
ibNodeLastRepTimeToMaster OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Last receive time to master."
::= { ibClusterReplicationStatusEntry 6 }
ibNetworkMonitor OBJECT IDENTIFIER
::= { ibPlatformModule 3 }
ibHardwareType OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Infoblox One hardware type"
::= { ibPlatformModule 4 }
ibHardwareId OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Infoblox One hardware id"
::= { ibPlatformModule 5 }
ibSerialNumber OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Infoblox One device serial number"
::= { ibPlatformModule 6 }
ibNiosVersion OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Infoblox One NIOS version"
::= { ibPlatformModule 7 }
ibSystemMonitor OBJECT IDENTIFIER
::= { ibPlatformModule 8 }
ibSystemMonitorCpu OBJECT IDENTIFIER
::= { ibSystemMonitor 1 }
ibSystemMonitorMem OBJECT IDENTIFIER
::= { ibSystemMonitor 2 }
ibSystemMonitorSwap OBJECT IDENTIFIER
::= { ibSystemMonitor 3 }
ibSystemMonitorSnic OBJECT IDENTIFIER
::= { ibSystemMonitor 4 }
ibSystemMonitorCpuUsage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current average CPU usage"
::= { ibSystemMonitorCpu 1 }
ibSystemMonitorMemUsage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current Memory usage"
::= { ibSystemMonitorMem 1 }
ibSystemMonitorSwapUsage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current Swap usage"
::= { ibSystemMonitorSwap 1 }
ibNetworkMonitorDNS OBJECT IDENTIFIER
::= { ibNetworkMonitor 1 }
ibNetworkMonitorDNSActive OBJECT-TYPE
SYNTAX INTEGER { nonactive(0), active(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Equal to 1 if monitoring is active. No other data is
likely to be correct if not active"
::= { ibNetworkMonitorDNS 1 }
ibNetworkMonitorDNSNonAA OBJECT IDENTIFIER
::= { ibNetworkMonitorDNS 2 }
ibNetworkMonitorDNSNonAAT1 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSNonAA 1 }
ibNetworkMonitorDNSNonAAT5 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSNonAA 2 }
ibNetworkMonitorDNSNonAAT15 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSNonAA 3 }
ibNetworkMonitorDNSNonAAT60 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSNonAA 4 }
ibNetworkMonitorDNSNonAAT1440 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSNonAA 5 }
ibNetworkMonitorDNSAA OBJECT IDENTIFIER
::= { ibNetworkMonitorDNS 3 }
ibNetworkMonitorDNSAAT1 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSAA 1 }
ibNetworkMonitorDNSAAT5 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSAA 2 }
ibNetworkMonitorDNSAAT15 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSAA 3 }
ibNetworkMonitorDNSAAT60 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSAA 4 }
ibNetworkMonitorDNSAAT1440 OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSAA 5 }
ibNetworkMonitorDNSNonAAT1AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 1 minute where the reply was
non authoritative"
::= { ibNetworkMonitorDNSNonAAT1 1 }
ibNetworkMonitorDNSNonAAT1Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 1 minute where the reply was non
authoritative"
::= { ibNetworkMonitorDNSNonAAT1 2 }
ibNetworkMonitorDNSNonAAT5AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 5 minutes where the reply was
non authoritative"
::= { ibNetworkMonitorDNSNonAAT5 1 }
ibNetworkMonitorDNSNonAAT5Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 5 minutes where the reply was non
authoritative"
::= { ibNetworkMonitorDNSNonAAT5 2 }
ibNetworkMonitorDNSNonAAT15AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 15 minutes where the reply was
non authoritative"
::= { ibNetworkMonitorDNSNonAAT15 1 }
ibNetworkMonitorDNSNonAAT15Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 15 minutes where the reply was non
authoritative"
::= { ibNetworkMonitorDNSNonAAT15 2 }
ibNetworkMonitorDNSNonAAT60AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 60 minutes where the reply was
non authoritative"
::= { ibNetworkMonitorDNSNonAAT60 1 }
ibNetworkMonitorDNSNonAAT60Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 60 minutes where the reply was non
authoritative"
::= { ibNetworkMonitorDNSNonAAT60 2 }
ibNetworkMonitorDNSNonAAT1440AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 1440 minutes (24 hours) where
the reply was non authoritative"
::= { ibNetworkMonitorDNSNonAAT1440 1 }
ibNetworkMonitorDNSNonAAT1440Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 1440 minutes (24 hours) where the
reply was non authoritative"
::= { ibNetworkMonitorDNSNonAAT1440 2 }
ibNetworkMonitorDNSAAT1AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 1 minute where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT1 1 }
ibNetworkMonitorDNSAAT1Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 1 minute where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT1 2 }
ibNetworkMonitorDNSAAT5AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 5 minutes where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT5 1 }
ibNetworkMonitorDNSAAT5Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 5 minutes where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT5 2 }
ibNetworkMonitorDNSAAT15AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 15 minutes where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT15 1 }
ibNetworkMonitorDNSAAT15Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 15 minutes where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT15 2 }
ibNetworkMonitorDNSAAT60AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 60 minutes where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT60 1 }
ibNetworkMonitorDNSAAT60Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 60 minutes where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT60 2 }
ibNetworkMonitorDNSAAT1440AvgLatency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for incoming DNS
queries during the last 1440 minutes (24 hours) where
the reply was authoritative"
::= { ibNetworkMonitorDNSAAT1440 1 }
ibNetworkMonitorDNSAAT1440Count OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of queries used to calculate the average latencies
during the last 1440 minutes (24 hours) where the reply was
authoritative"
::= { ibNetworkMonitorDNSAAT1440 2 }
ibNetworkMonitorDNSSecurity OBJECT IDENTIFIER
::= { ibNetworkMonitorDNS 4 }
ibNetworkMonitorDNSSecurityInvalidPort OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSSecurity 1 }
ibNetworkMonitorDNSSecurityInvalidPort1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to invalid ports
during the last 1 minute"
::= { ibNetworkMonitorDNSSecurityInvalidPort 1 }
ibNetworkMonitorDNSSecurityInvalidPort5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to invalid ports
during the last 5 minutes"
::= { ibNetworkMonitorDNSSecurityInvalidPort 2 }
ibNetworkMonitorDNSSecurityInvalidPort15 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to invalid ports
during the last 15 minutes"
::= { ibNetworkMonitorDNSSecurityInvalidPort 3 }
ibNetworkMonitorDNSSecurityInvalidPort60 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to invalid ports
during the last 60 minutes"
::= { ibNetworkMonitorDNSSecurityInvalidPort 4 }
ibNetworkMonitorDNSSecurityInvalidPort1440 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to invalid ports
during the last 1440 minutes (24 hours)"
::= { ibNetworkMonitorDNSSecurityInvalidPort 5 }
ibNetworkMonitorDNSSecurityInvalidPortCount OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to invalid ports"
::= { ibNetworkMonitorDNSSecurityInvalidPort 6 }
ibNetworkMonitorDNSSecurityInvalidTxid OBJECT IDENTIFIER
::= { ibNetworkMonitorDNSSecurity 2 }
ibNetworkMonitorDNSSecurityInvalidTxid1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses with an invalid TXID
during the last 1 minute"
::= { ibNetworkMonitorDNSSecurityInvalidTxid 1 }
ibNetworkMonitorDNSSecurityInvalidTxid5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses with an invalid TXID
during the last 5 minutes"
::= { ibNetworkMonitorDNSSecurityInvalidTxid 2 }
ibNetworkMonitorDNSSecurityInvalidTxid15 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses with an invalid TXID
during the last 15 minutes"
::= { ibNetworkMonitorDNSSecurityInvalidTxid 3 }
ibNetworkMonitorDNSSecurityInvalidTxid60 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses with an invalid TXID
during the last 60 minutes"
::= { ibNetworkMonitorDNSSecurityInvalidTxid 4 }
ibNetworkMonitorDNSSecurityInvalidTxid1440 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses with an invalid TXID
during the last 1440 minutes (24 hours)"
::= { ibNetworkMonitorDNSSecurityInvalidTxid 5 }
ibNetworkMonitorDNSSecurityInvalidTxidCount OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses with an invalid TXID"
::= { ibNetworkMonitorDNSSecurityInvalidTxid 6 }
ibNetworkMonitorDNSSecurityInvalidPortOnly OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to invalid ports
with a valid TXID"
::= { ibNetworkMonitorDNSSecurity 3 }
ibNetworkMonitorDNSSecurityInvalidTxidOnly OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to valid ports
with an invalid TXID"
::= { ibNetworkMonitorDNSSecurity 4 }
ibNetworkMonitorDNSSecurityInvalidTxidAndPort OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS responses to an invalid port
and with an invalid TXID"
::= { ibNetworkMonitorDNSSecurity 5 }
IbServiceStates ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "It defines the states for infoblox services
Note: NTP service will always be running on NIOS,
even when disabled in the GUI.This is for internal
grid operations."
SYNTAX INTEGER {
working (1),
warning (2),
failed (3),
inactive (4),
unknown (5)
}
IbServiceNames ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "It defines the names for infoblox services."
SYNTAX INTEGER {
dhcp (1),
dns (2),
ntp (3),
tftp (4),
http-file-dist (5),
ftp (6),
bloxtools-move (7),
bloxtools (8),
node-status (9),
disk-usage (10),
enet-lan (11),
enet-lan2 (12),
enet-ha (13),
enet-mgmt (14),
lcd (15),
memory (16),
replication (17),
db-object (18),
raid-summary (19),
raid-disk1 (20),
raid-disk2 (21),
raid-disk3 (22),
raid-disk4 (23),
raid-disk5 (24),
raid-disk6 (25),
raid-disk7 (26),
raid-disk8 (27),
fan1 (28),
fan2 (29),
fan3 (30),
fan4 (31),
fan5 (32),
fan6 (33),
fan7 (34),
fan8 (35),
power-supply1 (36),
power-supply2 (37),
ntp-sync (38),
cpu1-temp (39),
cpu2-temp (40),
sys-temp (41),
raid-battery (42),
cpu-usage (43),
ospf (44),
bgp (45),
mgm-service (46),
subgrid-conn (47),
network-capacity (48),
reporting (49),
dns-cache-acceleration (50),
ospf6 (51),
swap-usage (52),
discovery-consolidator (53),
discovery-collector (54),
discovery-capacity (55),
threat-protection (56),
cloud-api (57),
threat-analytics (58),
taxii (59),
bfd (60),
outbound (61)
}
ibMemberServiceStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbMemberServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of member service status."
::= { ibPlatformModule 9 }
ibMemberServiceStatusEntry OBJECT-TYPE
SYNTAX IbMemberServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row containing info about a particular
service status."
INDEX {ibServiceName}
::= { ibMemberServiceStatusTable 1 }
IbMemberServiceStatusEntry ::=
SEQUENCE {
ibServiceName IbServiceNames,
ibServiceStatus IbServiceStates,
ibServiceDesc IbString
}
ibServiceName OBJECT-TYPE
SYNTAX IbServiceNames
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Name."
::= { ibMemberServiceStatusEntry 1 }
ibServiceStatus OBJECT-TYPE
SYNTAX IbServiceStates
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Status."
::= { ibMemberServiceStatusEntry 2 }
ibServiceDesc OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Description."
::= { ibMemberServiceStatusEntry 3 }
ibMemberNodeServiceStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbMemberNodeServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of Physical Node's Service Status."
::= { ibPlatformModule 10 }
ibMemberNodeServiceStatusEntry OBJECT-TYPE
SYNTAX IbMemberNodeServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row containing info about a particular
service status."
INDEX {ibNodeServiceName}
::= { ibMemberNodeServiceStatusTable 1 }
IbMemberNodeServiceStatusEntry ::=
SEQUENCE {
ibNodeServiceName IbServiceNames,
ibNodeServiceStatus IbServiceStates,
ibNodeServiceDesc IbString
}
ibNodeServiceName OBJECT-TYPE
SYNTAX IbServiceNames
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Name."
::= { ibMemberNodeServiceStatusEntry 1 }
ibNodeServiceStatus OBJECT-TYPE
SYNTAX IbServiceStates
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Status."
::= { ibMemberNodeServiceStatusEntry 2 }
ibNodeServiceDesc OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Description."
::= { ibMemberNodeServiceStatusEntry 3 }
ibMemberPasiveNodeServiceStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbMemberPasiveNodeServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of Physical Node's Service Status."
::= { ibPlatformModule 11 }
ibMemberPasiveNodeServiceStatusEntry OBJECT-TYPE
SYNTAX IbMemberPasiveNodeServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row containing info about a particular
service status."
INDEX {ibPasiveNodeServiceName}
::= { ibMemberPasiveNodeServiceStatusTable 1 }
IbMemberPasiveNodeServiceStatusEntry ::=
SEQUENCE {
ibPasiveNodeServiceName IbServiceNames,
ibPasiveNodeServiceStatus IbServiceStates,
ibPasiveNodeServiceDesc IbString
}
ibPasiveNodeServiceName OBJECT-TYPE
SYNTAX IbServiceNames
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Name."
::= { ibMemberPasiveNodeServiceStatusEntry 1 }
ibPasiveNodeServiceStatus OBJECT-TYPE
SYNTAX IbServiceStates
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Status."
::= { ibMemberPasiveNodeServiceStatusEntry 2 }
ibPasiveNodeServiceDesc OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Service Description."
::= { ibMemberPasiveNodeServiceStatusEntry 3 }
ibGridStatus OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Grid Status"
::= { ibPlatformModule 12 }
ibHaStatus OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "High Availability Status"
::= { ibPlatformModule 13 }
ibGridMasterCandStatus OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Grid Master candidate status"
::= { ibPlatformModule 14 }
ibGridMasterVIP OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Grid Master virtual IP address"
::= { ibPlatformModule 15 }
ibGridReplicationState OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Grid Replication State"
::= { ibPlatformModule 16 }
ibCPU1Temperature OBJECT-TYPE
SYNTAX IbFloat
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Infoblox CPU One temperature."
::= { ibPlatformModule 17 }
ibCPU2Temperature OBJECT-TYPE
SYNTAX IbFloat
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Infoblox CPU Two temperature."
::= { ibPlatformModule 18 }
IbSnicNames ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "It defines the names for SNIC supported interfaces."
SYNTAX INTEGER {
lan1 (1),
lan2 (2),
ha (3)
}
ibSystemMonitorSnicStatsTable1 OBJECT-TYPE
SYNTAX SEQUENCE OF IbSystemMonitorSnicStatsEntry1
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of SNIC statistics during last 1 min."
::= { ibSystemMonitorSnic 1 }
ibSystemMonitorSnicStatsEntry1 OBJECT-TYPE
SYNTAX IbSystemMonitorSnicStatsEntry1
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row containing info about a particular
SNIC statistics."
INDEX { ibSnicName1 }
::= { ibSystemMonitorSnicStatsTable1 1 }
IbSystemMonitorSnicStatsEntry1 ::=
SEQUENCE {
ibSnicName1 IbSnicNames,
ibSnicRxBits1 INTEGER,
ibSnicRxPackets1 INTEGER,
ibSnicTxBits1 INTEGER,
ibSnicTxPackets1 INTEGER,
ibSnicDropBits1 INTEGER,
ibSnicDropPackets1 INTEGER
}
ibSnicName1 OBJECT-TYPE
SYNTAX IbSnicNames
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic Name."
::= { ibSystemMonitorSnicStatsEntry1 1 }
ibSnicRxBits1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic recieved bits per second."
::= { ibSystemMonitorSnicStatsEntry1 2 }
ibSnicRxPackets1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic recieved packets per second."
::= { ibSystemMonitorSnicStatsEntry1 3 }
ibSnicTxBits1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic sent bits per second."
::= { ibSystemMonitorSnicStatsEntry1 4 }
ibSnicTxPackets1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic sent packets per second."
::= { ibSystemMonitorSnicStatsEntry1 5 }
ibSnicDropBits1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic dropped bits per second."
::= { ibSystemMonitorSnicStatsEntry1 6 }
ibSnicDropPackets1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic dropped packets per second."
::= { ibSystemMonitorSnicStatsEntry1 7 }
ibSystemMonitorSnicStatsTable5 OBJECT-TYPE
SYNTAX SEQUENCE OF IbSystemMonitorSnicStatsEntry5
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of SNIC statistics during last 5 min."
::= { ibSystemMonitorSnic 2 }
ibSystemMonitorSnicStatsEntry5 OBJECT-TYPE
SYNTAX IbSystemMonitorSnicStatsEntry5
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row containing info about a particular
SNIC statistics."
INDEX { ibSnicName5 }
::= { ibSystemMonitorSnicStatsTable5 1 }
IbSystemMonitorSnicStatsEntry5 ::=
SEQUENCE {
ibSnicName5 IbSnicNames,
ibSnicRxBits5 INTEGER,
ibSnicRxPackets5 INTEGER,
ibSnicTxBits5 INTEGER,
ibSnicTxPackets5 INTEGER,
ibSnicDropBits5 INTEGER,
ibSnicDropPackets5 INTEGER
}
ibSnicName5 OBJECT-TYPE
SYNTAX IbSnicNames
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic Name."
::= { ibSystemMonitorSnicStatsEntry5 1 }
ibSnicRxBits5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic recieved bits per second."
::= { ibSystemMonitorSnicStatsEntry5 2 }
ibSnicRxPackets5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic recieved packets per second."
::= { ibSystemMonitorSnicStatsEntry5 3 }
ibSnicTxBits5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic sent bits per second."
::= { ibSystemMonitorSnicStatsEntry5 4 }
ibSnicTxPackets5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic sent packets per second."
::= { ibSystemMonitorSnicStatsEntry5 5 }
ibSnicDropBits5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic dropped bits per second."
::= { ibSystemMonitorSnicStatsEntry5 6 }
ibSnicDropPackets5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SmartNic dropped packets per second."
::= { ibSystemMonitorSnicStatsEntry5 7 }
END
|