2008/4/28 Jelena Savic <[EMAIL PROTECTED]>:
>  >> Is there a way that i can notify my process when snmpd is
>  >> ready without arbitrarily sleeping for some time before
>  >> starting up the second process?
>
>  >$ snmpgetnext [valid creds] -t 10 -r 60 .1.3
>  >
>  >       ...will wait up to ten minutes for a valid response, retrying every 
> ten seconds.
>  >  Check the return code - 0 means the agent is up, anything else means 
> abort.

>  How do i check the return code of snmpgetnext?

Either

    snmpgetnext ....   > /dev/null 2>&1    &&  echo  Server is up

or

    if   snmpgetnext ....   > /dev/null 2>&1
    then
        echo  Server is up
    fi

(They both work in effectively the same manner, but the second format
 makes it simpler to run multiple commands).

The  "> /dev/null  2>&1"    is simply to throw away any output,
assuming that you're *just* interested in the success/failure of the request.

Dave

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Net-snmp-users mailing list
[email protected]
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users

Reply via email to