I want to block this IP - so I will not send to him any data
so I did this
Code: Select all
chain=output action=drop dst-address=162.222.215.38 log=no log-prefix=""
Thanks ,
chain=output action=drop dst-address=162.222.215.38 log=no log-prefix=""
/ip firewall filter
add chain=forward dst-address=162.222.215.38 action=drop
probably you have open the DNS service to the world...well maybe i have another problem
I have connected my RB to a modem and coonet to him using pppoe-out
nothing is connected to the RB , only a computer in the same network without gateway
so the computer doesn't do to the internet
but i have in the Tx 4-8M - it's like someine is downloading from me something
how can i see which IP and block it?
agree with thisIf input chain says:
Allow established,related
Allow ICMP
Drop in-interface=pppoe1-out
(3 rules in that exact order)
Then you'll be safely blocking everything from the Internet - including DNS queries- but allowing anything that's a reply for something the Mikrotik requested.
Nice and easy.
That's all it is - your router's firewall isn't a force field that prevents packets from even reaching the router at all - the TCP/SYN packet (requesting a new connection) will reach your router - and the firewall will examine the packet and discard it, or if it's allowed by the firewall, the packet will be passed up the IP stack, where TCP will realize that your router isn't even listening on port 21, so the packet will ultimately not do anything - but torch doesn't looks for things like "this packet works / this packet is discarded by firewall" - it simply counts packets that arrive on the wire, no matter what the packets' ultimate fate might be.or it just show me "someon is trying yo connect using ftp"?
Thanks ,