Search String: Display: Description: Sort:

Results:

References: [ +subject:/^(?:^\s*(re|sv|fwd|fw)[\[\]\d]*[:>-]+\s*)*missing\s+icmp\s+errors\s+for\s+udp\s+packets\s*$/: 82 ]

Total 82 documents matching your query.

1. Re: missing icmp errors for udp packets (score: 1)
Author: Andi Kleen <ak@xxxxxx>
Date: Wed, 1 Aug 2001 17:07:42 +0200
[Sorry for the late answer; I'm still travelling] I think just turning the ratelimit sysctls into boolean that turn on/off if the ICMP is checked against a single ratelimit per dst_entry would be fin
/archives/netdev/2001-08/msg00000.html (8,610 bytes)

2. Re: missing icmp errors for udp packets (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Tue, 31 Jul 2001 23:04:06 +0400 (MSK DST)
Argh... I see, gap is too short and not enough of tokens are accumulated. Thank you. Damn, I see two ways: 1. to make sysctl active function and recalculate max/sum of rates over classes and fill bu
/archives/netdev/2001-08/msg00001.html (8,998 bytes)

3. Re: missing icmp errors for udp packets (score: 1)
Author: Chris Wedgwood <cw@xxxxxxxx>
Date: Wed, 1 Aug 2001 07:23:47 +1200
Or to remove limiting distinguishing types, which is ideal logically. Why do we do this anyhow? --cw - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message
/archives/netdev/2001-08/msg00003.html (8,771 bytes)

4. Re: missing icmp errors for udp packets (score: 1)
Author: Chris Wedgwood <cw@xxxxxxxx>
Date: Wed, 1 Aug 2001 07:34:41 +1200
Anyway, it is clear that echos are to be limited differently of errors. Even then I wonder if it is worth the code. If you are rate-limiting, who cares if drop the odd echo/reply? ICMP echo/reply is
/archives/netdev/2001-08/msg00004.html (8,940 bytes)

5. Re: missing icmp errors for udp packets (score: 1)
Author: Chris Wedgwood <cw@xxxxxxxx>
Date: Wed, 1 Aug 2001 07:41:32 +1200
To bind all of them together? Sure... why not? The kernel normally does one of two things -- multiplex hardware resources for applications or -- cheap router thing "really good ping responder" is a p
/archives/netdev/2001-08/msg00005.html (9,214 bytes)

6. Re: missing icmp errors for udp packets (score: 1)
Author: Pekka Savola <pekkas@xxxxxxxxxx>
Date: Tue, 31 Jul 2001 22:59:39 +0300 (EEST)
bad ping responder == bad PR ;-) And anyway, who is anyone to judge what the system should be used for? I want a system to respond to ping without limitations; it's good for debugging, diagnostics, e
/archives/netdev/2001-08/msg00009.html (10,119 bytes)

7. Re: missing icmp errors for udp packets (score: 1)
Author: Pekka Savola <pekkas@xxxxxxxxxx>
Date: Thu, 2 Aug 2001 22:31:00 +0300 (EEST)
As this happening is rather rare, would there be resistance for adding this as an intermediate fix, to be replaced later with a bigger overhaul if that is to be decided? For 99.9% of cases, this work
/archives/netdev/2001-08/msg00033.html (10,351 bytes)

8. Re: missing icmp errors for udp packets (score: 1)
Author: "David S. Miller" <davem@xxxxxxxxxx>
Date: Fri, 3 Aug 2001 01:58:54 -0700 (PDT)
Please people, just make some decision and send me the final patch :-) Later, David S. Miller davem@xxxxxxxxxx
/archives/netdev/2001-08/msg00040.html (8,709 bytes)

9. missing icmp errors for udp packets (score: 1)
Author: xxxxxxxxxxxxxx>
Date: Wed, 25 Jul 2001 22:00:29 +0200
hi folks! assertation: 2.4.7 omits icmp port unreachable errors for unbound udp ports on non-local interfaces. sounds strange? here are my observations: linux host guardian linux host ghanima [sessio
/archives/netdev/2001-07/msg00087.html (11,843 bytes)

10. Re: missing icmp errors for udp packets (score: 1)
Author: <kuznet@xxxxxxxxxxxxx>
Date: Fri, 27 Jul 2001 09:28:43 +0400 (MSD)
Check ICMP error rate limits: /proc/sys/net/ipv4/icmp_destunreach_rate Alexey
/archives/netdev/2001-07/msg00106.html (8,784 bytes)

11. Re: missing icmp errors for udp packets (score: 1)
Author: <laforge@xxxxxxxxxxxx>
Date: Sat, 28 Jul 2001 23:13:30 +0200
ghanima:~$ cat /proc/sys/net/ipv4/icmp_destunreach_rate 100 i want to thank you, for being the first one recognizing this bug report at all, but please do read my description a little bit more carefu
/archives/netdev/2001-07/msg00114.html (10,949 bytes)

12. Re: missing icmp errors for udp packets (score: 1)
Author: <therapy@xxxxxxxxxxxxx>
Date: Sun, 29 Jul 2001 07:57:48 +0300 (EEST)
I did a little bit of investigation, and I think the reason for this can seen. Not from the dump though: [problem; generated by nmap but no response sent]: 07:34:52.126018 193.94.160.1.5000 > 193.166
/archives/netdev/2001-07/msg00115.html (11,216 bytes)

13. Re: missing icmp errors for udp packets (score: 1)
Author: ola <pekkas@xxxxxxxxxx>
Date: Sun, 29 Jul 2001 13:16:15 +0200
probably there is a bug in the icmp reply throttling code? without pinging first, there are icmp replies. with pinging first, there are no icmp replies. with pinging and heavy udp scanning, there are
/archives/netdev/2001-07/msg00116.html (9,317 bytes)

14. Re: missing icmp errors for udp packets (score: 1)
Author: <therapy@xxxxxxxxxxxxx>
Date: Sun, 29 Jul 2001 14:49:42 +0300 (EEST)
Loopback is not subject to these restrictions, net/ipv4/icmp.c:icmpv4_xrlim_allow : /* No rate limit on loopback */ if (dst->dev && (dst->dev->flags&IFF_LOOPBACK)) return 1; -- Pekka Savola "Tell me
/archives/netdev/2001-07/msg00117.html (9,121 bytes)

15. Re: missing icmp errors for udp packets (score: 1)
Author: ola <pekkas@xxxxxxxxxx>
Date: Sun, 29 Jul 2001 19:27:05 +0400 (MSK DST)
Alas, I do not believe to any results, obtained with kdb. I believe to plain logic more. :-) Particularly, I do not believe to this at all. 99% - the problem is with rate limiting. Loopback is speci
/archives/netdev/2001-07/msg00118.html (8,717 bytes)

16. Re: missing icmp errors for udp packets (score: 1)
Author: x>
Date: Sun, 29 Jul 2001 19:59:11 +0400 (MSK DST)
Congratulations! That's why I do not see this, forgot to ping before. :-) The patch is enclosed. Alexey -- ../dust/vger3-010728/linux/net/ipv4/icmp.c Thu Jun 14 22:49:44 2001 +++ linux/net/ipv4/icmp
/archives/netdev/2001-07/msg00119.html (10,430 bytes)

17. Re: missing icmp errors for udp packets (score: 1)
Author: ham" <jacoba@xxxxxxxxx>
Date: Sun, 29 Jul 2001 20:17:33 +0200
don't be polemic. wrong, i've found 3 lo/!lo conditionals at the first look. anyway, it is the rate limiting. i disabled icmpv4_xrlim_allow, and now every udp packets get it's proper icmp error. now,
/archives/netdev/2001-07/msg00124.html (9,024 bytes)

18. Re: missing icmp errors for udp packets (score: 1)
Author: <therapy@xxxxxxxxxxxxx>
Date: Mon, 30 Jul 2001 16:03:40 +0300 (EEST)
Alexey, there is a tiny problem with your patch. If you reboot the computer, the _first_ ping/scan attempt will not return icmp dest unreachable. All of the rest do. If the network was quiet enough,
/archives/netdev/2001-07/msg00131.html (11,273 bytes)

19. Re: missing icmp errors for udp packets (score: 1)
Author: <kuznet@xxxxxxxxxxxxx>
Date: Mon, 30 Jul 2001 02:20:27 +0400 (MSD)
Ratelimit checks are simply skipped for it, they apply only to icmps, which are going to be sent to network. Source of the problem was that icmp holds single variable for rate, but still pretends to
/archives/netdev/2001-07/msg00139.html (9,512 bytes)

20. Re: missing icmp errors for udp packets (score: 1)
Author: Boucher <marc@xxxxxxx>
Date: Tue, 31 Jul 2001 22:33:56 +0400 (MSK DST)
Hmm... how fast after reboot? Alexey
/archives/netdev/2001-07/msg00141.html (9,566 bytes)


This search system is powered by Namazu