Anda di halaman 1dari 7

OSI model

The Open Systems Interconnection model (OSI) is both the ISO, as standard ISO 7498, and the renamed
a conceptual model that characterizes and standardizes CCITT (now called the Telecommunications Standard-
the internal functions of a communication system by ization Sector of the International Telecommunication
partitioning it into abstraction layers. The model is a Union or ITU-T) as standard X.200.
product of the Open Systems Interconnection project at
OSI had two major components: an abstract model of
the International Organization for Standardization (ISO), networking, called the Basic Reference Model or seven-
maintained by the identication ISO/IEC 7498-1. layer model, and a set of specic protocols.
The model groups communication functions into seven The concept of a seven-layer model was provided by
logical layers. A layer serves the layer above it and is the work of Charles Bachman, Honeywell Information
served by the layer below it. For example, a layer that pro- Services. Various aspects of OSI design evolved from
vides error-free communications across a network pro- experiences with the ARPANET, the edgling Internet,
vides the path needed by applications above it, while it NPLNET, EIN, CYCLADES network and the work in
calls the next lower layer to send and receive packets that IFIP WG6.1. The new design was documented in ISO
make up the contents of that path. Two instances at one 7498 and its various addenda. In this model, a networking
layer are connected by a horizontal connection on that system was divided into layers. Within each layer, one or
layer. more entities implement its functionality. Each entity in-
teracted directly only with the layer immediately beneath
it, and provided facilities for use by the layer above it.
Protocols enabled an entity in one host to interact with
a corresponding entity at the same layer in another host.
Service denitions abstractly described the functionality
provided to an (N)-layer by an (N-1) layer, where N was
one of the seven layers of protocols operating in the local
host.
The OSI standards documents are available from the ITU-
T as the X.200-series of recommendations.[1] Some of
the protocol specications were also available as part of
Communication in the OSI-Model (example with layers 3 to 5) the ITU-T X series. The equivalent ISO and ISO/IEC
standards for the OSI model were available from ISO, but
only some of them without fees.[2]

1 History
2 Description of OSI layers
In the late 1970s, two projects began independently, with
the same goal: to dene a unifying standard for the archi-
tecture of networking systems. One was administered by The recommendation X.200 describes seven layers, la-
the International Organization for Standardization (ISO), beled 1 to 7. Layer 1 is the lowest layer in this model.
while the other was undertaken by the International Tele- At each level (N), two entities (layer N peers) exchange
graph and Telephone Consultative Committee, or CCITT protocol data units (PDUs) by means of a layer-N proto-
(the abbreviation is from the French version of the name). col. A service data unit (SDU) is the payload of a PDU,
These two international standards bodies each developed transmitted unchanged to a peer.
a document that dened similar networking models. The SDU is a unit of data that is passed down from one
In 1983, these two documents were merged to form a OSI layer to the next-lower layer, and which the lower
standard called The Basic Reference Model for Open layer encapsulates into a PDU. Layer N-1 adds a header
Systems Interconnection. Thats a mouthful, so the stan- or a footer, or both, to the SDU, composing a PDU of
dard is usually referred to as the Open Systems Intercon- layer N-1. The added framing make it possible to get the
nection Reference Model, the OSI Reference Model, or data from a source to a destination. The PDU at a layer
even just the OSI Model. It was published in 1984 by N thus becomes the SDU of layer N-1.

1
2 2 DESCRIPTION OF OSI LAYERS

Some orthogonal aspects, such as management and secu- Media Access Control (MAC) layer - responsible for
rity, involve every layer. controlling how computers in the network gain ac-
Security services are not related to a specic layer: they cess to data and permission to transmit it.
can be related by several layers, as dened by ITU-T
Logical Link Control (LLC) layer - controls error
X.800 Recommendation.[3]
checking and packet synchronization.
These services are aimed to improve the CIA triad
(condentiality, integrity, and availability) of transmit-
The Point-to-Point Protocol (PPP) is an example of a data
ted data. In practice, the availability of communication
link layer in the TCP/IP protocol stack.
service is determined by the interaction between network
design and network management protocols. Appropriate The ITU-T G.hn standard, which provides high-speed
choices for both of these are needed to protect against local area networking over existing wires (power lines,
denial of service. phone lines and coaxial cables), includes a complete data
link layer that provides both error correction and ow
control by means of a selective-repeat sliding-window
2.1 Layer 1: physical layer protocol.

The physical layer has the following major functions:


2.3 Layer 3: network layer
It denes the electrical and physical specications of
the data connection. It denes the relationship be- The network layer provides the functional and procedu-
tween a device and a physical transmission medium ral means of transferring variable length data sequences
(e.g., a copper or ber optical cable). This in- (called datagrams) from one node to another connected to
cludes the layout of pins, voltages, line impedance, the same network. A network is a medium to which many
cable specications, signal timing, hubs, repeaters, nodes can be connected, on which every node has an ad-
network adapters, host bus adapters (HBA used in dress and which permits nodes connected to it to transfer
storage area networks) and more. messages to other nodes connected to it by merely pro-
viding the content of a message and the address of the
It denes the protocol to establish and terminate a
destination node and letting the network nd the way to
connection between two directly connected nodes
deliver (route) the message to the destination node. In
over a communications medium.
addition to message routing, the network may (or may
It may dene the protocol for ow control. not) implement message delivery by splitting the message
into several fragments, delivering each fragment by a sep-
It denes transmission mode i.e. simplex, half, full arate route and reassembling the fragments, report deliv-
duplex. ery errors, etc.
It denes topology. Datagram delivery at the network layer is not guaranteed
to be reliable.
It denes a protocol for the provision of a (not nec-
essarily reliable) connection between two directly A number of layer-management protocols, a function de-
connected nodes, and the modulation or conversion ned in the management annex, ISO 7498/4, belong to
between the representation of digital data in user the network layer. These include routing protocols, mul-
equipment and the corresponding signals transmit- ticast group management, network-layer information and
ted over the physical communications channel. This error, and network-layer address assignment. It is the
channel can involve physical cabling (such as copper function of the payload that makes these belong to the
and optical ber) or a wireless radio link. network layer, not the protocol that carries them.

The physical layer of Parallel SCSI operates in this layer,


as do the physical layers of Ethernet and other local-area 2.4 Layer 4: transport layer
networks, such as Token Ring, FDDI, ITU-T G.hn, and
IEEE 802.11 (Wi-Fi), as well as personal area networks The transport layer provides the functional and procedu-
such as Bluetooth and IEEE 802.15.4. ral means of transferring variable-length data sequences
from a source to a destination host via one or more net-
works, while maintaining the quality of service functions.
2.2 Layer 2: data link layer
An example of a transport-layer protocol in the standard
The data link layer provides a reliable link between two Internet stack is Transmission Control Protocol (TCP),
directly connected nodes, by detecting and possibly cor- usually built on top of the Internet Protocol (IP).
recting errors that may occur in the physical layer. The The transport layer controls the reliability of a given link
data link layer is divided into two sublayers: through ow control, segmentation/desegmentation, and
2.6 Layer 6: presentation layer 3

error control. Some protocols are state- and connection- usually used in the Internet Protocol Suite. The session
oriented. This means that the transport layer can keep layer is commonly implemented explicitly in application
track of the segments and retransmit those that fail. The environments that use remote procedure calls.
transport layer also provides the acknowledgement of the
successful data transmission and sends the next data if
no errors occurred. The transport layer creates packets 2.6 Layer 6: presentation layer
out of the message received from the application layer.
Packetizing is a process of dividing the long message into The presentation layer establishes context between
smaller messages. application-layer entities, in which the application-layer
entities may use dierent syntax and semantics if the pre-
OSI denes ve classes of connection-mode transport
sentation service provides a big mapping between them.
protocols ranging from class 0 (which is also known as
If a mapping is available, presentation service data units
TP0 and provides the fewest features) to class 4 (TP4,
are encapsulated into session protocol data units, and
designed for less reliable networks, similar to the Inter-
passed down the protocol stack.
net). Class 0 contains no error recovery, and was designed
for use on network layers that provide error-free connec- This layer provides independence from data representa-
tions. Class 4 is closest to TCP, although TCP contains tion (e.g., encryption) by translating between application
functions, such as the graceful close, which OSI assigns and network formats. The presentation layer transforms
to the session layer. Also, all OSI TP connection-mode data into the form that the application accepts. This layer
protocol classes provide expedited data and preservation formats and encrypts data to be sent across a network. It
of record boundaries. Detailed characteristics of TP0-4 is sometimes called the syntax layer.[5]
classes are shown in the following table:[4] The original presentation structure used the Basic Encod-
An easy way to visualize the transport layer is to com- ing Rules of Abstract Syntax Notation One (ASN.1), with
pare it with a post oce, which deals with the dispatch capabilities such as converting an EBCDIC-coded text
and classication of mail and parcels sent. Do remember, le to an ASCII-coded le, or serialization of objects and
however, that a post oce manages the outer envelope of other data structures from and to XML.
mail. Higher layers may have the equivalent of double
envelopes, such as cryptographic presentation services
that can be read by the addressee only. Roughly speak- 2.7 Layer 7: application layer
ing, tunneling protocols operate at the transport layer,
such as carrying non-IP protocols such as IBM's SNA or The application layer is the OSI layer closest to the end
Novell's IPX over an IP network, or end-to-end encryp- user, which means both the OSI application layer and the
tion with IPsec. While Generic Routing Encapsulation user interact directly with the software application. This
(GRE) might seem to be a network-layer protocol, if the layer interacts with software applications that implement
encapsulation of the payload takes place only at endpoint, a communicating component. Such application programs
GRE becomes closer to a transport protocol that uses IP fall outside the scope of the OSI model. Application-
headers but contains complete frames or packets to de- layer functions typically include identifying communica-
liver to an endpoint. L2TP carries PPP frames inside tion partners, determining resource availability, and syn-
transport packet. chronizing communication. When identifying commu-
nication partners, the application layer determines the
Although not developed under the OSI Reference Model
identity and availability of communication partners for
and not strictly conforming to the OSI denition of the
an application with data to transmit. When determining
transport layer, the Transmission Control Protocol (TCP)
resource availability, the application layer must decide
and the User Datagram Protocol (UDP) of the Internet
whether sucient network or the requested communica-
Protocol Suite are commonly categorized as layer-4 pro-
tion exists. In synchronizing communication, all commu-
tocols within OSI.
nication between applications requires cooperation that
is managed by the application layer. Some examples of
application-layer implementations include:
2.5 Layer 5: session layer
On OSI stack:
The session layer controls the dialogues (connections) be-
tween computers. It establishes, manages and terminates FTAM File Transfer and Access Management
the connections between the local and remote application. Protocol
It provides for full-duplex, half-duplex, or simplex oper-
ation, and establishes checkpointing, adjournment, ter- X.400 Mail
mination, and restart procedures. The OSI model made Common Management Information Protocol
this layer responsible for graceful close of sessions, which (CMIP)
is a property of the Transmission Control Protocol, and
also for session checkpointing and recovery, which is not On TCP/IP stack:
4 7 SEE ALSO

Hypertext Transfer Protocol (HTTP), 5 Examples


File Transfer Protocol (FTP),
Simple Mail Transfer Protocol (SMTP),
6 Comparison with TCP/IP model
Simple Network Management Protocol
(SNMP), etc.
In the TCP/IP model of the Internet, protocols are de-
liberately not as rigidly designed into strict layers as in
the OSI model.[11] RFC 3439 contains a section entitled
3 Cross-layer functions Layering considered harmful".[12] However, TCP/IP
does recognize four broad layers of functionality which
There are some functions or services that are not tied to are derived from the operating scope of their contained
a given layer, but they can aect more than one layer. protocols: the scope of the software application; the end-
Examples include the following: to-end transport connection; the internetworking range;
and the scope of the direct links to other nodes on the
Security service (telecommunication)[3] as dened local network.[13]
by ITU-T X.800 recommendation.
Even though the concept is dierent from the OSI model,
Management functions, i.e. functions that permit to these layers are nevertheless often compared with the OSI
congure, instantiate, monitor, terminate the com- layering scheme in the following way:
munications of two or more entities: there is a spe-
cic application-layer protocol, common manage-
The Internet application layer includes the OSI ap-
ment information protocol (CMIP) and its corre-
plication layer, presentation layer, and most of the
sponding service, common management informa-
session layer.
tion service (CMIS), they need to interact with every
layer in order to deal with their instances. Its end-to-end transport layer includes the graceful
Multiprotocol Label Switching (MPLS) operates at close function of the OSI session layer as well as the
an OSI-model layer that is generally considered to lie OSI transport layer.
between traditional denitions of layer 2 (data link The internetworking layer (Internet layer) is a subset
layer) and layer 3 (network layer), and thus is often of the OSI network layer (see above)
referred to as a layer-2.5 protocol. It was designed
to provide a unied data-carrying service for both The link layer includes the OSI data link and physi-
circuit-based clients and packet-switching clients cal layers, as well as parts of OSIs network layer.
which provide a datagram-based service model. It
can be used to carry many dierent kinds of traf- These comparisons are based on the original seven-layer
c, including IP packets, as well as native ATM, protocol model as dened in ISO 7498, rather than re-
SONET, and Ethernet frames. nements in such things as the internal organization of
ARP is used to translate IPv4 addresses (OSI layer the network layer document.
3) into Ethernet MAC addresses (OSI layer 2). The presumably strict peer layering of the OSI model as
it is usually described does not present contradictions in
TCP/IP, as it is permissible that protocol usage does not
4 Interfaces follow the hierarchy implied in a layered model. Such
examples exist in some routing protocols (e.g., OSPF), or
Neither the OSI Reference Model nor OSI protocols in the description of tunneling protocols, which provide
specify any programming interfaces, other than as delib- a link layer for an application, although the tunnel host
erately abstract service specications. Protocol speci- protocol might well be a transport or even an application-
cations precisely dene the interfaces between dierent layer protocol in its own right.
computers, but the software interfaces inside computers,
known as network sockets are implementation-specic.
For example Microsoft Windows' Winsock, and Unix's
7 See also
Berkeley sockets and System V Transport Layer Inter-
face, are interfaces between applications (layer 5 and Hierarchical internetworking model
above) and the transport (layer 4). NDIS and ODI are Internet protocol suite
interfaces between the media (layer 2) and the network
protocol (layer 3). Layer 8
Interface standards, except for the physical layer to me- Protocol stack
dia, are approximate implementations of OSI service
specications. Service layer
5

TCP/IP model
X.25 protocol suite
WAP protocol suite
List of information technology acronyms
IBM Systems Network Architecture

8 References
[1] ITU-T X-Series Recommendations
[2] Publicly Available Standards. Standards.iso.org. 2010-
07-30. Retrieved 2010-09-11.
[3] X.800 : Security architecture for Open Systems Intercon-
nection for CCITT applications
[4] ITU-T Recommendation X.224 (11/1995) ISO/IEC
8073.
[5] Grigonis, Richard (2000). Computer telephony encyclope-
dia. CMP. p. 331. ISBN 9781578200450.
[6] ITU-T Recommendation Q.1400 (03/1993), Architecture
framework for the development of signaling and OA&M
protocols using OSI concepts, pp 4, 7.
[7] ITU Rec. X.227 (ISO 8650), X.217 (ISO 8649).
[8] X.700 series of recommendations from the ITU-T (in par-
ticular X.711) and ISO 9596.
[9] CISCO Cisco Systems, Inc. Internetworking Technology
Handbook OSI Model Physical layer
[10] 3GPP TS 36.300 : E-UTRA and E-UTRAN Overall De-
scription, Stage 2, Release 11
[11] RFC 3439
[12] http://tools.ietf.org/html/rfc3439#section-3
[13]

9 External links
ISO/IEC standard 7498-1:1994 (PDF document in-
side ZIP archive) (requires HTTP cookies in order
to accept licence agreement)
ITU-T X.200 (the same contents as from ISO)
The ISO OSI Reference Model , Beluga graph of
data units and groups of layers
Zimmermann, Hubert (April 1980). OSI Ref-
erence Model The ISO Model of Architec-
ture for Open Systems Interconnection. IEEE
Transactions on Communications 28 (4): 425432.
doi:10.1109/TCOM.1980.1094702. CiteSeerX:
10.1.1.136.9497.
Cisco Systems Internetworking Technology Hand-
book
6 10 TEXT AND IMAGE SOURCES, CONTRIBUTORS, AND LICENSES

10 Text and image sources, contributors, and licenses


10.1 Text
OSI model Source: http://en.wikipedia.org/wiki/OSI%20model?oldid=636349030 Contributors: Damian Yerrick, AxelBoldt, Bryan Derk-
sen, The Anome, Stephen Gilbert, Manning Bartlett, Amillar, Andre Engels, Gsl, Aldie, Nate Silva, M, William Avery, DavidLevinson,
Heron, B4hand, Edward, PhilipMW, Michael Hardy, Booyabazooka, MartinHarper, Todd, Looxix, Mkweise, Ahoerstemeier, Haakon,
Ronz, Nanshu, Glenn, Bogdangiusca, Netsnipe, IMSoP, Evercat, EdH, JidGom, Mulad, Markb, Emperorbma, Fuzheado, Atreyu42,
Markhurd, Tpbradbury, Grendelkhan, Jnc, Ed g2s, Rnbc, Nickshanks, Joy, Fvw, Johnleemk, Finlay McWalter, Phil Boswell, Robbot,
TomPhil, Friedo, Fredrik, Dumbledad, RedWolf, Postdlf, Rfc1394, Puckly, Rursus, 75th Trombone, Hadal, David Edgar, Filemon, David
Gerard, Enochlau, Giftlite, Graeme Bartlett, Cokoli, Jpta, Inkling, Tom harrison, Lupin, Herbee, 0x6D667061, Everyking, CyborgTosser,
Itpastorn, EJDyksen, Mboverload, AlistairMcMillan, Alvestrand, Tagishsimon, Dave2, Gadum, Pamri, Mendel, Inversetime, Ravikiran r,
Eldiablo, Sridev, Parakalo, Tooki, Kramerino, Lazarus666, Paparodo, Jcw69, Slrobertson, Kevin Rector, Trevor MacInnis, Moxfyre, Safety
Cap, EagleOne, DmitryKo, Gazpacho, Mike Rosoft, Venu62, Hes Nikke, Hgerstung, RossPatterson, Discospinster, Rich Farmbrough,
Rhobite, DavidBarak, Lulu of the Lotus-Eaters, Demitsu, Paul August, Techtoucian, BACbKA, Kaszeta, CanisRufus, Charm, MBisanz,
Lankiveil, Bletch, GarethGilson, Sietse Snel, RoyBoy, Triona, Causa sui, Rlaager, Bobo192, MarkWahl, Smalljim, John Vandenberg,
Dreish, Che090572, AtomicDragon, Elipongo, Mikel Ward, SpeedyGonsales, Chirag, Nk, Bdamokos, Wrs1864, Helix84, Krellis, Nsaa,
Mdd, Wayfarer, Ogress, Alansohn, Gary, Ghostalker, SnowFire, Guy Harris, Free Bear, Lectonar, OSUKid7, Caesura, Snowolf, Simon,
Wtmitchell, Rebroad, Wtshymanski, Rick Sidwell, Cburnett, Stephan Leeds, Suruena, RainbowOfLight, Drat, Mikeo, Pethr, H2g2bob,
MIT Trekkie, Pytom, Cxxl, Richwales, Beelaj, Mahanga, Ott, Feezo, Stemonitis, OwenX, Woohookitty, Camw, LOL, Blueskies238,
Ilario, Robert K S, Hdante, Kgrr, Cbustapeck, Eyreland, Prashanthns, Andybryant, Palica, Marudubshinki, Kesla, Runis57, Jannetta,
Chupon, Jetekus, Josh Parris, Casey Abell, Ketiltrout, Dpark, Johnblade, Jake Wartenberg, Kinu, Inkhorn, CraSH, TAS, Tangotango,
SMC, Vegaswikian, Kazrak, BDerrly, ElKevbo, N-Man, Fred Bradstadt, Nicolas1981, Yamamoto Ichiro, Audunv, StuartBrady, FlaBot,
Nivix, Ewlyahoocom, Eric Soyke, RobyWayne, Intgr, Fresheneesz, Alphachimp, Chfalcao, Imnotminkus, Jmorgan, Chobot, Hatch68, Vi-
sor, JesseGarrett, Bgwhite, Adoniscik, Gwernol, FrankTobia, Roboto de Ajvol, McGinnis, YurikBot, Albanaco, Borgx, Sceptre, Josef
Sbl cz, Joodas, Jonwatson, Bhny, Tyler.szabo, SpuriousQ, Kirill Lokshin, Joebeone, Grubber, Shell Kinney, CambridgeBayWeather,
Eleassar, Pseudomonas, Abarry, Friday, NawlinWiki, ENeville, Grafen, RazorICE, Nick, Marvin01, Brandon, Moe Epsilon, Kaz219,
Voidxor, Lomn, Davetrainer, Tony1, PyreneesJIM, Nethgirb, Rjstinyc, Jessemerriman, Caerwine, MarkBrooks, Wknight94, FF2010,
Whitejay251, Lt-wiki-bot, YolanCh, Ageekgal, Closedmouth, Iambk, Fang Aili, Pb30, Abune, Bariswheel, JoanneB, ThunderBird, Al-
lens, Honeyman, CIreland, Luk, Hiddekel, EJSawyer, Sardanaphalus, SmackBot, Mmernex, Bonobosarenicer, Irnavash, ThreeDee912,
Reedy, KnowledgeOfSelf, Bjelleklang, Brick Thrower, Delldot, Nejko, Jonathanwagner, Gilliam, Psiphiorg, @modi, Djib, Delfeye, Alu-
card 16, Tree Biting Conspiracy, Stevage, Arroww, Octahedron80, Nbarth, Ctbolt, Adibob, Thief12, TripleF, Can't sleep, clown will eat
me, YamiKaitou, ZachPruckowski, JonHarder, Addshore, Kcordina, Edivorce, Meepster, SundarBot, Adamantios, UU, Dohzer, Soosed,
Apocryphite, Cybercobra, Fullstop, Valenciano, Shadow1, Tompsci, HarisM, Insineratehymn, Weregerbil, Mwtoews, WoiKiCK, Ged UK,
Dino.korah, Umair ahmed123, H34d, Kuru, Microchip08, Natarajuab, Rejax, Martinkop, Adj08, Sir Nicholas de Mimsy-Porpington, Tim
Q. Wells, Nux, Goodnightmush, Highpriority, Noahspurrier, Michael miceli, IronGargoyle, Morten, Cikicdragan, MarkSutton, Krampo,
Yms, Mr Stephen, Dicklyon, Kim Rubin, Waggers, Lachlancooper, Anonymous anonymous, IReceivedDeathThreats, Ryulong, Wrlee,
Citicat, Nbhatla, Kvng, Rcannon100, Lee Carre, Hetar, Iridescent, Penno, Shoeofdeath, Beno1000, Courcelles, Drwarpmind, Danlev,
Tawkerbot2, Ouishoebean, StephenFalken, Ryt, The Haunted Angel, Mmdoogie, InvisibleK, Sakurambo, KerryVeenstra, CmdrObot, Ale
jrb, Nitecruzr, Scohoust, Lighthead, Naishadh, Andkore, RobEby, Phatom87, Myheadspinsincircles, Mattalyst, Travelbird, Yuokool12,
Maguscrowley, Odie5533, Tawkerbot4, Mattjgalloway, DumbBOT, Chrislk02, Eazy007, Alaibot, Biblbroks, Scolobb, Omicronpersei8,
JodyB, Epbr123, Rohwigan03, Jhilving, Daniel, N5iln, Hcberkowitz, Amitbhatia76, JMatthews, CynicalMe, Marek69, John254, Tellyad-
dict, Iviney, Ajo Mama, RichardVeryard, Kaaveh Ahangar, Zachary, Dzubint, Turb0chrg, Qexter, AntiVandalBot, Majorly, Luna Santin,
Fjpanna, Seaphoto, CDima, BommelDing, JeTataMe, Alphachimpbot, Graham.rellinger, Myanw, Gkhan, Caper13, JAnDbot, Niaz,
Vmguruprasath, MER-C, Dcooper, LittleOldMe, Enjoi4586, Ideoplex, Bakilas, VoABot II, Ishikawa Minoru, RoscoMck, Davidjk, James-
BWatson, Mbc362, Tedickey, Ifroggie, Panser Born, Animum, Cyktsui, Dili, Mtd2006, MetsBot, Logictheo, Schumi555, BenLiyanage,
WLU, SineChristoNon, Patstuart, Micahcowan, 0612, S3000, Flowanda, MartinBot, Nolyann, Naohiro19, Rettetast, Charles Edward,
Ryan au, Ore4444, Cputrdoc, Markolinsky, Jschoon4, Smokizzy, RockMFR, J.delanoy, Mange01, Carre, SaxicolousOne, Uncle Dick,
Public Menace, Mr Elmo, Dispenser, Katalaveno, DJPohly, Skier Dude, Gurchzilla, Swapcouch, AntiSpamBot, Tarekradi, Kraftlos, Wil-
son.canadian, Jrodor, Lordeaswar, Cometstyles, Wily duck, Inwind, S, Boikej, Pluyo8989, Mlewis000, Lights, HamatoKameko, 28bytes,
GreYFoXGTi, VolkovBot, Wire323, ABF, Adityagaur 7, Je G., Speaker to Lampposts, Lears Fool, Metaclassing, Saddy Dumping-
ton, Khat17, Philip Trueman, DoorsAjar, BuickCenturyDriver, DSParillo, GDonato, Chimpex, Anna Lincoln, DennyColt, Leafyplant,
DragonLord, PDFbot, BotKung, VidGa, Rjgodoy, Aslambasha09, Coriron, Ayengar, Sunilmalik1107, Spitre8520, Henrikholm, Alle-
borgoBot, PGWG, Jchristn, CMBJ, LOTRrules, Kbrose, SieBot, Mikemoral, Nubiatech, Scarian, Jauerback, Caltas, Matthew Yeager,
Triwbe, Yintan, GlassCobra, Bobdrad, Happysailor, Flyer22, EnOreg, Oxymoron83, Arunachalammanohar, Tpvibes, Steven Zhang, Wish-
ingtown, Patrikor, StaticGull, ProPuke, Denisarona, Troy 07, ClueBot, GorillaWarfare, The Thing That Should Not Be, Postmortemjapan,
Think4amit, Lawrence Cohen, Adrianwn, LizardJr8, Anjola, Pmorkert, Puchiko, Andjohn2000, Pointillist, DragonBot, Excirial, Alexbot,
Jusdafax, Anon lynx, Erwinkarim, Fleg31789, NuclearWarfare, Arjayay, Jotterbot, Patch1103, DeltaQuad, Botsjeh, Morel, Isthisthing-
working, Muro Bot, Zoobee79, Thingg, Aitias, 7, Subfrowns, Versus22, Mr.ghlban, Mcnuttj, Rgilchrist, Johnuniq, SoxBot III, Appari-
tion11, Bcherwrmlein, DumZiBoT, FreshPrinz, XLinkBot, Jovianeye, Tbsdy lives, Logthis, Dgtsyb, Karpouzi, Alexius08, Hellomarius,
Jdrrmk, Tranzz, HexaChord, Bojer, Addbot, Mobius R, Willking1979, Akiyukio, 1337 JN, Balajia82, Tcncv, Bzimage.it, Friginator,
Syntaxsystem, Djmoa, Scientus, Vishnava, CanadianLinuxUser, NjardarBot, Amtanoli, Cst17, MrOllie, The Athlon Duster, Ottosmo,
Evillawngnome, Roux, Doniago, TinyTimZamboni, Lockcole, Tide rolls, OlEnglish, Teles, Zorrobot, MuZemike, David0811, Wireless
friend, Another-anomaly, Dcovell, Peni, Enduser, Angrysockhop, ZX81, Yobot, WikiDan61, Karelklic, Fraggle81, Cm001, Manishar
us, Therumakna, THEN WHO WAS PHONE?, Brougham96, Gafex, Tempodivalse, AnomieBOT, Duey111, Naresh jangra, Killion-
dude, Jim1138, CraigBox, Kingpin13, Ulric1313, Mikeyh56, RandomAct, Flewis, Materialscientist, RobertEves92, uman, 90 Auto,
Citation bot, ShornAssociates, E2eamon, Roux-HG, Crimsonmargarine, Gasp01, Milind m2255, MauritsBot, Xqbot, Saad ziyad, Capri-
corn42, Nfr-Maat, Jerey Mall, DSisyphBot, Shrofami, AbigailAbernathy, Nasa-verve, GrouchoBot, AVBOT, Wizardist, Rsiddharth,
Shirik, Mathonius, Kallaspriit, Mmmeg, Theelmgren, Shadowjams, Joaquin008, Sesu Prime, A.amitkumar, FrescoBot, DrSpice, Oita2001,
802geek, Advancedtelcotv, Itusg15q4user, Kyllys, Recognizance, Nisavid, Runtux, Geek2003, Kismalac, Eliezerb, Vk anantha, Origi-
nalharry, DrDOS, AstaBOTh15, Simple Bob, Mojalefa247, I dream of horses, Ajw901, LittleWink, Jonesey95, A412, Calmer Waters,
Rushbugled13, Jschnur, SpaceFlight89, Isofox, Fumitol, Warrierrakesh, Bmylez, Mohitjoshi999, Merlion444, Mmeerman, Yamike, To-
beBot, Ashutosh.mcse, Lotje, Asn1tlv, Dinamik-bot, Nemesis of Reason, Bluest, Mattmill30, Fiable.biz, JV Smithy, Tbhotch, Minimac,
10.2 Images 7

Brambleclawx, DARTH SIDIOUS 2, Artur Perwenis, Candc4, Ripchip Bot, Lynnallendaly, Conquest ace, Deagle AP, EmausBot, Slice-
ofmiami, Stryn, Immunize, Alex3yoyo, Super48paul, Dewritech, Racerx11, Mrankur, RenamedUser01302013, John Hopley, Sp33dyphil,
Tommy2010, Wikipelli, K6ka, Savh, Mohitsport, F, Josve05a, PaulWIKIJeery, Mkagenius, Unkownkid123, A930913, Saintends, Can
You Prove That You're Human, Cs mat3, SporkBot, Monterey Bay, Gz33, Wingman4l7, Vanished user fois8fhow3iqf9hsrlgkjw4tus, Elfos-
ardo, Praggu, Crasheral, Tarian.liber, Orange Suede Sofa, ChuispastonBot, Pastore Italy, Kkbairi, SharePointStacy, Neil P. Quinn, DASH-
BotAV, Raju5134, Petrb, ClueBot NG, MelbourneStar, Jeanjour, Satellizer, Lord Chamberlain, the Renowned, Chester Markel, Jjenk-
ins5123, Jakuzem, Bchiap, 336, Widr, Scottonsocks, Suyashparth, Chrkelly, Theopolisme, MerlIwBot, Novusuna, Kronn8, WNYY98,
BG19bot, HMGb, Island Monkey, Northamerica1000, Hallows AG, Palltrast, Mudasir011, Snehasapte, Mark Arsten, Shraddha deshmukh,
Dmohantyatgmail, Benzband, Jatinsinha, Avitesh, MrsValdry, CitationCleanerBot, GGShinobi, Roo314159, Falk.H.G., Nathanashleywild,
Mahesh Sarmalkar, Winston Chuen-Shih Yang, Nkansahrexford, Jsonheld, Vanished user lt94ma34le12, Jimw338, Taruntan, Sfeldner,
RealHandy, Tprz, Dexbot, Webclient101, Iambossatghari, Mitrabarun, Neevan99, Frosty, Payal1234, , DBhavsar709, Epicgenius,
Davidh63, Melonkelon, Apurv.11213, Thardrain, Comp.arch, Spyglasses, Congoblast, Ginsuloft, Semsi Paco Virchow, Quenhitran, Jian-
hui67, Lengeni, Byte1000101, Antrocent, YitzchakF, Tayyabjamil, Psycho365, Say which?, Jain Nupoor, Ajit31, Biochembob, Tranquil-
Hope, Praks purushot, Candlelighter, Superdupernova and Anonymous: 2295

10.2 Images
File:Commons-logo.svg Source: http://upload.wikimedia.org/wikipedia/en/4/4a/Commons-logo.svg License: ? Contributors: ? Original
artist: ?
File:Edit-clear.svg Source: http://upload.wikimedia.org/wikipedia/en/f/f2/Edit-clear.svg License: Public domain Contributors: The
Tango! Desktop Project. Original artist:
The people from the Tango! project. And according to the meta-data in the le, specically: Andreas Nilsson, and Jakub Steiner (although
minimally).
File:Folder_Hexagonal_Icon.svg Source: http://upload.wikimedia.org/wikipedia/en/4/48/Folder_Hexagonal_Icon.svg License: Cc-by-
sa-3.0 Contributors: ? Original artist: ?
File:OSI-model-Communication.svg Source: http://upload.wikimedia.org/wikipedia/commons/4/41/OSI-model-Communication.svg
License: Public domain Contributors: Own work Original artist: Runtux

10.3 Content license


Creative Commons Attribution-Share Alike 3.0

Anda mungkin juga menyukai