Whitelist |
Enter the CIDR Range you would like to whitlist
|
'0') echo "Running";
else
echo "NOT running";
//Get Errors if exists
ob_start();
$results = exec("tail -r errorOUT.txt");
ob_end_clean();
echo " ";
echo $results;
echo "";
//Get IP Count
echo " You are blocking ";
ob_start();
$results = exec("pfctl -T show -t countryblock |grep -v -c Z");
ob_end_clean();
echo $results;
echo " Networks";
?>
|