Return-Path: <kissel@cis.udel.edu>
X-Original-To: dtn-interest@ietfa.amsl.com
Delivered-To: dtn-interest@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix)
 with ESMTP id E74A321F8713 for <dtn-interest@ietfa.amsl.com>;
 Thu, 10 May 2012 09:32:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.599
X-Spam-Level: 
X-Spam-Status: No, score=-6.599 tagged_above=-999 required=5
 tests=[BAYES_00=-2.599, RCVD_IN_DNSWL_MED=-4]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com
 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0RH-mEx5Z+L1 for
 <dtn-interest@ietfa.amsl.com>; Thu, 10 May 2012 09:32:04 -0700 (PDT)
Received: from mail.eecis.udel.edu (louie.udel.edu [128.4.40.12]) by
 ietfa.amsl.com (Postfix) with ESMTP id 0185221F8714 for
 <dtn-interest@irtf.org>; Thu, 10 May 2012 09:32:03 -0700 (PDT)
Received: from [192.168.1.50]
 (207-172-183-122.c3-0.tlg-ubr3.atw-tlg.pa.cable.rcn.com [207.172.183.122])
 (Authenticated sender: kissel@mail.eecis.udel.edu) by mail.eecis.udel.edu
 (Postfix) with ESMTP id B52A71A60; Thu, 10 May 2012 12:32:02 -0400 (EDT)
Message-ID: <4FABED86.8000301@cis.udel.edu>
Date: Thu, 10 May 2012 12:32:06 -0400
From: Ezra Kissel <kissel@cis.udel.edu>
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64;
 rv:12.0) Gecko/20120428 Thunderbird/12.0.1
MIME-Version: 1.0
To: "Scott, Keith L." <kscott@mitre.org>
References: <201205091656034891078@gmail.com>
 <5EE81C5C4CFFF4418C5EAD12F49D64EE2049C5@IMCMBX01.MITRE.ORG>
In-Reply-To: <5EE81C5C4CFFF4418C5EAD12F49D64EE2049C5@IMCMBX01.MITRE.ORG>
Content-Type: text/plain; charset=windows-1252; format=flowed
Content-Transfer-Encoding: 8bit
Cc: zhd5408 <zhd5408@gmail.com>, dtn-interest <dtn-interest@irtf.org>
Subject: Re: [dtn-interest] Can we implement DTN in Network layer of protocol
 stack ?
X-BeenThere: dtn-interest@irtf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: "The Delay-Tolerant Networking Research Group \(DTNRG\) - Announce."
 <dtn-interest.irtf.org>
List-Unsubscribe: <https://www.irtf.org/mailman/options/dtn-interest>,
 <mailto:dtn-interest-request@irtf.org?subject=unsubscribe>
List-Archive: <http://www.irtf.org/mail-archive/web/dtn-interest>
List-Post: <mailto:dtn-interest@irtf.org>
List-Help: <mailto:dtn-interest-request@irtf.org?subject=help>
List-Subscribe: <https://www.irtf.org/mailman/listinfo/dtn-interest>,
 <mailto:dtn-interest-request@irtf.org?subject=subscribe>
X-List-Received-Date: Thu, 10 May 2012 16:32:05 -0000

This list might be interested in our work on the eXtensible Session 
Protocol and our notion of a session-enabled buffer-and-burst model for 
data movement.  While our focus has been on high-performance, bulk data 
transfers, I believe our model could in many ways address what the 
original poster had in mind.

(PFLDNet 2010)
http://damsl.cis.udel.edu/projects/phoebus/phoebus_slabs.pdf

It has occurred to us on more than one occasion that we could apply our 
store-and-forward approach for managing the interaction between MANETs 
and DTNs, as well as optimizing WAN transfers for frequently 
disconnected endpoints where the latency of individual PDUs is less of a 
concern.

We would also very much welcome exploring the commonalities of BP with 
our notion of a Session-PDU within the DTNRG.

Regards,
- ezra

On 5/9/2012 8:26 AM, Scott, Keith L. wrote:
> Do you mean ‘can DTN be implemented underneath the sockets API’? And, if
> you want this to be completely transparent to applications, presumably
> ‘hiding underneath SOCK_STREAM or SOCK_DGRAM’?
>
> In a sense, there’s nothing in IP that prevents you from storing IP
> datagrams while waiting for a forward path to become available; the
> issues in implementing IP this way all have to do with the things around
> IP, e.g.:
>
> ·Routing implementations that drop datagrams when no next hop is available
>
> ·ARP (which has timeouts)
>
> ·DNS queries (which have timeouts)
>
> ·Routing protocols like OSPF (which have timeouts and which typically do
> not deal well with either scheduled connectivity or temporary partitions)
>
> ·Applications that expect either 1) real-time connectivity from IP –or-
> 2) no connectivity (but not a possibly-delayed store-and-forward service)
>
> Routing’s probably NOT an issue here if we’re talking about MANETs since
> we could tweak the MANET routing protocols, but some of the others (esp.
> application expectations) are a bit problematic. You’d also need to
> worry about how/if you want to implement things like custody transfer,
> the various bundle notifications, etc.
>
> That said, there are implementations of BP that live underneath IP (BBN
> has an implementation that does this). The chances are that the class of
> applications that would be amenable to ‘transparent’ transplantation to
> use BP services are UDP-based, and for these (if the applications don’t
> have timers that would preclude it) you might consider using the DTN
> Tunnel that’s in the DTN2 reference implementation or an equivalent.
> That is, if the application can handle it, just tunnel UDP over BP. If
> the application can’t handle it, then hiding BP underneath the sockets
> API wouldn’t work (without modifying the application) anyway.
>
> Another approach would be to ask: what’s the MANET getting you that
> DTN/BP can’t (or doesn’t)?
>
> --keith
>
> *From:*dtn-interest-bounces@irtf.org
> [mailto:dtn-interest-bounces@irtf.org] *On Behalf Of *zhd5408
> *Sent:* Wednesday, May 09, 2012 4:56 AM
> *To:* dtn-interest
> *Subject:* [dtn-interest] Can we implement DTN in Network layer of
> protocol stack ?
>
> Now almost all the DTN implement with Adding bundle layer between
> application and transport layer.
>
> These DTN are separated with MANET completely, all the data from MANET
> should be translated through the DTN gateway and all the applications
> used in DTN must be redesigned.But MANET and DTN can coexist in some cases.
>
> I wonder that whether can we design DTN via modifying the network layer,
> not using BP. Thus the MANET and DTN can coexist and it is transparent
> for upper layers. All the applications don't need to modify.
>
> If to do so. What problems will encounter? or is it possible?
>
> ------------------------------------------------------------------------
>
> heyeast
>
