I founded this code that print string values and it works fine:

 add_mibdir("."); 
 pdu = snmp_pdu_create(SNMP_MSG_GET);

 read_objid(if_index, id_oid, &id_len);
 snmp_add_null_var(pdu, id_oid, id_len);    
 status = snmp_synch_response(sess_handle,pdu,&response);

 int count=1;
 for(vars = response->variables; vars; vars = vars->next_variable) 
  {
    if (vars->type == ASN_OCTET_STR) 
    {
        char *sp = (char *)malloc(1 + vars->val_len);
        memcpy(sp, vars->val.string, vars->val_len);
        sp[vars->val_len] = '\0';
        printf("value #%d is a string: %s\n", count++, sp);
        printf("%s\n",vars->val.string);
        free(sp);
}

  }

Example: for SNMPv2-SMI::mib-2.47.1.1.1.1.2.1012 = STRING: "GigabitEthernet Container", it returns "GigabitEthernet Container";

But I tried that for an integer value and it didn't work:

for(vars = response->variables; vars; vars = vars->next_variable)
    printf("%ld",(long int)vars->val.integer);//it returns large numbers;

Example: for SNMPv2-SMI::mib-2.17.2.11.0 = INTEGER: 1500, I want to return 1500 and for IF-MIB::ifOutBroadcastPkts.10103 = Counter32: 14011112 I want to return 14011112

If I use:

for(vars = response->variables; vars; vars = vars->next_variable)
    print_variable(vars->name, vars->name_length, vars);

it returns Counter32:12132, or INTEGER:12324, or STRING:Gi0/1 (but I want to parse this result and use it into some variables, without data type, for example: in var a to store 12132).

Thanks!

link|improve this question
What does it print instead of the numbers you want? – Joachim Pileborg Dec 19 '11 at 14:40
feedback

1 Answer

Well, you can always manipulate the data directly... The counter is stored in var->val.integer as you noted. But the faster way to get all of the LABEL: prefixes to be dropped from the output of print_variable is to set the NETSNMP_DS_LIB_QUICK_PRINT variable like so:

netsnmp_ds_set_boolean(NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_QUICK_PRINT, 1);

Which will drop the "Counter32:" prefix.

link|improve this answer
Thanks man,it print all values without label prefix, but how to use these results, not just print them. – user1101467 Dec 20 '11 at 6:48
To use them, you'll need to dive into the var->val union you already mentioned. Each SNMP type will make use of one of those internal values. Note that integer based values (like Integer32) actually use the long datatype within the val union. – Wes Hardaker Dec 21 '11 at 4:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.