Community discussions

MikroTik App
 
tinman
just joined
Topic Author
Posts: 1
Joined: Sun Jul 05, 2015 2:17 pm

Abnormally high traffic on My Wan Port

Sun Jul 05, 2015 2:34 pm

Hi fellow users, I'm new to this forum and to mikrotik in general. I have managed to configure my mikrotik rb951ui-2hnd and its working alright. However, on checking my interface list, I noticed my wan port is receiving a lot of data that's not being passed on to the network. Anyone know what kind of traffic this could be and if this behavior is normal? My dns caching is off and allow remote request is disabled.
Capture.JPG
You do not have the required permissions to view the files attached to this post.
 
Van9018
Long time Member
Long time Member
Posts: 558
Joined: Mon Jun 16, 2014 6:26 pm
Location: Canada - Abbotsford

Re: Abnormally high traffic on My Wan Port

Mon Jul 06, 2015 9:25 am

In Winbox go to Tools > Torch, select ether1 as interface and click start.

That'll show you packets hitting the interface and maybe you can identify where they're coming from.

Your Mikrotik may be just dropping the packets if they're unsolicited.
 
purana
newbie
Posts: 48
Joined: Sun Jun 21, 2015 1:57 pm

Re: Abnormally high traffic on My Wan Port

Fri Jul 17, 2015 1:45 pm

As a guess, if you have a static IP, I bet someone has found you have udp/53 open and sending you loads of bogus dns packets to this port, which has be spoofed with other ip's as the source. Which means for very little inbound traffic to use this exploit, your router is sending a massive amount of traffic back to those spoofed IP's in the udp/53 packets.

Using torch you should be able to identify this with a bit of effort. Perhaps you could setup the rule below to block it and see what happens.

/ip firewall filter
;;; Drop udp 53 inbound from internet.
chain=input action=drop protocol=udp in-interface=[wan interface here] dst-port=53 log=no log-prefix=""
 
jarda
Forum Guru
Forum Guru
Posts: 7756
Joined: Mon Oct 22, 2012 4:46 pm

Fri Jul 17, 2015 2:08 pm

Drop tcp/53 too.
 
purana
newbie
Posts: 48
Joined: Sun Jun 21, 2015 1:57 pm

Re: Abnormally high traffic on My Wan Port

Fri Jul 17, 2015 3:00 pm

That bogus/spoofed packets causing loads of outbound traffic can be clearly seen on the graph below. The rule soon stopped the folks exploiting it.

Image
 
onnoossendrijver
Member
Member
Posts: 489
Joined: Mon Jul 14, 2008 11:10 am
Location: The Netherlands

Re: Abnormally high traffic on My Wan Port

Fri Jul 17, 2015 3:08 pm

Disable access to your DNS service from the WAN connection.
This type of attack is called: DNS amplification attack.
 
marrold
Member
Member
Posts: 427
Joined: Wed Sep 04, 2013 10:45 am

Re: Abnormally high traffic on My Wan Port

Sat Jul 18, 2015 3:56 pm

Everyone seems to have missed the WAN interface is receiving a lot of traffic, not transmitting.
 
purana
newbie
Posts: 48
Joined: Sun Jun 21, 2015 1:57 pm

Re: Abnormally high traffic on My Wan Port

Sat Jul 18, 2015 4:12 pm

Everyone seems to have missed the WAN interface is receiving a lot of traffic, not transmitting.
It just hard to diagnose from the output provided. Would need to see some torch output on the interface that shows the protocol type and ports.

But yes, looks to be inbound, perhaps a DoS or DDoS attack. Who knows.