IP Routing Lab Assignment Configuring Basic Aspects of IP IGP Routing Protocols

Size: px
Start display at page:

Download "IP Routing Lab Assignment Configuring Basic Aspects of IP IGP Routing Protocols"

Transcription

1 IP Routing Lab Assignment Configuring Basic Aspects of IP IGP Routing Protocols 1 PURPOSE AND GOALS This lab assignment will give you a hands-on experience in configuring and managing routers and particularly in setting up IP routing protocols. You will prepare the lab session, perform the practical exercises, and write a lab report, which describes the whole lab, including planning, preparations, and results. You will work and hand in the report in groups of two students. The lab report will be assessed; grading will be added to the total course score - check the course home page for details. 2 OVERVIEW The Assignment is divided into preparation, practical part, and documentation. 2.1 PREPARATIONS The preparations are crucial to the successful execution of the main exercise. Without proper study there is no possibility to fulfill the requirements within the specified time; trial-and-error will not work! During this phase you should read and understand the Router Lab Guide accessible on the course page. You should also study the Cisco routers documentation accessible in the Internet if any additional explanations to relevant IOS commands are required. Finally, you should refresh and expand your knowledge on the topic of the lab exercise. It is advised to take notes related to the course of the exercise (such as the steps needed to fulfill the specified tasks), relevant router configurations and control commands. 2.2 EXERCISE The main exercise is executed using the department s router lab. The lab is accessible remotely from a computer of your choice via the Internet you don t need to be present in the Lab room during the exercise. To access the lab you only need a PC with Internet access and an ssh protocol client (such as PuTTY). The routers are Cisco devices and so the router operation system is IOS. The lab configuration is fixed on physical level. The topology changes can be only introduced by opening and closing individual router interfaces. Before starting the main lab exercise it is required to reserve the lab resources beforehand using the Resource Reservation system (please refer to the Resource Reservation User Guide accessible at the relevant course home page). The lab can be booked for maximum of 4 hours (this is a total time assigned for completing the lab exercise). Provided that you are well-prepared, this should be enough to execute the main exercise and gather information required to prepare the lab report. The tasks required to pass the exercise are described in detail in Section 3. Institute of Telecommunications, Warsaw University of Technology

2 In case of any technical problems during the exercise (problems with remote access, access to router consoles, instability etc.) please contact the lab supervisor by , provided on the course home page. The exercise can be repeated in cases justified by the observed technical problems. 2.3 FINAL REPORT The last phase consists of lab report preparation. You should plan the outline of the report in advance, during the preparation phase to be sure what input is necessary before attempting the main part of the exercise. The report should contain 3-4 pages of your own text; any printouts from commands etc. are not included in this number. All phases of the exercise and your findings collected during the main practical part should be described in the report. This instruction may also contain questions and remarks (usually marked with different colour) that shall be answered or taken into account in the report. Finally, the report should include the configuration files (running configs) from all routers presenting the configurations you have prepared during the exercise. Please deliver the final report no later than one week after the end of the period assigned to execute this lab assignment. The report can be uploaded via the reservation system or alternatively you may send the report to the lab exercise supervisor (but only in case of technical problems with the online upload). Note: If you find any errors or inconsistencies in this document and referenced manuals, please report them to the lab exercise supervisor(s). It will help to improve the lab exercise in the future. 3 LAB EXERCISE The main part of the lab exercise is divided into three main sections: Hands on IOS CLI Configuring RIP protocol Configuring OSPF protocol Each subtask is evaluated separately contributing equally to the final grade. The remainder of this section covers all practical tasks that constitute the scope of this exercise. 3.1 HANDS ON IOS CLI Logging to the lab Accessing the router consoles requires logging to the faculty network first. This is accomplished by opening the ssh terminal session from your local PC to the gateway server with IP address of accessible form the public Internet. Login credentials are delivered at the beginning of your reserved time slot to the address registered in the system. Usually this is your student account (verify address with the exercise supervisor if needed). From the gateway server it is possible to access router consoles using telnet sessions to the IP address of the terminal server and specific port numbers. The IP address of the terminal server should be provided by the exercise supervisor on the course home page. Institute of Telecommunications, Warsaw University of Technology

3 The routers are accessible via terminal server such that each router s console is mapped to the unique port: R1 = port 2101 R2 = port 2102 R3 = port 2103 R4 = port 2104 R5 = port 2105 For example to access router R1 you use the following command from the gateway server: >> telnet e# <IP address of the terminal server> 2101 After you see the terminal window press ENTER. When prompted with the following questions: Would you like to terminate autoinstall? [yes]: press ENTER, Would you like to enter the initial configuration dialog? [yes/no]: answer no and press ENTER. You can open multiple ssh sessions (e.g. one per router) with the gateway server to ease your work. The details of remote access procedures are provided in the Router Lab Guide that you should study during the lab preparation phase Basic configuration You do not need to reload initial routers configurations as all routers are restarted between user sessions. You should start with empty router configuration (no routing protocol enabled, no IP addresses assigned to interfaces etc.). If it is not the case please inform the lab supervisor. You start with configuring the lab according to Figure 1 (note that the physical setup is fixed and you cannot change it). Note: this exercise is done solely on routers serial interfaces please be sure that all Ethernet interfaces are in shutdown state before starting the exercise. Allocate appropriate network and host IP addresses to the routers. Remember that each router interface must have a unique IP address on the subnet that it belongs to. What addressing scheme will you use? Indicate your addressing scheme in the report. Use the following command to configure the IP address of an interface: ip address <ip address> <mask> Hint: You should plan your network addressing scheme during preparation phase. The addressing rules must adhere to the IP standards. You should end this step with IP addresses configured on your routers interfaces. 3.2 CDP Next use CDP and check your configuration. What information do you get with show cdp neighbors? Try this command on each router in the network. What information do you get with show cdp neighbors <interface> detail? Try this command on one of the routers R1 or R2. Cut-and-paste examples of output of these commands into your report. Institute of Telecommunications, Warsaw University of Technology

4 Internet gateway server Ethernet switch S1 terminal server R1 port 2101 R2 port 2102 R3 port 2103 R4 port 2104 R5 port 2105 Figure 1. Router Lab configuration Ping and traceroute Make yourself familiar with IOS ping and traceroute commands. Both commands come in two versions, normal and extended. We are only examining the normal version Ping a neighbour using the command ping <host>. How many packets are sent? Explain the interpretation of the information you get from the output of this command? How long is the router waiting until a ping is declared lost? Which routers can you reach from which routers? Why is it so? Institute of Telecommunications, Warsaw University of Technology

5 Try also the traceroute command. Add output of both ping and traceroute commands to your report. explain the trace route mechanism Note! Serial interfaces on the routers in the lab do not answer to ping if both interfaces on the serial link are not configured correctly. This is especially true for the IP addresses; both interfaces on the serial link must have IP addresses in the same subnet before any of them answers to ping requests Check routing table Check the routing table of one of the routers. What command should you use? Interpret the output. Copy the output from the command to the report, and give a brief explanation of the results Debug Check the debug command. Make sure that the output from the debug process is written to your terminal by issuing command terminal monitor. Setup debug of all IP packets. What command should you use? Hint: first word in command string is debug. From one router ping one of its neighbours. Copy the output to your report, and give a brief explanation of the results. Before you end this sub-section turn of debugging. Use the command no debug all to turn off all debugging. 3.3 CONFIGURING RIP As you have found in the previous section, you cannot send IP packets via the network, for example from R1 to R3. To do this, a routing protocol has to be added to the network. In this section you will add RIP, a Distance Vector protocol, as a routing protocol in your network. We are going to investigate RIP version 1. First discuss static routing versus using a routing protocol. Add the discussion to your report Start RIP The first task is to start the RIP routing process on the routers using router rip command. Note that by issuing this command you re entering the router s RIP configuration sub-mode. Configure version Add interfaces to RIP Now you have to assign interfaces to the RIP process. For this you use the router RIP sub-mode command network <network id>. The network command takes an argument, the network id of the interface(s) that shall be assigned to the RIP process. The network id is classful, so you must make sure that you enter a network command for all interfaces. Using show ip protocol you can obtain information about parameters and current state of routing processes running on the router. Institute of Telecommunications, Warsaw University of Technology

6 When you have configured all five routers, check the routing information on router R1. What command should you use? Hint: It is not show ip protocol but it starts with show ip. Copy the output of this command into the report and give a brief explanation of the output. Hint: The path cost is the number following the slash inside the squared brackets. [120/3] means the cost is 3. There are two paths to network between R3 and R4. Explain why? Study RIP updates Turn on debugging of RIP. What command should you use? How often does this router receive updates from its neighbours? What information is sent to this router? How often does this router send updates to its neighbours? What information does this router send to its neighbours? Note that the information is not the same to all neighbours? Which information is suppressed? What is the name of this suppression technique? Copy an example of a sent update into your report and explain the findings? Turn off debugging again Check path Now that you have full routing running in your network you can check if packets are forwarded via the expected paths. You shall compare the routing table of R1 and the result of a traceroute. From the routing table in router R1 find the path to interface serial 0/0 of router R4. What path will packets take? Do a traceroute to this interface. Add the output from this command to the report. Did the packets take the expected path? Study convergence in failure situation During the last part of the RIP exercise you will study routing convergence on failure. For this you need two active terminal sessions, one to router R1 and one to router R5. First on router R1 traceroute interface serial 0/1 on router R5 and make sure that the connection is ok and goes over shortest path. Make a note of the target s network prefix, that is the link between R1 and R5. Check the routing table, especially for the target network prefix. On router R1 turn on debugging of RIP. Make sure the output is displayed on your terminal. Introduce failure by shutting down interface serial 0/1 on R5. Note the time! Ping the target host. What was the result? Compare with the routing table and explain! Institute of Telecommunications, Warsaw University of Technology

7 Observe the changes in the routing table of router R1 periodically (the changes concerning the target network) at the same time as you observe the debugging output. Look for information concerning the target network! Hint: It is possible to perform normal commands while you have debugging active. The displayed output on the terminal might be somewhat crumbled in cases, but just re-issue the last command. Which routers announce the target network? Which path does the routing table indicate? What changes in debug output and routing table information do you observe, and at what time from when you introduced the failure? How long did it take before an alternative path is used? Which path is now taken? Finally, restore the network by opening interface serial 0/1 on R5. Observe routing table and debug output. How long was the convergence time in this case? Explain your findings in the report! Turn off debugging. 3.4 OSPF In this section you shall compare a distance vector based routing protocol with a link state based routing protocol, OSPF. You will use the same network layout as in the RIP exercises, so you do not have to reconfigure the links Remove RIP First you have to remove all configurations concerning RIP. Use the configuration command no router rip Start OSPF In OSPF each router has a unique identity. Cisco routers use the largest IP address assigned to any interface on the router as the router id. This method works well until that interface goes down in which case the router id has to change and the OSPF process has to recalculate and resend the relevant information to its neighbors. It is an advantage if the router id could be fixed, and independent of interface status. Therefore Cisco IOS has given precedence to loopback interfaces in the selection of router id. If there is a loopback interface configured on the router, and the loopback interface has been assigned an IP address, this IP address will be used as the router id. An advantage of a loopback interface is its persistence: it never goes down unless the whole router is down. The conclusion is that it is good practice to always configure a loopback interface on every Cisco router that runs OSPF. Start with configuring loopback interface 0 on all routers. Give each loopback interface a unique IP host address. What commands should you use? Hint: A host address is assigned if you combine the IP address with a subnet mask with all ones, i.e Now you can initiate OSPF on the routers. What command should you use? Hint: The command is very similar to that you used when you started rip. There is one difference: OSPF needs a process ID. Pick a number from 1 to of your choice. Institute of Telecommunications, Warsaw University of Technology

8 3.4.3 Add interfaces to OSPF Adding interfaces to the OSPF routing process is similar to that of RIP in that you use a network sub-mode command. But in the case of OSPF you have to state the network address space with a combination of a network id and a so-called wildcard mask. The wildcard mask is the one s complement to that of a subnet mask. Any bit set in the wildcard mask indicates a position in the network id that has no significance. You also use the network command to assign in which area an interface shall reside. In our case we will only use one area, the backbone area, for all networks. We therefore can use the same network command in all routers. The general form of the network command is: network address wildcard-mask area area-id What command will you use to assign all interfaces in one router to OSPF backbone area? When you have configured all five routers, check the routing information in router R1. What command should you use? Copy the output of this command into the report and give a brief explanation of the output. Compare this output with the findings of analogous RIP-related exercise (3.3.2). In what way the cost differs? Hint: The path cost is the number following the slash inside the squared brackets. [110/3] means the cost is 3. Also use command show ip ospf interface to find more information about cost Check path Repeat the exercise 3.3.4, but this time using OSPF. You shall compare the routing table of R1 and the result of a traceroute. From the routing table in router R1 find the path to interface serial 0/0 of router R5. What path will packets take? Do a traceroute to this interface. Add the output from this command to the report. Did the packets take the expected path? Study OSPF updates and convergence on failure Go to router R1 and turn on OSPF debugging. In this case you shall study OSPF events. What command do you use? What events occur? How often? What is the purpose of the information sent and received? Turn debugging of OSPF events of, and instead turn on debugging of OSPF flooding. Also check the routing table of router R1, especially concerning the target network. This is the same as in exercise i.e. the link between routers R1 and R5. What kind of messages are flooded by OSPF? When, or how often, are these messages sent? Which is the best path to the target host, the interface 0/0 of router R5? Shut down interface serial 0/1 on router R5, and observe the output of the debugging on router R1? What is now the best path to our target network? Check with traceroute that this path is used. Open the interface again, and observe. Institute of Telecommunications, Warsaw University of Technology

9 Finally Estimate the time from the interface status change to arrival of first message and update of the routing table. Compare it to your findings concerning RIP in exercise compare the convergence time of OSPF and RIP protocols Now you can turn off debugging on router R Clean Up There is no need to restore the router initial configuration after the exercise. The basic configs are loaded automatically at the beginning of each reserved timeslot. Remark: do not use the reload command if you want to restore the initial state of the router during the exercise! Use the procedure described in the Router Lab Guide instead. 4 DOCUMENTATION At the course page you should have access to the following two complementary documents: Resource Reservation User Guide Router Lab Guide Institute of Telecommunications, Warsaw University of Technology

The Assignment is divided into preparation, practical part, and documentation.

The Assignment is divided into preparation, practical part, and documentation. EINTE LAB EXERCISES LAB EXERCISE #4 IGP ROUTING PURPOSE AND GOALS This lab assignment will give you a hands-on experience in configuring and managing routers and particularly in setting up IP routing protocols.

More information

ETS110: Internet Protocol Routing Lab Assignment

ETS110: Internet Protocol Routing Lab Assignment Dept of Electrical and Information Technology 2010-10-13 Jens A Andersson vers 3.1 ETS110: Internet Protocol Routing Lab Assignment 1 Purpose and Goals This lab assignment will give a hands-on experience

More information

ETS110: Internet Protocol Routing Lab Assignment

ETS110: Internet Protocol Routing Lab Assignment Dept of Electrical and Information Technology 2009-04-28 Jens A Andersson vers 2.0.5 ETS110: Internet Protocol Routing Lab Assignment 1 Purpose and Goals This lab assignment will give a hands-on experience

More information

ETSF05: Internet Protocol Routing Project Assignment

ETSF05: Internet Protocol Routing Project Assignment Dept of Electrical and Information Technology 2014-11-10 Jens A Andersson vers 7.0.5 ETSF05: Internet Protocol Routing Project Assignment 1 Introduction The goal of this project is to study two different

More information

Lab : Challenge OSPF Configuration Lab. Topology Diagram. Addressing Table. Default Gateway. Device Interface IP Address Subnet Mask

Lab : Challenge OSPF Configuration Lab. Topology Diagram. Addressing Table. Default Gateway. Device Interface IP Address Subnet Mask Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway Fa0/0 HQ S0/0/0 S0/0/1 Lo1 10.10.10.1 255.255.255.252 Fa0/0 Branch1 S0/0/0 S0/0/1 Fa0/0 Branch2 S0/0/0 S0/0/1 PC1

More information

INTERNET TEACHING LAB: Interior Gateway Protocol (IGP) LAB

INTERNET TEACHING LAB: Interior Gateway Protocol (IGP) LAB INTERNET TEACHING LAB: Interior Gateway Protocol (IGP) LAB Overview In this lab, we will explore some common interior gateway protocols - RIP version 1 (Routing Information Protocol) - OSPF (Open Shortest

More information

Introduction to Networks: Case Study, Option 2

Introduction to Networks: Case Study, Option 2 Introduction to Networks: Case Study, Option 2 Name: Name: Name: Academy username: Academy username: Academy username: Topology Diagram Assessment Objectives For an acceptable Case Study, the student must

More information

ETSF Routing Project WILLIAM TÄRNEBERG

ETSF Routing Project WILLIAM TÄRNEBERG ETSF10 2015 Routing Project WILLIAM TÄRNEBERG The project 19 tasks Explore two different routing protocols and observe how they deal with failures and changes in the network. First phase Getting familiar

More information

Laboration 1 Examine the Topology and Basic Troubleshooting Commands

Laboration 1 Examine the Topology and Basic Troubleshooting Commands Laboration 1 Examine the Topology and Basic Troubleshooting Commands Topology All contents are Copyright 1992 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page

More information

Smart Serial. Show interfaces. Shut down. logging synchronous

Smart Serial. Show interfaces. Shut down. logging synchronous SEMESTER 2 Chapter 2 Static Networking V 4.0 2.1.1 What are the primary responsibilities of the router? 2.1.3 What is the first serial connector described called at the router end? What is the first serial

More information

CS 386M Lab 1 Router Configuration and Routing

CS 386M Lab 1 Router Configuration and Routing CS 386M Lab 1 Router Configuration and Routing In this lab you will learn: PartA Cisco 2600 Router Configuration Static Routing PartB 30 min Dynamic Routing PartC 40 min Explore! Components used in this

More information

Lab : OSPF Troubleshooting Lab

Lab : OSPF Troubleshooting Lab Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway Fa0/0 10.10.0.1 255.255.252.0 N/A HQ S0/0/0 172.16.7.1 255.255.255.252 N/A S0/0/1 172.16.7.5 255.255.255.252 N/A

More information

Lab 7 Configuring Basic Router Settings with IOS CLI

Lab 7 Configuring Basic Router Settings with IOS CLI Lab 7 Configuring Basic Router Settings with IOS CLI Objectives Part 1: Set Up the Topology and Initialize Devices Cable equipment to match the network topology. Initialize and restart the router and switch.

More information

Lab 9.6.2: Challenge EIGRP Configuration Lab

Lab 9.6.2: Challenge EIGRP Configuration Lab Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway HQ BRANCH1 BRANCH2 PC1 PC2 PC3 Fa0/0 S0/0/0 S0/0/1 Lo1 Fa0/0 S0/0/0 S0/0/1 Fa0/0 S0/0/0 S0/0/1 NIC NIC NIC All

More information

Claim desired outcome

Claim desired outcome Assessment Authoring - Table of Specification (TOS) The Table of Specification (TOS) is a high-level design template for a given assessment. It identifies the claims, components skills, targeted number

More information

Lab Router Configuration Using Setup Instructor Version 2500

Lab Router Configuration Using Setup Instructor Version 2500 Lab 2.2.1 Router Configuration Using Setup Instructor Version 2500 Objective Use the System Configuration dialog (setup). Establish some basic router configurations. Background/Preparation A new router

More information

Lab 5.6.2: Challenge RIP Configuration

Lab 5.6.2: Challenge RIP Configuration Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway BRANCH HQ ISP PC1 PC2 PC3 Fa0/0 S0/0/0 Fa0/0 S0/0/0 S0/0/1 Fa0/0 S0/0/1 NIC NIC NIC Learning Objectives Upon completion

More information

Lab 1.3.2: Review of Concepts from Exploration 1 - Challenge

Lab 1.3.2: Review of Concepts from Exploration 1 - Challenge Lab 1.3.2: Review of Concepts from Exploration 1 - Challenge Topology Diagram Learning Objectives Upon completion of this lab, you will be able to: Create a logical topology given network requirements

More information

Retake - Skills Assessment Student Training (Answer Key)

Retake - Skills Assessment Student Training (Answer Key) Retake - Skills Assessment Student Training (Answer Key) Name:. Topology Assessment Objectives Part 1: Develop the IPv4 Address Scheme (15 points, 0 minutes) Part 2: Configure Device IPv4 and Security

More information

OSPF DR and BDR Elections

OSPF DR and BDR Elections OSPF DR and BDR Elections In Chapter 6, Enhanced IGRP (EIGRP) and Open Shortest Path First (OSPF), of the Sybex CCNA Study Guide Standard and CCNA Study Guide Deluxe Editions, I discussed EIGRP and OSPF

More information

Laboration 2 Troubleshooting Switching and First-Hop Redundancy

Laboration 2 Troubleshooting Switching and First-Hop Redundancy Laboration 2 Troubleshooting Switching and First-Hop Redundancy Topology All contents are Copyright 1992 2011 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1

More information

LAB THREE STATIC ROUTING

LAB THREE STATIC ROUTING LAB THREE STATIC ROUTING In this lab you will work with four different network topologies. The topology for Parts 1-4 is shown in Figure 3.1. These parts address router configuration on Linux PCs and a

More information

CCRI Networking Technology I CSCO-1850 Spring 2014

CCRI Networking Technology I CSCO-1850 Spring 2014 CCRI Networking Technology I CSCO-1850 Spring 2014 Instructor John Mowry Telephone 401-825-2138 E-mail jmowry@ccri.edu Office Hours Room 2126 Class Sections 102 Monday & Wednesday 6:00PM-9:50PM, starts

More information

PreLab for CS356 Lab NIL (Lam) (To be submitted when you come for the lab)

PreLab for CS356 Lab NIL (Lam) (To be submitted when you come for the lab) PreLab for CS356 Lab NIL (Lam) (To be submitted when you come for the lab) Name: UT EID: 1. Differentiate between Routers, Switches, and Hubs. 2. Explain subnet masks. 3. For this lab, where is subnet

More information

Lab Network Baseline Discovery

Lab Network Baseline Discovery Lab 1.2.6 Network Baseline Discovery Objective In this lab, the student will establish the baseline for the configuration and operation of the network. The student will complete the following tasks: Job

More information

Lab Configuring OSPF Timers

Lab Configuring OSPF Timers Lab 2.3.5 Configuring OSPF Timers Objective Setup an IP addressing scheme for OSPF area. Configure and verify OSPF routing. Modify OSPF interface timers to adjust efficiency of network. Background/Preparation

More information

Hochschule Bremen Networking Lab

Hochschule Bremen Networking Lab Hochschule Bremen Networking Lab User Manual Welcome to the Hochschule Bremen networking lab. This manual will give you a brief introduction on how to use the PCs and networking hardware in the lab. The

More information

Lab 4: Routing using OSPF

Lab 4: Routing using OSPF Network Topology:- Lab 4: Routing using OSPF Device Interface IP Address Subnet Mask Gateway/Clock Description Rate Fa 0/0 172.16.1.17 255.255.255.240 ----- R1 LAN R1 Se 0/0/0 192.168.10.1 255.255.255.252

More information

MPLS/RSVP/BGP lab KTH CSC. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Name5. Grade. Instructor s Signature

MPLS/RSVP/BGP lab KTH CSC. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Name5. Grade. Instructor s Signature KTH CSC MPLS/RSVP/BGP lab Juniper version Group Nr Name1 Name2 Name3 Name4 Name5 Grade Instructor s Signature Table of Contents 1Goals...3 2 Preparations...3 3 Initial configuration...5 4 RSVP-signalled

More information

Module 2 OSPF Configuration for Training Lab Network

Module 2 OSPF Configuration for Training Lab Network APNIC IPv6/Routing Workshop Lab Module 2 OSPF Configuration for Training Lab Network Objective: All the workshop lab routers are configured with required basic & interface configuration according to the

More information

Before you start the lab exercises see the lab administrator or EEE3080F tutor to get assigned to your routers.

Before you start the lab exercises see the lab administrator or EEE3080F tutor to get assigned to your routers. EEE00F Lab Basics of the Network Lab Student Lab Manual Before you start the lab exercises see the lab administrator or EEE00F tutor to get assigned to your routers. Contents. Resources used in the labs...

More information

Module 11 Advanced Router Configuration

Module 11 Advanced Router Configuration Module 11 Advanced Router Configuration ISP/IXP Networking Workshop Lab Objective: Create a basic physical lab interconnection with two autonomous systems. Each AS should use OSPF, ibgp and ebgp appropriately

More information

The Project Study two different routing protocols for intra domain Internet routing Hands-on experience

The Project Study two different routing protocols for intra domain Internet routing Hands-on experience ETSF05 2013 The routing lab Jens A Andersson The Project Study two different routing protocols for intra domain Internet routing Hands-on experience configuring and managing routers how to set up routing

More information

Module 1 Basic Topology, OSPF and ibgp

Module 1 Basic Topology, OSPF and ibgp Module 1 Basic Topology, OSPF and ibgp ISP/IXP Networking Workshop Lab Objective: Create a basic physical lab interconnection with one OSPF Area and one BGP AS number. Ensure that all routers, interfaces,

More information

Configuring a Management IP Address on Catalyst 4500/4000, 5500/5000, 6500/6000, and Catalyst Fixed Configuration Switches

Configuring a Management IP Address on Catalyst 4500/4000, 5500/5000, 6500/6000, and Catalyst Fixed Configuration Switches Configuring a Management IP Address on Catalyst 4500/4000, 5500/5000, 6500/6000, and Catalyst Fixed Configuration Switches Document ID: 10594 Interactive: This document offers customized analysis of your

More information

Lab Using the CLI to Gather Network Device Information Topology

Lab Using the CLI to Gather Network Device Information Topology Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/1 192.168.1.1 255.255.255.0 N/A Lo0 209.165.200.225 255.255.255.224 N/A S1 VLAN 1 192.168.1.11 255.255.255.0

More information

LARGE SCALE IP ROUTING

LARGE SCALE IP ROUTING Building ISP Networks Xantaro Page 1 / 18 TABLE OF CONTENTS 1. LAB ACCESS 4 1.1 Accessing the Jumphost... 4 1.2 Access to your routers... 4 1.3 Local Network Topology... 5 1.4 Global Network Topology...

More information

Module 6 More ibgp, and Basic ebgp Configuration

Module 6 More ibgp, and Basic ebgp Configuration ISP Workshop Lab Module 6 More ibgp, and Basic ebgp Configuration Objective: Simulate four different interconnected ISP backbones using a combination of ISIS, internal BGP, and external BGP. Prerequisites:

More information

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors in the CCNA Exploration:

More information

CS356 Lab NIL (Lam) In this lab you will learn: Cisco 2600 Router Configuration Static Routing PartB 20 min Access Control Lists PartC 30 min Explore!

CS356 Lab NIL (Lam) In this lab you will learn: Cisco 2600 Router Configuration Static Routing PartB 20 min Access Control Lists PartC 30 min Explore! CS356 Lab NIL (Lam) In this lab you will learn: PartA Time: 2 hrs 40 min Cisco 2600 Router Configuration Static Routing PartB 20 min Access Control Lists PartC 30 min Explore! Components used: 2 computers

More information

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and

This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors in the CCNA Exploration:

More information

CS 326e Lab 2, Edmondson-Yurkanan, Spring 2004 Router Configuration, Routing and Access Lists

CS 326e Lab 2, Edmondson-Yurkanan, Spring 2004 Router Configuration, Routing and Access Lists CS 326e Lab 2, Edmondson-Yurkanan, Spring 2004 Router Configuration, Routing and Access Lists Name: In this lab you will learn: PartA Cisco 2600 Router Configuration Static Routing PartB 20 min Dynamic

More information

Chapter 6 Reading Organizer

Chapter 6 Reading Organizer Name Date Chapter 6 Reading Organizer After completion of this chapter, you should be able to: Describe and plan a network using OSPF Design and configure a network using single-area OSPF Work with multi-protocol

More information

Module 5 Policy Based Routing

Module 5 Policy Based Routing Module 5 Policy Based Routing Objective: Using interesting lab exercises, the student will implement some of the fundamental techniques of Policy Routing, as applied in Cisco IOS. Prerequisite: Module

More information

Lab Troubleshooting RIP

Lab Troubleshooting RIP Lab 7.2.6 Troubleshooting RIP Objective Set up an IP addressing scheme using class B networks. Configure RIP on routers. Observe routing activity using the debug ip rip command. Examine routes using the

More information

Module 1 Basic Topology and Router Setup

Module 1 Basic Topology and Router Setup Module 1 Basic Topology and Router Setup Objective: Create a basic physical lab with IP addressing and essential router configuration. Ensure that all routers, interfaces, cables and connections are working

More information

CCNA Semester 2 labs. Labs for chapters 2 10

CCNA Semester 2 labs. Labs for chapters 2 10 CCNA Semester 2 labs Labs for chapters 2 10 2.2.2.5 Lab - Configuring IPv4 Static and Default Routes 2.3.2.4 Lab - Troubleshooting Static Routes 3.2.1.9 Lab - Configuring Basic RIPv2 5.2.2.9 Lab - Configuring

More information

KTH/CSC, RIP lab, rev: 1.13 KTH/CSC. RIP lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature

KTH/CSC, RIP lab, rev: 1.13 KTH/CSC. RIP lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature KTH/CSC RIP lab Juniper version Group Nr Name1 Name2 Name3 Name4 Date Grade Instructor s Signature Table of Contents 1 Goals...3 2 Preparations...3 3 RIP in pairs...4 4 Simple policy-options...5 5 RIP

More information

TDC 363 Introduction to LANs

TDC 363 Introduction to LANs TDC 363 Introduction to LANs OSPF Greg Brewster DePaul University TDC 363 Greg Brewster, DePaul University 1 OSPF Link State Routing Algorithms Open Shortest Path First (OSPF) Message Types Operations

More information

The Lab. The lab (cont ) 5 (6) routers ETSF05 + ETSF The routing lab. Jens A Andersson. Many links (vlans) Front-end server

The Lab. The lab (cont ) 5 (6) routers ETSF05 + ETSF The routing lab. Jens A Andersson. Many links (vlans) Front-end server ETSF05 + ETSF10 2011 The routing lab Jens A Andersson The Lab 2 The lab (cont ) 5 (6) routers Cisco 1841 IOS vers 15 Many links (vlans) Front-end server Access to router lab tftp and ftp server for the

More information

CCNA Exploration Network Fundamentals

CCNA Exploration Network Fundamentals CCNA Exploration 4.0 1. Network Fundamentals The goal of this course is to introduce you to fundamental networking concepts and technologies. These online course materials will assist you in developing

More information

Chapter 7. RIP Version 2 (RIPv2)

Chapter 7. RIP Version 2 (RIPv2) Chapter 7 RIP Version 2 (RIPv2) CCNA2-1 Chapter 7 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario. Thanks must

More information

Lab 2.8.1: Basic Static Route Configuration

Lab 2.8.1: Basic Static Route Configuration Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway R1 Fa0/0 172.16.3.1 255.255.255.0 N/A S0/0/0 172.16.2.1 255.255.255.0 N/A Fa0/0 172.16.1.1 255.255.255.0 N/A R2

More information

Device Interface IP Address Subnet Mask Default Gateway

Device Interface IP Address Subnet Mask Default Gateway Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway BRANCH HQ ISP Fa0/0 172.20.1.129 255.255.255.128 N/A S0/0/0 172.20.1.1 255.255.255.128 N/A Fa0/0 172.20.0.129 255.255.255.128

More information

Module 6 ibgp and Basic ebgp

Module 6 ibgp and Basic ebgp ISP Workshop Lab Module 6 ibgp and Basic ebgp Objective: Simulate four different interconnected ISP backbones using a combination of OSPF, internal BGP, and external BGP. Prerequisites: Module 1 Topology

More information

Lab 1.4.6B Implementing Port Security

Lab 1.4.6B Implementing Port Security Lab 1.4.6B Implementing Port Security Device Designation Device Name VLAN 1 Address Subnet mask S1 FC-ASW-1 10.0.0.2 255.255.255.0 PC1 Host 1 10.0.0.254 255.255.255.0 PC2 Host 2 10.0.0.253 255.255.255.0

More information

Chapter 11. Configuring and Testing Your Network

Chapter 11. Configuring and Testing Your Network Chapter 11 Configuring and Testing Your Network CCNA1-1 Chapter 11 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario.

More information

DOiT-200v6 VOLUME II. DOiT-200v6 Lab 3 Multi-Topic CCIE-Level Scenario. For CCIE Candidates

DOiT-200v6 VOLUME II. DOiT-200v6 Lab 3 Multi-Topic CCIE-Level Scenario. For CCIE Candidates Revision 7.0 (10/20/2005) DOiT-200v6-SCENARIO 3 Page 1 NETMASTERCLASS ROUTING AND SWITCHING CCIE TRACK DOiT-200v6 VOLUME II DOiT-200v6 Lab 3 Multi-Topic CCIE-Level Scenario For CCIE Candidates Revision

More information

Lab Configuring and Verifying Extended ACLs Topology

Lab Configuring and Verifying Extended ACLs Topology Topology 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 8 Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/1 192.168.10.1

More information

DOiT-200v6 VOLUME II I2 R2 4 N1. DOiT-200v6 Lab 16 Multi-Topic CCIE-Level Scenario. For CCIE Candidates

DOiT-200v6 VOLUME II I2 R2 4 N1. DOiT-200v6 Lab 16 Multi-Topic CCIE-Level Scenario. For CCIE Candidates Revision 7.0 (10/26/2005) DOiT-200v6-SCENARIO 16 Page 1 NETMASTERCLASS ROUTING AND SWITCHING CCIE TRACK DOiT-200v6 VOLUME II 4 I2 R2 3 3 R5 I5 3 3 R6 R1 4 N1 4 4 2 2 1 4 I3 R3 3 1 R4 3 N2 N1 I4 1 R7 DOiT-200v6

More information

Interconnecting Cisco Networking Devices Part 1 ICND1

Interconnecting Cisco Networking Devices Part 1 ICND1 Interconnecting Cisco Networking Devices Part 1 ICND1 Course Length: 5 days Course Delivery: Traditional Classroom Online Live Course Overview Interconnecting Cisco Networking Devices, Part 1 (ICND1) v3.0

More information

Lab Student Lab Orientation

Lab Student Lab Orientation Lab 1.1.1 Student Lab Orientation Objective In this lab, the students will complete the following tasks: Review the lab bundle equipment Understand the security pod topology Understand the pod naming and

More information

King Fahd University of Petroleum & Minerals. Configuration of Routers and Establishing Routed Networks

King Fahd University of Petroleum & Minerals. Configuration of Routers and Establishing Routed Networks King Fahd University of Petroleum & Minerals Electrical Engineering Department EE 400, Experiment # 7 Objectives: Configuration of Routers and Establishing Routed Networks The objective of this experiment

More information

Powering On the Cisco VG224 Voice Gateway

Powering On the Cisco VG224 Voice Gateway CHAPTER 4 To power on your Cisco VG224 voice gateway, perform the following tasks in the order listed, as required: Checklist for Power-On, page 4-1 Power-On Procedure, page 4-1 Initial Configuration Procedures,

More information

Skills Assessment Student Training Exam

Skills Assessment Student Training Exam Skills Assessment Student Training Exam Time: 20 minutes Given an IP address and mask of (address / mask), design an IP addressing scheme that satisfies the following requirements. Network address/mask

More information

Static routing lab KTH/CSC. Juniper version. Group Nr. Name 1. Name 2. Name 3. Name 4. Date. Grade. Instructor s Signature

Static routing lab KTH/CSC. Juniper version. Group Nr. Name 1. Name 2. Name 3. Name 4. Date. Grade. Instructor s Signature KTH/CSC Static routing lab Juniper version Group Nr Name 1 Name 2 Name 3 Name 4 Date Grade Instructor s Signature Table of Contents 1 Goals...3 2 Preparation questions...3 3 Host configuration...4 4 Static

More information

Static Routing. Routing Protocols and Concepts Chapter 2. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved.

Static Routing. Routing Protocols and Concepts Chapter 2. ITE PC v4.0 Chapter Cisco Systems, Inc. All rights reserved. Static Routing Routing Protocols and Concepts Chapter 2 1 Objectives Define the general role a router plays in networks. Describe the directly connected networks, different router interfaces Examine directly

More information

Module 2 More ibgp, and Basic ebgp Configuration

Module 2 More ibgp, and Basic ebgp Configuration ISP/IXP Networking Workshop Lab Module 2 More ibgp, and Basic ebgp Configuration Objective: Simulate four different interconnected ISP backbones using a combination of ISIS, internal BGP, and external

More information

Symbols. Numerics I N D E X

Symbols. Numerics I N D E X I N D E X Symbols? (question mark), CLI help system, 126 Numerics A 2-router BGP topology, configuring, 279 284 4-router BGP topology, configuring, 266, 276 279 ABRs (area border routers), 9, 87, 95, 141

More information

Checklists for Configuring the Gateway

Checklists for Configuring the Gateway CHAPTER 7 The Cisco Unified Communications Manager Business Edition 3000 uses either Cisco 2901 Integrated Services Router (ISR2901) or Cisco Media Convergence Server 7890C1 (MCS7890-C1) to serve as your

More information

Lab Configuring OSPF Authentication

Lab Configuring OSPF Authentication Lab 2.3.4 Configuring OSPF Authentication Objective Setup an IP addressing scheme for Open Shortest Path First (OSPF) area. Configure and verify OSPF routing. Introduce OSPF authentication into the area.

More information

IPv6 Module 11 Advanced Router Configuration

IPv6 Module 11 Advanced Router Configuration ISP Workshop Lab IPv6 Module 11 Advanced Router Configuration Objective: Create a basic physical lab interconnection with two autonomous systems. Each AS should use ISIS, ibgp and ebgp appropriately to

More information

Lab 8.4.2: Show IP Route Challenge Lab

Lab 8.4.2: Show IP Route Challenge Lab Addressing Table Device Interface IP Address Subnet Mask R1 R2 R3 R4 R5 Learning Objectives Upon completion of this lab, you will be able to: Determine network topology based on the outputs from the show

More information

Lab Configuring the OSPF Routing Process

Lab Configuring the OSPF Routing Process Lab 2.3.1 Configuring the OSPF Routing Process Objective Setup an IP addressing scheme for OSPF area 0. Configure and verify Open Shortest Path First (OSPF) routing. Background/Preparation Cable a network

More information

Lab 9.6.3: EIGRP Troubleshooting Lab

Lab 9.6.3: EIGRP Troubleshooting Lab Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway Fa0/0 172.18.64.1 255.255.192.0 N/A HQ S0/0/0 209.165.202.129 255.255.255.252 N/A S0/0/1 209.165.202.133 255.255.255.252

More information

Lab Establishing and Verifying a Telnet Connection Instructor Version 2500

Lab Establishing and Verifying a Telnet Connection Instructor Version 2500 Lab 4.2.2 Establishing and Verifying a Telnet Connection Instructor Version 2500 Objective Establish a Telnet connection to a remote router. Verify that the application layer between source and destination

More information

Lab - Designing and Implementing a Subnetted IPv4 Addressing Scheme

Lab - Designing and Implementing a Subnetted IPv4 Addressing Scheme Lab - Designing and Implementing a Subnetted IPv4 Addressing Scheme Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G00 NA G01 NA Lo0 Lo1 NA NA S1 VLAN 1

More information

Lab Correcting RIPv2 Routing Problems

Lab Correcting RIPv2 Routing Problems Lab 9.4.2 Correcting RIPv2 Routing Problems e Interface IP Address Subnet Mask Default Gateway Device Host Name Interface IP Address Subnet Mask Default Gateway R1 BRANCH1 Fast Ethernet 0/0 172.16.0.1

More information

Chapter 4 Lab 4-1, Redistribution Between RIP and OSPF

Chapter 4 Lab 4-1, Redistribution Between RIP and OSPF hapter 4 Lab 4-1, Redistribution Between RIP and OSPF Topology Objectives Review configuration and verification of RIP and OSPF. onfigure passive interfaces in both RIP and OSPF. Filter routing updates

More information

LAB EXERCISES (TP) 6 INTER-DOMAIN ROUTING: BGP-4 With Solutions

LAB EXERCISES (TP) 6 INTER-DOMAIN ROUTING: BGP-4 With Solutions Name 1: Name 2: COMPUTER NETWORKING LAB EXERCISES (TP) 6 INTER-DOMAIN ROUTING: BGP-4 With Solutions Abstract This lab covers BGP-4, which is the Inter-Domain Routing Protocol of the Internet. You will

More information

Chapter 4: Routing Concepts. Routing & Switching

Chapter 4: Routing Concepts. Routing & Switching Chapter 4: Routing Concepts Routing & Switching Routers are Computers Routers are specialized computers containing the following required components to operate: Central processing unit (CPU) Operating

More information

KTHNOC, MPLS/RSVP lab, rev: 1.7 KTHNOC. MPLS/RSVP lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature

KTHNOC, MPLS/RSVP lab, rev: 1.7 KTHNOC. MPLS/RSVP lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature KTHNOC MPLS/RSVP lab Juniper version Group Nr Name1 Name2 Name3 Name4 Date Grade Instructor s Signature Table of Contents 1 Goals...3 2 Preparations...3 2.1RSVP concepts...3 3 Initial configuration...4

More information

Lab: RIP v2 with VLSM

Lab: RIP v2 with VLSM Lab: RIP v2 with VLSM Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway BRANCH HQ ISP PC1 PC2 PC3 PC4 PC5 Lo1 S0/0/0 Lo1 S0/0/0 S0/0/1 S/0/0/1 Learning Objectives

More information

IPv6 Module 6 ibgp and Basic ebgp

IPv6 Module 6 ibgp and Basic ebgp ISP Workshop Lab IPv6 Module 6 ibgp and Basic ebgp Objective: Using IPv6, simulate four different interconnected ISP backbones using a combination of ISIS, internal BGP, and external BGP. Prerequisites:

More information

IPv6 Module 1a OSPF. Prerequisites: IPv4 Lab Module 1, knowledge of Cisco router CLI, and previous hands on experience.

IPv6 Module 1a OSPF. Prerequisites: IPv4 Lab Module 1, knowledge of Cisco router CLI, and previous hands on experience. ISP Workshop Lab IPv6 Module 1a OSPF Objective: Create a basic physical lab interconnection using IPv6 with one OSPF Area running on top of an existing IPv4 infrastructure. Prerequisites: IPv4 Lab Module

More information

Chapter 8 Configuring OSPF

Chapter 8 Configuring OSPF Chapter 8 Configuring OSPF This chapter describes how to configure OSPF on HP routing switches using the CLI and Web management interface. To display OSPF configuration information and statistics, see

More information

KTH CSC, OSPF lab, rev: 1.15 KTH CSC. OSPF lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature

KTH CSC, OSPF lab, rev: 1.15 KTH CSC. OSPF lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature KTH CSC OSPF lab Juniper version Group Nr Name1 Name2 Name3 Name4 Date Grade Instructor s Signature Table of Contents 1 Goals...3 2 Preparations...3 3 OSPF in pairs...5 3.1Turn on OSPF...5 3.2 Monitor

More information

Routing Overview. Information About Routing CHAPTER

Routing Overview. Information About Routing CHAPTER 21 CHAPTER This chapter describes underlying concepts of how routing behaves within the ASA, and the routing protocols that are supported. This chapter includes the following sections: Information About

More information

IPv6 Module 6x ibgp and Basic ebgp

IPv6 Module 6x ibgp and Basic ebgp IPv6 Module 6x ibgp and Basic ebgp Objective: Using IPv6, simulate four different interconnected ISP backbones using a combination of IS-IS, internal BGP, and external BGP. Topology : Figure 1 BGP AS Numbers

More information

Lab 6.4.2: Challenge Inter-VLAN Routing

Lab 6.4.2: Challenge Inter-VLAN Routing Lab 6.4.2: Challenge Inter-VLAN Routing Topology Diagram Addressing Table Device (Hostname) Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 192.168.99.11 255.255.255.0 192.168.99.1 S2 VLAN

More information

2016/01/17 04:04 1/9 Basic Routing Lab

2016/01/17 04:04 1/9 Basic Routing Lab 2016/01/17 04:04 1/9 Basic Routing Lab Basic Routing Lab Introduction The purpose of this exercise is to introduce participants to the basic configuration requirements of a Cisco router. The network topology

More information

Configuring Security with Passwords, Privileges, and Logins

Configuring Security with Passwords, Privileges, and Logins Configuring Security with Passwords, Privileges, and Logins Cisco IOS based networking devices provide several features that can be used to implement basic security for CLI sessions using only the operating

More information

Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two)

Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two) ICND1 OSPF Questions Question 1 Which of the following describe the process identifier that is used to run OSPF on a router? (Choose two) A. It is locally significant. B. It is globally significant. C.

More information

Lab Applying a Logical Layered Model to a Physical Network

Lab Applying a Logical Layered Model to a Physical Network Lab 3.1.1 Applying a Logical Layered Model to a Physical Network Objective In this exercise, you will use various Cisco IOS commands and a protocol analyzer to map the layers in the OSI model to the encapsulated

More information

Introduction to Dynamic Routing Protocols

Introduction to Dynamic Routing Protocols Introduction to Dynamic Routing Protocols 1 Objectives Describe the role of dynamic routing protocols and place these protocols in the context of modern network design. Identify several ways to classify

More information

CCENT ICND Pearson ucertify. Course Outline. CCENT ICND Pearson ucertify. 26 Mar

CCENT ICND Pearson ucertify. Course Outline. CCENT ICND Pearson ucertify. 26 Mar Course Outline CCENT ICND1 100-105 Pearson ucertify 26 Mar 2019 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led

More information

~ 1 ~ Ankara University Department of Computer Engineering COM LAB 1 Part 1

~ 1 ~ Ankara University Department of Computer Engineering COM LAB 1 Part 1 ~ 1 ~ Ankara University Department of Computer Engineering COM332 2017 LAB 1 Part 1 SECTION 1 PC Network TCP/IP Configuration Objective Identify tools used to discover a computer network configuration

More information

Information About Routing

Information About Routing 19 CHAPTER This chapter describes underlying concepts of how routing behaves within the adaptive security appliance, and the routing protocols that are supported. The chapter includes the following sections:,

More information

ISP Workshop Lab. Module 2 OSPF Areas

ISP Workshop Lab. Module 2 OSPF Areas ISP Workshop Lab Module 2 SPF Areas bjective: To migrate from one flat SPF topology to SPF areas, plus introduce neighbour authentication and area summarisation in the lab network. Prerequisite: Module

More information

KTHNOC, OSPF lab, rev: OSPF-lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature

KTHNOC, OSPF lab, rev: OSPF-lab. Juniper version. Group Nr. Name1. Name2. Name3. Name4. Date. Grade. Instructor s Signature KTHNOC OSPF-lab Juniper version Group Nr Name1 Name2 Name3 Name4 Date Grade Instructor s Signature Table of Contents 1 Goals...3 2 Lab report...3 3 Preparations...3 3.1Preparations for area part...4 4

More information