-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Simultaneous open of TCP connections" is not supported. #58
Comments
What's are the implications of this being missing? / What's the reason for the need to fix this? :) |
Correcting myself here. :) Thanks for making me learn something new! ;) |
Lol. Still, I admit I could have been more wordy. I case someone else wants a summary: "Simultaneous open of TCP connections" is when all of the following conditions are met: Two endpoints
As cetex mentioned, this happens very rarely. I far as I know, there is no reason why anyone would actually actively want this to happen (even as an attack, AFAIK); it's simply a sporadic phenomenon TCP is supposed to handle gracefully. Also, it doesn't affect other connections at all. Instead of doing what the RFC wants, Jool simply drops the IPv4 connection attempt. Jool will not crash, but what happens at the endpoints is somewhat implementation specific. In the worst case, they will simply have to reattempt the connection.
Update 2014-06-25: This is currently being worked at https://github.com/NICMx/NAT64/tree/issue58. |
Another update: My understanding of the consequences of the current implementation have changed. This is what the RFC wants us to do: If Jool receives a IPv4-TCP connection request, the packet should be stored.
This is what Jool currently does: If Jool receives a IPv4-TCP connection request, the packet is discarded.
Because the end result is the same in both second bullets, it just so happens that Jool has supported Simultaneous Open of TCP connections all along. What it does poorly is is let IPv4 nodes know that their TCP connections cannot be made when there is no Simultaneous Open... |
This was fixed and the changes were merged into the master branch; Closing. |
The NAT64 should store IPv4-TCP packets for which there's no state for a while.
This is explained in RFC 6146 page 28.
The text was updated successfully, but these errors were encountered: