Sponsored Content
Full Discussion: Congrats
Contact Us Post Here to Contact Site Administrators and Moderators Congrats Post 19403 by Neo on Wednesday 10th of April 2002 06:32:16 PM
Old 04-10-2002
Thank you for your support to the world computing community and for helping create a vendor-neutral, non-commerical, banner-ad free place for all people to share knowledge and information.

LivinFree, you will past me as the most active poster soon as I must work 'behind the scenes' on legal issues for the benefit of the community. I grealy appreciate all the support and great work!
 

6 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

congrats & new forums

Hi Neo & All first I'd like to congratulate you for the nice impressing and promissing service. I'm waiting for new forums , like: Advanced Unix / Sun / Linux / Xwindows / CDE . obiously not all question should be at the Unix for Dummies forum! Keep up the good work, Hezki (1 Reply)
Discussion started by: me2unix
1 Replies

2. What is on Your Mind?

congrats to zazzybob

i definitely want to thank and congratulate zazzybob on becoming a moderator in record time.. ZazzyBob you definitely have skills and hopefully they will continue to grow and spread... thanx for helping me out all those times moxxx68 (1 Reply)
Discussion started by: moxxx68
1 Replies

3. What is on Your Mind?

Congrats to RudiC - 3000 Thanks!

Congratulations to RudiC for crossing the magic boundary of being thanked 3000 times! As someone who often has profited greatly from your insight i stand in awe before this achievement. Thank you for your ongoing dedication and thank you for your willingness to share your knowledge! bakunin ... (15 Replies)
Discussion started by: bakunin
15 Replies

4. What is on Your Mind?

The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Wisecracker

Congrats to wisecracker for the first lifetime achievement award badge from UNIX.COM in computer wizardry: "The Order of the Wizard's Hat - Lifetime Achievement Award" The first "Order of the Wizard's Hat" is presented to wisecracker in 2019 for RF Electronics Engineering and Computer... (6 Replies)
Discussion started by: Neo
6 Replies

5. What is on Your Mind?

The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to RudiC

Please join me in congratulating RudiC for his long overdue lifetime achievement award badge from UNIX.COM in computer wizardry: "The Order of the Wizard's Hat - Lifetime Achievement Award" This "Order of the Wizard's Hat" is presented to RudiC for Computer Wizardry in the UNIX Operating... (10 Replies)
Discussion started by: Neo
10 Replies

6. What is on Your Mind?

Congrats to Nezabudka for her Formulator Badge (UserCP Prototype v0.40)

Please join me in thanking one of our most active new members, nezabudka, who suggested that we start using the new usercp prototype and change the menu items around, effectively "promoting" the new prototype CP. At first, I did not understand her suggestion, but after 'coming down" from days of... (1 Reply)
Discussion started by: Neo
1 Replies
SNMP2_WALK(3)								 1							     SNMP2_WALK(3)

snmp2_walk - Fetch all theSNMPobjects from an agent

SYNOPSIS
array snmp2_walk (string $host, string $community, string $object_id, [string $timeout = 1000000], [string $retries = 5]) DESCRIPTION
snmp2_walk(3) function is used to read all the values from an SNMP agent specified by the $hostname. PARAMETERS
o $host - The SNMP agent (server). o $community - The read community. o $object_id - If NULL, $object_id is taken as the root of the SNMP objects tree and all objects under that tree are returned as an array. If $object_id is specified, all the SNMP objects below that $object_id are returned. o $timeout - The number of microseconds until the first timeout. o $retries - The number of times to retry if timeouts occur. RETURN VALUES
Returns an array of SNMP object values starting from the $object_id as root or FALSE on error. EXAMPLES
Example #1 snm2_pwalk(3) Example <?php $a = snmp2_walk("127.0.0.1", "public", ""); foreach ($a as $val) { echo "$val "; } ?> Above function call would return all the SNMP objects from the SNMP agent running on localhost. One can step through the values with a loop SEE ALSO
snmp2_real_walk(3). PHP Documentation Group SNMP2_WALK(3)
All times are GMT -4. The time now is 03:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy