<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>
Hello All,<br><br>I have this inside my httpd {}.. Is there anyway to list the IPs that have been banned? If not what is the closest way to do this?<br><br> limit_req_zone $limit zone=notabot:5m rate=200r/s;<br>limit_req zone=notabot burst=200 nodelay;<br><br> geo $notabot {<br> default 1;<br> #google <br> 64.233.160.0/19 0;<br> 65.52.0.0/14 0;<br> 66.102.0.0/20 0;<br> 66.249.64.0/19 0;<br> 72.14.192.0/18 0;<br> 74.125.0.0/16 0;<br> 209.85.128.0/17 0;<br> 216.239.32.0/19 0;<br> #My IPs<br> 127.0.0.1/32 0;<br> 200.122.149.9 0;<br> }<br> map $notabot $limit {<br> 1 $binary_remote_addr;<br> 0 "";<br> }<br><br>Thanks <br>--Mike<br><br><br> </div></body>
</html>