soamz
December 16, 2015, 6:11am
1
I use CCR1009 and I just have around 400 customers.
I see the CPU is going above 35%, which is huge for just that less customers.
I know, people using CCR1009 for 20000 customers even.
I saw Tools > Profile.
And it shows, DNS and QUEQE using more than 15%.
Whats wrong ?
jarda
December 16, 2015, 6:13am
2
Aren’t the dns requests coming from the outside of the network?
soamz
December 16, 2015, 6:16am
3
How to know ?
See attached my DNS config page.
soamz
December 16, 2015, 6:19am
4
I guess I need to switch off ALLOW REMOTE REQUESTS>
jarda
December 16, 2015, 6:20am
5
See torch of wan port. See firewall connection list. See the firewall filter rules if you are blocking the incoming traffic to port 53 both tcp and udp from the wan.
jarda
December 16, 2015, 6:22am
6
You’d better to use dns servers of your isp than common Google servers. It will speed up the browsing as they are the closest.
soamz
December 16, 2015, 6:24am
7
I have my own DNS server hosted in my CO, and it worked well too.
But I got few complaints from customers that youtube doesnt load, and Facebook sometimes.
I thought, its somethign to do with my DNS, so I had removed my DNS IP and placed by Google DNS.
jarda
December 16, 2015, 6:27am
8
And did it help? Isn’t such issue maybe a MTU problem?
soamz
December 16, 2015, 6:27am
9
Seen, not sure, what I should be check.
I took the screenshots, so you can check and tell me.
jarda
December 16, 2015, 6:37am
11
It seems you are not finally dropping the input chain. Not sure if you jump back to it, but you should be dropping everything that was not accepted before (rule 21 should be enabled). Filter the torch according your wan ip port 53 to see if there are incoming requests from outside. At least add dropping rules for them in input chain.
soamz
December 16, 2015, 6:41am
12
jarda:
It seems you are not finally dropping the input chain. Not sure if you jump back to it, but you should be dropping everything that was not accepted before (rule 21 should be enabled). Filter the torch according your wan ip port 53 to see if there are incoming requests from outside. At least add dropping rules for them in input chain.
I did a torch of WAN port and entered PORT 53 and I see this.
How to stop this ?
Screen Shot 2015-12-16 at 12.10.45 PM.png
jarda
December 16, 2015, 7:06am
13
I already told you. Read again…
soamz
December 16, 2015, 7:08am
14
need the terminal paste command, so I can paste and reboot.
soamz
December 16, 2015, 7:17am
15
Will this do ?
/ip firewall filter
add chain=input action=accept protocol=icmp comment=“default configuration”
add chain=input action=accept connection-state=established in-interface=ether8 comment=“default configuration”
add chain=input action=accept connection-state=related in-interface=ether8 comment=“default configuration”
add chain=input action=drop in-interface=ether8 comment=“default configuration”
soamz
December 16, 2015, 11:01am
16
The rule 21 was off.
I have switched it on.
Still when In torch wan port for port 53, it shows a lot of active connections.
What to do ?
soamz
December 16, 2015, 11:38am
17
I added this two :
/ip firewall filter
add chain=input in-interface=ether8 protocol=udp dst-port=53 action=drop
add chain=input in-interface=ether8 protocol=tcp dst-port=53 action=drop
/ip firewall filter
add chain=forward protocol=udp dst-port=53 out-interface=!ether8 action=drop
add chain=forward protocol=tcp dst-port=53 out-interface=!ether8 action=drop
But when I torch ether8, I still get many active connections on port 53.
Why is it so ?
jarda
December 16, 2015, 1:35pm
18