Start the official DayZ Server Browser (ingame or launcher) and search for example the community test server:
- Showserver1
- Showserver2
you will not find them.
Try the same in DZSA launcher or with following default steam master request script. You will find all servers, including the mentioned ones, within a few seconds.
```
#!/usr/bin/php
<?php
$to_socket = stream_socket_client("udp://hl2master.steampowered.com:27011", $errno, $errstr);
$last = "0.0.0.0:0";
while (true) {
$input = "1\xFF". $last. "\x00\gamedir\dayz\x00";
fwrite($to_socket, $input);
$packet = fread($to_socket, 4096);
$packet = substr($packet, 6);
while (strlen($packet) > 3) {
$i++;
$ip = substr($packet,0,4);
$port = substr($packet, 4,5);
echo $i . " " . inet_ntop($ip);
echo ":" . unpack("n", $port)[1];
echo "\n";
$packet = substr($packet, 6);
$last = inet_ntop($ip) . ":" . unpack("n", $port)[1];
}
if ($last == '0.0.0.0:0') {
break;
}
}
fclose($to_socket);
?>
```
If any dev wants some more servers to test it with, i can send you a few more.