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
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
|
-- *****************************************************************
-- SOPHOS-XG-MIB
--
-- Copyright (c) 2015 by Sophos PLC.
-- All rights reserved.
-- *****************************************************************
SFOS-FIREWALL-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress,
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
enterprises,
Gauge32,
Counter32,
Counter64,
TimeTicks,
Integer32
FROM SNMPv2-SMI
InetAddress,
InetAddressType,
InetPortNumber
FROM INET-ADDRESS-MIB
OBJECT-GROUP,
NOTIFICATION-GROUP,
MODULE-COMPLIANCE
FROM SNMPv2-CONF
DisplayString,
TEXTUAL-CONVENTION,
PhysAddress
FROM SNMPv2-TC
Ipv6Address
FROM IPV6-TC;
sophosMIB MODULE-IDENTITY
LAST-UPDATED "201812180000Z"
ORGANIZATION "Sophos PLC"
CONTACT-INFO
"
Sophos Ltd
The Pentagon
Abingdon Science Park
Abingdon OX14 3YP
United Kingdom
Phone: +44 (0)1235 559933
Website: http://www.sophos.com
E-mail: sales@sophos.com
"
DESCRIPTION "Upadting mib file with new oids"
REVISION "201812180000Z"
DESCRIPTION
"
This MIB module defines MIB objects which provide
mechanisms to remotely configure the parameters used
by XG-Firewall Agent for the generation of SNMP messages.
"
::= { enterprises 2604 }
sfosXGMIB OBJECT IDENTIFIER ::= {sophosMIB 5}
sfosXGMIBObjects OBJECT IDENTIFIER ::= {sfosXGMIB 1}
-- Enumerations used in XG-Firewall system
HaState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for HA State"
SYNTAX INTEGER {
notapplicable ( 0 ),
auxiliary ( 1 ),
standAlone ( 2 ),
primary ( 3 ),
faulty ( 4 ),
ready ( 5 )
}
HaStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for HA Status"
SYNTAX INTEGER {
disabled ( 0 ),
enabled ( 1 )
}
LoadBalancingType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for HA loading balancing Status"
SYNTAX INTEGER {
notapplicable ( 0 ),
loadBalanceOff ( 1 ),
loadBalanceOn ( 2 )
}
APStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for AP Status"
SYNTAX INTEGER {
connected ( 0 ),
disconnected ( 1 )
}
ServiceStatsType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for service status"
SYNTAX INTEGER {
untouched ( 0 ),
stopped ( 1 ),
initializing ( 2 ),
running ( 3 ),
exiting ( 4 ),
dead ( 5 ),
frozen ( 6 ),
unregistered ( 7 )
}
RegistrationStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for subscription status"
SYNTAX INTEGER {
registered ( 1 ),
unregistered ( 2 )
}
SubscriptionStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for subscription status"
SYNTAX INTEGER {
none ( 0 ),
evaluating ( 1 ),
notsubscribed ( 2 ),
subscribed ( 3 ),
expired ( 4 ),
deactivated ( 5 )
}
IPSecVPNConnectionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "enumerated type for IPSec VPN Conn type"
SYNTAX INTEGER {
host-to-host ( 1 ),
site-to-site ( 2 )
}
-- End of enums
-- SFOS-XG MIB
sfosXGDeviceInfo OBJECT IDENTIFIER ::= { sfosXGMIBObjects 1 }
sfosXGDeviceStats OBJECT IDENTIFIER ::= { sfosXGMIBObjects 2 }
sfosXGServiceStatus OBJECT IDENTIFIER ::= { sfosXGMIBObjects 3 }
sfosXGHAStats OBJECT IDENTIFIER ::= { sfosXGMIBObjects 4 }
sfosXGLicenseDetails OBJECT IDENTIFIER ::= { sfosXGMIBObjects 5 }
sfosXGTunnelInfo OBJECT IDENTIFIER ::= { sfosXGMIBObjects 6 }
sfosXGWiFiInfo OBJECT IDENTIFIER ::= { sfosXGMIBObjects 7 }
sfosXGTrap OBJECT IDENTIFIER ::= { sfosXGMIBObjects 8 }
--snmpBasicCompliance MODULE-COMPLIANCE
-- STATUS current
-- DESCRIPTION
-- "The compliance statement for SNMPv2 entities which
-- implement the SNMPv2 MIB."
-- MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup,
-- snmpBasicNotificationsGroup }
-- DESCRIPTION
-- "This group is mandatory for SNMPv2 entities which
-- support community-based authentication."
-- ::= { snmpMIBCompliances 2 }
--snmpGroup OBJECT-GROUP
-- OBJECTS {
-- sfosDeviceName,
-- sfosDeviceType,
-- sfosDeviceFWVersion,
-- sfosDeviceAppKey,
-- sfosWebcatVersion,
-- sfosIPSVersion }
-- STATUS current
-- DESCRIPTION "A collection of object providing SFOS Device information"
-- SFOS-XG MIB.sfosXGDeviceInfo
sfosDeviceName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "hostname of the SFOS XG Device"
::= { sfosXGDeviceInfo 1 }
sfosDeviceType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Type of Device like XG-85, XG-210 "
::= { sfosXGDeviceInfo 2 }
sfosDeviceFWVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current running firmware version of SFOS"
::= { sfosXGDeviceInfo 3 }
sfosDeviceAppKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Appliance Key of SFOS Device"
::= { sfosXGDeviceInfo 4 }
sfosWebcatVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current webcat version running in SFOS"
::= { sfosXGDeviceInfo 5 }
sfosIPSVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current snort version running in SFOS"
::= { sfosXGDeviceInfo 6 }
-- sfosXGDeviceStats
sfosCurrentDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current system date and time"
::= { sfosXGDeviceStats 1 }
sfosUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sysUpTime will display the SNMP agent up time.
This is going to display SFOS up time"
::= { sfosXGDeviceStats 2 }
sfosDiskStatus OBJECT IDENTIFIER ::= { sfosXGDeviceStats 4 }
sfosMemoryStatus OBJECT IDENTIFIER ::= { sfosXGDeviceStats 5 }
sfosLiveUsersCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Display live user count login into captive portal"
::= { sfosXGDeviceStats 6 }
sfosHTTPHits OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGDeviceStats 7 }
sfosFTPHits OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGDeviceStats 8 }
sfosMailHits OBJECT IDENTIFIER ::= { sfosXGDeviceStats 9 }
-- sfosDiskStatus.sfosDiskCapacity
sfosDiskCapacity OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Disk capacity in MB"
::= { sfosDiskStatus 1 }
sfosDiskPercentUsage OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "% Disk usage"
::= { sfosDiskStatus 2 }
-- sfosDiskStatus.sfosMemoryCapacity
sfosMemoryCapacity OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Memory capacity in MB"
::= { sfosMemoryStatus 1 }
sfosMemoryPercentUsage OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "% usage of main memory"
::= { sfosMemoryStatus 2 }
sfosSwapCapacity OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Swap Capacity in MB"
::= { sfosMemoryStatus 3 }
sfosSwapPercentUsage OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "% usage of swap"
::= { sfosMemoryStatus 4 }
-- sfosDiskStatus.sfosMailHits
sfosPOP3Hits OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosMailHits 1 }
sfosImapHits OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosMailHits 2 }
sfosSmtpHits OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosMailHits 3 }
-- SFOS-XG MIB.sfosXGServiceStatus
sfosPoP3Service OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 1 }
sfosImap4Service OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 2 }
sfosSmtpService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 3 }
sfosFtpService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 4 }
sfosHttpService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 5 }
sfosAVService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 6 }
sfosASService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 7 }
sfosDNSService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 8 }
sfosHAService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 9 }
sfosIPSService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 10 }
sfosApacheService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 11 }
sfosNtpService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 12 }
sfosTomcatService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 13 }
sfosSSLVpnService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 14 }
sfosIPSecVpnService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 15 }
sfosDatabaseservice OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 16 }
sfosNetworkService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 17 }
sfosGarnerService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 18 }
sfosDroutingService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 19 }
sfosSSHdService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 20 }
sfosDgdService OBJECT-TYPE
SYNTAX ServiceStatsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGServiceStatus 21 }
-- SFOS-XG MIB.sfosXGHAStats
sfosHAStatus OBJECT-TYPE
SYNTAX HaStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { sfosXGHAStats 1 }
sfosDeviceCurrentAppKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Appliance Key of current Device"
::= { sfosXGHAStats 2 }
sfosDevicePeerAppKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Appliance Key of peer Device"
::= { sfosXGHAStats 3 }
sfosDeviceCurrentHAState OBJECT-TYPE
SYNTAX HaState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "HA State of current Device"
::= { sfosXGHAStats 4 }
sfosDevicePeerHAState OBJECT-TYPE
SYNTAX HaState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "HA State of peer Device"
::= { sfosXGHAStats 5 }
sfosDeviceHAConfigMode OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "HA State of peer Device"
::= { sfosXGHAStats 6 }
sfosDeviceLoadBalancing OBJECT-TYPE
SYNTAX LoadBalancingType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sfos device load device"
::= { sfosXGHAStats 7 }
sfosDeviceHAPort OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SFOS dedciated port for HA"
::= { sfosXGHAStats 8 }
sfosDeviceHACurrentIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IPAddress of current Device for HA"
::= { sfosXGHAStats 9 }
sfosDeviceHAPeerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Peer device IP Address"
::= { sfosXGHAStats 10 }
sfosDeviceHAMonitoringPort OBJECT IDENTIFIER ::= { sfosXGHAStats 11 }
-- sfosXGHAStats.sfosDeviceHAMonitoringPort
sfosDeviceAuxAdminPort OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SFOS Auxiliary Admin Port"
::= { sfosDeviceHAMonitoringPort 1 }
sfosDeviceHAAuxAdminIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SFOS Auxiliary Admin IP"
::= { sfosDeviceHAMonitoringPort 2 }
sfosDeviceHAAuxAdminIPv6 OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SFOS Auxiliary Admin IPv6"
::= { sfosDeviceHAMonitoringPort 3 }
-- SFOS-XG MIB.sfosXGLicenseDetails
sfosDeviceBaseFWLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 1 }
sfosDeviceNetProtecLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 2 }
sfosDeviceWebProtecLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 3 }
sfosDeviceMailProtecLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 4 }
sfosDeviceWebServerLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 5 }
sfosDeviceSandstromLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 6 }
sfosDeviceEnhancedSupportLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 7 }
sfosDeviceEnhancedPlusSupportLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 8 }
sfosDeviceCentralOrchestrationLic OBJECT IDENTIFIER ::= { sfosXGLicenseDetails 9 }
-- sfosXGLicenseDetails.sfosDeviceBaseFWLic
sfosBaseFWLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Base Firewall protection Lic status"
::= { sfosDeviceBaseFWLic 1 }
sfosBaseFWLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Base Firewall protection Lic expiry date"
::= { sfosDeviceBaseFWLic 2 }
-- sfosXGLicenseDetails.sfosDeviceNetProtecLic
sfosNetProtectionLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Network Protection registration Lic status"
::= { sfosDeviceNetProtecLic 1 }
sfosNetProtectionLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Network Protection Lic Expiry Date"
::= { sfosDeviceNetProtecLic 2 }
-- sfosXGLicenseDetails.sfosDeviceWebProtecLic
sfosWebProtectionLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Web Protection registration Lic status"
::= { sfosDeviceWebProtecLic 1 }
sfosWebProtectionLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Web Protection Lic Expiry Date"
::= { sfosDeviceWebProtecLic 2 }
-- sfosXGLicenseDetails.sfosDeviceMailProtecLic
sfosMailProtectionLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "EMail Protection Lic Status"
::= { sfosDeviceMailProtecLic 1 }
sfosMailProtectionLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "EMail Protection Lic Expiry Date"
::= { sfosDeviceMailProtecLic 2 }
-- sfosXGLicenseDetails.sfosDeviceWebServerLic
sfosWebServerProtectionLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "web server Protection Lic status"
::= { sfosDeviceWebServerLic 1 }
sfosWebServerProtectionLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "web server Protection Lic Expiry Date"
::= { sfosDeviceWebServerLic 2 }
-- sfosXGLicenseDetails.sfosDeviceSandstromLic
sfosSandstromLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sandstrom Protection Lic status"
::= { sfosDeviceSandstromLic 1 }
sfosSandstromLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "sandstrom Protection Lic Expiry Date"
::= { sfosDeviceSandstromLic 2 }
-- sfosXGLicenseDetails.sfosDeviceEnhancedSupportLic
sfosEnhancedSupportLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Enhanced Support Lic Status"
::= { sfosDeviceEnhancedSupportLic 1 }
sfosEnhancedSupportLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Enhanced Support Lic expiry date"
::= { sfosDeviceEnhancedSupportLic 2 }
-- sfosXGLicenseDetails.sfosDeviceEnhancedPlusSupportLic
sfosEnhancedPlusLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Enhanced Plus Support Lic Status"
::= { sfosDeviceEnhancedPlusSupportLic 1 }
sfosEnhancedPlusLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Enhanced Plus Support Lic expiry date"
::= { sfosDeviceEnhancedPlusSupportLic 2 }
-- sfosXGLicenseDetails.sfosDeviceCentralOrchestrationLic
sfosCentralOrchestrationLicRegStatus OBJECT-TYPE
SYNTAX SubscriptionStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Central Orchestration registration Lic Status"
::= { sfosDeviceCentralOrchestrationLic 1 }
sfosCentralOrchestrationLicExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Central Orchestration Lic expiry date"
::= { sfosDeviceCentralOrchestrationLic 2 }
-- SFOS-XG MIB.sfosXGTunnelInfo
sfosVPNInfo OBJECT IDENTIFIER ::= { sfosXGTunnelInfo 1 }
sfosIPSecVPNConnInfo OBJECT IDENTIFIER ::= { sfosVPNInfo 1 }
sfosIPSecVPNPolicyInfo OBJECT IDENTIFIER ::= { sfosVPNInfo 2 }
-- sfosVPNInfo.sfosIPSecVPNConnInfo
sfosIPSecVpnTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfosIPSecVpnTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPSec Tunnel information Table"
::= { sfosIPSecVPNConnInfo 1 }
sfosIPSecVpnTunnelEntry OBJECT-TYPE
SYNTAX SfosIPSecVpnTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPSec Tunnel information Table Entry"
INDEX { sfosIPSecVpnConnId }
::= { sfosIPSecVpnTunnelTable 1 }
SfosIPSecVpnTunnelEntry ::= SEQUENCE {
sfosIPSecVpnConnId Integer32,
sfosIPSecVpnConnName DisplayString,
sfosIPSecVpnConnDes DisplayString,
sfosIPSecVpnPolicyName DisplayString,
sfosIPSecVpnConnMode DisplayString,
sfosIPSecVpnConnType IPSecVPNConnectionType,
sfosIPSecVpnLocalgwPort DisplayString,
sfosIPSecVpnActiveTunnel Integer32
}
sfosIPSecVpnConnId OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index value that uniquely identifies a VPN tunnel within the sfosIPSecVpnTunnelTable"
::= { sfosIPSecVpnTunnelEntry 1 }
sfosIPSecVpnConnName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection Name of the tunnel"
::= { sfosIPSecVpnTunnelEntry 2 }
sfosIPSecVpnConnDes OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Descriptive of the tunnel"
::= { sfosIPSecVpnTunnelEntry 3 }
sfosIPSecVpnPolicyName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Policy Name of IPSec tunnel"
::= { sfosIPSecVpnTunnelEntry 4 }
sfosIPSecVpnConnMode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection mode of IPSec tunnel"
::= { sfosIPSecVpnTunnelEntry 5 }
sfosIPSecVpnConnType OBJECT-TYPE
SYNTAX IPSecVPNConnectionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection Type of IPSec Tunnel"
::= { sfosIPSecVpnTunnelEntry 6 }
sfosIPSecVpnLocalgwPort OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port name which is used as local gateway for IPSec tunnel"
::= { sfosIPSecVpnTunnelEntry 7 }
sfosIPSecVpnActiveTunnel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of active tunnel"
::= { sfosIPSecVpnTunnelEntry 8 }
-- sfosVPNInfo.sfosIPSecVPNPolicyInfo
sfosIPSecVpnPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfosIPSecVpnPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPSec Tunnel information Table"
::= { sfosIPSecVPNPolicyInfo 1 }
sfosIPSecVpnPolicyEntry OBJECT-TYPE
SYNTAX SfosIPSecVpnPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPSec Policy information Table Entry"
INDEX { sfosIPSecVpnPolicyId }
::= { sfosIPSecVpnPolicyTable 1 }
SfosIPSecVpnPolicyEntry ::= SEQUENCE {
sfosIPSecVpnPolicyId Integer32,
sfosIPSecVpnPolicyName DisplayString,
sfosIPSecVpnPolicyKeyLife Integer32,
sfosIPSecVpnPolicyKeyMargin Integer32,
sfosIPSecVpnPolicyEncAlgo1 DisplayString,
sfosIPSecVpnPolicyAuthAlgo1 DisplayString,
sfosIPSecVpnPolicyEncAlgo2 DisplayString,
sfosIPSecVpnPolicyAuthAlgo2 DisplayString,
sfosIPSecVpnPolicyEncAlgo3 DisplayString,
sfosIPSecVpnPolicyAuthAlgo3 DisplayString,
sfosIPSecVpnPolicyKeyExchangeType DisplayString
}
sfosIPSecVpnPolicyId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Policy ID of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 1 }
sfosIPSecVpnPolicyName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Policy Name of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 2 }
sfosIPSecVpnPolicyKeyLife OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Key Life time of IPSec VPN Policy"
::= { sfosIPSecVpnPolicyEntry 3 }
sfosIPSecVpnPolicyKeyMargin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ReKey margin of IPSec VPN Policy"
::= { sfosIPSecVpnPolicyEntry 4 }
sfosIPSecVpnPolicyEncAlgo1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enc Algo Type 1 of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 5 }
sfosIPSecVpnPolicyAuthAlgo1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Auth Algo Type 1 of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 6 }
sfosIPSecVpnPolicyEncAlgo2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enc Algo type 1 of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 7 }
sfosIPSecVpnPolicyAuthAlgo2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Auth Algo type 2 of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 8 }
sfosIPSecVpnPolicyEncAlgo3 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enc Algo type 3 of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 9 }
sfosIPSecVpnPolicyAuthAlgo3 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Auth Algo type 3 of IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 10 }
sfosIPSecVpnPolicyKeyExchangeType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Key Exchange type IPSec Policy"
::= { sfosIPSecVpnPolicyEntry 11 }
-- SFOS-XG MIB.sfosXGWiFiInfo
sfosDeviceAPTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfosDeviceAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of objects that contain AP details"
::= { sfosXGWiFiInfo 1 }
sfosDeviceAPEntry OBJECT-TYPE
SYNTAX SfosDeviceAPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry of objects that contain AP details"
INDEX { sfosDeviceAPName }
::= { sfosDeviceAPTable 1 }
SfosDeviceAPEntry ::= SEQUENCE {
sfosDeviceAPName DisplayString,
sfosDeviceAPModel DisplayString,
sfosDeviceAPIPAddress IpAddress,
sfosDeviceAPMacAddress PhysAddress,
sfosDeviceAPStatus APStatusType,
sfosDeviceAPClientCount Integer32
}
sfosDeviceAPName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Device Name of AP"
::= { sfosDeviceAPEntry 1 }
sfosDeviceAPModel OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Model Name of AP"
::= { sfosDeviceAPEntry 2 }
sfosDeviceAPIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IP Address of AP"
::= { sfosDeviceAPEntry 3 }
sfosDeviceAPMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MAC address of AP"
::= { sfosDeviceAPEntry 4 }
sfosDeviceAPStatus OBJECT-TYPE
SYNTAX APStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of AP(up/down)"
::= { sfosDeviceAPEntry 5 }
sfosDeviceAPClientCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of client connected to AP"
::= { sfosDeviceAPEntry 6 }
sfosDeviceAPClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfosDeviceAPClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of objects that contain AP client details"
::= { sfosXGWiFiInfo 2 }
sfosDeviceAPClientEntry OBJECT-TYPE
SYNTAX SfosDeviceAPClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry of objects that contain AP client details"
INDEX { clientIndex }
::= { sfosDeviceAPClientTable 1 }
SfosDeviceAPClientEntry ::= SEQUENCE {
clientIndex Integer32,
clientName DisplayString,
clientIPAddType InetAddressType,
clientIPAdd InetAddress,
clientMacAdd MacAddress,
clientChannel DisplayString,
clientSSID DisplayString
}
clientIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of AP client"
::= { sfosDeviceAPClientEntry 1 }
clientName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name of AP client"
::= { sfosDeviceAPClientEntry 2 }
clientIPAddType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IP Address of AP client"
::= { sfosDeviceAPClientEntry 3 }
clientIPAdd OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IP Address of AP client"
::= { sfosDeviceAPClientEntry 4 }
clientMacAdd OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MAC Address of AP client"
::= { sfosDeviceAPClientEntry 5 }
clientChannel OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name of the channel to which AP client is connected"
::= { sfosDeviceAPClientEntry 6 }
clientSSID OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name of SSID to which AP client is connected"
::= { sfosDeviceAPClientEntry 7 }
-- SFOS-XG MIB.sfosXGTrap
sfosNotificationAlerts OBJECT IDENTIFIER ::= { sfosXGTrap 1 }
-- sfosXGTrap.sfosNotificationAlerts
sfosTrapMessage OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Trap raw log line "
::= { sfosNotificationAlerts 2 }
sfosNotification NOTIFICATION-TYPE
OBJECTS { sfosDeviceType, sfosDeviceFWVersion, sfosDeviceAppKey, sfosDeviceName, sfosCurrentDate, sfosTrapMessage}
STATUS current
DESCRIPTION "Trap for SFOS events for Notification"
::= { sfosNotificationAlerts 1 }
-- conformance information
sfosXGMIBConformance OBJECT IDENTIFIER ::= {sfosXGMIB 2}
sfosXGMIBCompliances OBJECT IDENTIFIER ::= {sfosXGMIBConformance 1}
sfosXGMIBGroups OBJECT IDENTIFIER ::= {sfosXGMIBConformance 2}
-- compliance statements
sfosBasicCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for SNMP entities which implement this MIB module."
MODULE -- this module
MANDATORY-GROUPS { sfosDeviceStatusGroup, sfosDeviceStatsGroup, sfosServiceStatusGroup,
sfosLicInfoGroup, sfosHAStatusGroup, sfosIPSecInfoGroup,
sfosWiFiInfoGroup, sfosTrapInfoGroup }
::= { sfosXGMIBCompliances 1 }
-- units of conformance
sfosDeviceStatusGroup OBJECT-GROUP
OBJECTS {
sfosDeviceName,
sfosDeviceType,
sfosDeviceFWVersion,
sfosDeviceAppKey,
sfosWebcatVersion,
sfosIPSVersion }
STATUS current
DESCRIPTION "A collection of objects providing SFOS Device Status"
::= { sfosXGMIBGroups 1 }
sfosDeviceStatsGroup OBJECT-GROUP
OBJECTS {
sfosCurrentDate,
sfosUpTime,
sfosLiveUsersCount,
sfosHTTPHits,
sfosFTPHits,
sfosDiskCapacity,
sfosDiskPercentUsage,
sfosMemoryCapacity,
sfosMemoryPercentUsage,
sfosSwapCapacity,
sfosSwapPercentUsage,
sfosPOP3Hits,
sfosImapHits,
sfosSmtpHits }
STATUS current
DESCRIPTION "A collection of objects providing SFOS Device Stats"
::= { sfosXGMIBGroups 2 }
sfosServiceStatusGroup OBJECT-GROUP
OBJECTS {
sfosPoP3Service,
sfosImap4Service,
sfosSmtpService,
sfosFtpService,
sfosHttpService,
sfosAVService,
sfosASService,
sfosDNSService,
sfosHAService,
sfosIPSService,
sfosApacheService,
sfosNtpService,
sfosTomcatService,
sfosSSLVpnService,
sfosIPSecVpnService,
sfosDatabaseservice,
sfosNetworkService,
sfosGarnerService,
sfosDroutingService,
sfosSSHdService,
sfosDgdService }
STATUS current
DESCRIPTION "A collection of objects providing SFOS service status info"
::= { sfosXGMIBGroups 3 }
sfosHAStatusGroup OBJECT-GROUP
OBJECTS {
sfosHAStatus,
sfosDeviceCurrentAppKey,
sfosDevicePeerAppKey,
sfosDeviceCurrentHAState,
sfosDevicePeerHAState,
sfosDeviceHAConfigMode,
sfosDeviceLoadBalancing,
sfosDeviceHAPort,
sfosDeviceHACurrentIP,
sfosDeviceHAPeerIP,
sfosDeviceAuxAdminPort,
sfosDeviceHAAuxAdminIP,
sfosDeviceHAAuxAdminIPv6 }
STATUS current
DESCRIPTION "A collection of objects providing SFOS HA info"
::= { sfosXGMIBGroups 4 }
sfosLicInfoGroup OBJECT-GROUP
OBJECTS {
sfosBaseFWLicRegStatus,
sfosBaseFWLicExpiryDate,
sfosNetProtectionLicRegStatus,
sfosNetProtectionLicExpiryDate,
sfosWebProtectionLicRegStatus,
sfosWebProtectionLicExpiryDate,
sfosMailProtectionLicRegStatus,
sfosMailProtectionLicExpiryDate,
sfosWebServerProtectionLicRegStatus,
sfosWebServerProtectionLicExpiryDate,
sfosSandstromLicRegStatus,
sfosSandstromLicExpiryDate,
sfosEnhancedSupportLicRegStatus,
sfosEnhancedSupportLicExpiryDate,
sfosEnhancedPlusLicRegStatus,
sfosEnhancedPlusLicExpiryDate,
sfosCentralOrchestrationLicRegStatus,
sfosCentralOrchestrationLicExpiryDate }
STATUS current
DESCRIPTION "A collection of objects providing SFOS License info"
::= { sfosXGMIBGroups 5 }
sfosIPSecInfoGroup OBJECT-GROUP
OBJECTS {
sfosIPSecVpnConnId,
sfosIPSecVpnConnName,
sfosIPSecVpnConnDes,
sfosIPSecVpnPolicyName,
sfosIPSecVpnConnMode,
sfosIPSecVpnConnType,
sfosIPSecVpnLocalgwPort,
sfosIPSecVpnActiveTunnel,
sfosIPSecVpnPolicyId,
sfosIPSecVpnPolicyName,
sfosIPSecVpnPolicyKeyLife,
sfosIPSecVpnPolicyKeyMargin,
sfosIPSecVpnPolicyEncAlgo1,
sfosIPSecVpnPolicyAuthAlgo1,
sfosIPSecVpnPolicyEncAlgo2,
sfosIPSecVpnPolicyAuthAlgo2,
sfosIPSecVpnPolicyEncAlgo3,
sfosIPSecVpnPolicyAuthAlgo3,
sfosIPSecVpnPolicyKeyExchangeType }
STATUS current
DESCRIPTION "A collection of objects providing SFOS IPSec VPN Status"
::= { sfosXGMIBGroups 6 }
sfosWiFiInfoGroup OBJECT-GROUP
OBJECTS {
sfosDeviceAPName,
sfosDeviceAPModel,
sfosDeviceAPIPAddress,
sfosDeviceAPMacAddress,
sfosDeviceAPStatus,
sfosDeviceAPClientCount,
clientName,
clientIPAddType,
clientIPAdd,
clientMacAdd,
clientChannel,
clientSSID }
STATUS current
DESCRIPTION "A collection of objects providing SFOS WiFi module Info"
::= { sfosXGMIBGroups 7 }
sfosTrapInfoGroup NOTIFICATION-GROUP
NOTIFICATIONS {
sfosNotification }
STATUS current
DESCRIPTION "A collection of objects providing SFOS Trap Info"
::= { sfosXGMIBGroups 8 }
END
|