Net_Portscan::checkPort() | Net_Portscan::getPort() |
Net_Portscan | |
PEAR Manual | |
require_once 'Net/Portscan.php'; |
array Net_Portscan::checkPortRange (
string $host
, integer $minPort
, integer $maxPort
, integer
$timeout = 30
)
This function checks if there are services available at the specified ports on the specified machine.
string $host - address of the host to check
string $minPort - lowest port to test to check
string $maxPort - highest port to test to check
string $timeout - time in seconds to wait for every response from host
Important: If you run into timeout problems despite setting this parameter to a reasonably high value, you need to make sure that the configuration directive default_socket_timeout in the php.ini configuration file does not force the maximum timeout down to a lower value.
array - An associative array containing the scanning results for each port.
This function can be called statically.
Using checkPortRange
|
Net_Portscan::checkPort() | Net_Portscan::getPort() |
Net_Portscan | |
PEAR Manual | |