Packet Tracer Labs Pdf

Packet Tracer Labs Pdf Average ratng: 6,6/10 2427 reviews

OSPF Configuration In Packet Tracer:

Packet Tracer Lab Download & Videos If you're interested in preconfigured packet tracer labs to help your training environment, here are labs containing CCNA 640-802 training modules, ipv4 sub netting, ipv4 sub interfaces, dynamic routing, ipv6 RIPng & OSPF, VPN, DHCP config, and VoIP. Practice complete Cisco Packet Tracer labs from the Networking Academy in their skills and career-building program for learning (CCENT, CCN, CCNP Security and CCNP Switch exams, in fact, any Cisco certification).

This Article is about the “OSPF Configuration In Packet Tracer”. I will Give you some basic overview about OSPF and then will provide the details of these configuration by practically configuring a lab. With the Basic overview of OSPF configuration you can learn, how to configuration OSPF on any cisco device this will provide you the basic steps for understanding OSPF configurations.

Related: Complete Cisco Router Configuration for beginners

OSPF Configurations Steps:

Configuration of OSPF is super Easy and very simple. As compare to any other routing protocols like RIP, EIGRP you are required the following basic steps to enable OSPF on a router.

  1. Enable OSPF on Router by using command ospf PROCESS-ID
  2. Define the interfaces on which you want to advertise in OSPF, you can done this with network IP_ADDRESS WILDCARD_MASK AREA_ID or IP ospf command at interface level.
  3. Define Router ID (Advance concept not related to this article)

For easy understanding of OSPF Configurations we have divided this article into two parts:

    • Single Area OSPF Configuration

OSPF Single Area configuration In Packet Tracer:

This OSPF lab is created in packet tracer and you will learn the OSPF single area configuration from this lab. OSPF is an open standard protocol, you learn more why we use OSPFandOSPF Quizfrom here. This is a basic labs regarding OSPF single area configure related to CCNA or ICND1/2 exam. In following figure there are the three routers with the following specification or required configurations:

Device NameProtocol configurationIP Scheme / Interface configurations
PC0F0 = 192.168.44.224
PC1F0 = 10.10.22.224
Router0OSPF 1G0/0 = 192.168.44.124, G0/1 = 192.168.55.124
Router1OSPF 1G0/0 = 192.168.55.224, G0/1 = 172.16.10.124
Router2OSPF 1G0/0 = 172.16.10.224, G0/1 = 10.10.22.124

Lab Objective

• Setup an IP addressing scheme on all the devices according to above table.

• Configure and verify Open Shortest Path First (OSPF) routing.

Solution:

Configure and create the above lab in packet tracer and complete the IP configuration with following configurations:

Router0 IP and interface Configuration:

On the router, enter the global configuration mode and configure the hostname as shown in the chart. Then configure the console, virtual terminal and enable passwords. Next configure the interfaces according to the chart.

Router>enable

Router#conf t
Router(config)#hostname Router0
Router0(config)#interface gigabitEthernet 0/0
Router0(config-if)#ip address 192.168.44.1 255.255.255.0
Router0(config-if)#no shut
Router0(config-if)#exit
Router0(config)#interface gigabitEthernet 0/1
Router0(config-if)#ip address 192.168.55.1 255.255.255.0
Router0(config-if)#no shutdown

Router1 IP Configuration:

Perform the same configuration as on above router with their IP scheme.

Router>enable

Pdf

/ford-escort-mk1-workshop-manual-free-download.html. Router#conf t
Router(config)#hostname Router1
Router1(config)#interface gigabitEthernet 0/0
Router1(config-if)#ip address 192.168.55.2 255.255.255.0
Router1(config-if)#no shut
Router1(config-if)#exi
Router1(config)#interface gigabitEthernet 0/1
Router1(config-if)#ip address 172.16.10.1 255.255.255.0
Router1(config-if)#no shutdown

Router2 IP and interface Configuration:

Router>enable

Router#conf t
Router(config)#hostname Router2
Router2(config)#int gigabitEthernet 0/0
Router2(config-if)#ip address 172.16.10.2 255.255.255.0
Router2(config-if)#no shut
Router2(config-if)#exit
Router2(config)#interface gigabitEthernet 0/1
Router2(config-if)#ip address 10.10.22.1 255.255.255.0
Router2(config-if)#no shutdown

PC0 Configuration:

Assign the IP address, subnet mask and gateway. 255.255.255.0 is the Subnet mask and gateway will be the next hope address of router or the IP of router-interface attached with PC, and in this case it is 192.168.44.1. Each workstation should be able to ping the attached router. For more details you can watch this video:
El capitan cursor for windows.

PC1 Configuration:

Configure this workstation with following IPs:

IP address: 10.10.22.2
Subnet Mask: 255.255.255.0
Gateway: 10.10.22.1

Task2 Configure and verify Open Shortest Path First (OSPF) routing:

Configure an OSPF routing process on all routers. Use OSPF process number 1 and ensure all networks are in area 0. For configuring any router with OSPF you need to advertise all the directly connected network in OSPF process. For example on router0 you have the networks 192.168.44.0/24 and 192.168.55.0/24 so you can see that I have advertise these network in area 0 for OSPF configurations.

Router0 OSPF Configuration:

Packet Tracer Labs Pdf

Router0#conf t
Router0(config)#router ospf 1
Router0(config-router)#network 192.168.44.0 0.0.0.255 area 0
Router0(config-router)#network 192.168.55.0 0.0.0.255 area 0
Router0(config-router)#exit

Router1 OSPF Configuration:

Packet Tracer Lab Manual Pdf

Router1#conf t
Router1(config)#router ospf 1
Router1(config-router)#network 192.168.55.2 0.0.0.255 area 0
Router1(config-router)#network 172.16.10.0 0.0.0.255 area 0
Router1(config-router)#exit

Ccna Packet Tracer Labs Pdf

Router2 OSPF Configuration:

Router2#conf t
Router2(config)#router ospf 1
Router2(config-router)#network 172.16.10.0 0.0.0.255 area 0
Router2(config-router)#network 10.10.22.0 0.0.0.255 area 0
Router2(config-router)#exit

Note:You can use the “ip OSPF area 0” command for configuring OSPF. For this you have enter the interface mode and then run the commands in following way. for router2 you can use these commands:

Router2>en
Router2#conf t
Router2(config)#inter gigabitEthernet 0/0
Router2(config-if)#ip ospf area 0
Router2(config)#inter gigabitEthernet 0/1
Router2(config-if)#ip ospf area 0
But you are required the newer version of IOS for configuring these commands.

Testing for correct configuration:

You can ensure the correct configuration by following two ways:

1. end to end ping should be successful, this mean ping from PC0 to PC1 and vice versa should be successful. you can see the following image, we will have the same results in case of correct configurations.

2. Show ip route command will display all the OSPF routes (including the networks which are not connected to router). Screenshot of “Show ip route” on Router0 will have the following output in case of correct configurations.


OSPF Mutli-Area Configuration

Like basic OSPF single area configuration, multi-area OSPF configuration is also simple. See the following multi-area OSPF topology:

In this example we have two OSPF areas that is area 0 and area 2. According to network diagram, routers R3 is in the area 0. Router4 connects to both areas that is area 0 and area 2, which makes him an Area Border Router, while router5 is in area 2. Router R3 and R5 configuration are same as we learn in above single area configuration lab. But configurations of router R4 is as following:

R4#conf t
R4(config)#router ospf 1
R4(config-router)#network 30.1.1.0 0.0.0.255 area 0
R4(config-router)#network 40.1.1.0 0.0.0.255 area 2
R4(config-router)#router-id 4.4.4.4

You can also download the packet tracer file and PDF files which contain the complete configuration for this lab:

Ccnp Packet Tracer Labs Pdf

PDF: OSPF Configuration lab in Packet tracer

Packet Tracer Labs Pdf

Packet tracer labs download pdf

All Packet Tracer Labs Pdf

Packet Teacer configuration File:OSPF Configuration file Packet tracer