Re: SNMP agent

2007-04-09 Thread [EMAIL PROTECTED]
Consider taking a look at pysnmp-4 -- it has been designed with Agent role in mind. Here's an example Agent script: http://pysnmp.sourceforge.net/examples/4.x/v3arch/agent/cmdrsp.html > I have a Python app and i would like to add someSNMPagent > functionality to it. -- http://mail.python.org/ma

Re: SNMP agent

2007-04-06 Thread Roy Smith
[EMAIL PROTECTED] (Cameron Laird) wrote: > I understand the sentiment; in principle, it shouldn't be hard > to write a library which supports construction of SNMP agents > in Python. I'm aware of no one who has done so publicly, though. I've used pysnmp (http://pysnmp.sourceforge.net/) in a test

Re: SNMP agent

2007-04-06 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, alain <[EMAIL PROTECTED]> wrote: . . . >I still find it strange that, in all these years of existence, no one >felt the need for a SNMP agent in Python. > >Do Pythoneers only write test tools and

Re: SNMP agent

2007-04-05 Thread alain
On Apr 5, 6:50 pm, [EMAIL PROTECTED] (Cameron Laird) wrote: > In article <[EMAIL PROTECTED]>, > > alain <[EMAIL PROTECTED]> wrote: > >On Apr 4, 1:30 pm, alf <[EMAIL PROTECTED]> wrote: > > >> twistedmatrix.org? > > >I already took a look at it but the agent functionality is somewhat > >primitive. I

Re: SNMP agent

2007-04-05 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, alain <[EMAIL PROTECTED]> wrote: >On Apr 4, 1:30 pm, alf <[EMAIL PROTECTED]> wrote: > >> twistedmatrix.org? > >I already took a look at it but the agent functionality is somewhat >primitive. I need something production-ready. > >Alain > 'Doesn't exist. I understand

Re: SNMP agent

2007-04-04 Thread alain
On Apr 4, 1:30 pm, alf <[EMAIL PROTECTED]> wrote: > twistedmatrix.org? I already took a look at it but the agent functionality is somewhat primitive. I need something production-ready. Alain -- http://mail.python.org/mailman/listinfo/python-list

Re: SNMP agent

2007-04-04 Thread alf
alain wrote: > Hi, > > I have a Python app and i would like to add some SNMP agent > functionality to it. > I know it's possible to write a sub-agent with netsnmp but it is in C > and quite complicated. > I know of YAPSNMP (a wrapper around NETSNMP) but it doesn't seem to > support agent writing.