Lec5: Applying Dynamic Routing Protocols in CISCO Packet Tracer

Slides:



Advertisements
Similar presentations
RIP2 CCNA Exploration Semester 2 Chapter 7
Advertisements

Supervised by :Dr.ASHRAF MAZKOR Done by : Mayada Ahmed al-masre ROUTING PROTOCOL.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 RIPv2 Routing Protocols and Concepts – Chapter 7.
Routing Protocols and Concepts – Chapter 7 Sandra Coleman, CCNA, CCAI
Copyright 2002 Year 2 - Chapter 5/Cisco 3 - Module 5 Routing Protocols: IGRP By Carl Marandola.
IST 228\Ch5\IP Routing1. 2  Review of Chapter 4 Start the router simulator. You will see the prompt "Router>". This is the user mode prompt. Change the.
Static Routing Last Update Copyright Kenneth M. Chipps Ph.D.
OSPF in Multiple Area.
1 Routing Protocols and Configuration Instructor: Te-Lung Liu Program Associate Researcher NCHC, South Region Office.
Advantages of Dynamic Routing over Static Routing : Advertise only the directly connected networks. Updates the topology changes dynamically. Administrative.
Routing and Routing Protocols Routing Protocols Overview.
Sybex CCNA Chapter 6: IP Routing Instructor & Todd Lammle.
Introduction to Classless Routing
Open standard protocol Successor of RIP Classless routing protocol Uses Shortest Path First (SPF) Algorithm Updates are sent through Multicast IP address.
E /24 LAN /24LAN – / /8 S0 S /8 Head Office Branch Office E /16.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public ITE PC v4.0 Chapter 1 1 RIPv2 Routing Protocols and Concepts – Chapter 7.
© 2002, Cisco Systems, Inc. All rights reserved. 1 Determining IP Routes.
Open Shortest Path First OSPF (Part 2) George Macri 6 th CEENET Workshop, Budapest 2000.
Configuring a Router. Router user interface The Cisco IOS software uses a command-line interface (CLI) as the traditional console environment. This environment.
Chapter 6 IP Routing. Basic information When you configure interface of a node with IP and mask, the node will know the network corresponding to that.
Cisco proprietary protocol Classless routing protocol Metric (32 bit) : Composite Metric (BW + Delay) by default. Administrative distance is 90 Updates.
© 2003, Cisco Systems, Inc. All rights reserved..
Cisco Systems Networking Academy S2 C 12 Routing Protocols.
Routing Protocols and Concepts – Chapter 7
 RIP — A distance vector interior routing protocol  IGRP — The Cisco distance vector interior routing protocol (not used nowadays)  OSPF — A link-state.
University of the Western Cape Chapter 12: Routing Protocols Interior and Exterior Routing Protocols Aleksandar Radovanovic.
Year 2 - Chapter 5/Cisco 3 - Module 5 Routing Protocols: IGRP.
Using a Cisco Router as a DHCP Server
Optimizing Routing 1. Using Multiple Routing Protocols
Configuring RIP.
Single Area OSPF Link State Routing Single Area OSPF Concepts
Lec5: Applying Dynamic Routing Protocols in CISCO Packet Tracer
Configuring WAN –Frame Relay
Routing Loops.
Routing Protocols and Concepts
DYNAMIC ROUTING.
Instructor & Todd Lammle
© 2002, Cisco Systems, Inc. All rights reserved.
Dynamic Routing: Dynamic routing is where we use a routing protocol; routing protocols are cool because they take care of our work. Routing protocols will.
Routing Information Protocol
© 2002, Cisco Systems, Inc. All rights reserved.
Net 412 (Practical Part) LAB 3 - Telnet
Chapter 3: Dynamic Routing
Routing Protocols and Concepts – Chapter 9
Routing Protocols and Concepts – Chapter 5
Routing Protocols and Concepts
© 2002, Cisco Systems, Inc. All rights reserved.
2 - IP Routing.
Routing Protocols and Concepts – Chapter 2
Routing Protocols and Concepts – Chapter 5
Routing Protocols and Concepts – Chapter 9
After 3.2 Revised
Routing Information Protocol
Fundamentals of Computer Networks
CIT 384: Network Administration
Routing Protocols and Concepts – Chapter 5
Routing Protocols and Concepts – Chapter 7
Routing Protocols and Concepts – Chapter 11
Dynamic Routing: Dynamic routing is where we use a routing protocol; routing protocols are cool because they take care of our work. Routing protocols will.
Routing Protocols and Concepts – Chapter 5
Routing Protocols and Concepts – Chapter 7
Routing Protocols and Concepts – Chapter 9
© 2002, Cisco Systems, Inc. All rights reserved.
Distance Vector Routing Protocols
RIP1.ppt CCNA Exploration Semester 2 Chapter 5
CCE1030 Computer Networking
EIGRP.
CCE1030 Computer Networking
© 2002, Cisco Systems, Inc. All rights reserved.
Presentation transcript:

Lec5: Applying Dynamic Routing Protocols in CISCO Packet Tracer

Configuring Dynamic Routing Protocols RIP IGRP EIGRP OSPF IS-IS BGP

Configure the following network with different routing protocols 30.0.0.0 R2 R3 Configure the following network with different routing protocols 40.0.0.0 20.0.0.0 10.0.0.0 R1 R4 50.0.0.0

Router0 (R1) Router3 (R4) Router2 (R3) Router1 (R2)

Configuring R1 Interfaces Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R1 R1(config)#interface fastethernet 0/0 R1(config-if)#ip address 10.0.0.1 255.0.0.0 R1(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up R1(config-if)#exit R1(config)#interface serial 0/0/0 R1(config-if)#ip address 20.0.0.1 255.0.0.0 R1(config-if)#clock rate 64000 R1(config-if)#bandwidth 64 %LINK-5-CHANGED: Interface Serial0/0/0, changed state to down

Configuring R2 Interfaces Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R2 R2(config)#interface serial 0/0 R2(config-if)#ip address 20.0.0.2 255.0.0.0 R2(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up R2(config-if)#exit R2(config)#interface fastethernet 0/0 R2(config-if)#ip address 30.0.0.1 255.0.0.0 %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

Configuring R3 Interfaces Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R3 R3(config)#interface fastethernet 0/0 R3(config-if)#ip address 30.0.0.2 255.0.0.0 R3(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up R3(config-if)#interface serial 0/0 R3(config-if)#ip address 40.0.0.1 255.0.0.0 R3(config-if)#clock rate 64000 R3(config-if)#bandwidth 64 %LINK-5-CHANGED: Interface Serial0/0, changed state to down R3(config-if)#exit %LINK-5-CHANGED: Interface Serial0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up

Configuring R4 Interfaces Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R4 R3(config)#interface fastethernet 0/0 R3(config-if)#ip address 50.0.0.1 255.0.0.0 R3(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up R3(config-if)#interface serial 0/0 R3(config-if)#ip address 40.0.0.2 255.0.0.0 R3(config-if)#clock rate 64000 R3(config-if)#bandwidth 64 %LINK-5-CHANGED: Interface Serial0/0, changed state to down R3(config-if)#exit %LINK-5-CHANGED: Interface Serial0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up

Applying Dynamic Routing Protocols on R1,R2,R3,R4

RIP How to configure router R1 with RIP protocol? R1>enable 30.0.0.0 How to configure router R1 with RIP protocol? R2 R3 R1>enable R1#configure terminal R1(config)#router rip R1(config-router)#network 10.0.0.0 R1(config-router)#network 20.0.0.0 R1(config-router)#exit 20.0.0.0 40.0.0.0 10.0.0.0 50.0.0.0 R1 R4

IGRP How to configure router R2 with IGRP protocol? R2>enable 30.0.0.0 How to configure router R2 with IGRP protocol? R2 R2 R2>enable R2#configure terminal R2(config)#router rip R2(config)#router igrp 100 R2(config-router)#network 20.0.0.0 R2(config-router)#network 30.0.0.0 R2(config-router)#exit 100 is Autonoms System (AS) number 20.0.0.0 40.0.0.0 10.0.0.0 50.0.0.0 R1 R3

EIGRP How to configure router R3 with EIGRP protocol? R3>enable 30.0.0.0 How to configure router R3 with EIGRP protocol? R2 R3 20.0.0.0 40.0.0.0 R3>enable R3#configure terminal R3(config)#router eigrp 1 R3(config-router)#network 30.0.0.0 R3(config-router)#network 40.0.0.0 R3(config-router)#exit 10.0.0.0 50.0.0.0 R1 R4

OSPF Router(config)# router ospf process_ID Router(config-router)# network IP_address wildcard_mask area area_# The process_ID Used to differentiate between OSPF processes running on the same router. Your router might be a boundary router between two OSPF autonomous systems, and to differentiate them on your router, you will give them unique process IDs. Note that these numbers do not need to match between different routers so they have nothing to do with autonomous system numbers.

OSPF How to configure router R2 with OSPF protocol? R2>enable 30.0.0.0 R2 R3 How to configure router R2 with OSPF protocol? 20.0.0.0 40.0.0.0 R1 R4 R2>enable R2#configure terminal R2(config)#router ospf 2 R2(config-router)#network 20.0.0.0 0.255.255.255 area 0 R2(config-router)#network 30.0.0.0 0.255.255.255 area 0 R2(config-router)#exit

Different Routing Commands Descriptions Router(config)#router rip Enables RIP as a routing protocol Router(config-router)#network w.x.y.z w.x.y.z is the network number of the directly connected network you want to advertise. Router(config)#no router rip Turns off the RIP routing process Router(config-router)#no network w.x.y.z Removes network w.x.y.z from the RIP routing process. Router(config-router)#version 2 RIP will now send and receive RIPv2 packets globally. Router(config-router)#version 1 RIP will now send and receive RIPv1 packets only Router(config-router)#no auto-summary RIPv2 summarizes networks at the classful boundary. This command turns autosummarization off. Router(config-router)#passive-interface s0/0/0 RIP updates will not be sent out this interface. Router(config-router)#no ip split-horizon Turns off split horizon (on by default). Router(config-router)#ip split-horizon Re-enables split horizon Router(config-router)#timers basic 30 90 180 270 360 Changes timers in RIP: 30 = Update timer (in seconds) 90 = Invalid timer (in seconds) 180 = Hold-down timer (in seconds) 270 = Flush timer (in seconds) 360 = Sleep time (in milliseconds) Router#debug ip rip Displays all RIP activity in real time Router#show ip rip database Displays contents of the RIP database