Config Router

  • Google Sheets
  • CCNA Online training
    • CCNA
  • CISCO Lab Guides
    • CCNA Security Lab Manual With Solutions
    • CCNP Route Lab Manual with Solutions
    • CCNP Switch Lab Manual with Solutions
  • Juniper
  • Linux
  • DevOps Tutorials
  • Python Array
You are here: Home / Cisco / CCNP Route Lab 3-7, OSPF Case Study

CCNP Route Lab 3-7, OSPF Case Study

March 14, 2020 by Scott

CCNP Route Lab 3-7, OSPF Case Study

Topology

ccnp-route-lab-ospf-case-study

Objectives

  • Plan, design, and implement the International Travel Agency network shown in the diagram and described below.
  • Verify that all configurations are operational and functioning according to the guidelines.

Note: This lab uses Cisco 1841 routers with Cisco IOS Release 12.4(24)T1 and the Advanced IP Services image c1841 -advipservicesk9-mz.124-24.T1 .bin. You can use other routers (such as a 2801 or 2811) and Cisco IOS Software versions if they have comparable capabilities and features. Depending on the router model and Cisco IOS Software version, the commands available and output produced might vary from what is shown in this lab.

Required Resources

  • 4 routers (Cisco 1841 with Cisco IOS Release 12.4(24)T1 Advanced IP Service or comparable)
  • Serial and console cables

Requirements
The International Travel Agency needs its core network set up for OSPF with the specifications indicated in
the diagram and listed below. Design, configure, and test a network that meets all the following requirements:

  1. Use the addressing scheme shown in the diagram.
  2. Configure OSPF with the networks shown in the diagram.
  3. Configure the OSPF backbone area to be on Loopback0 on HQ.
  4. Configure the Frame Relay subnets as point-to-point subinterfaces, with the link between HQ and East in area 100, and the link between HQ and West in area 300.
  5. Configure area 300 as an NSSA.
  6. Configure the router East loopback interfaces to be in area 200. Summarize this area with the most efficient summary.
  7. Redistribute the loopback network on router West into OSPF.
  8. Create virtual links as necessary for full connectivity.
  9. Make sure that all loopback interfaces are advertised with the correct subnet mask.

Notes:
__________________________________________________________________________________
Router Interface Summary Table

Router Interface Summary
Router Model Ethernet Interface
#1
Ethernet Interface
#2
Serial Interface
#1
Serial Interface
#2
1700 Fast Ethernet 0
(Fa0)
Fast Ethernet 1
(Fa1)
Serial 0 (S0) Serial 0/0/1
(S0/0/1)
1800 Fast Ethernet 0/0
(Fa0/0)
Fast Ethernet 0/1
(Fa0/1)
Serial 0/0/0
(S0/0/0)
Serial 0/0/1
(S0/0/1)
2600 Fast Ethernet 0/0
(Fa0/0)
Fast Ethernet 0/1
(Fa0/1)
Serial 0/0 (S0/0) Serial 0/1 (S0/1)
2800 Fast Ethernet 0/0
(Fa0/0)
Fast Ethernet 0/1
(Fa0/1)
Serial 0/0/0
(S0/0/0)
Serial 0/0/1
(S0/0/1)
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many interfaces the router has. Rather than list all combinations of configurations for each router class, this table includes identifiers for the possible combinations of Ethernet and serial interfaces in the device. The table does not include any other type of interface, even though a specific router might contain one. For example, for an ISDN BRI interface, the string in parenthesis is the legal abbreviation that can be used in Cisco IOS commands to represent the interface.

OSPF Case Study Answer Key – Instructor Version

Tcl Script Verification

HQ# tclsh
foreach address {
10.1.1.9
10.1.1.13
10. 1.1.101
10.1.1.105
10.1.1.109
10.1.1.113
10.1.1.1
10.1.1.2
10.1.1.5
10.1.1.6
} {
ping $address }

Device Configurations – Instructor Version

Router R1 – Hostname HQ

hostname HQ
interface Loopback0
ip address 10.1.1.9 255.255.255.252
ip ospf network point-to-point
!
interface Serial0/0/1
encapsulation frame-relay ietf
no shutdown
!
interface Serial0/0/1.102 point-to-point
ip address 10.1.1.1 255.255.255.252
bandwidth 64
frame-relay interface-dlci 102
!
interface Serial0/0/1.103 point-to-point
ip address 10.1.1.5 255.255.255.252
bandwidth 64
frame-relay interface-dlci 103
!
router ospf 1
log-adjacency-changes
area 100 virtual-link 10.1.1.113
area 300 nssa
network 10.1.1.0 0.0.0.3 area 100
network 10.1.1.4 0.0.0.3 area 300
network 10.1.1.8 0.0.0.3 area 0
end

Router R2 – Hostname East

hostname East
!
interface Loopback101
ip address 10.1.1.101 255.255.255.252
ip ospf network point-to-point
!
interface Loopback105
ip address 10.1.1.105 255.255.255.252
ip ospf network point-to-point
!
interface Loopback109
ip address 10.1.1.109 255.255.255.252
ip ospf network point-to-point
!
interface Loopback113
ip address 10.1.1.113 255.255.255.252
ip ospf network point-to-point
!
interface Serial0/0/1
encapsulation frame-relay ietf
clock rate 64000
no shutdown
!
interface Serial0/0/1.201 point-to-point
ip address 10.1.1.2 255.255.255.252
bandwidth 64
frame-relay interface-dlci 201
!
router ospf 1
log-adjacency-changes
area 100 virtual-link 10.1.1.9
area 200 range 10.1.1.96 255. 255.255.224
network 10.1.1.0 0.0.0.3 area 100
network 10.1.1.100 0.0.0.3 area 200
network 10.1.1.104 0.0.0.3 area 200
network 10.1.1.108 0.0.0.3 area 200
network 10.1.1.112 0.0.0.3 area 200
end

Router R4 – Hostname West

hostname West
!
interface Loopback0
ip address 10.1.1.13 255.255.255.252
!
interface Serial0/0/0
encapsulation frame-relay ietf
no shutdown
!
interface Serial0/0/0.301 point-to-point
ip address 10.1.1.6 255.255.255.252
bandwidth 64
frame-relay interface-dlci 301
!
router ospf 1
log-adjacency-changes
area 300 nssa
redistribute connected subnets
network 10.1.1.4 0.0.0.3 area 300
end

Router R3 – Hostname FRS

hostname FRS
!
frame-relay switching
!
interface Serial0/0/0
encapsulation frame-relay ietf
clock rate 64000
bandwidth 64
frame-relay intf-type dce
frame-relay route 102 interface Serial0/0/1 201
frame-relay route 103 interface Serial0/1/0 301
no shutdown
!
interface Serial0/0/1
encapsulation frame-relay ietf
clockrate 64000
bandwidth 64
frame-relay intf-type dce
frame-relay route 201 interface Serial0/0/0 102
no shutdown
!
interface Serial0/1/0
encapsulation frame-relay ietf
bandwidth 64
frame-relay intf-type dte
frame-relay route 301 interface Serial0/0/0 103
no shutdown
end
 

More Resources

  • CCNP Route Lab Manual with Solutions
  • CCNP Route FAQ
  • CCNP Switch Lab Manual with Solutions
  • CCNP Switch FAQ
  • CCNP Security VPN FAQ
  • CCNP Secure IPS FAQ
  • CCNA Exam Answers Cisco Learning Network
  • CCNA Frequently Asked Questions
  • CCNA Exam Questions with Explanation

Related

Filed Under: Cisco Tagged With: CCNP Route, Lab 3-7 OSPF Case Study

Recent Posts

  • How do I give user access to Jenkins?
  • What is docker volume command?
  • What is the date format in Unix?
  • What is the difference between ARG and ENV Docker?
  • What is rsync command Linux?
  • How to Add Music to Snapchat 2021 Android? | How to Search, Add, Share Songs on Snapchat Story?
  • How to Enable Snapchat Notifications for Android & iPhone? | Steps to Turn on Snapchat Bitmoji Notification
  • Easy Methods to Fix Snapchat Camera Not Working Black Screen Issue | Reasons & Troubleshooting Tips to Solve Snapchat Camera Problems
  • Detailed Procedure for How to Update Snapchat on iOS 14 for Free
  • What is Snapchat Spotlight Feature? How to Make a Spotlight on Snapchat?
  • Snapchat Hack Tutorial 2021: Can I hack a Snapchat Account without them knowing?

Copyright © 2025 · News Pro Theme on Genesis Framework · WordPress · Log in