Accessing printers and others devices

Good Afternoon everyone.

I was trying to make a simple project capable of retrieve information from a printer or another device via SNMP. I've searched a lot for tools or libraries that can help me in this task, but unfortunately I only found the Agentuino Library, that is too old and seems to do the inverse route (makes the arduino respond via SNMP ). What I want is make a little system that start a request from arduino and receive it from the device using the SNMP channel.

can anyone give me a help over this?

Thanks in advance

I haven't used that library, but it looks as if it provides an API which lets you send and receive PDUs (protocol data units aka messages). If you're accepting SNMP requests then you'd receive the requests and send the responses; if you're initiating the requests you'd send the requests and get back the responses. The same API works in either case.