mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Add support for Forcepoint NGFW 6.10 and older (#15632)
* Add support for Forcepoint NGFW 6.10 and older * Update forcepoint_forcepoint-ngfw-330.json * Proc. discovery fix --------- Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com>
This commit is contained in:
BIN
html/images/logos/forcepoint.png
Normal file
BIN
html/images/logos/forcepoint.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
BIN
html/images/os/forcepoint.png
Normal file
BIN
html/images/os/forcepoint.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 740 B |
20
includes/definitions/discovery/forcepoint.yaml
Normal file
20
includes/definitions/discovery/forcepoint.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
mib: STONESOFT-SMI-MIB:STONESOFT-FIREWALL-MIB:STONESOFT-NETNODE-MIB
|
||||
modules:
|
||||
mempools:
|
||||
data:
|
||||
-
|
||||
total: STONESOFT-FIREWALL-MIB::fwMemBytesTotal
|
||||
free: STONESOFT-FIREWALL-MIB::fwMemBytesUnused
|
||||
used: STONESOFT-FIREWALL-MIB::fwMemBytesUsed
|
||||
descr: 'Local Memory {{ $index }}'
|
||||
processors:
|
||||
data:
|
||||
-
|
||||
oid: STONESOFT-FIREWALL-MIB::fwCpuTotal
|
||||
num_oid: '.1.3.6.1.4.1.1369.5.2.1.11.1.1.3.{{ $index }}'
|
||||
descr: 'Processor {{ $index }}'
|
||||
os:
|
||||
serial: STONESOFT-NETNODE-MIB::nodePosCode.0
|
||||
version: STONESOFT-SMI-MIB::stonesoftFirewall.1.1.0
|
||||
version_regex: '/Forcepoint NGFW version (?<version>[0-9\.]+)/'
|
||||
hardware: STONESOFT-NETNODE-MIB::nodeApplianceModel.0
|
13
includes/definitions/forcepoint.yaml
Normal file
13
includes/definitions/forcepoint.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
os: forcepoint
|
||||
text: 'Forcepoint NGFW'
|
||||
type: firewall
|
||||
icon: forcepoint
|
||||
over:
|
||||
- { graph: device_bits, text: 'Device Traffic' }
|
||||
- { graph: device_processor, text: 'CPU Usage' }
|
||||
|
||||
discovery:
|
||||
- sysObjectID:
|
||||
- .1.3.6.1.4.1.1369.5.2
|
||||
|
||||
mib_dir: forcepoint
|
25
includes/discovery/storage/forcepoint.inc.php
Normal file
25
includes/discovery/storage/forcepoint.inc.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/*
|
||||
* This is called from LibreNMS/Modules/LegacyModule.php
|
||||
*/
|
||||
|
||||
if ((isset($device)) && ($device['os'] == 'forcepoint')) {
|
||||
$forcepoint_fs=snmpwalk_cache_oid($device, 'fwDiskStatsTable', [], 'STONESOFT-FIREWALL-MIB');
|
||||
|
||||
if (is_array($forcepoint_fs)) {
|
||||
foreach ($forcepoint_fs as $i => $partition) {
|
||||
echo 'Forcepoint filesystem ';
|
||||
discover_storage($valid_storage,
|
||||
$device,
|
||||
$i, 'fs',
|
||||
'forcepoint',
|
||||
$partition['fwMountPointName'],
|
||||
$partition['fwPartitionSize']*1024,
|
||||
1,
|
||||
$partition['fwPartitionUsed']*1024);
|
||||
}
|
||||
} else {
|
||||
print 'fwDiskStatsTable did not return an array.' . PHP_EOL;
|
||||
}
|
||||
unset($forcepoint_fs,$partition,$i);
|
||||
}
|
16
includes/polling/storage/forcepoint.inc.php
Normal file
16
includes/polling/storage/forcepoint.inc.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/*
|
||||
* Called from includes/polling/storage.inc.php
|
||||
*/
|
||||
|
||||
if (isset($storage) and isset($device)) {
|
||||
$oids = array('fwPartitionSize.' . $storage['storage_index'], 'fwPartitionAvail.' . $storage['storage_index'], 'fwPartitionUsed.' . $storage['storage_index']);
|
||||
$allEntries = snmp_get_multi($device, $oids, '-OQUs', 'STONESOFT-FIREWALL-MIB');
|
||||
$entry = array_shift($allEntries);
|
||||
$storage['size'] = $entry['fwPartitionSize']*1024;
|
||||
$storage['free'] = $entry['fwPartitionAvail']*1024;
|
||||
$storage['used'] = $entry['fwPartitionUsed']*1024;
|
||||
$storage['units'] = 1;
|
||||
|
||||
unset ($oids, $allEntries, $entry);
|
||||
}
|
1015
mibs/forcepoint/STONESOFT-FIREWALL-MIB
Normal file
1015
mibs/forcepoint/STONESOFT-FIREWALL-MIB
Normal file
File diff suppressed because it is too large
Load Diff
405
mibs/forcepoint/STONESOFT-NETNODE-MIB
Normal file
405
mibs/forcepoint/STONESOFT-NETNODE-MIB
Normal file
@@ -0,0 +1,405 @@
|
||||
--
|
||||
-- Network node MIB for generic resources in any network node (host, gateway,
|
||||
-- server etc.)
|
||||
--
|
||||
|
||||
STONESOFT-NETNODE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
Unsigned32, Integer32, MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, TimeStamp, DateAndTime
|
||||
FROM SNMPv2-TC
|
||||
OBJECT-GROUP, NOTIFICATION-GROUP, MODULE-COMPLIANCE
|
||||
FROM SNMPv2-CONF
|
||||
stonesoftModules, stonesoftNetworkNode
|
||||
FROM STONESOFT-SMI-MIB;
|
||||
|
||||
stonesoftNetworkNodeMibModule MODULE-IDENTITY
|
||||
LAST-UPDATED "201605060000Z"
|
||||
ORGANIZATION "Forcepoint LLC"
|
||||
CONTACT-INFO "email: mib.stonesoft@forcepoint.com"
|
||||
DESCRIPTION "MIB for generic network nodes"
|
||||
|
||||
REVISION "201605060000Z"
|
||||
DESCRIPTION "Company information update"
|
||||
|
||||
REVISION "201510290000Z"
|
||||
DESCRIPTION "Policy upload date added to nodePolicyApplyTime"
|
||||
|
||||
REVISION "201510150000Z"
|
||||
DESCRIPTION "Added last login date to nodeLoginTime"
|
||||
|
||||
REVISION "201403100000Z"
|
||||
DESCRIPTION "Added appliance identification objects"
|
||||
|
||||
REVISION "200802040000Z"
|
||||
DESCRIPTION "Added hardware monitoring objects"
|
||||
|
||||
|
||||
REVISION "200406160000Z"
|
||||
DESCRIPTION "First public revision"
|
||||
::= { stonesoftModules 4 }
|
||||
|
||||
netNodeObjects OBJECT IDENTIFIER ::= { stonesoftNetworkNode 1 }
|
||||
netNodeEvents OBJECT IDENTIFIER ::= { stonesoftNetworkNode 2 }
|
||||
netNodeEventsV2 OBJECT IDENTIFIER ::= { netNodeEvents 0 }
|
||||
netNodeConformance OBJECT IDENTIFIER ::= {stonesoftNetworkNode 3 }
|
||||
|
||||
--
|
||||
-- Network node objects, e.g. identifications, state, load
|
||||
|
||||
nodeClusterId OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..65535)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The identification number of the cluster
|
||||
this node belongs to"
|
||||
::= { netNodeObjects 1 }
|
||||
|
||||
|
||||
nodeMemberId OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..16)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Node's member identification within the cluster"
|
||||
::= { netNodeObjects 2 }
|
||||
|
||||
nodeOperState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
unknown(0),
|
||||
online(1),
|
||||
goingOnline(2),
|
||||
lockedOnline(3),
|
||||
goingLockedOnline(4),
|
||||
offline(5),
|
||||
goingOffline(6),
|
||||
lockedOffline(7),
|
||||
goingLockedOffline(8),
|
||||
standby(9),
|
||||
goingStandby(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The operative (clustering) state of the node"
|
||||
::= { netNodeObjects 3 }
|
||||
|
||||
nodeCPULoad OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..100)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The CPU load percentage on the node"
|
||||
::= { netNodeObjects 4 }
|
||||
|
||||
nodeLastLogin OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The most recent login event on the node"
|
||||
::= { netNodeObjects 5 }
|
||||
|
||||
nodeLastLoginTime OBJECT-TYPE
|
||||
SYNTAX TimeStamp
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Timestamp of the most recent login event on the node"
|
||||
::= { netNodeObjects 6 }
|
||||
|
||||
nodeHwmonEvent OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Reason for the hardware monitoring event"
|
||||
::= { netNodeObjects 8 }
|
||||
|
||||
nodeApplianceModel OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Appliance model name"
|
||||
::= { netNodeObjects 9 }
|
||||
|
||||
nodeSerialNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Appliance serial number"
|
||||
::= { netNodeObjects 10 }
|
||||
|
||||
nodePosCode OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Appliance POS code"
|
||||
::= { netNodeObjects 11 }
|
||||
|
||||
nodeLoginTime OBJECT-TYPE
|
||||
SYNTAX DateAndTime
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The most recent login event on the node"
|
||||
::= { netNodeObjects 12 }
|
||||
|
||||
nodePolicyApplyTime OBJECT-TYPE
|
||||
SYNTAX DateAndTime
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The time when the security policy was installed to the node"
|
||||
::= { netNodeObjects 13 }
|
||||
|
||||
--
|
||||
-- Tester objects
|
||||
|
||||
nodeTestTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF NodeTestEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains an entry for each
|
||||
test instance that was
|
||||
configured to send a trap on test failure"
|
||||
|
||||
::= { netNodeObjects 7 }
|
||||
|
||||
|
||||
nodeTestEntry OBJECT-TYPE
|
||||
SYNTAX NodeTestEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Row for a test instance"
|
||||
INDEX { nodeTestIndex }
|
||||
::= { nodeTestTable 1 }
|
||||
|
||||
|
||||
NodeTestEntry ::= SEQUENCE {
|
||||
nodeTestIndex Unsigned32,
|
||||
nodeTestIdentity DisplayString,
|
||||
nodeTestResult INTEGER,
|
||||
nodeTestResultTime TimeStamp
|
||||
}
|
||||
|
||||
nodeTestIndex OBJECT-TYPE
|
||||
SYNTAX Unsigned32(1..65535)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Unique positive integer index
|
||||
of the nodeTest instance"
|
||||
::= { nodeTestEntry 1 }
|
||||
|
||||
nodeTestIdentity OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Identification string of a nodeTest"
|
||||
::= { nodeTestEntry 2 }
|
||||
|
||||
|
||||
nodeTestResult OBJECT-TYPE
|
||||
SYNTAX INTEGER {success(1), failure(2)}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "The most recent result of the
|
||||
nodeTest"
|
||||
::= { nodeTestEntry 3 }
|
||||
|
||||
nodeTestResultTime OBJECT-TYPE
|
||||
SYNTAX TimeStamp
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "The timestamp of the most recent
|
||||
result of the nodeTest"
|
||||
::= { nodeTestEntry 4 }
|
||||
|
||||
--
|
||||
-- Network node events
|
||||
|
||||
nodeOnline NOTIFICATION-TYPE
|
||||
OBJECTS { nodeOperState }
|
||||
STATUS current
|
||||
DESCRIPTION "A node has gone to an online state"
|
||||
::= { netNodeEventsV2 1 }
|
||||
|
||||
|
||||
nodeOffline NOTIFICATION-TYPE
|
||||
OBJECTS { nodeOperState }
|
||||
STATUS current
|
||||
DESCRIPTION "A node has gone to an offline
|
||||
or standby state"
|
||||
::= { netNodeEventsV2 2 }
|
||||
|
||||
nodeBoot NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION "A node has booted up"
|
||||
::= { netNodeEventsV2 3 }
|
||||
|
||||
nodeShutdown NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION "A node is shutting down"
|
||||
::= { netNodeEventsV2 4 }
|
||||
|
||||
nodeUserLogin NOTIFICATION-TYPE
|
||||
OBJECTS { nodeLastLogin }
|
||||
STATUS current
|
||||
DESCRIPTION "A user has started a login session"
|
||||
::= { netNodeEventsV2 5 }
|
||||
|
||||
nodeFailedUserLogin NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION "Failed user login"
|
||||
::= { netNodeEventsV2 8 }
|
||||
|
||||
nodeUserLogout NOTIFICATION-TYPE
|
||||
STATUS current
|
||||
DESCRIPTION "A user has finished session"
|
||||
::= { netNodeEventsV2 9 }
|
||||
|
||||
nodeTestFailure NOTIFICATION-TYPE
|
||||
OBJECTS { nodeTestIdentity }
|
||||
STATUS current
|
||||
DESCRIPTION "NodeTest has failed"
|
||||
::= { netNodeEventsV2 6 }
|
||||
|
||||
|
||||
nodeHwmon NOTIFICATION-TYPE
|
||||
OBJECTS { nodeHwmonEvent }
|
||||
STATUS current
|
||||
DESCRIPTION "Hardware monitoring system has detected problems"
|
||||
::= { netNodeEventsV2 7 }
|
||||
|
||||
|
||||
-- Conformance information
|
||||
|
||||
netNodeGroups OBJECT IDENTIFIER ::= { netNodeConformance 1 }
|
||||
netNodeCompliances OBJECT IDENTIFIER ::= { netNodeConformance 2 }
|
||||
|
||||
nodeCompliance1 MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for network nodes"
|
||||
MODULE -- this module --
|
||||
MANDATORY-GROUPS { nodeStatusGroup,
|
||||
nodeStatusNotificationsGroup }
|
||||
|
||||
GROUP nodeIdentificationGroup
|
||||
DESCRIPTION
|
||||
"This group is mandatory for nodes that are part of a cluster"
|
||||
|
||||
GROUP nodeLoginGroup
|
||||
DESCRIPTION
|
||||
"This group should be implemented by the nodes that
|
||||
allow user logins"
|
||||
|
||||
GROUP nodeLoginNotificationsGroup
|
||||
DESCRIPTION
|
||||
"This group should be implemented by the nodes that
|
||||
allow user logins"
|
||||
|
||||
GROUP nodeTesterGroup
|
||||
DESCRIPTION
|
||||
"This group should be implemented by the nodes that
|
||||
have a tester subsystem"
|
||||
|
||||
GROUP nodeTesterNotificationsGroup
|
||||
DESCRIPTION
|
||||
"This group should be implemented by the nodes that
|
||||
have a tester subsystem"
|
||||
|
||||
GROUP nodeHwmonGroup
|
||||
DESCRIPTION
|
||||
"This group should be implemented by the nodes that
|
||||
have a hardware monitoring subsystem"
|
||||
|
||||
|
||||
GROUP nodeHwmonNotificationsGroup
|
||||
DESCRIPTION
|
||||
"This group should be implemented by the nodes that
|
||||
have a hardware monitoring subsystem"
|
||||
|
||||
::= { netNodeCompliances 1 }
|
||||
|
||||
|
||||
|
||||
nodeIdentificationGroup OBJECT-GROUP
|
||||
OBJECTS { nodeClusterId, nodeMemberId, nodeApplianceModel, nodeSerialNumber, nodePosCode }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects identifying the node in a cluster"
|
||||
::= { netNodeGroups 1 }
|
||||
|
||||
nodeStatusGroup OBJECT-GROUP
|
||||
OBJECTS { nodeOperState, nodeCPULoad, nodePolicyApplyTime }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects giving information about
|
||||
the status of the node"
|
||||
::= { netNodeGroups 2 }
|
||||
|
||||
nodeLoginGroup OBJECT-GROUP
|
||||
OBJECTS { nodeLastLogin, nodeLastLoginTime, nodeLoginTime }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects giving information about logins
|
||||
into the node"
|
||||
::= { netNodeGroups 3 }
|
||||
|
||||
nodeTesterGroup OBJECT-GROUP
|
||||
OBJECTS { nodeTestIdentity, nodeTestResult, nodeTestResultTime }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects giving information about the tests
|
||||
in the test subsystem of the node"
|
||||
::= { netNodeGroups 4 }
|
||||
|
||||
nodeHwmonGroup OBJECT-GROUP
|
||||
OBJECTS { nodeHwmonEvent }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects giving information about
|
||||
hardware monitoring events in the node"
|
||||
::= { netNodeGroups 8 }
|
||||
|
||||
nodeStatusNotificationsGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS { nodeOnline, nodeOffline, nodeBoot, nodeShutdown }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of notifications informing about changes
|
||||
in a node's status"
|
||||
::= { netNodeGroups 5 }
|
||||
|
||||
nodeLoginNotificationsGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS { nodeUserLogin, nodeFailedUserLogin, nodeUserLogout }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of notifications informing about user logins"
|
||||
::= { netNodeGroups 6 }
|
||||
|
||||
nodeTesterNotificationsGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS { nodeTestFailure }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of notifications informing about test failures"
|
||||
::= { netNodeGroups 7 }
|
||||
|
||||
|
||||
nodeHwmonNotificationsGroup NOTIFICATION-GROUP
|
||||
NOTIFICATIONS { nodeHwmon }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of notifications informing about
|
||||
hardware monitoring issues"
|
||||
::= { netNodeGroups 9 }
|
||||
|
||||
END
|
||||
|
60
mibs/forcepoint/STONESOFT-SMI-MIB
Normal file
60
mibs/forcepoint/STONESOFT-SMI-MIB
Normal file
@@ -0,0 +1,60 @@
|
||||
--
|
||||
-- Structure of Management Information (SMI) MIB for Forcepoint LLC.
|
||||
--
|
||||
-- This MIB contains the top level registrations for Forcepoint's MIBs
|
||||
--
|
||||
|
||||
STONESOFT-SMI-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises, MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
stonesoftSmiMibModule MODULE-IDENTITY
|
||||
LAST-UPDATED "201808090000Z"
|
||||
ORGANIZATION "Forcepoint LLC"
|
||||
CONTACT-INFO "email: mib.stonesoft@forcepoint.com"
|
||||
DESCRIPTION "Top level enterprise MIB for Forcepoint NGFW"
|
||||
REVISION "201808090000Z"
|
||||
DESCRIPTION "Add registration for stonesoftLogForwarding"
|
||||
REVISION "201706190000Z"
|
||||
DESCRIPTION "Description update"
|
||||
REVISION "201605060000Z"
|
||||
DESCRIPTION "Company information update"
|
||||
REVISION "200406160000Z"
|
||||
DESCRIPTION "First public revision"
|
||||
::= { stonesoftModules 2 }
|
||||
|
||||
-- The enterprise identifier registered for Forcepoint LLC.
|
||||
stonesoft OBJECT IDENTIFIER ::= { enterprises 1369 }
|
||||
|
||||
-- Top level registrations for Forcepoint. The old SBFC-MIB reserves
|
||||
-- stonesoft 1 and 2.
|
||||
|
||||
-- sub-tree for module registrations
|
||||
stonesoftModules OBJECT IDENTIFIER ::= { stonesoft 3 }
|
||||
|
||||
-- sub-tree for experiments
|
||||
stonesoftExperimental OBJECT IDENTIFIER ::= { stonesoft 4 }
|
||||
|
||||
-- sub-tree for products
|
||||
stonesoftProducts OBJECT IDENTIFIER ::= { stonesoft 5 }
|
||||
|
||||
-- sub-tree for company-wide objects and events
|
||||
stonesoftGeneric OBJECT IDENTIFIER ::= { stonesoft 6 }
|
||||
|
||||
|
||||
-- Product registrations
|
||||
stonesoftLoadBalancer OBJECT IDENTIFIER ::= { stonesoftProducts 1 }
|
||||
stonesoftFirewall OBJECT IDENTIFIER ::= { stonesoftProducts 2 }
|
||||
stonesoftVPN OBJECT IDENTIFIER ::= { stonesoftProducts 3 }
|
||||
stonesoftIDS OBJECT IDENTIFIER ::= { stonesoftProducts 4 }
|
||||
stonesoftIPS OBJECT IDENTIFIER ::= { stonesoftProducts 5 }
|
||||
|
||||
|
||||
-- Generic (product independent) resource registrations
|
||||
stonesoftNetworkNode OBJECT IDENTIFIER ::= { stonesoftGeneric 1 }
|
||||
stonesoftCluster OBJECT IDENTIFIER ::= { stonesoftGeneric 2 }
|
||||
stonesoftLogForwarding OBJECT IDENTIFIER ::= { stonesoftGeneric 3 }
|
||||
|
||||
END
|
2188
tests/data/forcepoint_forcepoint-ngfw-330.json
Normal file
2188
tests/data/forcepoint_forcepoint-ngfw-330.json
Normal file
File diff suppressed because it is too large
Load Diff
115
tests/snmpsim/forcepoint_forcepoint-ngfw-330.snmprec
Normal file
115
tests/snmpsim/forcepoint_forcepoint-ngfw-330.snmprec
Normal file
@@ -0,0 +1,115 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Forcepoint NGFW Firewall/VPN
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.1369.5.2
|
||||
1.3.6.1.2.1.1.4.0|4|<private>
|
||||
1.3.6.1.2.1.1.6.0|4|<private>
|
||||
1.3.6.1.2.1.2.2.1.2.1|4|lo
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|eth0
|
||||
1.3.6.1.2.1.2.2.1.2.3|4|eth1
|
||||
1.3.6.1.2.1.2.2.1.2.4|4|eth2
|
||||
1.3.6.1.2.1.2.2.1.2.5|4|eth3
|
||||
1.3.6.1.2.1.2.2.1.2.6|4|eth4
|
||||
1.3.6.1.2.1.2.2.1.2.7|4|eth5
|
||||
1.3.6.1.2.1.2.2.1.2.8|4|eth6
|
||||
1.3.6.1.2.1.2.2.1.2.9|4|eth7
|
||||
1.3.6.1.2.1.2.2.1.2.10|4|overlay
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|24
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.3|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.4|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.5|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.6|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.7|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.8|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.9|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.10|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|4
|
||||
1.3.6.1.2.1.2.2.1.8.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.3|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.4|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.5|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.6|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.7|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.8|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.9|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.10|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.1|2|14
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.2|2|25
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.3|2|5
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.4|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.5|2|16
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.6|2|15
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.7|2|17
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.8|2|13
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.9|2|19
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.0.10|2|20
|
||||
1.3.6.1.2.1.4.20.1.3.10.0.0.11|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.3.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.18.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.18.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.20.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.22.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.23.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.23.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|eth0
|
||||
1.3.6.1.2.1.31.1.1.1.1.3|4|eth1
|
||||
1.3.6.1.2.1.31.1.1.1.1.4|4|eth2
|
||||
1.3.6.1.2.1.31.1.1.1.1.5|4|eth3
|
||||
1.3.6.1.2.1.31.1.1.1.1.6|4|eth4
|
||||
1.3.6.1.2.1.31.1.1.1.1.7|4|eth5
|
||||
1.3.6.1.2.1.31.1.1.1.1.8|4|eth6
|
||||
1.3.6.1.2.1.31.1.1.1.1.9|4|eth7
|
||||
1.3.6.1.2.1.31.1.1.1.1.10|4|overlay
|
||||
1.3.6.1.2.1.31.1.1.1.18.1|4|lo
|
||||
1.3.6.1.2.1.31.1.1.1.18.2|4|eth0
|
||||
1.3.6.1.2.1.31.1.1.1.18.3|4|eth1
|
||||
1.3.6.1.2.1.31.1.1.1.18.4|4|eth2
|
||||
1.3.6.1.2.1.31.1.1.1.18.5|4|eth3
|
||||
1.3.6.1.2.1.31.1.1.1.18.6|4|eth4
|
||||
1.3.6.1.2.1.31.1.1.1.18.7|4|eth5
|
||||
1.3.6.1.2.1.31.1.1.1.18.8|4|eth6
|
||||
1.3.6.1.2.1.31.1.1.1.18.9|4|eth7
|
||||
1.3.6.1.2.1.31.1.1.1.18.10|4|overlay
|
||||
1.3.6.1.4.1.1369.5.2.1.1.0|4|Forcepoint NGFW version 6.10.10.26506
|
||||
1.3.6.1.4.1.1369.5.2.1.11.1.1.3.1|66|20
|
||||
1.3.6.1.4.1.1369.5.2.1.11.1.1.3.2|66|17
|
||||
1.3.6.1.4.1.1369.5.2.1.11.1.1.3.3|66|23
|
||||
1.3.6.1.4.1.1369.5.2.1.11.2.4.0|70|4001021952
|
||||
1.3.6.1.4.1.1369.5.2.1.11.2.5.0|70|3589443584
|
||||
1.3.6.1.4.1.1369.5.2.1.11.2.6.0|70|411578368
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.2.1|4|/dev/sda5
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.2.2|4|/dev/sda8
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.2.3|4|/dev/sda9
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.3.1|4|/
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.3.2|4|/data
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.3.3|4|/spool
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.4.1|70|348416
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.4.2|70|1980080
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.4.3|70|9070020
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.5.1|70|348416
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.5.2|70|250032
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.5.3|70|3233464
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.6.1|70|0
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.6.2|70|1730048
|
||||
1.3.6.1.4.1.1369.5.2.1.11.3.1.6.3|70|5836556
|
||||
1.3.6.1.4.1.1369.6.1.1.9.0|4|330-2-C1
|
||||
1.3.6.1.4.1.1369.6.1.1.11.0|4|aaaaaaaaaa-bbbbbbbbbb
|
Reference in New Issue
Block a user