完全な開示:同様の質問 ここ があります。
PHPを使用して特定のポートが開いていて適切に転送されているかどうかをテストする方法はありますか?具体的には、ソケットを使用して、特定のポートを持つ特定のユーザーに接続するにはどうすればよいですか?
この例は WhatsMyIP.org/ports の「カスタムポートテスト」セクションにあります。
「適切に転送される」という意味がわかりませんが、この例でうまくいくと思います。
$Host = 'stackoverflow.com';
$ports = array(21, 25, 80, 81, 110, 443, 3306);
foreach ($ports as $port)
{
$connection = @fsockopen($Host, $port);
if (is_resource($connection))
{
echo '<h2>' . $Host . ':' . $port . ' ' . '(' . getservbyport($port, 'tcp') . ') is open.</h2>' . "\n";
fclose($connection);
}
else
{
echo '<h2>' . $Host . ':' . $port . ' is not responding.</h2>' . "\n";
}
}
出力:
stackoverflow.com:21 is not responding.
stackoverflow.com:25 is not responding.
stackoverflow.com:80 (http) is open.
stackoverflow.com:81 is not responding.
stackoverflow.com:110 is not responding.
stackoverflow.com:443 is not responding.
stackoverflow.com:3306 is not responding.
ポート番号の完全なリストについては、 http://www.iana.org/assignments/port-numbers を参照してください。