Unix and Linux Discussions Tagged with community |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
2,972 |
What is on Your Mind? |
|
|
|
0 |
3,871 |
What is on Your Mind? |
|
|
|
1 |
7,077 |
AIX |
|
|
|
0 |
8,006 |
What is on Your Mind? |
|
|
|
0 |
2,876 |
AIX |
|
|
|
0 |
1,823 |
AIX |
|
|
|
0 |
1,549 |
Solaris BigAdmin RSS |
|
|
|
0 |
867 |
UNIX and Linux RSS News |
|
|
|
0 |
1,042 |
UNIX and Linux RSS News |
|
|
|
0 |
671 |
Software Releases - RSS News |
|
|
|
0 |
520 |
Software Releases - RSS News |
|
|
|
0 |
1,651 |
Solaris BigAdmin RSS |
|
|
|
0 |
1,253 |
UNIX and Linux RSS News |
|
|
|
0 |
1,225 |
UNIX and Linux RSS News |
|
|
|
0 |
909 |
UNIX and Linux RSS News |
|
|
|
0 |
832 |
UNIX and Linux RSS News |
|
|
|
0 |
786 |
UNIX and Linux RSS News |
|
|
|
0 |
1,593 |
Software Releases - RSS News |
|
|
|
0 |
698 |
Software Releases - RSS News |
|
|
|
0 |
1,316 |
UNIX and Linux RSS News |
|
|
|
0 |
773 |
UNIX and Linux RSS News |
|
|
|
0 |
716 |
Software Releases - RSS News |
|
|
|
0 |
1,548 |
Software Releases - RSS News |
|
|
|
0 |
1,450 |
Software Releases - RSS News |
|
|
|
0 |
605 |
Software Releases - RSS News |
|
|
|
0 |
1,404 |
Complex Event Processing RSS News |
|
|
|
0 |
928 |
Software Releases - RSS News |
|
|
|
0 |
875 |
UNIX and Linux RSS News |
|
|
|
0 |
1,669 |
Software Releases - RSS News |
|
|
|
0 |
923 |
UNIX and Linux RSS News |
|
|
|
0 |
1,427 |
UNIX and Linux RSS News |
|
|
|
0 |
927 |
UNIX and Linux RSS News |
|
|
|
0 |
2,028 |
Complex Event Processing RSS News |
|
|
|
0 |
1,002 |
UNIX and Linux RSS News |
|
|
|
4 |
71,327 |
IP Networking |
|
|
|
2 |
5,834 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
3,941 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
3 |
5,129 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
4,275 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,604 |
Post Here to Contact Site Administrators and Moderators |
SNMPGETNEXT(3) 1 SNMPGETNEXT(3)
snmpgetnext - Fetch theSNMPobject which follows the given object id
SYNOPSIS
string snmpgetnext (string $host, string $community, string $object_id, [int $timeout = 1000000], [int $retries = 5])
DESCRIPTION
The snmpgetnext(3) function is used to read the value of the SNMP object that follows the specified $object_id.
PARAMETERS
o $host
-The hostname of the SNMP agent (server).
o $community
-The read community.
o $object_id
-The SNMP object id which precedes the wanted one.
o $timeout
-The number of microseconds until the first timeout.
o $retries
-The number of times to retry if timeouts occur.
RETURN VALUES
Returns SNMP object value on success or FALSE on error. In case of an error, an E_WARNING message is shown.
EXAMPLES
Example #1
Using snmpgetnext(3)
<?php
$nameOfSecondInterface = snmpgetnetxt('localhost', 'public', 'IF-MIB::ifName.1';
?>
SEE ALSO
snmpget(3), snmpwalk(3).
PHP Documentation Group SNMPGETNEXT(3)