Coding for packet header duplication
10 pts.
0
Q:
Coding for packet header duplication
I want to know, how to filter packet header duplication.
Packets may travel in sequentially over the internet.
If the headers duplicate, the traffic will delay.
so, I want to block the site that header duplicated.
It may be Perl, C++ or other programming languages.
ASKED: Sep 16 2008  1:50 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
115 pts.
0
A:
 RATE THIS ANSWER
+1
Click to Vote:
  •   1
  •  0
  • AddThis Social Bookmark Button
> I want to know, how to filter packet header duplication.

Really you don't :-) And that's why.

> Packets may travel in sequentially over the internet.

Yes for TCP packets.

> If the headers duplicate, the traffic will delay.

NO. The packet never duplicates in-transit. Everything is opposite: when packet is _dropped_ in-transit (or it takes too long to go there and here) only then it duplicates! If you will filter this duplicate packet, it will never reach the destination (or the answer that it is correctly delivered will never reach you)! That's the core of TCP algorithm and if you change it your traffic will stop completely. I don't recommend to filter duplicates (you may tune TCP stack instead, to wait for longer delay before resending or to send smaller segments...)

If you still like to filter despite of the danger, go to http://netfilter.org and look for more info. But first, learn more about TCP protocol.
Last Answered: Sep 18 2008  2:44 AM GMT by Nopius   115 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0