mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
22 lines
786 B
Python
22 lines
786 B
Python
BUNDLES = [
|
|
'//providers/snmp/device:onos-providers-snmp-device',
|
|
'//providers/snmp/alarm:onos-providers-snmp-alarm',
|
|
'//protocols/snmp/api:onos-protocols-snmp-api',
|
|
'//protocols/snmp/ctl:onos-protocols-snmp-ctl',
|
|
'//lib:org.apache.servicemix.bundles.snmp4j',
|
|
'//lib:mibs-rfc',
|
|
'//lib:snmp-core',
|
|
'//lib:mibs-net-snmp',
|
|
]
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.snmp',
|
|
title = 'SNMP Provider',
|
|
category = 'Provider',
|
|
url = 'https://wiki.onosproject.org/display/ONOS/SNMP',
|
|
included_bundles = BUNDLES,
|
|
description = 'Provides means for ONOS to discover and trigger the initial handshake procedure ' +
|
|
'with SNMP enabled devices from information given by network configuration.',
|
|
required_apps = [ 'org.onosproject.faultmanagement'],
|
|
)
|