Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
snmp /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
1.62
KB
-rw-rw-r--
2022-10-31 11:36
bigtest
141
B
-rwxrwxr-x
2022-10-31 11:36
bug60749.phpt
666
B
-rw-rw-r--
2022-10-31 11:36
bug64124.phpt
1003
B
-rw-rw-r--
2022-10-31 11:36
bug64159.phpt
502
B
-rw-rw-r--
2022-10-31 11:36
bug72479.phpt
738
B
-rw-rw-r--
2022-10-31 11:36
clean.inc
94
B
-rw-rw-r--
2022-10-31 11:36
generic_timeout_error.phpt
651
B
-rw-rw-r--
2022-10-31 11:36
ipv6.phpt
662
B
-rw-rw-r--
2022-10-31 11:36
reflection.phpt
2.34
KB
-rw-rw-r--
2022-10-31 11:36
skipif.inc
459
B
-rw-rw-r--
2022-10-31 11:36
snmp-object-errno-errstr.phpt
5.02
KB
-rw-rw-r--
2022-10-31 11:36
snmp-object-error.phpt
3.31
KB
-rw-rw-r--
2022-10-31 11:36
snmp-object-properties.phpt
3.81
KB
-rw-rw-r--
2022-10-31 11:36
snmp-object-setSecurity_error.phpt
2.32
KB
-rw-rw-r--
2022-10-31 11:36
snmp-object.phpt
6.96
KB
-rw-rw-r--
2022-10-31 11:36
snmp2_get.phpt
3.1
KB
-rw-rw-r--
2022-10-31 11:36
snmp2_getnext.phpt
870
B
-rw-rw-r--
2022-10-31 11:36
snmp2_real_walk.phpt
2.5
KB
-rw-rw-r--
2022-10-31 11:36
snmp2_set-nomib.phpt
1.52
KB
-rw-rw-r--
2022-10-31 11:36
snmp2_set.phpt
10
KB
-rw-rw-r--
2022-10-31 11:36
snmp2_walk.phpt
2.78
KB
-rw-rw-r--
2022-10-31 11:36
snmp3-error.phpt
3.3
KB
-rw-rw-r--
2022-10-31 11:36
snmp3.phpt
3.89
KB
-rw-rw-r--
2022-10-31 11:36
snmp_get_quick_print.phpt
925
B
-rw-rw-r--
2022-10-31 11:36
snmp_get_valueretrieval.phpt
1.56
KB
-rw-rw-r--
2022-10-31 11:36
snmp_getvalue.phpt
2.38
KB
-rw-rw-r--
2022-10-31 11:36
snmp_include.inc
1.1
KB
-rw-rw-r--
2022-10-31 11:36
snmp_read_mib.phpt
814
B
-rw-rw-r--
2022-10-31 11:36
snmp_set_enum_print.phpt
628
B
-rw-rw-r--
2022-10-31 11:36
snmp_set_oid_output_format.phpt
862
B
-rw-rw-r--
2022-10-31 11:36
snmpd.conf
744
B
-rw-rw-r--
2022-10-31 11:36
snmpget.phpt
3.23
KB
-rw-rw-r--
2022-10-31 11:36
snmpgetnext.phpt
862
B
-rw-rw-r--
2022-10-31 11:36
snmprealwalk.phpt
2.43
KB
-rw-rw-r--
2022-10-31 11:36
snmpset-nomib.phpt
1.51
KB
-rw-rw-r--
2022-10-31 11:36
snmpset.phpt
10.01
KB
-rw-rw-r--
2022-10-31 11:36
snmpwalk.phpt
2.73
KB
-rw-rw-r--
2022-10-31 11:36
wrong_hostname.phpt
459
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- OO API: Generic errors --CREDITS-- Boris Lytochkin --SKIPIF-- <?php require_once(__DIR__.'/skipif.inc'); ?> --FILE-- <?php require_once(__DIR__.'/snmp_include.inc'); //EXPECTF format is quickprint OFF snmp_set_quick_print(false); snmp_set_valueretrieval(SNMP_VALUE_PLAIN); try { var_dump(new SNMP(SNMP::VERSION_1, $hostname)); } catch (TypeError $e) { print $e->getMessage() . "\n"; } try { var_dump(new SNMP(SNMP::VERSION_1, $hostname, $community, '')); } catch (TypeError $e) { print $e->getMessage() . "\n"; } try { var_dump(new SNMP(SNMP::VERSION_1, $hostname, $community, $timeout, '')); } catch (TypeError $e) { print $e->getMessage() . "\n"; } try { var_dump(new SNMP(7, $hostname, $community)); } catch (Exception $e) { print $e->getMessage() . "\n"; } echo "Exception handling\n"; $session = new SNMP(SNMP::VERSION_3, $hostname, $user_noauth, $timeout, $retries); try { var_dump($session->get('.1.3.6.1.2.1.1.1..0')); } catch (SNMPException $e) { var_dump($e->getCode()); var_dump($e->getMessage()); } $session->exceptions_enabled = SNMP::ERRNO_ANY; try { var_dump($session->get('.1.3.6.1.2.1.1.1..0')); } catch (SNMPException $e) { var_dump($e->getCode()); var_dump($e->getMessage()); } var_dump($session->close()); echo "Open normal session\n"; $session = new SNMP(SNMP::VERSION_3, $hostname, $user_noauth, $timeout, $retries); $session->valueretrieval = 67; var_dump($session->valueretrieval); echo "Closing session\n"; var_dump($session->close('')); var_dump($session->close()); var_dump($session->get('.1.3.6.1.2.1.1.1.0')); var_dump($session->close()); $session = new SNMP(SNMP::VERSION_2c, $hostname, $community, $timeout, $retries); var_dump($session->walk('.1.3.6.1.2.1.1', FALSE, '')); var_dump($session->walk('.1.3.6.1.2.1.1', FALSE, 30, '')); var_dump($session->get()); var_dump($session->getnext()); var_dump($session->set()); var_dump($session->max_oids); $session->max_oids = "ttt"; $session->max_oids = 0; var_dump($session->max_oids); ?> --EXPECTF-- SNMP::__construct() expects at least 3 parameters, 2 given SNMP::__construct() expects parameter 4 to be int, string given SNMP::__construct() expects parameter 5 to be int, string given Unknown SNMP protocol version Exception handling Warning: SNMP::get(): Invalid object identifier: .1.3.6.1.2.1.1.1..0 in %s on line %d bool(false) int(32) string(46) "Invalid object identifier: .1.3.6.1.2.1.1.1..0" bool(true) Open normal session Warning: main(): Unknown SNMP value retrieval method '67' in %s on line %d int(%d) Closing session Warning: SNMP::close() expects exactly 0 parameters, 1 given in %s on line %d bool(false) bool(true) Warning: SNMP::get(): Invalid or uninitialized SNMP object in %s on line %d bool(false) bool(true) Warning: SNMP::walk() expects parameter 3 to be int, string given in %s on line %d bool(false) Warning: SNMP::walk() expects parameter 4 to be int, string given in %s on line %d bool(false) Warning: SNMP::get() expects at least 1 parameter, 0 given in %s on line %d bool(false) Warning: SNMP::getnext() expects exactly 1 parameter, 0 given in %s on line %d bool(false) Warning: SNMP::set() expects exactly 3 parameters, 0 given in %s on line %d bool(false) NULL Warning: main(): max_oids should be positive integer or NULL, got 0 in %s on line %d Warning: main(): max_oids should be positive integer or NULL, got 0 in %s on line %d NULL