mayur091 has asked for the wisdom of the Perl Monks concerning the following question:

I have to Develop SNMP management framework using Perl. I am totally new to perl I just know the basic of perl so I want to know how to Implement SNMP management framework in perl. in the beginning I want to make my program to communicate between snmp agent and snmp manager using GET_REQUEST function. pls help me to start writing my program. Thanks in advance !

Replies are listed 'Best First'.
Re: SNMP management framework
by VinsWorldcom (Prior) on Aug 28, 2013 at 15:07 UTC

    Net::SNMP

    The examples in the POD will help you get started. There is one specific to GET_REQUEST.

Re: SNMP management framework
by atcroft (Abbot) on Aug 29, 2013 at 04:28 UTC
Re: SNMP management framework
by McDarren (Abbot) on Sep 01, 2013 at 03:16 UTC
    "pls help me to start writing my program."

    Sure thing!
    Here you go...

    #!/usr/bin/perl use strict; use warnings; use Net::SNMP;

    You should be able to finish it off from there, let us know if you get stuck with anything.

    "Thanks in advance !"

    You're welcome!