2.8.1.2. Outgoing ports check script
To check availability outgoing ports, can torun a script like this:
<?php $host = 'portquiz.net'; foreach ($ports as $port) { } else { $result = ' is not responding'; } print($host . ': ' . $port . $result . '<br>'); }
- Line 3 specifies the address of the host to which connection attempts will be made. Can use public portquiz.net or specify the address of a specific host to which calls should be made.
- In line 4, in brackets, separated by commas, the port numbers are indicated, the availability of which should be checked.