Thursday, November 27, 2008

A Reliable Multicast Framework for Light-weight Sessions and Application Level Framing

This paper describes SRM, an algorithm designed to support scalable, reliable multicast delivery. The authors importantly explain that several integral TCP parameters lose meaning in a multicast environment; for example, the round-trip time used for retransmission or the delay-bandwidth product is difficult to pinpoint when receivers have several orders of difference in magnitude. For this reason, receiver-based control is preferred to the traditional sender-based, fate-sharing approach. The SRM framework builds upon application-level framing (ALF) as well as the Light-Weight Session (LWS) protocol that was designed for large-scale conferencing applications. SRM includes some interesting features, such as localized retransmissions to avoid multicast spamming. However, I found some of the detailed discussion of simulation somewhat tedious. This was an interesting paper but not necessary essential to the syllabus.

Monday, November 17, 2008

A Delay-Tolerant Network Architecture for Challenged Internets

This paper presents the DTN architecture, designed for networks with exceptionally poor or unpredictable performance characteristics. The existing TCP/IP service model makes basic assumptions about the existence of end-to-end paths between any two nodes, as well as upper bounds on round-trip times and packet drop probabilities. The growing importance of networks that violate these assumptions - for example, sensor networks or military ad-hoc networks - is the motivation behind the DTN architecture. Rather than adopting band-aid solutions using link-repair approaches or proxies, DTN uses a messaging scheme and is based on a partially connected network graph model.

Unlike the majority of papers covered in this course (apart from the really early ones), this challenged some fundamental assumptions of the Internet. Given that deep-space and military communication, as a few examples, will remain essential for years to come, the motivation behind a DTN-like architecture is very convincing. It's compatible with the current TCP/IP stack, appears to be a practical solution at first-glance and definitely merits further study. This one definitely belongs in the syllabus as a bit of a wild-card paper.

An Architecture for Internet Data Transfer

This paper introduces an extensible data-oriented transfer (DOT) service that decouples application-specific content negotiation from generic data transfers. One motivation behind the DOT service is to optimize bandwidth usage by minimizing control overhead (e.g., from HTTP or SMTP messages). Moreover, this modular architecture not only eliminates the need for re-implementation for each new service but also enables more focused efforts to improve data transfer. The authors acknowledge that since the DOT service is essentially designed for bulk transfers, services that promise low round-trip latency (e.g., CDNs or Google web services) or those with small-sized transfers pose an inherent incompatibility issue. The solution offered here is to use traditional delivery mechanisms for such cases rather than compromise the advantages of DOT.

The concept proposed in this paper is already used in sectors of the Internet today; for example, real-time media can use a TCP-based control plane and RTP over UDP for bulk packet delivery. Even though several complications arise with the large-scale employment of a DOT-like service (many of them addressed in the paper), it seems worthy of further exploration nevertheless. The idea is not too far-fetched and somewhat feasible, even if not completely practical for the Internet.

Wednesday, November 12, 2008

X-Trace: A Pervasive Network Tracing Framework

This paper introduces X-Trace, a unified network tracing framework for that spans several protocol layers (as opposed to tcpdump, for example) and applications. The concept behind X-Trace debugging is essentially to carry X-trace meta-data in packets. Received meta-data at one node's layer will be forwarded to the next node at that layer and related packets (such as in a DNS response) will all carry meta-data so that they are effectively linked together in traces. Finally, a reporting infrastructure (with a website, etc.) is presented to ensure visibility of network trace data to all relevant parties.

This is a neat idea that could potentially be quite useful for today's large-scale distributed systems. That said, I'm not certain whether the packet overhead due to X-Trace is justified by its benefits. Some of the applications that are mentioned (tracing messages, ISP troubleshooting, etc.) make a lot of sense and this is definitely a concept worthy of additional investigation. The paper goes well with Paxson's study on packet dynamics and definitely belongs in the syllabus.

End-to-End Internet Packet Dynamics

This paper sets out to model and explore measurements that reflect packet dynamics over a network. The author approaches the Internet as a mysterious quantity that needs to be probed to discover "pathologies" in the network. Specifically, out-of-order delivery, packet replication and packet corruption are examined using TCP-based measurement techniques. Of course, there is an emphasis on the need to account for TCP protocol-related symptoms to attain accurate measurements. Statistical analysis reveals several interesting trends, such as the occurrence of spikes (indicating a minimum time related to common 56 kbps links) in time-plots for out-of-order delivery . Moreover, measurements are explained in the context of TCP congestion control and acknowledgment mechanisms and reveal valuable insight into why, for example, TCP uses triple duplicate acknowledgments to trigger fast retransmission (and why it should but can't make a change to only two duplicate acknowledgments).

One thing that I appreciated here was the clear acknowledgment of possible improvements in measurement techniques and the drawbacks of some techniques employed in this study. This paper definitely gives an idea of just how complex and unpredictable Internet packet dynamics can be and provides approaches to measuring them; such measurements may be more difficult in today's significantly more evolved Internet, but several notions discussed here still hold value. For its time, Paxson's paper dispels several crucial assumptions about the Internet.

Thursday, November 6, 2008

Internet Indirection Infrastructure

This paper proposes an architectural revamping of the Internet to decouple the act of sending and receiving. In this scheme, packets carry identifiers rather than IP addresses - all packets with a given identifier are directed towards an i3 node using a Chord-style mapping infrastructure. Finally, receivers will trigger the appropriate i3 nodes to route packets to receivers with matching identifiers. In addition to using identifier matching at i3 nodes to route packets to the intended destination, partial matches can be used to simplify multicast and load-balancing mechanisms.

One immediate concern with this mechanism, quite like the ones that arose for the previous DOA paper, is that the DHT look-up and intermediate i3 node traversal could significantly hamper the round-trip latency. Implementing reliability mechanisms (i.e., TCP) on such an architecture could also be a mess, as could security complications. Overall, there are some neat ideas presented here (more so than in the DOA paper) but the concept seems quite unrealistic and impractical.

Middleboxes No Longer Considered Harmful

This paper underscores the vital role of middle-boxes - specifically, NAT boxes and firewalls - in the modern Internet. Traditional networking principles dictate that such middle-boxes violate not only the end-to-end principle but also the notion that end hosts must be uniquely identifiable throughout a network. The authors claim, however, that these components provide essential security mechanisms, address space utilization and performance enhancements (in the case of caching). Instead of trying to achieve compliance with the "rules" of the Internet, the authors present a Delegation Oriented Architecture (DOA) that seamlessly incorporates middle-boxes. Essentially, DOA provisions unique endpoint IDs in a flat name-space and the ability for the sender and receiver to specify intermediaries that must be traversed (for example, a NAT that must process the packet).

In my mind, the proposed DOA architecture has several issues, starting with the fact that the intermediary specification still appears to defy the end-to-end principle. More importantly, the overhead introduced in the DOA packet header is considerable and I'm not sure how the authors underplayed this issue. Finally, the idea that DHT look-ups (going by previous papers, these are already intricate) will be required on a regular basis raises doubts over the performance and scalability of this architecture. The concept was interesting but the motivation is not very convincing (do we really want to introduce so much overhead just to maintain the sanctity of some networking "rules" or middle-boxes?) and the potential drawbacks are not sufficiently addressed.