-
-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PMPP support? #80
Comments
Snimpy delegates SNMP low-level parts to PySNMP. The feature should be implemented here first. After that, it should be easy to let Snimpy use it. |
Hello, Sorry to dredge up an old thread. I am looking for a solution to talk to a traffic controller as John mentioned over snmp with pmpp in python. Do either of you have any pointers on where to look for some work that has already been done on this or resources to learn? Best, |
Sad to say, the project I was working on was canceled, so I didn't have a chance to try to add PMPP support (to Snimpy or PySNMP). |
Thanks for the response! I absolutely will do! Right now I am trying to figure out why my controller doesnt like how I am formatting my PMPP messages. Best, |
In the traffic management industry, SNMP is everywhere in the form of NTCIP (National Transportation Communications for Intelligent Transportation System Protocol). Snimpy seems like a wonderful tool for automating various tasks in my workplace, -but- as far as I can tell, there's one key piece missing...
PMPP (Point to Multi Point Protocol) is a multi-drop HDLC wrapper that handles addressing packets to multiple devices at the end of a shared connection. It's not used for all NTCIP traffic, but it's used frequently enough that any Python SNMP library that doesn't have it is not usable in my industry.
Is PMPP support already in Snimpy and I'm just missing it?
If not, is there a way in Snimpy to:
(A) Inject a protocol layer (PMPP wrapper) between the point that a SNMP command packet is composed and when it gets shoved out the socket?
-and-
(B) Inject a protocol layer (PMPP un-wrapper) between receiving data from the socket and parsing it as an SNMP response?
If it's not already available in Snimpy, I'm willing to try to add it. I'm just looking for a judgement call from people more familiar with the guts of Snimpy as to if doing this is: easy, difficult, or nearly impossible?
Thanks.
The text was updated successfully, but these errors were encountered: