Compare commits

...

3 Commits

3 changed files with 59 additions and 1 deletions

4
.gitignore vendored
View File

@ -136,6 +136,9 @@ venv/
ENV/
env.bak/
venv.bak/
bin/
lib64
pyvenv.cfg
# Spyder project settings
.spyderproject
@ -168,3 +171,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

View File

@ -1,7 +1,14 @@
MIT License
MIT License (Expat)
Copyright (c) 2025 AntoineVe
La présente autorise, de façon libre et gratuite, à toute personne obtenant une copie de ce programme et des fichiers de documentation associés (le "Programme"), de distribuer le Programme sans restriction, y compris sans limitation des droits d'utiliser, copier, modifier, fusionner, publier, distribuer, sous-autoriser ou vendre des copies du Programme, et de permettre aux personnes à qui le Programme est fourni d'en faire autant, aux conditions suivantes.
Le copyright précédent et cette autorisation doivent être distribués dans toute copie entière ou substantielle de ce Programme.
Le Programme est fourni en l'état, sans garantie d'aucune sorte, explicite ou implicite, y compris les garanties de commercialisation ou d'adaptation dans un but particulier et l'absence de contrefaçon. En aucun cas les auteurs ou ayants droit ne seront tenus responsables de réclamations, dommages ou autres, que ce soit dans une action de nature contractuelle, préjudiciable ou autres façons, découlant de, hors ou en connexion avec le Programme ou l'utilisation ou autres modifications du Programme.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

47
snmp2mqtt.py Normal file
View File

@ -0,0 +1,47 @@
#!/bin/env python3
import asyncio
from pysnmp.hlapi.asyncio.slim import Slim
from pysnmp.smi.rfc1902 import ObjectIdentity, ObjectType
import logging
logging.basicConfig(
format='(%(levelname)s) %(message)s',
level=logging.DEBUG
)
async def run(req):
for oid in req["oids"]:
with Slim(1) as slim:
errorIndication, errorStatus, errorIndex, varBinds = await slim.get(
req["snmp_community"],
req["ip"],
161,
ObjectType(ObjectIdentity(req["oids"][oid])),
)
if errorIndication:
logging.error(errorIndication)
elif errorStatus:
logging.error(
"{} at {}".format(
errorStatus.prettyPrint(),
errorIndex and varBinds[int(errorIndex) - 1][0] or "?",
)
)
else:
for varBind in varBinds:
logging.debug(f"SNMP/{req['mqtt_topic']}/{oid} => {varBind[1]}")
req = {
"mqtt_topic": "mikrotik_hex",
"ip": "192.168.10.2",
"snmp_community": "public",
"oids": {
"stln_In": "1.3.6.1.2.1.2.2.1.10.12",
"stln_Out": "1.3.6.1.2.1.2.2.1.16.12"
}
}
asyncio.run(run(req))