Re: [vnrg] Logical vs. virtual

Roland Bless <roland.bless@kit.edu> Fri, 11 February 2011 15:59 UTC

Return-Path: <roland.bless@kit.edu>
X-Original-To: vnrg@core3.amsl.com
Delivered-To: vnrg@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 4BBFB3A69B2 for <vnrg@core3.amsl.com>; Fri, 11 Feb 2011 07:59:14 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.249
X-Spam-Level:
X-Spam-Status: No, score=-6.249 tagged_above=-999 required=5 tests=[BAYES_00=-2.599, HELO_EQ_DE=0.35, RCVD_IN_DNSWL_MED=-4]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jA8MP+GdwXfX for <vnrg@core3.amsl.com>; Fri, 11 Feb 2011 07:59:13 -0800 (PST)
Received: from iramx2.ira.uni-karlsruhe.de (iramx2.ira.uni-karlsruhe.de [141.3.10.81]) by core3.amsl.com (Postfix) with ESMTP id 45D7A3A68D4 for <vnrg@irtf.org>; Fri, 11 Feb 2011 07:59:12 -0800 (PST)
Received: from irams1.ira.uni-karlsruhe.de ([141.3.10.5]) by iramx2.ira.uni-karlsruhe.de with esmtps port 25 id 1PnvOy-000870-0w for <vnrg@irtf.org>; Fri, 11 Feb 2011 16:59:26 +0100
Received: from i72ms.tm.uni-karlsruhe.de ([141.3.70.5] helo=smtp.ipv6.tm.uni-karlsruhe.de) by irams1.ira.uni-karlsruhe.de with esmtps port 25 for <vnrg@irtf.org> id 1PnvOx-0005wB-SQ; Fri, 11 Feb 2011 16:59:19 +0100
Received: from vorta.tm.kit.edu (roland.tm.uni-karlsruhe.de [IPv6:2001:638:204:6:21b:fcff:fe96:fe02]) by smtp.ipv6.tm.uni-karlsruhe.de (Postfix) with ESMTP id CA3B02FC00A for <vnrg@irtf.org>; Fri, 11 Feb 2011 16:59:19 +0100 (CET)
Received: from [IPv6:::1] (ip6-localhost [IPv6:::1]) by vorta.tm.kit.edu (Postfix) with ESMTPS id 9A1C1358 for <vnrg@irtf.org>; Fri, 11 Feb 2011 16:59:19 +0100 (CET)
Message-ID: <4D555CD7.102@kit.edu>
Date: Fri, 11 Feb 2011 16:59:19 +0100
From: Roland Bless <roland.bless@kit.edu>
Organization: Institute of Telematics, Karlsruhe Institute of Technology
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101208 Thunderbird/3.1.7
MIME-Version: 1.0
To: vnrg@irtf.org
References: <4C3F0DC4.2060705@intec.UGent.be> <4C3F26BF.7090009@isi.edu><4C3F390A.2090403@intec.UGent.be> <4C3F3C87.1010303@isi.edu> <E84E7B8FF3F2314DA16E48EC89AB49F0818112@DAPHNIS.office.hd> <4D517618.2050808@rfc1925.net> <E84E7B8FF3F2314DA16E48EC89AB49F005CD8DC0@PALLENE.office.hd>
In-Reply-To: <E84E7B8FF3F2314DA16E48EC89AB49F005CD8DC0@PALLENE.office.hd>
X-Enigmail-Version: 1.1.2
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 7bit
X-ATIS-AV: ClamAV (irams1.ira.uni-karlsruhe.de)
X-ATIS-AV: ClamAV (iramx2.ira.uni-karlsruhe.de)
X-ATIS-AV: Kaspersky (iramx2.ira.uni-karlsruhe.de)
X-ATIS-Timestamp: iramx2.ira.uni-karlsruhe.de 1297439966.365750000
Subject: Re: [vnrg] Logical vs. virtual
X-BeenThere: vnrg@irtf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: "Virtual Networks Research Group \(VNRG\) discussion list" <vnrg.irtf.org>
List-Unsubscribe: <https://www.irtf.org/mailman/listinfo/vnrg>, <mailto:vnrg-request@irtf.org?subject=unsubscribe>
List-Archive: <http://www.irtf.org/mail-archive/web/vnrg>
List-Post: <mailto:vnrg@irtf.org>
List-Help: <mailto:vnrg-request@irtf.org?subject=help>
List-Subscribe: <https://www.irtf.org/mailman/listinfo/vnrg>, <mailto:vnrg-request@irtf.org?subject=subscribe>
X-List-Received-Date: Fri, 11 Feb 2011 15:59:14 -0000

Hi,

the difference between logical and virtual isn't
that easy and sometimes seems artificial.
According to an older (but nice) German book on operating system
architecture (H. Wettstein, Systemarchitektur)
the following distinction is made:

* a virtual resource appears to a user of that resource
  as if he is the (exclusive) owner of that resource.
  A user's access is always carried out on the real resource.

Thus, a virtual resource simplifies the handling of
a scarce real resource, while hiding the shortage. Virtual
memory is a typical example here - a process can use
a larger virtual memory than there is physically real
memory available. However, real memory is accessed
in case the virtual resource is used - the virtual memory
manager has to decide which parts are mapped into
that physical memory region or swapped to disc respectively.

So splitting a physical link into several virtual
links is also a valid example if the virtual
links offer the same interface and features as the
real medium, e.g., each VLAN may appear in a host
as separate Ethernet interface.

The book explicitly distinguishes virtual from logical
resources as follows:

* a logical resource is created by transforming one
  or several features of a real resource and by
  offering it in this way to the user.

This requires use of a mapping layer that transforms
the interface of the real resource(s) into a more
purposeful interface. Thus, the logical resource/device
may be simpler to handle from a user's point of view
and constitutes an improved but different resource
or device.

For example, block-oriented devices are logical
devices if the physical underlying device offers
only character-oriented access. A well-known example
is to create a single (larger) logical volume out of
several different physical disks. File-oriented access
is also a logical concept, because it abstracts from
block-oriented sequential structures of the data storage.
Consider a logical desktop appearing as single one although
composed of two different adjacent screens in contrast
to larger virtual desktop.

An example in the networking context are all layers:
a) a link layer offering frame-oriented transport on
   top of the bit-oriented physical layer
b) an end-to-end IP packet transport on top of the concatenated
   link layer connections
c) a reliable transport link on top of an unreliable link
etc...

Note that both concepts are providing abstractions.
I'm not quite sure that the distinction between logical
and virtual is helpful or useful in our context. However,
it might explain why IP is not a virtual network, but
logical one (same for TCP on top of IP) - as I also postulated
in an earlier mail on this list.

Just my two cents.

Regards,
 Roland