SlideShare a Scribd company logo
1 of 47
1
Module 1
Introduction to
Internetworking
By Dr. Percy DIAS
© 2009, Cisco Systems, Inc. All rights reserved.
2
Computing Measurement Terms
• Bits are binary digits. They are either 0s or
1s. In a computer, they are represented by
On/Off switches or the presence or
absence of electrical charges, light pulses,
or radio waves.
3
Computing Measurement Terms
4
Base 10 (Decimal) Number
System
5
Base 10 (Decimal) Calculations
• Should be familiar because you’ve used it since childhood
• Example: the number 235 = (2 x 100) + (3 x 10) + (5 x 1)
• Because you’ve used it so long, you probably don’t think
about it
6
Base 2 (Binary) Numbers
7
Base 2 (Binary) Numbers
• Binary uses just two digits, 0 and 1
• Similar to Base 10; differences are in the details
• Example: the binary number 11101011 is equivalent to the
decimal number 235 – Add the decimal value of each bit to
get the decimal number
• (1 * 128) + (1 * 64) + (1 * 32) + (0 * 16) + (1 * 8) + (0 * 4) + (1
* 2) + (1 * 1) = 235 decimal
1
8
Four-Octet Dotted-decimal
Representation of 32-Bit Binary
Numbers
• Split the binary number into four groups of eight
binary digits. Then convert each group of eight
bits, also known as an octet into its decimal
equivalent.
9
Converting IP Addresses
Between Decimal and Binary
• IP addresses are 32-bit binary numbers
• Humans find it easier to read decimal
numbers, so IP addresses are often
expressed in dotted-decimal format
• Each decimal number represents 8 binary
digits, also know as an “octet”
• Each octet can be converted to a decimal
number between 0 and 255, inclusive
10
Converting Decimal to Binary
Start by dividing the decimal by the largest
number in the Value row that will go.
11
Converting 8-bit Binary Numbers to
Decimal Numbers
12
Converting 8-Bit Binary to Decimal
• Binary numbers are converted to decimal
numbers by multiplying the binary digits by
the base number of the system, which is
base 2, and raised to the exponent of its
position.
13
Hexadecimal
• The base 16, or hexadecimal (hex), number
system is used frequently when working with
computers, because it can be used to
represent binary numbers in a more readable
form.
14
Hexadecimal
• Popularly called “hex”
• Each hex digit represents 4 bits
• Uses 16 symbols:
0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
• A = 10, B = 11, C = 12, D = 13, E = 14,
F = 15
15
Conversion
16
Boolean or Binary Logic
• Boolean logic is based on digital circuitry
that accepts one or two incoming voltages.
• Boolean logic is a binary logic that allows
two numbers to be compared and generate
a choice based on the two numbers.
17
Boolean or Binary Logic
18
Network Protocols
• Communication must follow a set of rules
• Networking rules are defined by a set of
standards and protocols
• A single standard or protocol defines what a
small part of the network does
• The Transmission Control Protocol/Internet
Protocol (TCP/IP) suite defines a large set of
standards and protocols used to network
computers
19
Media
• Media refers to the various physical
environments through which transmission
signals pass.
• Common network media include twisted-
pair, coaxial, fiber-optic cable, and the
atmosphere through which wireless
transmission occurs.
Network Media
Media Example Encoding
Copper Twisted-pair cable usually
used as LAN media
Electrical pulses
Fiber-optic Glass or plastic fibers in a
vinyl coating usually used
for long runs in a LAN as
a trunk
Light pulses
Wireless Connects local users
through the air
Electromagnetic
waves
20
Network Media
21
22
Local-area Networks (LANs)
LAN Technology: Ethernet, Token Ring,
FDDI (Fiber Distributed Data Interface)
23
Wide-area Networks (WANs)
Internetworks Made Up of LANs
and WANs
24
25
Importance of Bandwidth
• Bandwidth is defined as the amount of
information that can flow through a
network connection in a given period of
time
26
Bandwidth Pipe Analogy
27
Bandwidth Highway Analogy
28
The Need for Networking
Protocols and Standards
• 1960s to 1980s – Each vendor set its own
proprietary protocols and standards
• Equipment from different vendors would
not interoperate
• Eventually, open standards were agreed
upon
• Open standards allow more competition,
which increases speed of development
29
Using Layers to Describe Data
Communication
• Data communication is a very complex process.
• Difficult to understand this process as a whole.
• Solution is to break down the total network
communication system into a series of layers.
• Each layer is responsible for a specific part of
network communication.
• These layers interact with the layer above and
below.
• Two common network models that use layers
are Open System Interconnection (OSI)
reference model and the TCP/IP reference
model.
30
OSI Reference Model
31
Functions of Layer 7
• Application Layer: Network Process to
Applications
– Provides network services to the user’s
application
– User interface
– Examples – Telnet, HTTP, Web browsers
32
Functions of Layer 6
• Presentation Layer: Data Representation
–Ensures that the information that the application
layer of one system sends out is readable by the
application layer of another system
–How data is presented
–Special processing, such as data format,
compression and encryption
33
Functions of Layer 5
• Session Layer: Interhost
Communication
–Establishes, manages, and
terminates session between two
communication host.
34
Functions of Layer 4
• Transport Layer: End-to-End Connection
– How reliable transport between two hosts is
accomplished is the concern of the transport
layer.
– Reliable or unreliable delivery
– Examples: TCP, UDP
35
Functions of Layer 4
• TCP breaks large data into
segments
• TCP marks each data packet with
a sequence number
• A missing packet can be resent
36
Functions of Layer 3
• Network Layer: Address and Best Path
– Provides connectivity and path selection
between two host systems that may be located
on geographically separated networks
– Provides logical addressing which routers use
for path determination
– Examples: IP
37
Functions of Layer 2
• Data Link Layer: Access to media
– Concerned with physical (as opposed
to logical) addressing
– Access to media using MAC address
– Error detection
38
Functions of Layer 1
• Physical Layer: Binary
transmission
–Moves bits between devices
39
The Seven Layers of the OSI
Reference Model
• The application (upper) layers
– Layer 7: Application
– Layer 6: Presentation
– Layer 5: Session
• The data-flow (lower) layers
– Layer 4: Transport
– Layer 3: Network
– Layer 2: Data link
– Layer 1: Physical
40
OSI Model and TCP/IP Model
41
TCP/IP Protocol Graph
42
Use of the OSI Model in the
CCNA Curriculum
43
Encapsulation
The lower layers use encapsulation to put the
protocol data unit (PDU) from the upper layer into its
data field and to add headers and trailers that the
layer can use to perform its function.
44
Names for Data at Each Layer
45
De-Encapsulation
• When the data link layer receives
the frame, it does the following:
–It reads the physical address and
other control information provided by
the directly connected peer data link
layer.
–It strips the control information
46
Cisco Academy 3 References
• CCNA1 Online Materials
– Slide 2 – 17 : 1.2.2 -1.2.9
– Slide 18 – 23 : 2.1.5 – 2.1.7
– Slide 25 - 29 : 2.2.1 – 2.2.3
– Slide 30 – 45 : 2.3.2 – 2.3.7
47
Cisco Academy 4 Exploration
Reference
• Networking Fundamentals
– Slide 2 – 17 : 6.1.1 – 6.1.4
– Slide 18 – 23 : 2.1.6 – 2.2.3
– Slide 25 – 29 : 2.3.2 – 2.4.2
– Slide 30 – 45 : 2.4.1 – 2.4.8

More Related Content

What's hot

Subnet Masks
Subnet MasksSubnet Masks
Subnet Masks
swascher
 

What's hot (20)

Computer networks - Channelization
Computer networks - ChannelizationComputer networks - Channelization
Computer networks - Channelization
 
Ethernet technology
Ethernet technologyEthernet technology
Ethernet technology
 
Subnet Masks
Subnet MasksSubnet Masks
Subnet Masks
 
Computer network switching
Computer network switchingComputer network switching
Computer network switching
 
Structure of Telephone System.pptx
Structure of Telephone System.pptxStructure of Telephone System.pptx
Structure of Telephone System.pptx
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPT
 
Chapter1 computer introduction note
Chapter1  computer introduction note Chapter1  computer introduction note
Chapter1 computer introduction note
 
Hub, switch, router, bridge & and repeater
Hub, switch, router, bridge & and repeaterHub, switch, router, bridge & and repeater
Hub, switch, router, bridge & and repeater
 
Token bus
Token busToken bus
Token bus
 
Transport layer services
Transport layer servicesTransport layer services
Transport layer services
 
Data Communication and Networking
Data Communication and NetworkingData Communication and Networking
Data Communication and Networking
 
Framing Protocols
Framing ProtocolsFraming Protocols
Framing Protocols
 
IP Address - IPv4 & IPv6
IP Address - IPv4 & IPv6IP Address - IPv4 & IPv6
IP Address - IPv4 & IPv6
 
Data Link Control
Data Link ControlData Link Control
Data Link Control
 
Step by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet TracerStep by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet Tracer
 
Computer network
Computer networkComputer network
Computer network
 
Ch13
Ch13Ch13
Ch13
 
Ip addressing classful
Ip addressing classfulIp addressing classful
Ip addressing classful
 
Network Management Principles and Practice - 2nd Edition (2010)_2.pdf
Network Management Principles and Practice - 2nd Edition (2010)_2.pdfNetwork Management Principles and Practice - 2nd Edition (2010)_2.pdf
Network Management Principles and Practice - 2nd Edition (2010)_2.pdf
 
Osi reference model
Osi reference modelOsi reference model
Osi reference model
 

Viewers also liked

Internetworking.49
Internetworking.49Internetworking.49
Internetworking.49
myrajendra
 
Internetworking
InternetworkingInternetworking
Internetworking
Raghu nath
 
Internetworking devices(networking)
Internetworking devices(networking)Internetworking devices(networking)
Internetworking devices(networking)
welcometofacebook
 
Chapter 3 networking and internetworking
Chapter 3 networking and internetworkingChapter 3 networking and internetworking
Chapter 3 networking and internetworking
AbDul ThaYyal
 

Viewers also liked (20)

Internetworking
InternetworkingInternetworking
Internetworking
 
Internetworking Overview
Internetworking OverviewInternetworking Overview
Internetworking Overview
 
Networking and Internetworking Devices
Networking and Internetworking DevicesNetworking and Internetworking Devices
Networking and Internetworking Devices
 
Ipv6
Ipv6Ipv6
Ipv6
 
Networking Basics
Networking BasicsNetworking Basics
Networking Basics
 
Internetworking.49
Internetworking.49Internetworking.49
Internetworking.49
 
Network Layer
Network LayerNetwork Layer
Network Layer
 
Networks 2
Networks 2Networks 2
Networks 2
 
Internetworking
InternetworkingInternetworking
Internetworking
 
Internet protocol v6
Internet protocol v6Internet protocol v6
Internet protocol v6
 
Junos routing overview from Juniper
Junos routing overview from JuniperJunos routing overview from Juniper
Junos routing overview from Juniper
 
Internetworking devices
Internetworking devicesInternetworking devices
Internetworking devices
 
Internetworking devices(networking)
Internetworking devices(networking)Internetworking devices(networking)
Internetworking devices(networking)
 
IPV4 Frame Format
IPV4 Frame FormatIPV4 Frame Format
IPV4 Frame Format
 
QoS (quality of service)
QoS (quality of service)QoS (quality of service)
QoS (quality of service)
 
IPv6
IPv6IPv6
IPv6
 
The Network Layer
The Network LayerThe Network Layer
The Network Layer
 
Straight&Cross-over cable connection
Straight&Cross-over cable connectionStraight&Cross-over cable connection
Straight&Cross-over cable connection
 
Chapter 3 networking and internetworking
Chapter 3 networking and internetworkingChapter 3 networking and internetworking
Chapter 3 networking and internetworking
 
Ipv6
Ipv6Ipv6
Ipv6
 

Similar to Internetworking fundamentals(networking)

Skr+3200+chapter+2+(kweh)
Skr+3200+chapter+2+(kweh)Skr+3200+chapter+2+(kweh)
Skr+3200+chapter+2+(kweh)
Ammar Shafiq
 

Similar to Internetworking fundamentals(networking) (20)

Chapter1ccna
Chapter1ccnaChapter1ccna
Chapter1ccna
 
Networking (CCNA 1st Chapter)
Networking (CCNA 1st Chapter)Networking (CCNA 1st Chapter)
Networking (CCNA 1st Chapter)
 
ccna is the best certification in the industry
ccna is the best certification in the industryccna is the best certification in the industry
ccna is the best certification in the industry
 
unit2-210710110327.pptx
unit2-210710110327.pptxunit2-210710110327.pptx
unit2-210710110327.pptx
 
The Theoretical Network
The Theoretical NetworkThe Theoretical Network
The Theoretical Network
 
Network_Layer_and_Internet_Protocols_IPv.pptx
Network_Layer_and_Internet_Protocols_IPv.pptxNetwork_Layer_and_Internet_Protocols_IPv.pptx
Network_Layer_and_Internet_Protocols_IPv.pptx
 
21 Scheme_ MODULE-3_CCN.pdf
21 Scheme_ MODULE-3_CCN.pdf21 Scheme_ MODULE-3_CCN.pdf
21 Scheme_ MODULE-3_CCN.pdf
 
02 network models
02  network models02  network models
02 network models
 
Skr+3200+chapter+2+(kweh)
Skr+3200+chapter+2+(kweh)Skr+3200+chapter+2+(kweh)
Skr+3200+chapter+2+(kweh)
 
Protocol and Interfaces - IPv4, IPv6, X.25 Protocol, X.75 Protocol
Protocol and Interfaces - IPv4, IPv6, X.25 Protocol, X.75 ProtocolProtocol and Interfaces - IPv4, IPv6, X.25 Protocol, X.75 Protocol
Protocol and Interfaces - IPv4, IPv6, X.25 Protocol, X.75 Protocol
 
Protocols and Interfaces - IPv4, IPv6, X.25, X.75
Protocols and Interfaces - IPv4, IPv6, X.25, X.75Protocols and Interfaces - IPv4, IPv6, X.25, X.75
Protocols and Interfaces - IPv4, IPv6, X.25, X.75
 
OSI MODEL ppt. - Copy.pptx
OSI MODEL  ppt. - Copy.pptxOSI MODEL  ppt. - Copy.pptx
OSI MODEL ppt. - Copy.pptx
 
Dc2 t1
Dc2 t1Dc2 t1
Dc2 t1
 
MVA slides lesson 2
MVA slides lesson 2MVA slides lesson 2
MVA slides lesson 2
 
CN Unit-1 PPT.pptx
CN Unit-1 PPT.pptxCN Unit-1 PPT.pptx
CN Unit-1 PPT.pptx
 
Unit 1- Network Layer and Protocols-4.pptx
Unit 1- Network Layer and Protocols-4.pptxUnit 1- Network Layer and Protocols-4.pptx
Unit 1- Network Layer and Protocols-4.pptx
 
computer network
computer networkcomputer network
computer network
 
Sept 2017 network standards and models
Sept 2017   network standards and modelsSept 2017   network standards and models
Sept 2017 network standards and models
 
Computer Networks basics
Computer Networks basicsComputer Networks basics
Computer Networks basics
 
Networking lecture1
Networking lecture1Networking lecture1
Networking lecture1
 

More from welcometofacebook

Quantitative exercise-toasty oven
Quantitative exercise-toasty ovenQuantitative exercise-toasty oven
Quantitative exercise-toasty oven
welcometofacebook
 
EVC exercise-novel motor oil
EVC exercise-novel motor oilEVC exercise-novel motor oil
EVC exercise-novel motor oil
welcometofacebook
 
cltv calculation-calyx corolla
cltv calculation-calyx corolla cltv calculation-calyx corolla
cltv calculation-calyx corolla
welcometofacebook
 
competing in a global market(4210)
competing in a global market(4210)competing in a global market(4210)
competing in a global market(4210)
welcometofacebook
 
distribution strategies calyx and corolla(4210)
distribution strategies calyx and corolla(4210)distribution strategies calyx and corolla(4210)
distribution strategies calyx and corolla(4210)
welcometofacebook
 
distribution strategies(4210)
distribution strategies(4210)distribution strategies(4210)
distribution strategies(4210)
welcometofacebook
 
product and brand strategies(4210)
product and brand strategies(4210)product and brand strategies(4210)
product and brand strategies(4210)
welcometofacebook
 
overview of marketing strategy(4210)
overview of marketing strategy(4210)overview of marketing strategy(4210)
overview of marketing strategy(4210)
welcometofacebook
 
Class+3+ +quantitative+analysis+exercise+answer+key
Class+3+ +quantitative+analysis+exercise+answer+keyClass+3+ +quantitative+analysis+exercise+answer+key
Class+3+ +quantitative+analysis+exercise+answer+key
welcometofacebook
 

More from welcometofacebook (20)

Quantitative exercise-toasty oven
Quantitative exercise-toasty ovenQuantitative exercise-toasty oven
Quantitative exercise-toasty oven
 
EVC exercise-novel motor oil
EVC exercise-novel motor oilEVC exercise-novel motor oil
EVC exercise-novel motor oil
 
jones blair calculations
jones blair calculationsjones blair calculations
jones blair calculations
 
EVC exercise-odi case
EVC exercise-odi caseEVC exercise-odi case
EVC exercise-odi case
 
cltv calculation-calyx corolla
cltv calculation-calyx corolla cltv calculation-calyx corolla
cltv calculation-calyx corolla
 
consumer behavior(4210)
consumer behavior(4210)consumer behavior(4210)
consumer behavior(4210)
 
competing in a global market(4210)
competing in a global market(4210)competing in a global market(4210)
competing in a global market(4210)
 
promotion strategies(4210)
promotion strategies(4210)promotion strategies(4210)
promotion strategies(4210)
 
pricing strategies(4210)
pricing strategies(4210)pricing strategies(4210)
pricing strategies(4210)
 
Pharmasim
PharmasimPharmasim
Pharmasim
 
distribution strategies calyx and corolla(4210)
distribution strategies calyx and corolla(4210)distribution strategies calyx and corolla(4210)
distribution strategies calyx and corolla(4210)
 
distribution strategies(4210)
distribution strategies(4210)distribution strategies(4210)
distribution strategies(4210)
 
the birth of swatch(4210)
the birth of swatch(4210)the birth of swatch(4210)
the birth of swatch(4210)
 
product and brand strategies(4210)
product and brand strategies(4210)product and brand strategies(4210)
product and brand strategies(4210)
 
stp case jones blair(4210)
stp case jones blair(4210)stp case jones blair(4210)
stp case jones blair(4210)
 
stp(4210)
stp(4210)stp(4210)
stp(4210)
 
situational analysis(4210)
situational analysis(4210)situational analysis(4210)
situational analysis(4210)
 
quantitative analysis(4210)
quantitative analysis(4210)quantitative analysis(4210)
quantitative analysis(4210)
 
overview of marketing strategy(4210)
overview of marketing strategy(4210)overview of marketing strategy(4210)
overview of marketing strategy(4210)
 
Class+3+ +quantitative+analysis+exercise+answer+key
Class+3+ +quantitative+analysis+exercise+answer+keyClass+3+ +quantitative+analysis+exercise+answer+key
Class+3+ +quantitative+analysis+exercise+answer+key
 

Recently uploaded

CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
drmarathore
 
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
tufbav
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
amitlee9823
 
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...
amitlee9823
 
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
amitlee9823
 
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
tufbav
 
➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men 🔝kakinada🔝 Escor...
➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men  🔝kakinada🔝   Escor...➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men  🔝kakinada🔝   Escor...
➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men 🔝kakinada🔝 Escor...
amitlee9823
 

Recently uploaded (20)

CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
 
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
 
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
 
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
 
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
 
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
 
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
 
SM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdfSM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdf
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
 
➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men 🔝kakinada🔝 Escor...
➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men  🔝kakinada🔝   Escor...➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men  🔝kakinada🔝   Escor...
➥🔝 7737669865 🔝▻ kakinada Call-girls in Women Seeking Men 🔝kakinada🔝 Escor...
 

Internetworking fundamentals(networking)

  • 1. 1 Module 1 Introduction to Internetworking By Dr. Percy DIAS © 2009, Cisco Systems, Inc. All rights reserved.
  • 2. 2 Computing Measurement Terms • Bits are binary digits. They are either 0s or 1s. In a computer, they are represented by On/Off switches or the presence or absence of electrical charges, light pulses, or radio waves.
  • 4. 4 Base 10 (Decimal) Number System
  • 5. 5 Base 10 (Decimal) Calculations • Should be familiar because you’ve used it since childhood • Example: the number 235 = (2 x 100) + (3 x 10) + (5 x 1) • Because you’ve used it so long, you probably don’t think about it
  • 7. 7 Base 2 (Binary) Numbers • Binary uses just two digits, 0 and 1 • Similar to Base 10; differences are in the details • Example: the binary number 11101011 is equivalent to the decimal number 235 – Add the decimal value of each bit to get the decimal number • (1 * 128) + (1 * 64) + (1 * 32) + (0 * 16) + (1 * 8) + (0 * 4) + (1 * 2) + (1 * 1) = 235 decimal 1
  • 8. 8 Four-Octet Dotted-decimal Representation of 32-Bit Binary Numbers • Split the binary number into four groups of eight binary digits. Then convert each group of eight bits, also known as an octet into its decimal equivalent.
  • 9. 9 Converting IP Addresses Between Decimal and Binary • IP addresses are 32-bit binary numbers • Humans find it easier to read decimal numbers, so IP addresses are often expressed in dotted-decimal format • Each decimal number represents 8 binary digits, also know as an “octet” • Each octet can be converted to a decimal number between 0 and 255, inclusive
  • 10. 10 Converting Decimal to Binary Start by dividing the decimal by the largest number in the Value row that will go.
  • 11. 11 Converting 8-bit Binary Numbers to Decimal Numbers
  • 12. 12 Converting 8-Bit Binary to Decimal • Binary numbers are converted to decimal numbers by multiplying the binary digits by the base number of the system, which is base 2, and raised to the exponent of its position.
  • 13. 13 Hexadecimal • The base 16, or hexadecimal (hex), number system is used frequently when working with computers, because it can be used to represent binary numbers in a more readable form.
  • 14. 14 Hexadecimal • Popularly called “hex” • Each hex digit represents 4 bits • Uses 16 symbols: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F • A = 10, B = 11, C = 12, D = 13, E = 14, F = 15
  • 16. 16 Boolean or Binary Logic • Boolean logic is based on digital circuitry that accepts one or two incoming voltages. • Boolean logic is a binary logic that allows two numbers to be compared and generate a choice based on the two numbers.
  • 18. 18 Network Protocols • Communication must follow a set of rules • Networking rules are defined by a set of standards and protocols • A single standard or protocol defines what a small part of the network does • The Transmission Control Protocol/Internet Protocol (TCP/IP) suite defines a large set of standards and protocols used to network computers
  • 19. 19 Media • Media refers to the various physical environments through which transmission signals pass. • Common network media include twisted- pair, coaxial, fiber-optic cable, and the atmosphere through which wireless transmission occurs.
  • 20. Network Media Media Example Encoding Copper Twisted-pair cable usually used as LAN media Electrical pulses Fiber-optic Glass or plastic fibers in a vinyl coating usually used for long runs in a LAN as a trunk Light pulses Wireless Connects local users through the air Electromagnetic waves 20
  • 22. 22 Local-area Networks (LANs) LAN Technology: Ethernet, Token Ring, FDDI (Fiber Distributed Data Interface)
  • 24. Internetworks Made Up of LANs and WANs 24
  • 25. 25 Importance of Bandwidth • Bandwidth is defined as the amount of information that can flow through a network connection in a given period of time
  • 28. 28 The Need for Networking Protocols and Standards • 1960s to 1980s – Each vendor set its own proprietary protocols and standards • Equipment from different vendors would not interoperate • Eventually, open standards were agreed upon • Open standards allow more competition, which increases speed of development
  • 29. 29 Using Layers to Describe Data Communication • Data communication is a very complex process. • Difficult to understand this process as a whole. • Solution is to break down the total network communication system into a series of layers. • Each layer is responsible for a specific part of network communication. • These layers interact with the layer above and below. • Two common network models that use layers are Open System Interconnection (OSI) reference model and the TCP/IP reference model.
  • 31. 31 Functions of Layer 7 • Application Layer: Network Process to Applications – Provides network services to the user’s application – User interface – Examples – Telnet, HTTP, Web browsers
  • 32. 32 Functions of Layer 6 • Presentation Layer: Data Representation –Ensures that the information that the application layer of one system sends out is readable by the application layer of another system –How data is presented –Special processing, such as data format, compression and encryption
  • 33. 33 Functions of Layer 5 • Session Layer: Interhost Communication –Establishes, manages, and terminates session between two communication host.
  • 34. 34 Functions of Layer 4 • Transport Layer: End-to-End Connection – How reliable transport between two hosts is accomplished is the concern of the transport layer. – Reliable or unreliable delivery – Examples: TCP, UDP
  • 35. 35 Functions of Layer 4 • TCP breaks large data into segments • TCP marks each data packet with a sequence number • A missing packet can be resent
  • 36. 36 Functions of Layer 3 • Network Layer: Address and Best Path – Provides connectivity and path selection between two host systems that may be located on geographically separated networks – Provides logical addressing which routers use for path determination – Examples: IP
  • 37. 37 Functions of Layer 2 • Data Link Layer: Access to media – Concerned with physical (as opposed to logical) addressing – Access to media using MAC address – Error detection
  • 38. 38 Functions of Layer 1 • Physical Layer: Binary transmission –Moves bits between devices
  • 39. 39 The Seven Layers of the OSI Reference Model • The application (upper) layers – Layer 7: Application – Layer 6: Presentation – Layer 5: Session • The data-flow (lower) layers – Layer 4: Transport – Layer 3: Network – Layer 2: Data link – Layer 1: Physical
  • 40. 40 OSI Model and TCP/IP Model
  • 42. 42 Use of the OSI Model in the CCNA Curriculum
  • 43. 43 Encapsulation The lower layers use encapsulation to put the protocol data unit (PDU) from the upper layer into its data field and to add headers and trailers that the layer can use to perform its function.
  • 44. 44 Names for Data at Each Layer
  • 45. 45 De-Encapsulation • When the data link layer receives the frame, it does the following: –It reads the physical address and other control information provided by the directly connected peer data link layer. –It strips the control information
  • 46. 46 Cisco Academy 3 References • CCNA1 Online Materials – Slide 2 – 17 : 1.2.2 -1.2.9 – Slide 18 – 23 : 2.1.5 – 2.1.7 – Slide 25 - 29 : 2.2.1 – 2.2.3 – Slide 30 – 45 : 2.3.2 – 2.3.7
  • 47. 47 Cisco Academy 4 Exploration Reference • Networking Fundamentals – Slide 2 – 17 : 6.1.1 – 6.1.4 – Slide 18 – 23 : 2.1.6 – 2.2.3 – Slide 25 – 29 : 2.3.2 – 2.4.2 – Slide 30 – 45 : 2.4.1 – 2.4.8