digplanet beta 1: Athena Share digplanet:

Computer networking

History of the Internet

Packets (information technology)

 

Agriculture

Applied sciences

Arts

Belief

Business

Chronology

Culture

Education

Environment

Geography

Health

History

Humanities

Language

Law

Life

Mathematics

Nature

People

Politics

Science

Society

Technology

Packet switching is a digital networking communications method that groups all transmitted data – regardless of content, type, or structure – into suitably sized blocks, called packets. Packet switching features delivery of variable-bit-rate data streams (sequences of packets) over a shared network. When traversing network adapters, switches, routers and other network nodes, packets are buffered and queued, resulting in variable delay and throughput depending on the traffic load in the network.

Packet switching contrasts with another principal networking paradigm, circuit switching, a method which sets up a limited number of dedicated connections of constant bit rate and constant delay between nodes for exclusive use during the communication session. In case of traffic fees (as opposed to flat rate), for example in cellular communication services, circuit switching is characterized by a fee per time unit of connection time, even when no data is transferred, while packet switching is characterized by a fee per unit of information.

Two major packet switching modes exist; (1) connectionless packet switching, also known as datagram switching, and (2) connection-oriented packet switching, also known as virtual circuit switching. In the first case each packet includes complete addressing or routing information. The packets are routed individually, sometimes resulting in different paths and out-of-order delivery. In the second case a connection is defined and preallocated in each involved node during a connection phase before any packet is transferred. The packets include a connection identifier rather than address information, and are delivered in order. See below.

Packet mode communication may be utilized with or without intermediate forwarding nodes (packet switches or routers). In all packet mode communication, network resources are managed by statistical multiplexing or dynamic bandwidth allocation in which a communication channel is effectively divided into an arbitrary number of logical variable-bit-rate channels or data streams. Statistical multiplexing, packet switching and other store-and-forward buffering introduces varying latency and throughput in the transmission. Each logical stream consists of a sequence of packets, which normally are forwarded by the multiplexers and intermediate network nodes asynchronously using first-in, first-out buffering. Alternatively, the packets may be forwarded according to some scheduling discipline for fair queuing, traffic shaping or for differentiated or guaranteed quality of service, such as weighted fair queuing or leaky bucket. In case of a shared physical medium, the packets may be delivered according to some packet-mode multiple access scheme.

Multiplex
techniques
Circuit mode
(constant bandwidth)
TDM · FDM · SDM
Polarization multiplexing
Spatial multiplexing (MIMO)
Statistical multiplexing
(variable bandwidth)
Packet mode · Dynamic TDM
FHSS · DSSS
OFDMA · SC-FDM · MC-SS
Related topics
Channel access methods
Media Access Control (MAC)

Contents

[edit] History

The concept of switching small blocks of data was first explored by Paul Baran in the early 1960s. Independently, Donald Davies at the National Physical Laboratory (NPL) in the UK had developed the same ideas a few years later (Abbate, 2000).

Leonard Kleinrock conducted early research in queueing theory which would be important in packet switching, and published a book in the related field of digital message switching (without the packets) in 1961; he also later played a leading role in building and management of the world's first packet-switched network, the ARPANET.

Baran developed the concept of message block switching during his research at the RAND Corporation for the US Air Force into survivable communications networks, first presented to the Air Force in the summer of 1961 as briefing B-265[1] then published as RAND Paper P-2626 in 1962 and then including and expanding somewhat within a series of eleven papers titled On Distributed Communications in 1964. Baran's P-2626 paper described a general architecture for a large-scale, distributed, survivable communications network. The paper focuses on three key ideas: first, use of a decentralized network with multiple paths between any two points; and second, dividing complete user messages into what he called message blocks (later called packets); then third, delivery of these messages by store and forward switching.

Baran's study made its way to Robert Taylor and J.C.R. Licklider at the Information Processing Technology Office, both wide-area network evangelists, and it helped influence Lawrence Roberts to adopt the technology when Taylor put him in charge of development of the ARPANET.

Baran's work was similar to the research performed independently by Donald Davies at the National Physical Laboratory, UK. In 1965, Davies developed the concept of packet-switched networks and proposed development of a UK wide network. He gave a talk on the proposal in 1966, after which a person from the Ministry of Defence (MoD) told him about Baran's work. A member of Davies' team met Lawrence Roberts at the 1967 ACM Symposium on Operating System Principles, bringing the two groups together.

Interestingly, Davies had chosen some of the same parameters for his original network design as Baran, such as a packet size of 1024 bits. In 1966 Davies proposed that a network should be built at the laboratory to serve the needs of NPL and prove the feasibility of packet switching. The NPL Data Communications Network entered service in 1970. Roberts and the ARPANET team took the name "packet switching" itself from Davies's work.

The first computer network and packet switching network deployed for computer resource sharing was the Octopus Network at the Lawrence Livermore National Laboratory that began connecting four Control Data 6600 computers to several shared storage devices (including an IBM 2321 Data Cell[2] in 1968 and an IBM Photostore[3] in 1970) and to several hundred Teletype Model 33 ASR terminals for time sharing use starting in 1968.[4]

In 1973 Vint Cerf and Bob Kahn wrote the specifications for Transmission Control Protocol (TCP), an internetworking protocol for sharing resources using packet-switching among the nodes.

[edit] Connectionless and connection-oriented packet switching

The service actually provided to the user by networks using packet switching nodes can be either connectionless (based on datagram messages), or virtual circuit switching (also known as connection oriented). Some connectionless protocols are Ethernet, IP, and UDP; connection oriented packet-switching protocols include X.25, Frame relay, Multiprotocol Label Switching (MPLS), and TCP.

In connection-oriented networks, each packet is labeled with a connection ID rather than an address. Address information is only transferred to each node during a connection set-up phase, when the route to the destination is discovered and an entry is added to the switching table in each network node through which the connection passes. The signalling protocols used allow the application to specify its requirements and the network to specify what capacity etc. is available, and acceptable values for service parameters to be negotiated. Routing a packet is very simple, as it just requires the node to look up the ID in the table. The packet header can be small, as it only needs to contain the ID and any information (such as length, timestamp, or sequence number) which is different for different packets.

In connectionless networks, each packet is labeled with a destination address, source address, and port numbers; it may also be labeled with the sequence number of the packet. This precludes the need for a dedicated path to help the packet find its way to its destination, but means that much more information is needed in the packet header, which is therefore larger, and this information needs to be looked up in power-hungry content-addressable memory. Each packet is dispatched and may go via different routes; potentially, the system has to do as much work for every packet as the connection-oriented system has to do in connection set-up, but with less information as to the application's requirements. At the destination, the original message/data is reassembled in the correct order, based on the packet sequence number. Thus a virtual connection, also known as a virtual circuit or byte stream is provided to the end-user by a transport layer protocol, although intermediate network nodes only provides a connectionless network layer service.

[edit] Packet switching in networks

Packet switching is used to optimize the use of the channel capacity available in digital telecommunication networks such as computer networks, to minimize the transmission latency (the time it takes for data to pass across the network), and to increase robustness of communication.

The best-known use of packet switching is the Internet and most local area networks. The Internet is implemented by the Internet Protocol Suite using a variety of Link Layer technologies. For example, Ethernet and Frame Relay are common. Newer mobile phone technologies (e.g., GPRS, I-mode) also use packet switching.

X.25 is a notable use of packet switching in that, despite being based on packet switching methods, it provided virtual circuits to the user. These virtual circuits carry variable-length packets. In 1978, X.25 provided the first international and commercial packet switching network, the International Packet Switched Service (IPSS). Asynchronous Transfer Mode (ATM) also is a virtual circuit technology, which uses fixed-length cell relay connection oriented packet switching.

Datagram packet switching is also called connectionless networking because no connections are established. Technologies such as Multiprotocol Label Switching (MPLS) and the resource reservation protocol (RSVP) create virtual circuits on top of datagram networks. Virtual circuits are especially useful in building robust failover mechanisms and allocating bandwidth for delay-sensitive applications.

MPLS and its predecessors, as well as ATM, have been called "fast packet" technologies. MPLS, indeed, has been called "ATM without cells".[5] Modern routers, however, do not require these technologies to be able to forward variable-length packets at multigigabit speeds across the network.

[edit] X.25 vs. Frame Relay packet switching

Both X.25 and Frame Relay provide connection-oriented packet switching, also known as virtual circuit switching. A major difference between X.25 and Frame Relay packet switching is that X.25 is a reliable protocol, based on node-to-node automatic repeat request, while Frame Relay is a non-reliable protocol, maximum packet length is 1000 bytes. Any retransmissions must be carried out by higher layer protocols. The X.25 protocol is a network layer protocol, and is part of the X.25 protocol suite, also known as the OSI protocol suite. It was widely used in switching networks during the 1980s and early 1990s, for example as an alternative to circuit mode terminal switching, and for automated teller machines. Frame relay is a further development of X.25. The simplicity of Frame Relay made it considerably faster and more cost effective than X.25 packet switching. Frame relay is a data link layer protocol, and does not provide logical addresses and routing. It is only used for "semi-permanent" connections, while X.25 connections also can be established for each communication session. Frame Relay was used to interconnect LANs or LAN segments, mainly in the 1990s by large companies that had a requirement to handle heavy telecommunications traffic across wide area networks.[6]:250 Despite the benefits of frame relay packet switching, many international companies are staying with the X.25 standard. In the United States, X.25 packet switching was used heavily in government and financial networks that use mainframe applications. Many companies did not intend to cross over to Frame Relay packet switching because it is more cost effective to use X.25 on slower networks. In certain parts of the world, particularly in Asia-Pacific and South America regions, X.25 was the only technology available.[7]

[edit] See also

[edit] References

  1. ^ Stewart, Bill (2000-01-07). "Paul Baran Invents Packet Switching". Living Internet. http://www.livinginternet.com/i/ii_rand.htm. Retrieved 2008-05-08. 
  2. ^ The IBM 2321 Data Cell Drive, Columbia University Computing History
  3. ^ The IBM 1360 Photostore, Lawrence Livermore Laboratory Computing History
  4. ^ Mendicino, Samuel (1970-11-30). "Octopus: The Lawrence Radiation Laboratory Network". http://www.rogerdmoore.ca/PS/OCTOA/OCTO.html. Retrieved 2009-05-06. 
  5. ^ Interview with the author (of an MPLS-based VPN article), G. Pildush
  6. ^ O’Brien, J. A. & Marakas, G. M. (2009). Management Information Systems (9th ed.). New York: McGraw-Hill/Irwin.
  7. ^ Girard, K. (1997, January). X.25 users remaining loyal despite frame-relay hype. Computerworld, 31(4), 16. Retrieved March 6, 2009, from ABI/INFORM Global database. (Document ID: 10946641).

[edit] Bibliography

[edit] Further reading

  • Katie Hafner, Where Wizards Stay Up Late (Simon and Schuster, 1996) pp 52–67
  • Janet Abbate, Inventing the Internet (MIT Press, 2000) ISBN 0-262-51115-0
  • Arthur Norberg, Judy E. O'Neill, Transforming Computer Technology: Information Processing for the Pentagon, 1962-1982 (Johns Hopkins University, 1996)

[edit] External links

This article is based on material taken from the Free On-line Dictionary of Computing prior to 1 November 2008 and incorporated under the "relicensing" terms of the GFDL, version 1.3 or later.



217 videos foundNext > 

Circuit Switching and Packet Switching

A short video to explain the main differences between Circuit Switching and Packet Switching that I did for my AS computing course. Nothing special but I'll leave it here in case anyone finds it useful.

Lecture 19 Switching Techniques Packet Switching

Lecture Series on Data Communication by Prof.A. Pal, Department of Computer Science Engineering,IIT Kharagpur. For more details on NPTEL visit nptel.iitm.ac.in

CSC-200: Internet Packet Switching

Jim Janossy provides a 15-minute illustration of how traditional telephone system switching and the packet switched internet differ in the way they connect communicating parties.

What is Internet Packet Switching?

A very, very simplistic view of Packet Switching. Basically data is split into separate packet. Each Packet can then be send via a different root. Each packet contains extra data to say where it is going and the order it should arrive in as well as some verifying data SOPA Is Dead: Smith Pulls Bill (If it is dead then it is thanks to everyone who protested) mashable.com Lamar Smith, the chief sponsor of SOPA, said on Friday that he is pulling the bill "until there is wider agreement on a solution." "I have heard from the critics and I take seriously their concerns regarding proposed legislation to address the problem of online piracy," Smith (R-Texas) said. "It is clear that we need to revisit the approach on how best to address the problem of foreign thieves that steal and sell American inventions and products." Facebook 'Relieved' That SOPA Is Dead mashable.com Facebook has responded to the death of SOPA, expressing its relief that the bill has been pulled and thanking its users for their feedback. Although Facebook didn't go dark for SOPA, the company has expressed its opposition to the bill. On Wednesday, Facebook founder and CEO Mark Zuckerberg expanded on his thoughts, calling the legislation "poorly thought out SOPA Is Gone But The US Internet Dictatorship Is The Real Problem SOPA may have gone but there are still laws and policies which impose US standards on the rest of the world, says Eric Doyle www.techweekeurope.co.uk NOTE: PLEASE DON'T DROP THE GUARD to YOUR ...

Layer 2 Packet Switching

Layer 2 Packet Switching

The Story of Packet Switching

In the mid-late 1960s, a team at the National Physical Laboratory invented the means by which all data is transferred across networks. This is the story of packet-switching by the men who pioneered it. Stats: 2652 before being re-uploaded.

IS 300: Packet Switching and the Internet (I)

This video tells us how packet switching and Internet communication work.

UCLA's Leonard Kleinrock on packet switching, early Internet

Internet pioneer and UCLA computer science professor Leonard Kleinrock discusses the childhood event that led to his career in engineering, his research on packet switching, and the process of bringing the early Internet to life. For more information visit: www.newsroom.ucla.edu

Packet Switching by Khurram Tanvir

VLANs: Implementing Layer 3 Packet Switching - Trunking 3 2950 Switches

VLANs: Implementing Layer 3 Packet Switching - Trunking 3 2950 Switches

15 news items

 
Times of India
Sun, 20 May 2012 15:37:40 -0700

For instance, ARPANET, the world's first packet switching network (the most dominant form of data transfer today), funded by the US department of defence developed File Transfer Protocol (FTP) by the early 1970s. However in the first few decades of its ...

eWeek

eWeek
Mon, 14 May 2012 11:27:13 -0700

Baran, who died at the age of 84 in March 2011, invented packet-switching techniques that can be credited with playing a key role in the development of the Internet, invented the first metal detector and was honored with the IEEE Alexander Graham Bell ...
 
LightWave Online (press release)
Thu, 10 May 2012 07:05:52 -0700

According to Jorg-Peter Elbers, vice president, research and development advanced technology at ADVA Optical Networking, OpenFlow deployments have focused on packet switching in the electronic domain, with implementations commonly found in Ethernet ...
 
Seeking Alpha
Thu, 26 Apr 2012 18:51:31 -0700

We recently made additional enhancements to our packet optical solution, including a new packet-switching card for carrier ethernet services. Compared with traditional dense wave division multiplexing networks and separate router architectures, ...

Auburn Journal

Auburn Journal
Mon, 14 May 2012 03:01:03 -0700

ARPANET, the earliest large-scale computer network that morphed into the Internet, was funded by the US Defense Department, as was the research into fundamental technologies like packet switching and TCP/IP. Delve deeper into the network and you get to ...

University of Wisconsin-Madison

University of Wisconsin-Madison
Thu, 10 May 2012 07:04:55 -0700

That the technology they were using and championing — "packet switching," a method developed by Cerf and fellow inductee Robert Kahn to transmit data chopped into little chunks — would become the Internet as we know it was hardly a sure thing.
 
CIO UK
Wed, 25 Apr 2012 02:01:21 -0700

Dell plans to accommodate both emerging virtualised network technology and traditional box-oriented infrastructures with its Virtual Network Architecture (VNA), announced last month, which encompasses everything from packet switching and network ...
 
The Data Center Journal (blog)
Fri, 11 May 2012 07:15:38 -0700

They can use optical switching alongside packet switching to adapt bandwidth, latency and power consumption to their application needs.” The SDN facility at University of Essex comprises packet switches and application servers that can be dynamically ...
Loading

Oops, we seem to be having trouble contacting Twitter

Talk About Packet switching

You can start a Digparty to talk about Packet switching right now, or post to our new discussions. When people join your Digparty you can all talk, watch videos, browse the web together, create sprites, and listen to music. Really.