Community discussions

MikroTik App
 
bronco1980
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 63
Joined: Wed Jul 22, 2009 5:02 pm

cannot search google !!

Sat Apr 19, 2014 1:49 pm

Dear Friends,

I own a small WISP today I'm getting this error when I'm trying to use the search engine, like Google and yahoo..



We're sorry...

... but your computer or network may be sending automated queries. To protect our users, we can't process your request right now.


How can i know which of my clients are sending this automated queries?

Waiting for your reply.. Thank u all!
 
tpansky
just joined
Posts: 16
Joined: Sun Apr 13, 2014 5:18 pm
Location: Czech Republic
Contact:

Re: cannot search google !!

Sat Apr 19, 2014 2:14 pm

Dear Friends,

I own a small WISP today I'm getting this error when I'm trying to use the search engine, like Google and yahoo..



We're sorry...

... but your computer or network may be sending automated queries. To protect our users, we can't process your request right now.


How can i know which of my clients are sending this automated queries?

Waiting for your reply.. Thank u all!
I think you have just setup your firewall incorectly :oops: At the first i think you're using web proxy but it can be also used from remote computers on your public IP probably on port 8080 TCP. So free web proxies is searching for this security bad configurations and use them for access Google, Yahoo and dangerous websites; It slows down your connection and may cause heavy load on your RouterBoard. Also check, you have to drop UDP 53 for DNS queries from public (heavy load on RouterBoard by public servers). Idealy allow only some traffic on input (public IP) such as port 22, 8291 and everything other on public IP drop. Feel free to ask for more specific answer and give reply if your problem was Web proxy :)
 
bronco1980
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 63
Joined: Wed Jul 22, 2009 5:02 pm

Re: cannot search google !!

Sun Apr 20, 2014 1:07 am

Thank you for your reply,

can you please give me an example on how to drop UDP 53 for DNS queries from public?
 
tpansky
just joined
Posts: 16
Joined: Sun Apr 13, 2014 5:18 pm
Location: Czech Republic
Contact:

Re: cannot search google !!

Sun Apr 20, 2014 1:15 am

Thank you for your reply,

can you please give me an example on how to drop UDP 53 for DNS queries from public?
Very simply using firewall :) DNS queries can come to UDP and TCP port 53, so if your public IP address is for example 1.2.3.4

ros code

/ip firewall filter
add action=drop chain=input dst-address=1.2.3.4 protocol=tcp \
port=53 comment="Drop incoming TCP DNS queries on public IP" 
add action=drop chain=input dst-address=1.2.3.4 protocol=udp \
port=53 comment="Drop incoming UDP DNS queries on public IP"
If you have more than one public IP address you can use firewall address list and also you can use incoming interface in rule. Was Web Proxy enabled on public IP?
 
bronco1980
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 63
Joined: Wed Jul 22, 2009 5:02 pm

Re: cannot search google !!

Sun Apr 20, 2014 1:34 am

thank u my friend,

I guess the problem was in NAT,

chain=dstnat action=redirect to-addresses=0.0.0.0 to-ports=53 protocol=tcp
dst-port=53

chain=dstnat action=redirect to-addresses=0.0.0.0 to-ports=53 protocol=udp
dst-port=53

i have disabled them also,

thank u again my friend