SlideShare a Scribd company logo
1 of 25
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1
Instructor Materials
Chapter 6: Network Layer
CCNA Routing and Switching
Introduction to Networks v6.0
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 20
Chapter 6: Network Layer
Introduction to Networks v6.0
Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 6 - Sections & Objectives
6.1 Network Layer Protocols
• Describe the purpose of the network layer in data communication.
• Explain why the IPv4 protocol requires other layers to provide reliability.
• Explain the role of the major header fields in the IPv4 and IPv6 packet.
6.2 Routing
• Explain how a host device uses routing tables to direct packets to itself, a local
destination, or a default gateway.
• Compare a host routing table to a routing table in a router.
6.3 Routers
• Describe the common components and interfaces of a router.
• Describe the boot-up process of a Cisco IOS router.
6.4 Configure a Cisco Router
• Configure initial settings on a Cisco IOS router.
• Configure two active interfaces on a Cisco IOS router.
• Configure devices to use the default gateway.
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 22
6.1 Network Layer
Protocols
Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Network Layer Protocols
Network Layer in Communications
 The Network Layer
• End to End Transport processes
• Addressing end devices
• Encapsulation
• Routing
• De-encapsulating
 Network Layer Protocols
• IPv4
• IPv6
Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Network Layer Protocols
Characteristics of the IP Protocol
 Encapsulating IP
• Segments are encapsulated into IP packets for
transmission.
• The network layer adds a header so packets can
be routed to the destination.
 IP - Connectionless
• Sender doesn’t know if the receiver is listening or
the message arrived on time.
• Receiver doesn’t know data is coming.
 IP – Best Effort Delivery
• No guarantees of delivery are made.
 IP – Media Independent
• IP can travel over different types of media.
Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Network Layer Protocols
IPv4 Packet
 IPv4 Packet Header
 Version = 0100
 DS = Packet
Priority
 TTL = Limits life of
Packet
 Protocol = Upper
layer protocol such
as TCP
 Source IP Address
= source of packet
 Destination IP
Address =
destination of
packet
Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Network Layer Protocols
IPv6 Packet
 Limitations of IPv4
• IP address depletion
• Internet routing table expansion
• Lack of end-to-end connectivity
 Introducing IPv6
• Increased address space
• Improved packet handling
• Eliminates the need for NAT
 EncapsulatingIPv6
• Simplified header format
• No checksum process requirement
• More efficient Options Header mechanism
• Flow Label field makes it more efficient.
 IPv6 Packet Header
• xx
Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Network Layer Protocols
IPv6 Packet (Cont.)
 IPv6 Packet Header
• xx
 Version = 0110
 Traffic Class =
Priority
 Flow Label =
same flow will
receive same
handling
 Payload Length =
same as total
length
 Next Header =
Layer 4 Protocol
 Hop Limit =
Replaces TTL
field
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 28
6.2 Routing
Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing
How a Host Routes
 Host Forwarding Decision
• Three types of destination: itself, local host, remote host.
 Default Gateway
• Routes traffic to other networks
• Has a local IP address in the same address range as other hosts on the network
• Can take data in and forward data out
 Using the Default Gateway
• Hosts will use the default gateway when sending packets to remote networks.
 Host Routing Tables
• Use the netstat –r command to display the
host routing table on a Windows machine.
Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing
How a Host Routes (Cont.)
Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
How a Host Routes
Router Routing Tables
 Router Packet Forwarding Decision
• Routers and hosts forward packets in a similar fashion.
• The main difference is that routers have more interfaces while hosts often have only one.
• Devices on directly connected networks can be reached directly.
• Devices on remote networks are reached through gateway.
 IPv4 Router Routing Table
• The router routing table stores network routes the router knows about.
• Use the show ip route command to display the routing table on a Cisco router.
• The router routing table also has information on: how the route was learned, its
trustworthiness and rating.
• It also contains which interface to use to reach that specifc destination.
 Directly Connected Routing Table Entries
• C - Identifies a directly-connected network, automatically created when an interface is
configured with an IP address and activated.
• L - Identifies that this is a local interface. This is the IPv4 address of the interface on the
router.
 Remote Network Routing Table Entries
Presentation_ID 32© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
How a Host Routes
Router Routing Tables (Cont.)
 Remote Network Routing
Table Entries
• Remote destinations can’t be
reached directly.
• Remote routes contain the
address of the intermediate
network device to be used to
reach the destination.
 Next-Hop Address
• Next-Hop address is the
address of the intermediate
device used to reach a specifc
remote destination.
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 33
6.3 Routers
Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routers
Anatomy of a Router
 A Router is a Computer
• Routers have CPU, memory and I/O devices
• Cisco routers use IOS as their operating system.
 Router Memory
• Just as a computer, routers have memory.
• Routers contain RAM, ROM, NVRAM and Flash memory.
 Inside a Router
• Routers have the same general structure.
 Connect to a Router
• Routers have may ports to support connections.
 LAN and WAN Interfaces
• Routers have LAN and WAN ports.
• Different models ship with different ports.
• Ethernet is very common on different router
models.
Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routers
Anatomy of a Router
 Bootset Files
• IOS image file, stored in the Flash, contains
the IOS.
• The Flash also stores other system files.
• The NVRAM stores configuration parameters.
 Router Bootup Process
1. Perform the POST and load the bootstrap
program.
2. Locate and load the Cisco IOS software.
3. Locate and load the startup configuration file
or enter setup mode
 Show Version Output
• The show version command is very useful.
• It provides information on the amounts of
memory installed, what IOS images was
loaded during boot and more.
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 36
6.4 Configuring a Cisco
Router
Presentation_ID 37© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configure a Cisco Router
Configure Initial Settings
 Basic Switch Configuration
Steps
• Configure device name
• Secure EXEC mode
• Secure VTY lines
• Secure privilege EXEC mode
• Secure all passwords
• Provide legal notification
• Configure the management SVI
• Save the configuration
 Basic Router Configuration
Steps
• Configure device name
• Secure EXEC mode
• Secure VTY lines
• Secure privilege EXEC mode
• Secure all passwords
• Provide legal notification
• Configure the management SVI
• Save the configuration
Presentation_ID 38© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configure a Cisco Router
Configure Interfaces
 Configure Router Interfaces
• Enter the interface sub-configuration mode.
• Add a description to the Interface (optional)
• Configure an IPv4 or IPv6 address.
• Activate the interface with a no shutdown
command
 Verify Interface Configuration
• show ip route - Displays the contents of the
IPv4 routing table stored in RAM.
• show interfaces - Displays statistics for all
interfaces on the device.
• show ip interface - Displays the IPv4
statistics for all interfaces on a router.
Presentation_ID 39© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configure a Cisco Router
Configure the Default Gateway
 Default Gateway for a Host
 Default Gateway for a Switch
• A default gateway is required for remote network communication.
• If a switch is to be managed via its VTY lines, it needs a default gateway.
• Use the ip default-gateway command to configure the default gateway for a switch.
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 40
6.5 Chapter Summary
Presentation_ID 41© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
 Explain how network layer protocols and services support communications across data
networks.
 Explain how routers enable end-to-end connectivity in a small to medium-sized business
network.
 Explain how devices route traffic in a small to medium-sized business network.
 Configure a router with basic configurations.
Chapter Summary
Summary
Presentation_ID 46© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Presentation_ID 47© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential

More Related Content

What's hot

CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7Waqas Ahmed Nawaz
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1Waqas Ahmed Nawaz
 
CCNA2 Verson6 Chapter5
CCNA2 Verson6 Chapter5CCNA2 Verson6 Chapter5
CCNA2 Verson6 Chapter5Chaing Ravuth
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4Waqas Ahmed Nawaz
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4Waqas Ahmed Nawaz
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3Waqas Ahmed Nawaz
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8Waqas Ahmed Nawaz
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1Waqas Ahmed Nawaz
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8Waqas Ahmed Nawaz
 
CCNA2 Verson6 Chapter10
CCNA2 Verson6 Chapter10CCNA2 Verson6 Chapter10
CCNA2 Verson6 Chapter10Chaing Ravuth
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5Waqas Ahmed Nawaz
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7Waqas Ahmed Nawaz
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06Irsandi Hasan
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9Waqas Ahmed Nawaz
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9Waqas Ahmed Nawaz
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1Waqas Ahmed Nawaz
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8Waqas Ahmed Nawaz
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4Waqas Ahmed Nawaz
 

What's hot (20)

CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
 
CCNA2 Verson6 Chapter5
CCNA2 Verson6 Chapter5CCNA2 Verson6 Chapter5
CCNA2 Verson6 Chapter5
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 4
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 11
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
 
CCNA2 Verson6 Chapter10
CCNA2 Verson6 Chapter10CCNA2 Verson6 Chapter10
CCNA2 Verson6 Chapter10
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 1
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
 

Similar to CCNA (R & S) Module 01 - Introduction to Networks - Chapter 6

CCNA2 Verson6 Chapter1
CCNA2 Verson6 Chapter1CCNA2 Verson6 Chapter1
CCNA2 Verson6 Chapter1Chaing Ravuth
 
CCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing ConceptsCCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing ConceptsVuz Dở Hơi
 
KPUCC-Rs instructor ppt_chapter4_final
KPUCC-Rs instructor ppt_chapter4_finalKPUCC-Rs instructor ppt_chapter4_final
KPUCC-Rs instructor ppt_chapter4_finalFisal Anwari
 
Chapter 04 - Routing Concepts
Chapter 04 - Routing ConceptsChapter 04 - Routing Concepts
Chapter 04 - Routing ConceptsYaser Rahmati
 
CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4Nil Menon
 
Chapter 15 : routing concepts
Chapter 15 : routing conceptsChapter 15 : routing concepts
Chapter 15 : routing conceptsteknetir
 
Routing of netwok protocls and how .pptx
Routing of netwok protocls and how .pptxRouting of netwok protocls and how .pptx
Routing of netwok protocls and how .pptxsayidkhalif
 
CCNA2 Verson6 Chapter9
CCNA2 Verson6 Chapter9CCNA2 Verson6 Chapter9
CCNA2 Verson6 Chapter9Chaing Ravuth
 
Itn6 instructor materials_chapter3
Itn6 instructor materials_chapter3Itn6 instructor materials_chapter3
Itn6 instructor materials_chapter3limenih muluneh
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8Irsandi Hasan
 
Itn6 instructor materials_chapter2
Itn6 instructor materials_chapter2Itn6 instructor materials_chapter2
Itn6 instructor materials_chapter2limenih muluneh
 
Lecture Notes- Network Services - Copy.pptx
Lecture Notes- Network Services - Copy.pptxLecture Notes- Network Services - Copy.pptx
Lecture Notes- Network Services - Copy.pptxSaqibAhmedKhan4
 
Exploration_Routing_Chapter_1 ppt for learning Networking
Exploration_Routing_Chapter_1 ppt for learning NetworkingExploration_Routing_Chapter_1 ppt for learning Networking
Exploration_Routing_Chapter_1 ppt for learning NetworkingbrainxMagic
 
Ccna v5-S1-Chapter 8
Ccna v5-S1-Chapter 8Ccna v5-S1-Chapter 8
Ccna v5-S1-Chapter 8Hamza Malik
 
ITN_Module_8.pptx
ITN_Module_8.pptxITN_Module_8.pptx
ITN_Module_8.pptxAliJrboy
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7Waqas Ahmed Nawaz
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3Waqas Ahmed Nawaz
 
CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3Chaing Ravuth
 

Similar to CCNA (R & S) Module 01 - Introduction to Networks - Chapter 6 (20)

CCNA2 Verson6 Chapter1
CCNA2 Verson6 Chapter1CCNA2 Verson6 Chapter1
CCNA2 Verson6 Chapter1
 
CCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing ConceptsCCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing Concepts
 
KPUCC-Rs instructor ppt_chapter4_final
KPUCC-Rs instructor ppt_chapter4_finalKPUCC-Rs instructor ppt_chapter4_final
KPUCC-Rs instructor ppt_chapter4_final
 
Chapter 04 - Routing Concepts
Chapter 04 - Routing ConceptsChapter 04 - Routing Concepts
Chapter 04 - Routing Concepts
 
CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4
 
Chapter 15 : routing concepts
Chapter 15 : routing conceptsChapter 15 : routing concepts
Chapter 15 : routing concepts
 
Routing of netwok protocls and how .pptx
Routing of netwok protocls and how .pptxRouting of netwok protocls and how .pptx
Routing of netwok protocls and how .pptx
 
CCNA2 Verson6 Chapter9
CCNA2 Verson6 Chapter9CCNA2 Verson6 Chapter9
CCNA2 Verson6 Chapter9
 
Itn6 instructor materials_chapter3
Itn6 instructor materials_chapter3Itn6 instructor materials_chapter3
Itn6 instructor materials_chapter3
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8
 
Itn6 instructor materials_chapter2
Itn6 instructor materials_chapter2Itn6 instructor materials_chapter2
Itn6 instructor materials_chapter2
 
Lecture Notes- Network Services - Copy.pptx
Lecture Notes- Network Services - Copy.pptxLecture Notes- Network Services - Copy.pptx
Lecture Notes- Network Services - Copy.pptx
 
Exploration_Routing_Chapter_1 ppt for learning Networking
Exploration_Routing_Chapter_1 ppt for learning NetworkingExploration_Routing_Chapter_1 ppt for learning Networking
Exploration_Routing_Chapter_1 ppt for learning Networking
 
Ccna v5-S1-Chapter 8
Ccna v5-S1-Chapter 8Ccna v5-S1-Chapter 8
Ccna v5-S1-Chapter 8
 
Cisco CCNA module 10
Cisco CCNA module 10Cisco CCNA module 10
Cisco CCNA module 10
 
ITN_Module_8.pptx
ITN_Module_8.pptxITN_Module_8.pptx
ITN_Module_8.pptx
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 7
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
 
CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3
 
6978047_2.ppt
6978047_2.ppt6978047_2.ppt
6978047_2.ppt
 

More from Waqas Ahmed Nawaz

CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
CCNA (R & S) Module 04 - Scaling Networks - Chapter 9CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
CCNA (R & S) Module 04 - Scaling Networks - Chapter 9Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2Waqas Ahmed Nawaz
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10Waqas Ahmed Nawaz
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2Waqas Ahmed Nawaz
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 6
CCNA (R & S) Module 02 - Connecting Networks - Chapter 6CCNA (R & S) Module 02 - Connecting Networks - Chapter 6
CCNA (R & S) Module 02 - Connecting Networks - Chapter 6Waqas Ahmed Nawaz
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1Waqas Ahmed Nawaz
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10Waqas Ahmed Nawaz
 

More from Waqas Ahmed Nawaz (11)

CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
CCNA (R & S) Module 04 - Scaling Networks - Chapter 9CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 6
CCNA (R & S) Module 02 - Connecting Networks - Chapter 6CCNA (R & S) Module 02 - Connecting Networks - Chapter 6
CCNA (R & S) Module 02 - Connecting Networks - Chapter 6
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
 

Recently uploaded

Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 

Recently uploaded (20)

Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 

CCNA (R & S) Module 01 - Introduction to Networks - Chapter 6

  • 1. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1 Instructor Materials Chapter 6: Network Layer CCNA Routing and Switching Introduction to Networks v6.0
  • 2. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 20 Chapter 6: Network Layer Introduction to Networks v6.0
  • 3. Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 6 - Sections & Objectives 6.1 Network Layer Protocols • Describe the purpose of the network layer in data communication. • Explain why the IPv4 protocol requires other layers to provide reliability. • Explain the role of the major header fields in the IPv4 and IPv6 packet. 6.2 Routing • Explain how a host device uses routing tables to direct packets to itself, a local destination, or a default gateway. • Compare a host routing table to a routing table in a router. 6.3 Routers • Describe the common components and interfaces of a router. • Describe the boot-up process of a Cisco IOS router. 6.4 Configure a Cisco Router • Configure initial settings on a Cisco IOS router. • Configure two active interfaces on a Cisco IOS router. • Configure devices to use the default gateway.
  • 4. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 22 6.1 Network Layer Protocols
  • 5. Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Network Layer Protocols Network Layer in Communications  The Network Layer • End to End Transport processes • Addressing end devices • Encapsulation • Routing • De-encapsulating  Network Layer Protocols • IPv4 • IPv6
  • 6. Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Network Layer Protocols Characteristics of the IP Protocol  Encapsulating IP • Segments are encapsulated into IP packets for transmission. • The network layer adds a header so packets can be routed to the destination.  IP - Connectionless • Sender doesn’t know if the receiver is listening or the message arrived on time. • Receiver doesn’t know data is coming.  IP – Best Effort Delivery • No guarantees of delivery are made.  IP – Media Independent • IP can travel over different types of media.
  • 7. Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Network Layer Protocols IPv4 Packet  IPv4 Packet Header  Version = 0100  DS = Packet Priority  TTL = Limits life of Packet  Protocol = Upper layer protocol such as TCP  Source IP Address = source of packet  Destination IP Address = destination of packet
  • 8. Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Network Layer Protocols IPv6 Packet  Limitations of IPv4 • IP address depletion • Internet routing table expansion • Lack of end-to-end connectivity  Introducing IPv6 • Increased address space • Improved packet handling • Eliminates the need for NAT  EncapsulatingIPv6 • Simplified header format • No checksum process requirement • More efficient Options Header mechanism • Flow Label field makes it more efficient.  IPv6 Packet Header • xx
  • 9. Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Network Layer Protocols IPv6 Packet (Cont.)  IPv6 Packet Header • xx  Version = 0110  Traffic Class = Priority  Flow Label = same flow will receive same handling  Payload Length = same as total length  Next Header = Layer 4 Protocol  Hop Limit = Replaces TTL field
  • 10. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 28 6.2 Routing
  • 11. Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing How a Host Routes  Host Forwarding Decision • Three types of destination: itself, local host, remote host.  Default Gateway • Routes traffic to other networks • Has a local IP address in the same address range as other hosts on the network • Can take data in and forward data out  Using the Default Gateway • Hosts will use the default gateway when sending packets to remote networks.  Host Routing Tables • Use the netstat –r command to display the host routing table on a Windows machine.
  • 12. Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing How a Host Routes (Cont.)
  • 13. Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential How a Host Routes Router Routing Tables  Router Packet Forwarding Decision • Routers and hosts forward packets in a similar fashion. • The main difference is that routers have more interfaces while hosts often have only one. • Devices on directly connected networks can be reached directly. • Devices on remote networks are reached through gateway.  IPv4 Router Routing Table • The router routing table stores network routes the router knows about. • Use the show ip route command to display the routing table on a Cisco router. • The router routing table also has information on: how the route was learned, its trustworthiness and rating. • It also contains which interface to use to reach that specifc destination.  Directly Connected Routing Table Entries • C - Identifies a directly-connected network, automatically created when an interface is configured with an IP address and activated. • L - Identifies that this is a local interface. This is the IPv4 address of the interface on the router.  Remote Network Routing Table Entries
  • 14. Presentation_ID 32© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential How a Host Routes Router Routing Tables (Cont.)  Remote Network Routing Table Entries • Remote destinations can’t be reached directly. • Remote routes contain the address of the intermediate network device to be used to reach the destination.  Next-Hop Address • Next-Hop address is the address of the intermediate device used to reach a specifc remote destination.
  • 15. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 33 6.3 Routers
  • 16. Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routers Anatomy of a Router  A Router is a Computer • Routers have CPU, memory and I/O devices • Cisco routers use IOS as their operating system.  Router Memory • Just as a computer, routers have memory. • Routers contain RAM, ROM, NVRAM and Flash memory.  Inside a Router • Routers have the same general structure.  Connect to a Router • Routers have may ports to support connections.  LAN and WAN Interfaces • Routers have LAN and WAN ports. • Different models ship with different ports. • Ethernet is very common on different router models.
  • 17. Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routers Anatomy of a Router  Bootset Files • IOS image file, stored in the Flash, contains the IOS. • The Flash also stores other system files. • The NVRAM stores configuration parameters.  Router Bootup Process 1. Perform the POST and load the bootstrap program. 2. Locate and load the Cisco IOS software. 3. Locate and load the startup configuration file or enter setup mode  Show Version Output • The show version command is very useful. • It provides information on the amounts of memory installed, what IOS images was loaded during boot and more.
  • 18. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 36 6.4 Configuring a Cisco Router
  • 19. Presentation_ID 37© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configure a Cisco Router Configure Initial Settings  Basic Switch Configuration Steps • Configure device name • Secure EXEC mode • Secure VTY lines • Secure privilege EXEC mode • Secure all passwords • Provide legal notification • Configure the management SVI • Save the configuration  Basic Router Configuration Steps • Configure device name • Secure EXEC mode • Secure VTY lines • Secure privilege EXEC mode • Secure all passwords • Provide legal notification • Configure the management SVI • Save the configuration
  • 20. Presentation_ID 38© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configure a Cisco Router Configure Interfaces  Configure Router Interfaces • Enter the interface sub-configuration mode. • Add a description to the Interface (optional) • Configure an IPv4 or IPv6 address. • Activate the interface with a no shutdown command  Verify Interface Configuration • show ip route - Displays the contents of the IPv4 routing table stored in RAM. • show interfaces - Displays statistics for all interfaces on the device. • show ip interface - Displays the IPv4 statistics for all interfaces on a router.
  • 21. Presentation_ID 39© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configure a Cisco Router Configure the Default Gateway  Default Gateway for a Host  Default Gateway for a Switch • A default gateway is required for remote network communication. • If a switch is to be managed via its VTY lines, it needs a default gateway. • Use the ip default-gateway command to configure the default gateway for a switch.
  • 22. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 40 6.5 Chapter Summary
  • 23. Presentation_ID 41© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential  Explain how network layer protocols and services support communications across data networks.  Explain how routers enable end-to-end connectivity in a small to medium-sized business network.  Explain how devices route traffic in a small to medium-sized business network.  Configure a router with basic configurations. Chapter Summary Summary
  • 24. Presentation_ID 46© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
  • 25. Presentation_ID 47© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential