IP_MASQ: reverse ICMP: failed checksum from x.x.x.x이게 몰까

littletirano의 이미지

부팅하자 마자 화면에 몇분간 간격으로 계속 아래 메세지가 뜨네요.

IP_MASQ: reverse ICMP: failed checksum from 211.212.124.51

왜그런지..

문제가 있다면 어떻게 하면 될지 답변 부탁드립니다.

웹에서 찾아 보니까

/* Ensure the checksum is correct */
if (ip_compute_csum((unsigned char *) icmph, len))
{
/* Failed checksum! */
printk(KERN_INFO "MASQ: forward ICMP: failed checksum from %s!\n",
in_ntoa(iph->saddr));
return(-1);
}

이런 걸 찾았거든요.

힘드내요.