I has a simple freebsd 9.0 machine.But everytime i start my freebsd and use command dmesg. There aren't any hardware information there but full of
"Limiting icmp unreach response from 1293 to 200 packets/sec"
there.
Does any one there can tell me why this happen? And how can i erase this ?
Also you can disable this messages by sysctl:
More info in
man blackhole
Add those lines to
/etc/sysctl.conf
to make those changes persistent.It seems that your machine is being hit by UDP packets which are destined to closed ports. So, it is generating ICMP unreachable responses and this message tells you that the current limit 200 packets/sec has been reached. You need to find the reason of such a traffic. Packet capturing tools like tcpdump/wireshark are very useful to diagnose such problems. You can find the packets received by your machine and who is sending them.