Exercise 4 MPLS router configuration
|
|
|
- Asher Osborne
- 9 years ago
- Views:
Transcription
1 Exercise 4 MPLS router configuration Computer Network Technologies and Services (CNTS) Tecnologie e Servizi di Rete (TSR) Preliminary note For this exercise you have to use the virtual routing laboratory. Unless the environment had been previously used, it is recommended to solve the Tutorial- Exercise 0 before this exercise in order to get familiar the virtual laboratory. 1 Network topology and base configuration It is suggested that the network topology in Figure 1 is used; it can be recreated with the Dyn@NG web interface. In the network at least two routers shall be customer edge (CE) routers, (R0 and R5 in the suggested topology in Figure 1), i.e., not deploying MPLS, but connected to an MPLS network. At least two routers shall be forwarding labeled packets on at least 2 of their interfaces (R2 and R3 in Figure 1). Finally, at least two provider edge (PE) routers shall connected to the CE routers and receive plain IP packets on one interface and forward them with an MPLS label on another interface (R1 and R4 in the suggested topology in Figure 1). 1.1 Addressing As a prerequisite for the network to work, an addressing plan shall be designed and addresses (IPv4 or IPv6, according to personal preference) assigned to all router interfaces. In the case of IPv4 routing, this can be done using the interface level command ip address address netmask In order to better differentiate between information related to the MPLS network and information related to the peripheral networks (representing customers of a service provider operating the MPLS backbone), it is suggested that very different prefixes be used for the two parts of the network. For example, in an IPv4 network address plan, the prefix /8 could be used on the MPLS backbone, while prefixes x.0/24 could be used for peripheral networks. In order to have at least 2 destination networks that do not have anything to do with the MPLS backbone (i.e., do not include any provider node), it is suggested that the loopback interfaces of the CE routers (R0 and R5) are configured with the previously mentioned customer 1
2 Figure 1: Suggested network topology prefixes and used as traffic sources and destinations (e.g., in ping commands) when checking the operation of the network. The loopback interface is a special virtual interface (i.e., not actually corresponding to a port connected to a transmission medium) that once configured is always operational, i.e., usable for generating and receiving packets. 1.2 Enabling MPLS In order for routers to deploy MPLS labels on an interface, the following interface level configuration command must be used: mpls ip For example, in R2 the command must be included in the configuration of the interface connecting it to R3, as well as the interface connecting it to R4. Please note that in Cisco routers this will automatically activate LDP (Label Distribution Protocol) on the interface. 2 Dynamic configuration Firstly, let s configure LSRs to automatically figure out how to reach destinations, choose labels, and create their mappings in the forwarding table. In order for LSRs to be able to create bindings and mappings, they need to know how to reach destinations. This can be automatically done through routing protocols. It is suggested that the RIP routing protocol be used here for this purpose, as its configuration is straightforward. On each of the routers the routing protocol should be activated by means of the following configuration commands: router rip network prefix Where prefix is the natural prefix used on one or more of the router interfaces. The command is telling to the router to (i) announce prefix as one of the destinations it can reach as directly 2
3 connected to it, and (ii) exchange RIP messages through each of the interfaces configured with an address beginning with prefix. If more than one prefix is configured on the router interfaces, the network command shall be repeated. For example, if a router has the addresses /24, /24 and /24 on three of its interfaces, the RIP routing protocol can be configured as follows: router rip network network Once the network is configured, test its operation, as explained in Section 3, by performing the following actions and carefully analyzing the obtained results: 1. Execute a ping between customer (i.e., non-mpls) addresses. 2. Execute a traceroute between customer (i.e., non-mpls) addresses. 3. Verify the routing table of at least one of the CE and one of the provider routers. 4. Verify the MPLS forwarding table of at least one PE (i.e., LER) router and at least two LSRs. (a) What is different in the table of an LSR and LER? (b) What is the relationship between the forwarding tables of the two LSRs? 5. Capture packets, generated with a ping or traceroute command, on at least a link between a CE and a PE (e.g., L4 in in Figure 1) and a link between a PE and an internal router (e.g., L4 in in Figure 1). (a) How do packets captured on each link differ? (b) How do MPLS labels seen on the link compare to the ones in the MPLS forwarding table? 6. Visualize the label mappings of at least one PE (i.e., LER) router and at least one LSR. Are there any differences? Why? 7. Capture LDP messages on some of the links and compare information found in those messages with the one found in the label binding information base in routers. Please note that in order to see label distribution interfaces might need to be taken down (interface level shutdown configuration command) and up again (interface level no shutdown configuration command). 8. Do packets forwarded from an internal LSR to an egress LSR (e.g., from R2 to R1 in Figure 1) have a label? Why? How is this reflected in the MPLS forwarding tables and label binding databases of the 2 routers? 3
4 3 Verification of proper operation 3.1 Traffic generation One way to verify that the MPLS backbone is operating properly is to generate traffic between external networks, e.g., from R0 and R5 in Figure 1, using the ping and traceroute commands. It is suggested that the source option of the commands are used to ensure that packets are generated with the wanted interface address so that the backbone will be able to properly route back response packets. For example, ping source generates ICMP echo request packets to from , which the target will respond to. Please keep in mind that since routers in the MPLS backbone are able to forward plain IP packets, reachability (i.e., i.e., successful ping and traceroute execution) does not imply proper MPLS operation. Traffic must be observed in the MPLS backbone to make sure that packets are indeed forwarded using the technology. 3.2 Traffic observation Traffic should be captured on both CE-PE links, where plain IP packets, without MPLS labels shall be expected, and on internal links, where MPLS headers and LDP messages can be observed. Please notice that can perform and visualize captures, however, MPLS headers and MPLS related protocols (such as LDP) are not properly interpreted. Hence, captures must be downloaded and visualized with an external packet analyzer, such as for example wireshark that can be freely downloaded. If admin privileges cannot be obtained, such as on the lab PCs, wireshark make sure to download the version that can be executed in user mode without installation. 3.3 Router information inspection Gaining access to the data available to each LSR is key to troubleshoot a malfunctioning network or, as in our case, to fully understand the mechanisms underlying MPLS. The following commands can be useful to this purpose. show ip route - visualize IP routing table; useful to understand what destinations (i.e., IP prefixes) a router is able to route packets to and the next hop it would forward packets to. Please note that having routing information is key for routers to be able to build their mapping in their forwarding table. show mpls forwarding-table - visualize the forwarding table mapping input labels to output ports (and next hops) and output labels. It enables figuring out how the router will handle labeled packets and how it will possibly label packets that are received without label. show mpls ip binding - visualize binding of labels to FECs (forward equivalence classes), which in this simple examples will be prefixes. It is useful to observe information used to build the forwarding table or ignored when building the forwarding table. show mpls ldp binding - visualize binding information exchanged and received through LDP. 4
5 4 Dynamic label binding with static routing After disabling RIP on each of the routers (with the general configuration command no router rip), observe whether the network is still working. Specifically, after wait several minutes to ensure that routers have removed all of the stale information on destinations learned while RIP was being used, go through the following steps. 1. Test reachability of external ( customer ) destinations. 2. Since they are not reachable, verify in routing tables that router in the MPLS backbone have no information on such destinations. Do they have bindings only for certain destinations? 3. Verify label biding information. Do routers have bindings? Why? 4. Check out the MPLS forwarding table. Is it empty? Why is that expected based on what you have observed so far? At this point, starting from one of the CEs, configure a static route to one of the external destinations. In the case of IPv4 routers, this can be done with the global configuration command ip route address netmask next hop For example, if the loopback interface of router R5 in Figure 1 was configured with the address , the following static route can be provided to R4: ip route assuming is the address of R5 on link L4. Capture LDP messages on some of the links while providing static routes and compare information found in those messages with the one found in the label binding information base in routers. When are label distribution messages triggered? At this point repeat the steps listed above and notice how the information available to the router you have configured with the static route and to its neighbors has changed. Add similar static routes to each of the other routers, one by one, repeating all the steps above after a static route is added to each router. Notice how information change. Remember to add routing information for both external destinations involved in the ping command; reachability will be restored only when all routers will have a route to both destinations. Please note that in order for the network to properly operate, routers do not need to have routes for destinations within the MPLS network. For example, with the addressing solution suggested in Section 1.1, external destinations will be able to successfully reach each other even though provider routers do not have in their routing tables routes for /8 destinations (although they will anyway know how to reach the destinations directly connected to their interfaces). 5 Static label binding with static routing In order to make sure we fully understand what information MPLS routers need to properly operate, we now manually provide each piece of such information by manually configuring label bindings. 5
6 First off, we need to disable label distribution with the general configuration command: no mpls ldp advertise-labels Please note that since routers might keep previous binding information, it might be necessary to restart the router (after having saved the configuration with the command write). Part of the label space must be reserved for manually binding labels to FECs with the general configuration command mpls label range min dyn max dyn static min man max man For example, in order to reserve labels from 50 to 90 for manual (static) assignment, while keeping labels from 100 to for dynamic binding, we can include in the configuration mpls label range static Finally, we can create a static local binding with the general configuration command: mpls static binding ipv4 address netmask label where label is the label the router is expecting attached to incoming packets whose destination address has the prefix specified by the address netmask pair (i.e., FEC). For example, mpls static binding ipv A remote binding, i.e., the binding expected by a neighbor, can be configured as mpls static binding ipv4 address netmask output neighbor label Where neighbor is a directly connected router that expects packets to the destination specified by the address netmask pair to arrive with label label. This implied that neighbor must have chosen label in its local binding for FEC address netmask. For example, mpls static binding ipv output Please note that in order for a router to use a local binding and a remote binding to create a mapping in its MPLS forwarding table, the router must have a route indicating which neighbor should be used as a next hop for the destination. In the examples above, only if the router has a route that indicates as the next hop for the destination , will it create a mapping between the input label 71, the output label 61 and the next hop The LSR that is supposed to perform penultimate hop popping, can be configured to know that a neighbor is expecting a null label using the special keyword explicit-null. For example, mpls static binding ipv output explicit-null After configuring static bindings and static routers in each of the provider routers (i.e., R1, R2, R3, and R4 in Figure 1) one at a time, carefully check out at each step routing table binding database MPLS forwarding table on the configured router and the neighboring ones, noting how they are affected by the configuration, until the point in which the network is capable of forwarding packets among the external destinations. 6
7 5.1 Static mapping As a last experiment to further our understanding and mastering of MPLS, we can manually configure the mappings in the forwarding tables for two internal LSRs (e.g., R3 and R2 in Figure 1), instead of letting them figure out their mappings based on the configured bindings and routes. Static mappings can be manually created with the general configuration command mpls static crossconnect 62 FastEthernet0/ The label explicit-null can be used for an LSR that should perform penultimate hop popping. Sample usages are mpls static crossconnect 62 FastEthernet0/ mpls static crossconnect 61 FastEthernet0/ explicit-null Specifically, starting from a blank configuration, we need to 1. Configure IP addresses on each interface 2. Activate MPLS forwarding 3. Disable LDP 4. Define a range for static labels 5. Create static mappings Notice that no route are required for the LSR to operate. As with previous experiences it is advised that traffic and router information (label binding database and forwarding table) are observed on a router and its neighbors after each static mapping (crossconnect) configuration command is provided. Bibliography Cisco Systems, MPLS static labels, sr/mp 12 2sr book/mp static labels.html Cisco Systems, MPLS Label Distribution Protocol (LDP), sr/mp 12 2sr book/mp ldp overview.html 7
MPLS-based Layer 3 VPNs
MPLS-based Layer 3 VPNs Overall objective The purpose of this lab is to study Layer 3 Virtual Private Networks (L3VPNs) created using MPLS and BGP. A VPN is an extension of a private network that uses
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
MPLS Architecture for evaluating end-to-end delivery
International Journal of Scientific and Research Publications, Volume 2, Issue 11, November 2012 1 MPLS Architecture for evaluating end-to-end delivery Nikita Wadhera Lovely Professional University Abstract-
Sample Configuration Using the ip nat outside source static
Sample Configuration Using the ip nat outside source static Table of Contents Sample Configuration Using the ip nat outside source static Command...1 Introduction...1 Before You Begin...1 Conventions...1
Procedure: You can find the problem sheet on Drive D: of the lab PCs. 1. IP address for this host computer 2. Subnet mask 3. Default gateway address
Objectives University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 Lab.4 Basic Network Operation and Troubleshooting 1. To become familiar
Department of Communications and Networking. S-38.2131/3133 Networking Technology, Laboratory course A/B
Department of Communications and Networking S-38.2131/3133 Networking Technology, Laboratory course A/B Work Number 38: MPLS-VPN Basics Student Edition Preliminary Exercises and Laboratory Assignments
Sample Configuration Using the ip nat outside source list C
Sample Configuration Using the ip nat outside source list C Table of Contents Sample Configuration Using the ip nat outside source list Command...1 Introduction...1 Before You Begin...1 Conventions...1
MPLS Basics. For details about MPLS architecture, refer to RFC 3031 Multiprotocol Label Switching Architecture.
Multiprotocol Label Switching (), originating in IPv4, was initially proposed to improve forwarding speed. Its core technology can be extended to multiple network protocols, such as IPv6, Internet Packet
Cisco Configuring Basic MPLS Using OSPF
Table of Contents Configuring Basic MPLS Using OSPF...1 Introduction...1 Mechanism...1 Hardware and Software Versions...2 Network Diagram...2 Configurations...2 Quick Configuration Guide...2 Configuration
Introducing Basic MPLS Concepts
Module 1-1 Introducing Basic MPLS Concepts 2004 Cisco Systems, Inc. All rights reserved. 1-1 Drawbacks of Traditional IP Routing Routing protocols are used to distribute Layer 3 routing information. Forwarding
Configuring a Load-Balancing Scheme
Configuring a Load-Balancing Scheme Finding Feature Information Configuring a Load-Balancing Scheme Last Updated: August 15, 2011 This module contains information about Cisco Express Forwarding and describes
MPLS for ISPs PPPoE over VPLS. MPLS, VPLS, PPPoE
MPLS for ISPs PPPoE over VPLS MPLS, VPLS, PPPoE Presenter information Tomas Kirnak Network design Security, wireless Servers Virtualization MikroTik Certified Trainer Atris, Slovakia Established 1991 Complete
Configuring a Load-Balancing Scheme
Configuring a Load-Balancing Scheme Last Updated: October 5, 2011 This module contains information about Cisco Express Forwarding and describes the tasks for configuring a load-balancing scheme for Cisco
Lab 4.5.2 Diagramming Intranet Traffic Flows
Lab 4.5.2 Diagramming Intranet Traffic Flows Objective Device Designation Device Name Address Subnet Mask Discovery Server Business Services 172.17.1.1 255.255.0.0 R1 FC-CPE-1 Fa0/1 172.17.0.1 Fa0/0 10.0.0.1
IPv6 over IPv4/MPLS Networks: The 6PE approach
IPv6 over IPv4/MPLS Networks: The 6PE approach Athanassios Liakopoulos Network Operation & Support Manager ([email protected]) Greek Research & Technology Network (GRNET) III Global IPv6 Summit Moscow, 25
Frame Mode MPLS Implementation
CHAPTER 4 Frame Mode MPLS Implementation Lab 4-1: Configuring Frame Mode MPLS (4.5.1) In this lab, you learn how to do the following: Configure EIGRP on a router. Configure LDP on a router. Change the
netkit lab MPLS VPNs with overlapping address spaces 1.0 S.Filippi, L.Ricci, F.Antonini Version Author(s)
netkit lab MPLS VPNs with overlapping address spaces Version Author(s) 1.0 S.Filippi, L.Ricci, F.Antonini E-mail Web Description [email protected] http://www.kaksonetworks.it/ A lab showing
Computer Networks I Laboratory Exercise 1
Computer Networks I Laboratory Exercise 1 The lab is divided into two parts where the first part is a basic PC network TCP/IP configuration and connection to the Internet. The second part is building a
Lab 4.5.4 Diagramming External Traffic Flows
Lab 4.5.4 Diagramming External Traffic Flows Device Designation Device Name Address Subnet Mask Discovery Server Business Services 172.17.1.1 255.255.0.0 R1 R2 R3 FC-CPE-1 FC-CPE-2 ISP Fa0/1 172.17.0.1
MPLS VPN Route Target Rewrite
The feature allows the replacement of route targets on incoming and outgoing Border Gateway Protocol (BGP) updates Typically, Autonomous System Border Routers (ASBRs) perform the replacement of route targets
Instructor Notes for Lab 3
Instructor Notes for Lab 3 Do not distribute instructor notes to students! Lab Preparation: Make sure that enough Ethernet hubs and cables are available in the lab. The following tools will be used in
Using OSPF in an MPLS VPN Environment
Using OSPF in an MPLS VPN Environment Overview This module introduces the interaction between multi-protocol Border Gateway Protocol (MP-BGP) running between Provider Edge routers (s) and Open Shortest
Lab 1: Introduction to the network lab
CSCI 312 - DATA COMMUNICATIONS AND NETWORKS FALL, 2014 Lab 1: Introduction to the network lab NOTE: Be sure to bring a flash drive to the lab; you will need it to save your data. For this and future labs,
Configure ISDN Backup and VPN Connection
Case Study 2 Configure ISDN Backup and VPN Connection Cisco Networking Academy Program CCNP 2: Remote Access v3.1 Objectives In this case study, the following concepts are covered: AAA authentication Multipoint
Administrative Distance
RIP is a distance vector routing protocol. It shares routing information through the local broadcast in every 30 seconds. In this tutorial we will explain RIP routing fundamentals with examples such as
HP Networking BGP and MPLS technology training
Course overview HP Networking BGP and MPLS technology training (HL046_00429577) The HP Networking BGP and MPLS technology training provides networking professionals the knowledge necessary for designing,
IP Addressing and Subnetting. 2002, Cisco Systems, Inc. All rights reserved.
IP Addressing and Subnetting 2002, Cisco Systems, Inc. All rights reserved. 1 Objectives Upon completion, you will be able to: Discuss the Types of Network Addressing Explain the Form of an IP Address
Router Lab Reference Guide
Router Lab Reference Guide 1 PURPOSE AND GOALS The routing lab allows testing different IP-related protocols and solutions in a close to live environment. You can learn how to configure Cisco routers and
LAB Configuring NAT. Objective. Background/Preparation
LAB Configuring NAT Objective Configure a router to use network address translation (NAT) to convert internal IP addresses, typically private addresses, into outside public addresses. Configure static
Junos MPLS and VPNs (JMV)
Junos MPLS and VPNs (JMV) Course No: EDU-JUN-JMV Length: Five days Onsite Price: $32500 for up to 12 students Public Enrollment Price: $3500/student Course Level JMV is an advanced-level course. Prerequisites
IPv6 over MPLS VPN. Contents. Prerequisites. Document ID: 112085. Requirements
IPv6 over MPLS VPN Document ID: 112085 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram VRF Configuration Multiprotocol BGP (MP BGP) Configuration
Multiprotocol Label Switching Load Balancing
Multiprotocol Label Switching Load Balancing First Published: July 2013 The Cisco ME 3800 and ME 3600 switches support IPv4 and IPv6 load balancing at the LER and LSR. Effective with Cisco IOS Release
Configuring a Load-Balancing Scheme
This module contains information about Cisco Express Forwarding and describes the tasks for configuring a load-balancing scheme for Cisco Express Forwarding traffic. Load-balancing allows you to optimize
Lab 4.1.2 Characterizing Network Applications
Lab 4.1.2 Characterizing Network Applications Objective Device Designation Device Name Address Subnet Mask Discovery Server Business Services 172.17.1.1 255.255.0.0 R1 FC-CPE-1 Fa0/1 172.17.0.1 Fa0/0 10.0.0.1
Host Configuration (Linux)
: Location Date Host Configuration (Linux) Trainer Name Laboratory Exercise: Host Configuration (Linux) Objectives In this laboratory exercise you will complete the following tasks: Check for IPv6 support
MikroTik RouterOS Introduction to MPLS. Prague MUM Czech Republic 2009
MikroTik RouterOS Introduction to MPLS Prague MUM Czech Republic 2009 Q : W h y h a v e n 't y o u h e a r d a b o u t M P LS b e fo re? A: Probably because of the availability and/or price range Q : W
WAN Topologies MPLS. 2006, Cisco Systems, Inc. All rights reserved. Presentation_ID.scr. 2006 Cisco Systems, Inc. All rights reserved.
MPLS WAN Topologies 1 Multiprotocol Label Switching (MPLS) IETF standard, RFC3031 Basic idea was to combine IP routing protocols with a forwarding algoritm based on a header with fixed length label instead
IOS NAT Load Balancing with Optimized Edge Routing for Two Internet Connections
IOS NAT Load Balancing with Optimized Edge Routing for Two Internet Connections Document ID: 99427 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram
MPLS-TP. Future Ready. Today. Introduction. Connection Oriented Transport
MPLS-TP Future Ready. Today Introduction As data traffic started dominating telecom networks, there was a need for transport data networks, as opposed to transport TDM networks. Traditional transport technologies
How To Make A Network Secure
1 2 3 4 -Lower yellow line is graduate student enrollment -Red line is undergradate enrollment -Green line is total enrollment -2008 numbers are projected to be near 20,000 (on-campus) not including distance
Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets
Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets All contents are Copyright 1992 2007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1 of 8 Device Interface
Interconnecting IPv6 Domains Using Tunnels
Interconnecting Domains Using Tunnels Version History Version Number Date Notes 1 30 July 2002 This document was created. 2 19 May 2003 Updated the related documents section. This document describes how
l.cittadini, m.cola, g.di battista
MPLS VPN l.cittadini, m.cola, g.di battista motivations customer s problem a customer (e.g., private company, public administration, etc.) has several geographically distributed sites and would like to
Internet Firewall CSIS 4222. Packet Filtering. Internet Firewall. Examples. Spring 2011 CSIS 4222. net15 1. Routers can implement packet filtering
Internet Firewall CSIS 4222 A combination of hardware and software that isolates an organization s internal network from the Internet at large Ch 27: Internet Routing Ch 30: Packet filtering & firewalls
Chapter 2 Lab 2-2, EIGRP Load Balancing
Chapter 2 Lab 2-2, EIGRP Load Balancing Topology Objectives Background Review a basic EIGRP configuration. Explore the EIGRP topology table. Identify successors, feasible successors, and feasible distances.
Routing Protocols and Concepts Chapter 2 Conceitos de protocolos de Encaminhamento Cap 2
Static Routing Routing Protocols and Concepts Chapter 2 1 1 Objectives Define the general role a router plays in networks. Describe the directly connected networks, different router interfaces Examine
Chapter 4. Distance Vector Routing Protocols
Chapter 4 Distance Vector Routing Protocols CCNA2-1 Chapter 4 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario.
Table of Contents. Cisco Configuring a Basic MPLS VPN
Table of Contents Configuring a Basic MPLS VPN...1 Introduction...1 Prerequisites...1 Requirements...1 Components Used...2 Related Products...2 Conventions...2 Configure...3 Network Diagram...3 Configuration
Lab 2 - Basic Router Configuration
CS326 Fall 2001 Room: PAI 5.48 Name: Lab 2 - Basic Router Configuration In this lab you will learn: the various configuration modes of Cisco 2621 routers how to set up IP addresses for such routers how
Troubleshooting Tools
Troubleshooting Tools An overview of the main tools for verifying network operation from a host Fulvio Risso Mario Baldi Politecnico di Torino (Technical University of Turin) see page 2 Notes n The commands/programs
RSVP- A Fault Tolerant Mechanism in MPLS Networks
RSVP- A Fault Tolerant Mechanism in MPLS Networks S.Ravi Kumar, M.Tech(NN) Assistant Professor Gokul Institute of Technology And Sciences Piridi, Bobbili, Vizianagaram, Andhrapradesh. Abstract: The data
Internet Control Protocols Reading: Chapter 3
Internet Control Protocols Reading: Chapter 3 ARP - RFC 826, STD 37 DHCP - RFC 2131 ICMP - RFC 0792, STD 05 1 Goals of Today s Lecture Bootstrapping an end host Learning its own configuration parameters
AT&T Managed IP Network Service (MIPNS) MPLS Private Network Transport Technical Configuration Guide Version 1.0
AT&T Managed IP Network Service (MIPNS) MPLS Private Network Transport Technical Configuration Guide Version 1.0 Introduction...2 Overview...2 1. Technology Background...2 2. MPLS PNT Offer Models...3
Broadband Networks. Prof. Karandikar. Department of Electrical Engineering. Indian Institute of Technology, Bombay. Lecture - 26
Broadband Networks Prof. Karandikar Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 26 Optical Network &MPLS So, as you were discussing in the previous lectures, next
Lab 4.2 Challenge Lab: Implementing MPLS VPNs
Lab 4.2 Challenge Lab: Implementing MPLS VPNs Learning Objectives Configure Open Shortest Path First (OSPF) and Enhanced Interior Gateway Routing Protocol (EIGRP) on a router Enable MPLS on a router Verify
Exam 1 Review Questions
CSE 473 Introduction to Computer Networks Exam 1 Review Questions Jon Turner 10/2013 1. A user in St. Louis, connected to the internet via a 20 Mb/s (b=bits) connection retrieves a 250 KB (B=bytes) web
MPLS VPN over mgre. Finding Feature Information. Prerequisites for MPLS VPN over mgre
The feature overcomes the requirement that a carrier support multiprotocol label switching (MPLS) by allowing you to provide MPLS connectivity between networks that are connected by IP-only networks. This
Layer 3 Multiprotocol Label Switching Virtual Private Network
i Zelalem Temesgen Weldeselasie Layer 3 Multiprotocol Label Switching Virtual Private Network Technology and Communication 2014 1 VAASAN AMMATTIKORKEAKOULU UNIVERSITY OF APPLIED SCIENCES Information Technology
How Routers Forward Packets
Autumn 2010 [email protected] MULTIPROTOCOL LABEL SWITCHING (MPLS) AND MPLS VPNS How Routers Forward Packets Process switching Hardly ever used today Router lookinginside the packet, at the ipaddress,
Configuring Static and Dynamic NAT Simultaneously
Configuring Static and Dynamic NAT Simultaneously Document ID: 13778 Contents Introduction Prerequisites Requirements Components Used Conventions Configuring NAT Related Information Introduction In some
SUBNETTING SCENARIO S
SUBNETTING SCENARIO S This white paper provides several in-depth scenario s dealing with a very confusing topic, subnetting. Many networking engineers need extra practice to completely understand the intricacies
Expert Reference Series of White Papers. The Basics of Configuring and Using Cisco Network Address Translation
Expert Reference Series of White Papers The Basics of Configuring and Using Cisco Network Address Translation 1-800-COURSES www.globalknowledge.com The Basics of Configuring and Using Cisco Network Address
Objectives. Router as a Computer. Router components and their functions. Router components and their functions
2007 Cisco Systems, Inc. All rights reserved. Cisco Public Objectives Introduction to Routing and Packet Forwarding Routing Protocols and Concepts Chapter 1 Identify a router as a computer with an OS and
Leveraging Advanced Load Sharing for Scaling Capacity to 100 Gbps and Beyond
Leveraging Advanced Load Sharing for Scaling Capacity to 100 Gbps and Beyond Ananda Rajagopal Product Line Manager Service Provider Solutions Foundry Networks [email protected] Agenda 2 Why Load
LAB FOUR Dynamic Routing Protocols
LAB FOUR Dynamic Routing Protocols In the previous lab, you learned how to configure routing table entries manually. This was referred to as static routing. The topic of Lab 4 is dynamic routing, where
OSPF Configuring Multi-Area OSPF
OSPF Configuring Multi-Area OSPF Objective In this lab configure a multiarea OSPF operation, interarea summarization, external route summarization, and default routing. Scenario International Travel Agency
IPv6 First Hop Security Protecting Your IPv6 Access Network
IPv6 First Hop Security Protecting Your IPv6 Access Network What You Will Learn This paper provides a brief introduction to common security threats on IPv6 campus access networks and will explain the value
Implementing Cisco MPLS
Implementing Cisco MPLS Course MPLS v2.3; 5 Days, Instructor-led Course Description This design document is for the refresh of the Implementing Cisco MPLS (MPLS) v2.3 instructor-led training (ILT) course,
IMPLEMENTING CISCO MPLS V2.3 (MPLS)
IMPLEMENTING CISCO MPLS V2.3 (MPLS) COURSE OVERVIEW: The course will enable learners to gather information from the technology basics to advanced VPN configuration. The focus of the course is on VPN technology
You can probably work with decimal. binary numbers needed by the. Working with binary numbers is time- consuming & error-prone.
IP Addressing & Subnetting Made Easy Working with IP Addresses Introduction You can probably work with decimal numbers much easier than with the binary numbers needed by the computer. Working with binary
Virtual Leased Lines - Martini
Virtual Lease Lines - Martini Virtual Leased Lines - Martini Martini Drafts draft -martini-l2circuit-encap-mpls -04.txt defines the handling and encapsulation of layer two packets. draft -martini-l2circuit-trans-mpls
Notice the router names, as these are often used in MPLS terminology. The Customer Edge router a router that directly connects to a customer network.
Where MPLS part I explains the basics of labeling packets, it s not giving any advantage over normal routing, apart from faster table lookups. But extensions to MPLS allow for more. In this article I ll
Assignment #3 Routing and Network Analysis. CIS3210 Computer Networks. University of Guelph
Assignment #3 Routing and Network Analysis CIS3210 Computer Networks University of Guelph Part I Written (50%): 1. Given the network graph diagram above where the nodes represent routers and the weights
Implementing Object Tracking on Cisco IOS XR Software
Implementing Object Tracking on Cisco IOS XR Software This module describes the configuration of object tracking on your Cisco IOS XR network. For information about its application in IPSec, see Cisco
Document ID: 45741. Introduction
Products & Services 6bone Connection Using 6to4 Tunnels for IPv6 Document ID: 45741 Contents Introduction Prerequisites Requirements Components Used Conventions How 6to4 Tunnels Work Limitations of 6to4
How To Understand and Configure Your Network for IntraVUE
How To Understand and Configure Your Network for IntraVUE Summary This document attempts to standardize the methods used to configure Intrauve in situations where there is little or no understanding of
ICS 351: Today's plan
ICS 351: Today's plan Quiz, on overall Internet function, linux and IOS commands, network monitoring, protocols IPv4 addresses: network part and host part address masks IP interface configuration IPv6
Firewall Stateful Inspection of ICMP
The feature categorizes Internet Control Management Protocol Version 4 (ICMPv4) messages as either malicious or benign. The firewall uses stateful inspection to trust benign ICMPv4 messages that are generated
Lab 3.1.2 Creating a Logical Network Diagram
Lab 3.1.2 Creating a Logical Network Diagram Objectives Use router and switch commands to obtain information about an existing network. Use Cisco Network Assistant to obtain information about an existing
netkit lab Traffic Engineering with MPLS for Linux Version Author(s) F. Di Ciccio, F. Antonini (Kasko Networks S.r.l.)
netkit lab Traffic Engineering with for Linux Version Author(s) E-mail Web Description 1.1 F. Di Ciccio, F. Antonini (Kasko Networks S.r.l.) Reviewed by M. Rimondini (Roma Tre University) [email protected],
IOS NAT Load Balancing for Two ISP Connections
IOS NAT Load Balancing for Two ISP Connections Document ID: 100658 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations Verify Troubleshoot
Avaya ExpertNet Lite Assessment Tool
IP Telephony Contact Centers Mobility Services WHITE PAPER Avaya ExpertNet Lite Assessment Tool April 2005 avaya.com Table of Contents Overview... 1 Network Impact... 2 Network Paths... 2 Path Generation...
DESIGN AND VERIFICATION OF LSR OF THE MPLS NETWORK USING VHDL
IJVD: 3(1), 2012, pp. 15-20 DESIGN AND VERIFICATION OF LSR OF THE MPLS NETWORK USING VHDL Suvarna A. Jadhav 1 and U.L. Bombale 2 1,2 Department of Technology Shivaji university, Kolhapur, 1 E-mail: [email protected]
O 10.16.1.0/27 [110/129] via 192.168.1.5, 00:00:05, Serial0/0/1
1 Which two statements are true regarding the advantages of the use of static routes? (Choose increased security reduced effort in configuring routes the administrator maintains control over routing easier
MPLS. Cisco MPLS. Cisco Router Challenge 227. MPLS Introduction. The most up-to-date version of this test is at: http://networksims.com/i01.
MPLS Cisco MPLS MPLS Introduction The most up-to-date version of this test is at: http://networksims.com/i01.html Cisco Router Challenge 227 Outline This challenge involves basic frame-mode MPLS configuration.
Internetworking II: VPNs, MPLS, and Traffic Engineering
Internetworking II: VPNs, MPLS, and Traffic Engineering 3035/GZ01 Networked Systems Kyle Jamieson Lecture 10 Department of Computer Science University College London Taxonomy of communica@on networks Virtual
Lab - Using Wireshark to View Network Traffic
Topology Objectives Part 1: (Optional) Download and Install Wireshark Part 2: Capture and Analyze Local ICMP Data in Wireshark Start and stop data capture of ping traffic to local hosts. Locate the IP
Implementing MPLS VPN in Provider's IP Backbone Luyuan Fang [email protected] AT&T
Implementing MPLS VPN in Provider's IP Backbone Luyuan Fang [email protected] AT&T 1 Outline! BGP/MPLS VPN (RFC 2547bis)! Setting up LSP for VPN - Design Alternative Studies! Interworking of LDP / RSVP
Troubleshooting Bundles and Load Balancing
CHAPTER 5 This chapter explains the procedures for troubleshooting link bundles and load balancing on the Cisco ASR 9000 Aggregation Services Router. A link bundle is a group of ports that are bundled
RFC 2547bis: BGP/MPLS VPN Fundamentals
White Paper RFC 2547bis: BGP/MPLS VPN Fundamentals Chuck Semeria Marketing Engineer Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408 745 2001 or 888 JUNIPER www.juniper.net
Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials.
Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials. CHAPTER 5 OBJECTIVES Configure a router with an initial configuration. Use the
How To Configure InterVLAN Routing on Layer 3 Switches
How To Configure InterVLAN Routing on Layer 3 Switches Document ID: 41860 Contents Introduction Prerequisites Requirements Components Used Conventions Configure InterVLAN Routing Task Step by Step Instructions
Procedure: You can find the problem sheet on Drive D: of the lab PCs. Part 1: Router & Switch
University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 Lab. 2 Network Devices & Packet Tracer Objectives 1. To become familiar with
Network Simulator Lab Study Plan
The CCNA 640-802 Network Simulator has 300 lab exercises, organized both by type (Skill Builder, Configuration Scenario, Troubleshooting Scenario, and Subnetting Exercise) and by major topic within each
Implementing Cisco Service Provider Next-Generation Edge Network Services **Part of the CCNP Service Provider track**
Course: Duration: Price: $ 3,695.00 Learning Credits: 37 Certification: Implementing Cisco Service Provider Next-Generation Edge Network Services Implementing Cisco Service Provider Next-Generation Edge
Router and Routing Basics
Router and Routing Basics Malin Bornhager Halmstad University Session Number 2002, Svenska-CNAP Halmstad University 1 Routing Protocols and Concepts CCNA2 Routing and packet forwarding Static routing Dynamic
Fast Re-Route in IP/MPLS networks using Ericsson s IP Operating System
Fast Re-Route in IP/MPLS networks using s IP Operating System Introduction: Today, Internet routers employ several routing protocols to exchange routes. As a router learns its potential routes, it builds
Lab 3 Routing Information Protocol (RIPv1) on a Cisco Router Network
Lab 3 Routing Information Protocol (RIPv1) on a Cisco Router Network CMPE 150 Fall 2005 Introduction Today you are going to be thrown into using Cisco s Internetwork Operating System (IOS) to configure
