Networking

NAVIGATION
CATEGORIES
REFERRENCE
LINKS
  • regarding net-snmp support

    5 answers - 1457 bytes - related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

    Hi!
    how to make net-snmp to support ath0 interface while using madwifi
    driver code.
    while running snmpd agent it is prompting message that "snmpd: ath0:
    not supported"
    if any body got soloution, please let me know.
    With Regards,
    G. Siva Prakash Reddy.
    The information contained in, or attached to, this e-mail, contains confidential information and is intended solely for the use of the individual or entity to whom they are addressed and is subject to legal privilege. If you have received this e-mail in error you should notify the sender immediately by reply e-mail, delete the message from your system and notify your system manager. Please do not copy it for any purpose, or disclose its contents to any other person. The views or opinions presented in this e-mail are solely those of the author and do not necessarily represent those of the company. The recipient should check this e-mail and any attachments for the presence of viruses. The company accepts no liability for any damage caused, directly or indirectly, by any virus transmitted in this email.
    www.aztecsoft.com
    Take Surveys. Earn Cash. Influence the Future of IT
    Join SourceForge.net's Techsay panel and you'll get the chance to share your
    opinions on IT & business topics through brief surveys -- and earn cash
    Net-snmp-coders mailing list
    Net-snmp-coders (AT) lists (DOT) sourceforge.net
  • No.1 | | 852 bytes | |

    19/09/06, Toth, Gregory S <gregory.s.toth (AT) boeing (DOT) comwrote:

    char this_index[SPRINT_MAX_LEN] = "title1";
    snmp_set_var_value(vptr, (u_char *) &this_index ,
    sizeof(this_index) );

    try
    snmp_set_var_value( vptr, this_index, strlen(this_index));

    The size of 'this_index' is SPRINT_MAX_LEN, but the index string
    doesn't use all of this buffer. And 'this_index' is already a pointer
    to the value, so you don't need to take the address again.

    Dave

    Take Surveys. Earn Cash. Influence the Future of IT
    Join SourceForge.net's Techsay panel and you'll get the chance to share your
    opinions on IT & business topics through brief surveys -- and earn cash

    Net-snmp-coders mailing list
    Net-snmp-coders (AT) lists (DOT) sourceforge.net
  • No.2 | | 1210 bytes | |

    19/09/06, Toth, Gregory S <gregory.s.toth (AT) boeing (DOT) comwrote:
    bookTable_get_first_data_point()
    {
    char this_index[SPRINT_MAX_LEN] = "title1";

    which is a local variable, and so the memory will be discarded when
    the routine exits.

    *my_loop_context = (void *)this_index;
    *my_data_context = (void *)this_index;

    These context pointers need to refer to memory that will persist from
    one call to another. You can't use a local variable.

    These two pointers wouldn't typically refer to the index anyway.
    How are the contents of the table stored internally? How would you
    most naturally move from one row to the next (ignoring how the MIB
    table is indexed), and how would you refer to a row in the table
    elsewhere in your application?
    That's the way you need to think about these two pointers.

    Dave

    Take Surveys. Earn Cash. Influence the Future of IT
    Join SourceForge.net's Techsay panel and you'll get the chance to share your
    opinions on IT & business topics through brief surveys -- and earn cash

    Net-snmp-coders mailing list
    Net-snmp-coders (AT) lists (DOT) sourceforge.net
  • No.3 | | 2267 bytes | |

    extra question related to this one, when I registered
    the index with:

    (table_info,
    ASNCTET_STR, /* index: ExampleDataName */
    0);

    It will always append the length of string before the oid
    when it is being output.

    How can you use 'IMPLIED" index without the len before it ?

    thanks,
    Daniel
    Dave Shield wrote:

    19/09/06, Toth, Gregory S <gregory.s.toth (AT) boeing (DOT) comwrote:

    >
    >>bookTable_get_first_data_point()
    >>{

    >char this_index[SPRINT_MAX_LEN] = "title1";
    >
    >>

    >
    >which is a local variable, and so the memory will be discarded when
    >the routine exits.
    >


    >
    >*my_loop_context = (void *)this_index;
    >*my_data_context = (void *)this_index;
    >
    >>

    >
    >These context pointers need to refer to memory that will persist from
    >one call to another. You can't use a local variable.
    >
    >These two pointers wouldn't typically refer to the index anyway.
    >How are the contents of the table stored internally? How would you
    >most naturally move from one row to the next (ignoring how the MIB
    >table is indexed), and how would you refer to a row in the table
    >elsewhere in your application?

    That's the way you need to think about these two pointers.
    >
    >Dave
    >
    >
    >Take Surveys. Earn Cash. Influence the Future of IT
    >Join SourceForge.net's Techsay panel and you'll get the chance to share your
    >opinions on IT & business topics through brief surveys -- and earn cash
    >
    >
    >Net-snmp-coders mailing list
    >Net-snmp-coders (AT) lists (DOT) sourceforge.net
    >
    >
    >


    Take Surveys. Earn Cash. Influence the Future of IT
    Join SourceForge.net's Techsay panel and you'll get the chance to share your
    opinions on IT & business topics through brief surveys -- and earn cash

    Net-snmp-coders mailing list
    Net-snmp-coders (AT) lists (DOT) sourceforge.net
  • No.4 | | 576 bytes | |

    20/09/06, Daniel Chuang <dchuang (AT) juniper (DOT) netwrote:
    (table_info,
    ASNCTET_STR, /* index: ExampleDataName */
    0);

    How can you use 'IMPLIED" index without the len before it ?

    ASN_PRIV_IMPLIEDCTET_STR

    Dave

    Take Surveys. Earn Cash. Influence the Future of IT
    Join SourceForge.net's Techsay panel and you'll get the chance to share your
    opinions on IT & business topics through brief surveys -- and earn cash

    Net-snmp-coders mailing list
    Net-snmp-coders (AT) lists (DOT) sourceforge.net
  • No.5 | | 616 bytes | |

    Tue, 19 Sep 2006 20:35:59 +0530 Siva wrote:
    SPRGhow to make net-snmp to support ath0 interface while using madwifi
    SPRGdriver code.
    SPRGwhile running snmpd agent it is prompting message that "snmpd: ath0:
    SPRGnot supported"

    What are you doing when you get that message?

    Take Surveys. Earn Cash. Influence the Future of IT
    Join SourceForge.net's Techsay panel and you'll get the chance to share your
    opinions on IT & business topics through brief surveys -- and earn cash

    Net-snmp-coders mailing list
    Net-snmp-coders (AT) lists (DOT) sourceforge.net

Re: regarding net-snmp support


max 4000 letters.
Your nickname that display:
In order to stop the spam: 6 + 5 =
QUESTION ON "Networking"

EMSDN.COM