Hi gobris,
I'm not sure if you are able to help with this or not, but I thought I would ask.
Following your post, I am trying to get the client info from my 2590 (Firmware 1.13), using PHP using the code below.
The snmp2_set returns TRUE, but when I perform the GET, I receive the error: "No such instance currently exists". I have logged into the web interface of the 2590 and it reports that there are clients. I suspect I am not referencing the client information table properly.
I'd appreciate any ideas you have.
Bruce.
$DAP_2590_dot11ClientInformationRefresh =".1.3.6.1.4.1.171.10.37.36.2.1.3.3.4.1.1.1.1";
$DAP_2590_dot11ClientInformationMAC =".1.3.6.1.4.1.171.10.37.36.2.1.3.3.4.2.1.2";
$refresh = snmp2_set($AP, "private", $DAP_2590_dot11ClientInformationRefresh,'i','1');
$clientMac = snmp2_get($AP, "private", $DAP_2590_dot11ClientInformationMAC);