Re: ICMP types

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Alexander Samad wrote:
On Sat, Apr 30, 2005 at 02:23:24PM +0200, Mogens Valentin wrote:

Ken Hilliard wrote:

In reading different firewall scripts/tutorials many of them recommend
filtering ICMP packets. I added ICMP filter in my firewall but was
unsure of the value as well. What is the consensus view out there?

Not wanting to comment what the consensus are, but some types are generally considered nessesary to filter/allow.


But its really not just a matter of filtering this-or-that, also what's set in /proc . There's a lot to read...
A few ideas:


Filtering ICMP:

### Define icmp_packets chain:
$IPT -F icmp_packets
$IPT -X icmp_packets
$IPT -N icmp_packets
$IPT -A icmp_packets -p icmp --icmp-type echo-request -j ACCEPT
$IPT -A icmp_packets -p icmp --icmp-type echo-reply -j ACCEPT
$IPT -A icmp_packets -p icmp --icmp-type destination-unreachable -j ACCEPTlog
$IPT -A icmp_packets -p icmp --icmp-type network-unreachable -j ACCEPTlog
$IPT -A icmp_packets -p icmp --icmp-type network-prohibited -j ACCEPTlog
$IPT -A icmp_packets -p icmp --icmp-type source-quench -j ACCEPTlog
$IPT -A icmp_packets -p icmp --icmp-type parameter-problem -j ACCEPTlog
$IPT -A icmp_packets -p icmp --icmp-type time-exceeded -j ACCEPTlog
$IPT -A icmp_packets -p icmp --icmp-type fragmentation-needed -j ACCEPTlog
#$IPT -A icmp_packets -p icmp -j ACCEPTlog
$IPT -A icmp_packets -p icmp -j LOG



why not use
-m limit --limit 1/s --limit-burst 5 as well to limit them and then drop the rest!

Yes, you're right. Actually thought about it awhile ago, but forgot. Tnx for reminding me :- And yes, I do start off dropping everything...

--
Kind regards,
Mogens Valentin



[Index of Archives]     [Linux Netfilter Development]     [Linux Kernel Networking Development]     [Netem]     [Berkeley Packet Filter]     [Linux Kernel Development]     [Advanced Routing & Traffice Control]     [Bugtraq]

  Powered by Linux