> Can anyone give any pointers to what these are:
>
> Sep 9 11:38:21 picard kernel: ICMP: runt packet
> Sep 9 11:38:41 picard kernel: ICMP: runt packet
> Sep 9 11:41:21 picard kernel: ICMP: runt packet
> Sep 9 11:41:37 picard kernel: ICMP: runt packet
>From /usr/src/linux/net/ipv4/icmp.c:
if(len < sizeof(struct icmphdr))
{
icmp_statistics.IcmpInErrors++;
NETDEBUG(printk(KERN_INFO "ICMP: runt packet\n"));
kfree_skb(skb, FREE_READ);
return 0;
}
IOW, it refers to an ICMP packet which is too short.
-- Glynn Clements <glynn@sensei.co.uk> - To unsubscribe from this list: send the line "unsubscribe linux-net" in the body of a message to majordomo@vger.rutgers.edu