I am trying to write a conntrack helper mod and am having difficulty getting all the various data streams associated with one logical connection. The data flows are as follows:
Host 1:P1 -> Host 2:P0 Host 1:P0 <- Host 2:P2 Host 1:P0 <- Host 2:P3 Host 1:P1 -> Host 2:P0 Host 1:P0 <- Host 2:P4 Host 1:P1 -> Host 2:P0 All of the connections use UDP. I want to have the first line (H1:p1->H2:P0) be the main connection with all the other ones related / associated with it. I have been able to relate the H1:P0<-H2:P2 connection by creating an expected connection by including everything but P2 in a tuple. I though this would catch the other ones, but it doesn't. If I specify a related tuple as (H1:P0<-H2:any port) why does it only work for the first instance? Any help / pointers to other mods doing this would be great! Brennen Reynolds <[EMAIL PROTECTED]>