Linux - SecurityThis forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I have a lot of rejected packets going to Port 0, mostly in multiples of 7.
Can anyone explain what these are, or better still, how to set up a rule in ipchains which would allow them to be dropped gracefully (i.e. not hit my default rule which logs)?
Thanks in advance!
----------- snip -------------
Rejected packets from n146-109-141-208.tranquility.net (208.141.109.146).
Port 0 (icmp,eth0,input): 7 packet(s).
Total of 7 packet(s).
Rejected packets from fc-pm6-07.enetis.net (208.141.217.198).
Port 0 (icmp,eth0,input): 7 packet(s).
Total of 7 packet(s).
Rejected packets from s38.pm6.ovis.net (208.140.192.246).
Port 0 (icmp,eth0,input): 7 packet(s).
Total of 7 packet(s).
-------- end snip ----------
Theyre ping (icmp) packets. Could be someone scanning you and using bogus ips, probably the case if youre getting alot of them at the same time.
Put the folowing in a shell script:
----------------------------------------
# Disable response to ping.
/bin/echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_all
# Disable response to broadcasts.
/bin/echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.