0% found this document useful (0 votes)
153 views

Introduction To Networks

COmputer stuff

Uploaded by

Wanjing Wong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
153 views

Introduction To Networks

COmputer stuff

Uploaded by

Wanjing Wong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 70

Introduction to Data

Communication and Networks


Prepared for

TMC 1253
Data Communication and
Networks
.

2004 Ken Baldauf, All rights reserved.

Network look like.

2004 Ken Baldauf, All rights reserved.

2004 Ken Baldauf, All rights reserved.

Session Topics

Data communications
Networks
The Internet
Protocol and Standards

2004 Ken Baldauf, All rights reserved.

Objectives
This course should act as a general overview to the the
field Data Communications and Computer network
Understand the fundamental of Data Communication and
Computer Network
Understand the key role of Data Communication and
Computer Network in providing integration within an
organization
Demonstrate detailed knowledge of application of Data
Communications and networking technologies

2004 Ken Baldauf, All rights reserved.

Why study data communications and


networking?

Collaboration
Decision requirement
Access information accurately
Sharing

2004 Ken Baldauf, All rights reserved.

Questions

How network operate?


What types of technology are available?
Which design best fills which set of needs?
How does information flow?
Sharing???

2004 Ken Baldauf, All rights reserved.

What Data Communications and


Network can do .
Networks are changing the way we do business and the
way we live.
Internet
Mobile phones
Electronic mail
Cable TV
Computer Networks
Telephone
Astro TV Network
SMS / MMS Network
2004 Ken Baldauf, All rights reserved.

Areas of Communications and Data


Network
Three general areas of Communications and
Data Network:
Data Communications
Networking and
Protocol

2004 Ken Baldauf, All rights reserved.

Overview of Data Communication


and Networking

2004 Ken Baldauf, All rights reserved.

Data Communication
Communication is the process of sharing
information
Telecommunication
Communication at a distance
Tele is far in Greek

Traditionally speech
Sound, pictures, text, ...

[...] the exchange of data between two devices


over some form of transmission medium Forouzan
2004 Ken Baldauf, All rights reserved.

Data Communication
Data communication exchange of data between
two device via some form of transmission medium
Communication devices must be part of a communication
system
Combination of Hardware and software

2004 Ken Baldauf, All rights reserved.

Effectiveness of Data Communications


System
Depend on four fundamental characteristics
Delivery data must be received by intended
device or user and only by that device or user
Accuracy system must deliver the data
accurately; data that have been altered in
transmission and left uncorrected are unusable
Timeliness system must deliver data in a timely
manner
Jitter - refers to the variation in the packet arrival
time
2004 Ken Baldauf, All rights reserved.

Five components of data communication

2004 Ken Baldauf, All rights reserved.

Components of Data Communication


System
Data communication system is made up of 5
components
Message information to be communicated (text, audio, video,
pictures, etc)
Sender device that sends the message (computer, telephone, etc)
Receiver device that receives the message
Medium physical path by which the message travel
Protocol set of rules(agreement) for communication to work on

2004 Ken Baldauf, All rights reserved.

Protocol
Communications protocols includes a
treatment of protocol architectures as well as
analysis of individual protocols at various
layers of the architecture
TCP/IP
OSI Layer

2004 Ken Baldauf, All rights reserved.

Question
Can we consider milk cans and a string system
as a Data Comm. System?

2004 Ken Baldauf, All rights reserved.

Think!!!
Based on the following scenario, discuss the problem of
it:
- if you let the string go slack
- If you and your partner both talk at the same time
- If your partner doesn't talk to you
- If your receiver decides not to play anymore

2004 Ken Baldauf, All rights reserved.

Networks

2004 Ken Baldauf, All rights reserved.

2004 Ken Baldauf, All rights reserved.

What is networks?
It is a set of devices (nodes) connected by
media links
A node: a computer, printer and others
Communication channels: the link connecting
the devices

2004 Ken Baldauf, All rights reserved.

Example of Enterprise
Network

2004 Ken Baldauf, All rights reserved.

Example of campus
network

2004 Ken Baldauf, All rights reserved.

Network Criteria
Network Criteria (How to evaluate networks)
Performance types of hardware / software,
transmission medium, users
Reliability frequency of failure, recovery time,
catastrophe (fire, earthquake, etc)
Security unauthorized access, viruses, etc

2004 Ken Baldauf, All rights reserved.

2004 Ken Baldauf, All rights reserved.

Basic Concept
Basic Concept
Type of Connection
physical Topology
Transmission Mode
Categories of Network
Internetwork

2004 Ken Baldauf, All rights reserved.

Type of Connection
refers to the way two or more communication devices attach
to a link
2 possible line configurations :
point-to-point
provide a dedicate link between two devices
the entire capacity of the channel is reserved
most point-to-point line configurations use an actual
length of wire or cable to connect the two ends, but
other options such as microwave or satellite are also
possible
2004 Ken Baldauf, All rights reserved.

Point-to-point connection

2004 Ken Baldauf, All rights reserved.

Multipoint
multipoint
more than two specific devices share a single link
In a multipoint environment, the capacity of the
channel is shared.
If several devices can use the link simultaneously, it is a
spatially shared line configuration.
If users must take turns, it is a time-shared line

configuration

2004 Ken Baldauf, All rights reserved.

Multipoint connection

2004 Ken Baldauf, All rights reserved.

Physical Topology
Topology - the way a network laid out, either physically or logically.
Two or more devices connect to a link, and two or more links forms a
topology.
There are five basic topologies possible: mesh, star, tree, bus, and
ring.
Two relationships are possible:
Peer-to-Peer, where the devices share link equally.
Primary-secondary :where one device controls traffic and others
must transmit through it.
Ring and mesh topologies are more convenient for peer-to-peer
transmission, while star and tree are more convenient for primarysecondary.
A bus topology is equally convenient for either.

2004 Ken Baldauf, All rights reserved.

Categories of topology

2004 Ken Baldauf, All rights reserved.

Topology - Mesh
Topology - Mesh
In a mesh topology, every devices has a dedicated point-to-point link
to every other device.
The term dedicated means that the link carries traffic only between
the two devices it connects.
A fully connected mesh network therefore has n(n-1)/2 physical
channels to link n devices.
To accommodate that many links every device on the network must
have n-1 input/output (I/O) ports.

2004 Ken Baldauf, All rights reserved.

Topology cont.. Mesh


A network where every device is directly connected to
every other.
The formula to compute the number of links is:
n(n-1)/2
where n is the number of devices.
The calculation for number of ports per machine is:
n-1
where n is the number of devices.

2004 Ken Baldauf, All rights reserved.

Example:
Ques1: Given a 5 device mesh, calculate how many
links are there in that network?
Ans: n = 5, so number of links = 5(5-1)/2 ..or .. 5(4)/2 ..
or .. 20/2 .. or .. 10.
Ques2: From the example above, each machine would
require:
n-1 .. or .. 5-1 .. or .. 4 ports.

2004 Ken Baldauf, All rights reserved.

Fully connected mesh topology


(for five devices)

2004 Ken Baldauf, All rights reserved.

Topology Mesh (cont.)


Advantages
Guarantees that each connection can carry its data load,
eliminate traffic problem when links must be shared by
multiple devices.
Mesh topology is robust. If one link unusable, it does not
effects the entire system.
Privacy / security.
Fault identification and fault isolation easy.

2004 Ken Baldauf, All rights reserved.

Topology Mesh (cont.)


Disadvantages

Need an amount of cabling and I/O ports.


Installation and reconfiguration are difficult.
Wiring can be greater than the available space.
Hardware can be expensive
For these reasons a mesh topology is usually implemented
in a limited fashion for example , as a backbone.

2004 Ken Baldauf, All rights reserved.

Topology Star
Topology Star
In a star topology, each device has a dedicated point-to-point link
only to a central controller, usually called a hub.
The controller acts as an exchange: If one device wants to send data
to another, it sends to the controller, which then relays the data to the
other connected devices.
Cheaper than mesh topology
Easy to install and configure
Addition and deletion involve only one connection: between that
devices and the hub
Robustness

2004 Ken Baldauf, All rights reserved.

Star topology

2004 Ken Baldauf, All rights reserved.

Extended Start Topology


Is based upon the physical star topology has one
or more repeaters between the central node (the
'hub' of the star) and network nodes
The repeaters being used to extend the maximum
transmission distance of the point-to-point links
between the central node and the netowork
nodes beyond that which is supported by the
transmitter power of the central node or beyond
that which is supported by the standard upon
which the physical layer of the physical star
network is based.
2004 Ken Baldauf, All rights reserved.

Source: http://www.chetbacon.com/LessonPlans/xstar-top.htm
2004 Ken Baldauf, All rights reserved.

Topology - Tree
Tree
A tree topology is a variation of a star
The central hub in the tree is an active hub
An active hub contains a repeater, which is hardware device that
regenerates the received bit patterns before sending them out.
The secondary hub may be active or passive hubs.
Each passive hubs contains a set of resistors to balance the circuit
linking the connected device.
Advantages and disadvantages: same as star topology

2004 Ken Baldauf, All rights reserved.

Topology - Bus
Bus

A bus topology is a multipoint configuration.


One long cable acts a backbone to link all the devices in the network.
Nodes are connected to the bus cable by drop lines and taps.
There is a limit on the number of taps a bus can support and on the
distance between those taps.
Advantage: easy installation, use less cabling
Disadvantage: difficult reconfiguration and fault isolation
Removing nodes can cause degradation in signal, adding cause
modification of backbone

2004 Ken Baldauf, All rights reserved.

Bus topology

2004 Ken Baldauf, All rights reserved.

Topology - Ring
Ring
In a ring topology, each device has a dedicated point-topoint configuration only with the two devices on either
side of it.
A signal is passed along the ring in one direction, from
device to device until it reaches its destination.
Each device in the ring incorporates a repeater.

2004 Ken Baldauf, All rights reserved.

Ring topology

2004 Ken Baldauf, All rights reserved.

Topology - Ring (Cont.)


Advantage:

Easy to install and reconfigure.


To add or delete requires moving only two connections
Signal is circulating at all time.
Alarm used to alerts the network operator due to any problem.

Constraints:
ring length and number of devices.
Constraint in unidirectional can be solved by dual ring or a switch
capable of closing off the break.

2004 Ken Baldauf, All rights reserved.

Topology - Hybrid
Hybrid topology
Several topologies as subnetworks linked together
in a larger topology
Two different topologies can be connected to each
other via a central controller in a star topology.

2004 Ken Baldauf, All rights reserved.

Transmission Mode
TRANSMISSION MODE
The term transmission mode is used to define the direction of signal
flow between two linked devices.
There are three types of transmission modes: simplex, half-duplex,
full duplex
Simplex
In simplex, communication is unidirectional. Eg: keyboard
Half-duplex
Each station can both transmit and receive, but not at the same time.
The entire capacity of a channel is taken over by whichever of the two
devices is transmitting at the time. Eg: walkie-talkie

2004 Ken Baldauf, All rights reserved.

Transmission Mode (Cont.)


Full-duplex
Also called duplex, both stations can transmit and
receive simultaneously.
Signals going on either direction share the
capacity of the link.
Either the link contain two physically separate
path, capacity of the channel is divided between
signals travelling in opposite directions.

2004 Ken Baldauf, All rights reserved.

Transmission Mode
Simplex

Half Duplex

Full Duplex

2004 Ken Baldauf, All rights reserved.

Categories of Network

Network categories determined by its size, its


ownership, the distance it covers and its physical
architecture.

2004 Ken Baldauf, All rights reserved.

LAN
Local Area Network (LAN)
Privately owned and links the devices in a single office, building or
campus.
LAN size limited to a few kilometers.
LAN share resources between PCs (or workstations).
The resources include hardware (printer), software (application
program) or data.
One of the computers in LAN may be given a large capacity disk drive
and become a server to the other clients.
LAN only use one type of transmission medium.
The most common LAN topologies are bus and star.
Speeds can increase to 1000Mbps (1 Gbps).
2004 Ken Baldauf, All rights reserved.

LAN

2004 Ken Baldauf, All rights reserved.

MAN
Metropolitan Area Network (MAN)
Designed to extend over an entire city.
Maybe a single network, or connecting a number
of LANs into a larger network
MAN can be owned by a private company or
public company, such as a local telephone
company.

2004 Ken Baldauf, All rights reserved.

MAN

2004 Ken Baldauf, All rights reserved.

WAN
Wide Area Network (WAN)
Provides long distance transmission of data, voice, video,
image, over large geographical areas country, continent
or the whole world.
WANS is usually in combination of public, leased or private
communication devices.
WAN which wholly owned by a single company is often
referred to as an enterprise network.

2004 Ken Baldauf, All rights reserved.

WAN

2004 Ken Baldauf, All rights reserved.

Interconnection of Networks
Internetwork / internet
When two or more networks are connected

2004 Ken Baldauf, All rights reserved.

The Internet

An internet is a network of networks.


The Internet is a collection of many
separate networks.
TCP/IP is the protocol suite for the
Internet.
There are local, regional, national, and
international Internet service providers
(ISPs).

2004 Ken Baldauf, All rights reserved.

Internet today

2004 Ken Baldauf, All rights reserved.

Protocol
Protocol- a set of rules that govern all aspects
of information communication.
It defines what is communicated, how it is
communicated, and when it is communicated.
Key elements of a protocol are syntax,
semantics, and timing.

2004 Ken Baldauf, All rights reserved.

Protocol (cont.)
Syntax - the format or layout of the message
Semantics - what to do with the different parts
as defined by the syntax.
Timing - the actual speed of data transmission.

2004 Ken Baldauf, All rights reserved.

Standards
A standards provides a model for
development, makes it possible for a product
to work regardless of the individual
manufacturer.

2004 Ken Baldauf, All rights reserved.

Categories of Standards

WCB/McGraw-Hill

The McGraw-Hill
Companies,
Inc., 1998
2004 Ken Baldauf,
All rights reserved.

Standard (cont.)

De facto can categorized into:


- Proprietary - standards are those that are owned by
the organization that developed them. They are
also called "closed" standards. Not available to
general public.
- Non-Proprietary - standards are shared across many
vendors. They are also called "open" standards.

2004 Ken Baldauf, All rights reserved.

Standards organizations

ISO (International Standards Organization)


ITU-T (International Telecommunications Union)
ANSI (American National Standards Institute)
IEEE- professional group involved in developing
standards for computing, communication, electrical
engineering and electronics
EIA (Electronic Industries Association)

2004 Ken Baldauf, All rights reserved.

Conclusion
From Cisco CCNA:
Computers are vital components of every network.
The more you know about computers, the easier it is
to understand networks.
Knowledge about how a computer functions makes it
easier to understand networks.
Think of the internal components of a PC as a
network of devices, all attached to the system bus.

2004 Ken Baldauf, All rights reserved.

Question

Q&A

2004 Ken Baldauf, All rights reserved.

You might also like