Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:You're supposed to get an AS number. (Score 1) 150

The main benefit of Multipath TCP when used in multihoming scenarios compared to BGP-based multihoming is that Multipath TCP capable hosts can use different paths simultaneously while BGP-based multihoming would provide one path for each client server pair.

With Multipath TCP, multihoming must be exposed to the server. For example, consider a small enterprise network connected to two different providers, A and B. With BGP-based multihoming, you assign address C to your server and advertise it through the two providers via BGP. BGP decides which path will be used and the ASPath metric used by BGP is far from being the most accurate metric to evaluate the quality of a path.

With Multipath TCP, you should ask a block of addresses from both A and B and assign one address from each provider you your server, say A.1 and B.1. Both addresses are advertised in the DNS. Address A.1 is always reachable via provider A and B.1 always reachable via provider B. When a TCP connection reaches the server, say over A.1, it will also advertise address B.1 using Multipath TCP and a second subflow will be established. Multipath TCP will then regulate the usage of the two paths in function of the amount of congestion on each path. If one path fails, Multipath TCP will perform failover automatically.

Comment Re:API support (Score 4, Informative) 150

The current implementation in the Linux kernel only exposes the first address used in the connection to the application. If the addresses change, the application is not informed but the TCP connection remains alive. Exposing addresses to the application is an old mistake of the socket interface. The socket interface does not expose packet losses because TCP deals with them and provides a bytestream abstraction to the application. Multipath TCP does the same, it handles all changes in address transparently to the application.

Comment Re:what's happening with SCTP? (Score 4, Informative) 150

SCTP is cleaner than Multipath TCP, but it suffers from two drawbacks that hinder its deployment in today's Internet : - many middleboxes only support IP, ICMP and TCP and discard SCTP packets (or do not perform NAT correctly) - applications need to be modified to support SCTP Multipath TCP is an evolution to TCP that works with unmodified applications and unmodified middleboxes.
The Internet

Submission + - A 50 Gbps TCP connection with Multipath TCP (multipath-tcp.org)

Olivier Bonaventure writes: The TCP protocol is closely coupled with the underlying IP protocol.
Once a TCP connection has been established through one IP address,
the other packets of the connection must be sent from this address. This
makes mobility and load balancing difficult. Multipath TCP is
a new extension that solves these old problems by decoupling TCP from
the underlying IP. A Multipath TCP connection can send packets over
several interfaces/addresses simultaneously while remaining backward
compatible with existing TCP applications. Multipath TCP has several use
cases including smartphones that can use both WiFi and 3G or servers
that can pool multiple high-speed interfaces. Christoph Paasch, Gregory
Detal and their colleagues who develop the implementation of
Multipath TCP in the Linux kernel have achieved 50 Gbps for a single TCP
connection by pooling together six 10 Gbps interfaces. See here for
technical details and full source code.

Slashdot Top Deals

If all else fails, lower your standards.

Working...