Re: exclude network from any scan
"Bjorn Friebel" <[email protected]>
| Newsgroups | gmane.network.irc.bopm |
|---|---|
| Message-ID | <[email protected]> |
Hello, Alex!
You wrote on Tue, 27 Apr 2004 15:57:41 +0400:
>>> how I can exclude whole network from any scan?
>>> I need to exclude 10.10.*.*
>> Ali Simorgh
>> I think you have to put the following lines in the end of every
>> bopm conf file of yours: exempt { mask = "*!*@10.10.*"; };
> I try this:
> exempt {
> mask = "*!*@127.0.0.1";
> mask = "*!*@10.10.*";
> };
> then as you say:
> exempt {
> mask = "*!*@10.10.*";
> };
>And I still have scan attempts on this addresses:
>[Apr 27 17:49:50 2004] IRC REGEX -> Parsed
[email protected] [
>10.10.47.168] from connection notice.
>[Apr 27 17:49:50 2004] DNSBL -> Passed '168.47.10.10.opm.blitzed.org'
to resolver
>...
>[Apr 27 17:49:50 2004] SCAN -> Negotiation failed 10.10.47.168:80
(HTTP) [default] (0 bytes read)
that seems u want not to exclude 10.10.*.* but 168.47.*.*
so it must be
exempt {
mask = "*!*@127.0.0.1";
mask = "*!*@168.47.*";
};
With best regards, Bjorn