Community discussions

MikroTik App

Search found 12 matches

by Jefte
Thu Dec 20, 2018 1:36 pm
Forum: General
Topic: DNS Flood
Replies: 8
Views: 4049

Re: DNS Flood

Well, I created the following rule, and so far it's helping me by putting the IP address on a temporary blacklist. /ip firewall mangle add chain=postrouting protocol=udp dst-port=53 connection-limit=500,32 address-list-timeout=60m action=add-src-to-address-list address-list="DNS_FLOOD" com...
by Jefte
Fri Dec 07, 2018 9:54 pm
Forum: General
Topic: DNS Flood
Replies: 8
Views: 4049

Re: DNS Flood

This image was for 1 second, the client generates that amount several times, figuring out further to find out his CPE was "hacked". But I would like to know about this traffic before it gets worse, in this case I redirected the client to a secondary DNS
by Jefte
Fri Dec 07, 2018 6:47 pm
Forum: General
Topic: DNS Flood
Replies: 8
Views: 4049

DNS Flood

Hello my dear, I have a client generating a lot of DNS traffic over the network, I would like to know a smart way to solve this problem, I looked at some mangrove rules, but I would like something that caught only the clients that generate this unnecessary traffic and perhaps puts them on a blacklis...
by Jefte
Sat Oct 14, 2017 4:44 pm
Forum: Wireless Networking
Topic: Problem with wireless. [SOLVED]
Replies: 2
Views: 1272

Re: Problem with wireless. [SOLVED]

nothing strange in the logs, I spoke with support, apparently it was wireless in radar mode.
by Jefte
Fri Sep 29, 2017 8:27 pm
Forum: Wireless Networking
Topic: Problem with wireless. [SOLVED]
Replies: 2
Views: 1272

Problem with wireless. [SOLVED]

I have this problem in some routerboard , after rebooted...see a pics.
access-list full , but registration 'white' , all clients can't connect to the wireless.
by Jefte
Thu Sep 28, 2017 3:17 pm
Forum: Scripting
Topic: API - PHP [SOLVED]
Replies: 2
Views: 2037

Re: API - PHP [SOLVED]

I'll research about , thanks
by Jefte
Wed Sep 27, 2017 11:01 pm
Forum: Beginner Basics
Topic: Link down link up speed 10 ??? Why
Replies: 6
Views: 6552

Re: Link down link up speed 10 ??? Why

I have same problem in some routerboards...;((
by Jefte
Wed Sep 27, 2017 8:41 pm
Forum: Scripting
Topic: API - PHP [SOLVED]
Replies: 2
Views: 2037

API - PHP [SOLVED]

I have this command line -> /queue simple print where name~"pppoe" working fine. But my problem is with API , trying ... $API->write('/queue/simple/print',false); $API->write('=where=',false); $API->write("name~'pppoe'"); ignoring my regex '~pppoe' returning all 'queues'. somebod...
by Jefte
Tue Sep 05, 2017 4:44 pm
Forum: General
Topic: IP SERVICE SET.... - API PHP [SOLVED]
Replies: 3
Views: 2748

Re: IP SERVICE SET.... - API PHP [SOLVED]

Thx alot man , now works fine...
by Jefte
Tue Sep 05, 2017 3:39 pm
Forum: General
Topic: IP SERVICE SET.... - API PHP [SOLVED]
Replies: 3
Views: 2748

IP SERVICE SET.... - API PHP [SOLVED]

Hello guys , i have this both command -> (( /ip service set address=8.8.8.8 ssh OR -> /ip service set ssh address=8.8.8.8 ) ... and this work fine in command line. but i try do this in two forms with API lib php. $API->write('/ip/service/set',false); $API->write("=address=$ips",false); $AP...
by Jefte
Fri Aug 11, 2017 7:04 pm
Forum: General
Topic: API - PHP [SOLVED]
Replies: 2
Views: 1287

Re: API - PHP [SOLVED]

Thanks , $API->write('/interface/wireles/access-list/print',false); $API->write('=count-only=',false); $API->write('=where=',false); $API->write("?interface=$wlan"); Now , works so fine.
by Jefte
Fri Aug 11, 2017 4:40 pm
Forum: General
Topic: API - PHP [SOLVED]
Replies: 2
Views: 1287

API - PHP [SOLVED]

Hello guys , i have this command -> /interface wireless access-list print count-only where interface=wlan2 ... and this work fine in command line. but i try do this in API with lib php. $API->write('/interface/wireles/access-list/print',false); $API->write('=count-only=',false); $API->write('=where=...