IP Routing Configuration in a Router with Troubleshooting

Size: px
Start display at page:

Download "IP Routing Configuration in a Router with Troubleshooting"

Transcription

1 International Journal of Electronics and Computer Science Engineering 93 Available Online at ISSN IP Routing Configuration in a Router with Troubleshooting 1 Gyan Prakash Pal, 2 Sadhana Pal, 3 Aradhana Jyotsana, 4 Satya Prakash 1 SIT, Meerut, 2 VIET, Greater Noida (U.P.), 3 Allahabad University, 4 VBS University Abstract- Today whole world is connected via internet for worldwide communication. Different network devices like router, switch, bridge, hub, server, multiplexer/demultiplexer and modem are used for communication. To connect different networks only routers are used to provide routes for packets of data from one network to another. To communicate between different networks, IP routing is must. This paper helps you to configure IP routing and bring-up an interface of a router and also troubleshoot the network connectivity between IP devices. In this paper CLI commands are used for configuration. Keywords: Routers, IP addresses, CLI commands. I. INTRODUCTION Routers are network layer devices; the network layer manages the device addressing and search the location of devices on the network to determine the best way to send data between devices that are not locally attached. Routers break up a broadcast domain, by default. Routers use logical addressing to provide packet switching and packet filtering by using an access list. When routers connect two or more networks together and use logical addressing (IPv4 or IPv6) is called internetwork. Routers use a routing table to make path selection and to forward packets to remote networks. When a packet is received on a router interface, the destination IP address is checked. If the destination IP address is not present in the same network, it will look up the destination network address in the routing table. Once the router chooses an exit interface, the packet will sent to that interface and sent out in the local network. If the router cannot find an address of the packet s destination network in the routing table, the router drops the packet. Two types of packets are used at the Network layer: Data Packets: Protocols used to support data traffic are called routed protocols; examples of routed protocols are IP and IPv6. Route update packets: Protocols that send route update packets are called routing protocols; examples of some common ones are RIP, RIPv2, EIGRP and OSPF. Route update packets are used to help build and maintain routing tables on each router. An example of a routing table is shown in figure (1). The routing table used in a router includes the following information:

2 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al E0 S0 S0 E Network Routing Table Inter face E S0 0 Metric Network Routing Table Inter face S S S E0 0 Figure1. Routing table used in a router Network Address: A router must maintain a routing table for individual routing protocols. it uses 32 bit network address to specify the port in a network. Interface: The exit interface which destined for a specific network. Metric: The distance to the remote network. Different routing protocols use different ways of computing this distance. The routing protocol RIP uses hop count (the number of routers a packet passes through a route to a remote network) for metric. Some other routing protocols use bandwidth, delay of the line and load for metric count. Metric II. CONFIGURING IP ROUTING We are going to configure a real network. Figure (2) shows three routers on different locations as Delhi, Mumbai and Chennai. You can give router name on the basis of location (or your choice); in this network same is used.

3 IP Routing Configuration in a Router with Troubleshooting Figure 2 Configuring IP routing Cisco 2800 Series routers are used in above figure. Command Line Interface (CLI) is used to configure the routers. Table 1 show the IP addresses, which are used to configure IP routing. Each network in the following table has a 24 bit subnet mask ( ) as a default mask for class B network. Table 1 Network Addressing for the IP Network Router Network Address Interface Address Delhi S0/2/ Delhi F0/ Delhi F0/ Mumbai S0/2/ Mumbai S0/2/ Mumbai F0/ Mumbai F0/ Chennai S0/0/ Chennai F0/ Chennai F0/ The router configuration is really a pretty straightforward process since you just need to add IP address to your interfaces and then perform a no shutdown on those same interfaces.

4 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al. 96 III. DELHI ROUTER CONFIGURATION You need to configure three interfaces to configure the Delhi router. Configure the host name of each router will make identification much easier. Also configure interface description, banner and router password. It s really good to make a habit of configuring these commands on every router. To get started, I performed an erase startup-configuration on the router and reloaded, so we will start in setup mode. I choose NO to enter setup mode, which will get us straight to the user-name prompt of the console, and configure with the help of CLI. Router#erase startup-config Erasing the nvram filesystem will remove all configuration files! Continue? [confirm] [OK] Erase of nvram: complete %SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram Router#reload Proceed with reload? [confirm] %SYS-5-RELOAD: Reload requested by console. Reload Reason: Reload Command. System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1) Copyright (c) 2000 by cisco Systems, Inc. cisco 2811 (MPC860) processor (revision 0x200) with 60416K/5120K bytes of memory Self decompressing the image : ########################################################################## [OK] Restricted Rights Legend Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c) of the Commercial Computer Software - Restricted Rights clause at FAR sec and subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS sec cisco Systems, Inc. 170 West Tasman Drive San Jose, California Cisco IOS Software, 2800 Software (C2800NM-IPBASE-M), Version 12.3(14)T7, RELEASE SOFTWARE (fc2) cisco 2811 (MPC860) processor (revision 0x200) with 60416K/5120K bytes of memory Processor board ID JAD05190MTZ ( ) M860 processor: part number 0, mask FastEthernet/IEEE interface(s) 8 Low-speed serial(sync/async) network interface(s) 239K bytes of non-volatile configuration memory K bytes of processor board System flash (Read/Write) Cisco IOS Software, 2800 Software (C2800NM-IPBASE-M), Version 12.3(14)T7, RELEASE SOFTWARE (fc2) Technical Support: Copyright (c) by Cisco Systems, Inc.

5 IP Routing Configuration in a Router with Troubleshooting Compiled Wed 22-Mar-06 18:40 by pt_team --- System Configuration Dialog --- Continue with configuration dialog? [yes/no]: no Press RETURN to get started! Router>en Router# Now you are in privileged-mode and configure the router. Router#config terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname Delhi Delhi(config)#enable secret Sana Delhi(config)#banner motd # Enter TEXT message. End with the character '#'. It's Gyan Prakash & Sadhana Company. If you are not an authorized person immedia tly Logout from the network. Thanks, Have a Nice Day. # Delhi(config)# Delhi(config)#interface serial0/2/0 Delhi(config-if)#ip address Delhi(config-if)#description WAN Connection to Mumbai Router. Delhi(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/2/0, changed state to down Delhi(config-if)#interface fastethernet 0/0 Delhi(config-if)#ip address Delhi(config-if)#description LAN Connection to PC0. Delhi(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up Delhi(config-if)#interface fastethernet 0/1 Delhi(config-if)#ip address Delhi(config-if)#description LAN Connection to PC1. Delhi(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up Delhi(config-if)#line console 0 Delhi(config-line)#password Sana Delhi(config-line)#login Delhi(config)#line vty 0?

6 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al. 98 <1-15> Last Line number <cr> Delhi(config)#line vty 0 15 Delhi(config-line)#password Sana Delhi(config-line)#login Delhi(config-line)#exit Delhi(config)#^Z %SYS-5-CONFIG_I: Configured from console by console Delhi#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] Delhi# To view the IP routing table created on a Cisco router, use the command show ip route. The command output is shown as follows: Delhi#sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set /24 is subnetted, 2 subnets C is directly connected, FastEthernet0/0 C is directly connected, FastEthernet0/1 Delhi# It s important to remember that only configured, directly connected networks are going to show up in the routing table. That s why only Fast Ethernet 0/0 and Fast Ethernet 0/1 are showing up. You can see the serial interfaces come up when the other side of the serial links will be operational. Delhi#config t Enter configuration commands, one per line. End with CNTL/Z. Delhi(config)#interface serial 0/2/0 Delhi(config-if)#bandwidth? < > Bandwidth in kilobits Delhi(config-if)#bandwidth 64

7 IP Routing Configuration in a Router with Troubleshooting Delhi(config-if)#^Z %SYS-5-CONFIG_I: Configured from console by console Delhi#sh controllers serial 0/2/0 Interface Serial0/2/0 Hardware is PowerQUICC MPC860 DTE V.35 TX and RX clocks detected IV. MUMBAI ROUTER CONFIGURATION First we erase the startup-configuration and reload the router. Router>en Router#erase startup-config Erasing the nvram filesystem will remove all configuration files! Continue? [confirm] [OK] Erase of nvram: complete %SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram Router#reload Proceed with reload? [confirm][enter] [Outputs cut] --- System Configuration Dialog --- Continue with configuration dialog? [yes/no]: no Press RETURN to get started! Router>en Router# Now we can start to configure the router. Router#config terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname Mumbai Mumbai(config)#enable secret Sana Mumbai(config)#interface serial0/2/0 Mumbai(config-if)#ip address Mumbai(config-if)#description WAN Connection to Delhi Router. Mumbai(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/2/0, changed state to up Mumbai(config-if)#interface serial0/2/1 Mumbai(config-if)#ip address Mumbai(config-if)#description WAN Connection to Chennai Router. Mumbai(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/2/1, changed state to down

8 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al. 100 Mumbai(config-if)#interface fastethernet 0/0 Mumbai(config-if)#ip address Mumbai(config-if)#description LAN Connection to PC2. Mumbai(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up Mumbai(config-if)#interface fastethernet 0/1 Mumbai(config-if)#ip address Mumbai(config-if)#description LAN Connection to PC3. Mumbai(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up Mumbai(config-if)#line console 0 Mumbai(config-line)#password Sana Mumbai(config-line)#login Mumbai(config)#line vty 0? <1-15> Last Line number <cr> Mumbai(config)#line vty 0 15 Mumbai(config-line)#password Sana Mumbai(config-line)#login Mumbai(config-line)#exit Mumbai(config)#banner motd # Enter TEXT message. End with the character '#'. It's Gyan Prakash & Sadhana Company. If you are not an authorized person immediatly Logout from the network. Thanks, Have a Nice Day. # Mumbai(config)#^Z %SYS-5-CONFIG_I: Configured from console by console Mumbai#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] Mumbai# To view the IP routing table created on a Cisco router, use the command show ip route. The command output is shown as follows: Mumbai#sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

9 IP Routing Configuration in a Router with Troubleshooting * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set /24 is subnetted, 2 subnets C is directly connected, FastEthernet0/0 C is directly connected, FastEthernet0/1 Mumbai# The Mumbai serial interface 0/2/0 and Serial 0/2/0 both are a DCE connection, which need to add the clock rate command to the interface. Mumbai(config)#int serial0/2/0 Mumbai(config-if)#clock rate? Speed (bits per second < > Choose clockrate from list above Mumbai(config-if)#clock rate Mumbai(config-if)# %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/2/0, changed state to up Mumbai(config-if)#bandwidth? < > Bandwidth in kilobits Mumbai(config-if)#bandwidth 64 Mumbai(config)#int serial0/2/1 Mumbai(config-if)#clock rate Mumbai(config-if)#bandwidth 64 Mumbai(config-if)#^Z %SYS-5-CONFIG_I: Configured from console by console

10 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al. 102 Mumbai#sh controllers serial 0/2/0 Interface Serial0/2/0 Hardware is PowerQUICC MPC860 DCE V.35, clock rate Mumbai#sh controllers serial 0/2/1 Interface Serial0/2/1 Hardware is PowerQUICC MPC860 DCE V.35, clock rate V. CHENNAI ROUTER CONFIGURATION First we erase the startup-configuration and reload the router. Router>en Router#erase startup-config Erasing the nvram filesystem will remove all configuration files! Continue? [confirm] [OK] Erase of nvram: complete %SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram Router#reload Proceed with reload? [confirm][enter] [Outputs cut] --- System Configuration Dialog --- Continue with configuration dialog? [yes/no]: no Press RETURN to get started! Router>en Router# Now we can start to configure the router. Router#config terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname Chennai Chennai(config)#enable secret Sana Chennai(config)#interface serial0/0/0 Chennai(config-if)#ip address Chennai(config-if)#description WAN Connection to Mumbai Router. Chennai(config-if)#no shutdown %LINK-5-CHANGED: Interface Serial0/0/0, changed state to up Chennai(config-if)# %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up Chennai(config-if)#interface fastethernet 0/1 Chennai(config-if)#ip address

11 IP Routing Configuration in a Router with Troubleshooting Chennai(config-if)#description LAN Connection to PC4. Chennai(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up Chennai(config-if)#interface fastethernet 0/0 Chennai(config-if)#ip address Chennai(config-if)#description LAN Connection to PC5. Chennai(config-if)#no shutdown %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up Chennai(config-if)#line console 0 Chennai(config-line)#password Sana Chennai(config-line)#login Chennai(config-line)#line vty 0? % Unrecognized command Chennai(config-line)#exit Chennai(config)#line vty 0? <1-15> Last Line number <cr> Chennai(config)#line vty 0 15 Chennai(config-line)#password Sana Chennai(config-line)#login Chennai(config-line)#exit Chennai(config)#banner motd # Enter TEXT message. End with the character '#'. It's network of Gyan Prakash & Sadhana Company. If you are not an authorized person immediatly Logout from the network. Thanks, Have a Nice Day. # Chennai(config)# Chennai(config)#^Z %SYS-5-CONFIG_I: Configured from console by console Chennai#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] Chennai# To view the IP routing table created on a Cisco router, use the command show ip route. The command output is shown as follows: Chennai#sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

12 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al. 104 N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set /24 is subnetted, 3 subnets C is directly connected, Serial0/0/0 C is directly connected, FastEthernet0/1 C is directly connected, FastEthernet0/0 Chennai# Chennai#config t Enter configuration commands, one per line. End with CNTL/Z. Chennai(config)#interface serial 0/0/0 Chennai(config-if)#bandwidth 64 Chennai(config-if)#^Z %SYS-5-CONFIG_I: Configured from console by console Chennai#sh controllers serial 0/0/0 Interface Serial0/0/0 Hardware is PowerQUICC MPC860 DTE V.35 TX and RX clocks detected Let s take a look at our configuration of the interfaces. User Access Verification Password: Delhi>en Password: Delhi#sh protocols Global values: Internet Protocol routing is enabled FastEthernet0/0 is up, line protocol is up Internet address is /24 FastEthernet0/1 is up, line protocol is up Internet address is /24 Serial0/0/0 is administratively down, line protocol is down Serial0/0/1 is administratively down, line protocol is down Serial0/2/0 is up, line protocol is up Internet address is /24 FastEthernet1/0 is administratively down, line protocol is down FastEthernet1/1 is administratively down, line protocol is down Vlan1 is administratively down, line protocol is down Delhi# User Access Verification

13 IP Routing Configuration in a Router with Troubleshooting Password: Mumbai>en Password: Mumbai#sh protocols Global values: Internet Protocol routing is enabled FastEthernet0/0 is up, line protocol is up Internet address is /24 FastEthernet0/1 is up, line protocol is up Internet address is /24 Serial0/0/0 is administratively down, line protocol is down Serial0/0/1 is administratively down, line protocol is down Serial0/2/0 is up, line protocol is up Internet address is /24 Serial0/2/1 is up, line protocol is up Internet address is /24 FastEthernet1/0 is administratively down, line protocol is down FastEthernet1/1 is administratively down, line protocol is down Vlan1 is administratively down, line protocol is down Mumbai# Chennai#sh protocols Global values: Internet Protocol routing is enabled FastEthernet0/0 is up, line protocol is up Internet address is /24 FastEthernet0/1 is up, line protocol is up Internet address is /24 Serial0/0/0 is up, line protocol is up Internet address is /24 Serial0/0/1 is administratively down, line protocol is down Serial0/1/0 is administratively down, line protocol is down FastEthernet1/0 is administratively down, line protocol is down FastEthernet1/1 is administratively down, line protocol is down Vlan1 is administratively down, line protocol is down Chennai# Now we can check the brief summary of router interfaces.

14 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al. 106 Mumbai# sh ip inter bri Interface IP-Address OK? Method Status Protocol FastEthernet0/ YES manual up FastEthernet0/ YES manual up up up Serial0/0/0 unassigned YES manual administratively down down Serial0/0/1 unassigned YES manual administratively down down Serial0/2/ YES manual up up Serial0/2/ YES manual up up FastEthernet1/0 unassigned YES manual administratively down down FastEthernet1/1 unassigned YES manual administratively down down Vlan1 unassigned YES manual administratively down down Mumbai# The show ip route command displays the following: Mumbai#sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set /24 is subnetted, 4 subnets C is directly connected, Serial0/2/0 C is directly connected, Serial0/2/1 C is directly connected, FastEthernet0/0 C is directly connected, FastEthernet0/1 Mumbai#

15 IP Routing Configuration in a Router with Troubleshooting We have checked the proper router configuration with the help of show protocols, show ip interface brief and sh ip route commands.so now we will check the IP network connectivity between two routers through ping response by sending IP packets.ping to the Mumbai router from Delhi router. Delhi#ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/45/56 ms In the above example Delhi router sent 5 IP packets and Mumbai router received all 5 packets, so network connectivity between both routers is ok. VI. CONCLUSION To make a live network, it is must to configure the router hostname, passwords, message of the day (motd), interfaces, IP addresses, descriptions, clock rate, bandwidth etc. But no shutdown command is must to bring up an interface otherwise interface will show administratively down. After complete configuration you should check the network connectivity between two routers by ping response. In this paper a small network has shown and if you configure this network, then you are able to configure a big network, using more routers and same configuration commands. VII- REFERENCES [1] S. Keshav and R. Sharma, Issues and Trends in Router Design, IEEE Communications Magazine, vol. 36 no. 5, pp , May [2] Perlman, R. Interconnection: Bridges, Routers, Switches and Internetworking Protocols. Reading, MA: Addison-Wesley, [3] S. Halabi and D. McPherson, Internet Routing Architectures. Cisco Press, second ed., [4] Yuan R. and Strayer, W. Virtual Private Network. Reading, MA: Addison-Wesley, [5] L. Kleinrock and F. Kamoun. Hierarchical routing for large networks: Performance evaluation and optimization. Computer Networks, Vol. 1, pp [6] M. Grossglauser and J. Rexford,.Passive traffic measurement for IP operations,in The Internet as a Large-Scale Complex System, Oxford University Press. [7] S. Halabi and D. McPherson, Internet Routing Architectures. Cisco Press, second ed., [8] A. Feldmann, A. Greenberg, C. Lund, N. Reingold, and J. Rexford,.NetScope: Traffic engineering for IP networks. IEEE Network Magazine, pp , March [9] B. Fortz and M. Thorup,.Internet traffic engineering by optimizing OSPF weights,. in Proc. IEEE INFOCOM, March [10] B. Fortz and M. Thorup,.Optimizing OSPF/IS-IS weights in a changing Selected Areas in Communications, vol. 20, pp , May [11] D. O. Awduche,.MPLS and traffic engineering in IP networks,. IEEE Communication Magazine, pp , December [12] P. Newman, T. Lyon, and G. Minshall, Flow Labelled IP: A Connectionless Approach to ATM, Proc IEEE Infocom 96, San Francisco, CA, March 1996, pp [13] A. Bianco, R. Birke, Control and management plane in a multi-stage software router architecture, High Performance Switching and Routing, pp , May [14] C. Huitema, Routing in the Internet, Prentice Hall, [15] V. Fuller et al. Classless Inter-Domain Routing, IETF RFC 1519, Jun [16] D.C. Feldmeier, Improving Gateway Performance with a Routing-Table Cache, Proc. IEEE Infocom 88, New Orleans, LI, Mar

16 IJECSE,Volume1,Number 1 Gyan Prakash Pal et al. 108 [17] M. Zitterbart et al., HeaRT: High Performance Routing Table Lookup, 4th IEEE Workshop on Architecture & Implementation of High Performance Communications Subsystems, Thessaloniki, Greece, Jun [18] P. Gupta, S. Lin, and N. McKeown, Routing Lookups in Hardware at Memory Access Speeds, Proc. IEEE Infocom 98, Mar [19] E. Perkins and K. Y. Wang, Optimized Smooth Handoffs in Mobile IP. Proceedings of the IEEE Symposium on Computers and Communications, Red Sea, Egypt, June [20] D. Stiliadis and A. Verma, Providing Bandwidth Guarantees in an Input-Buffered Crossbar Switch, Proc. IEEE Infocom 95, 1995, pp [21] P. Marimuthu, I. Viniotis, and T. L. Sheu, A Parallel Router Architecture for High Speed LAN Internetworking, 17th IEEE Conf. on Local Computer Networks, Minneapolis, Minnesota, Sept

FIRST BOOT OF THE ROUTER & STORING ITS CONFIGURATION

FIRST BOOT OF THE ROUTER & STORING ITS CONFIGURATION Volume Issue pp 008-003 March 202 www. ijsret.org ISSN 2278-0882 FIRST BOOT OF THE ROUTER & STORING ITS CONFIGURATION Gyan Prakash Pal Faculty of Electronics & Communication Engineering Department, Shanti

More information

TELECOMMUNICATION MANAGEMENT AND NETWORKS

TELECOMMUNICATION MANAGEMENT AND NETWORKS QUAID-E-AWAM UNIVERSITY OF ENGINEERING SCIENCE AND TECHNOLOGY, NAWABSHAH TELECOMMUNICATION MANAGEMENT AND NETWORKS LAB # 3 CONFIGURING INTERFACES OF ROUTER AND SWITCH Topology Diagram Addressing Table

More information

KIM DONNERBORG / RTS. Cisco Lab Øvelse Af Kim Donnerborg / RTS. Side 0 af 8

KIM DONNERBORG / RTS. Cisco Lab Øvelse Af Kim Donnerborg / RTS. Side 0 af 8 KIM DONNERBORG / RTS Side 0 af 8 INDHOLDSFORTEGNELSE Lab: Basic Router Configuration... 2 Topology Diagram... 2 Addressing Table... 2 Learning Objectives... 2 Scenario... 2 Task 1: Cable the Network....

More information

Chapter 6: Network Layer

Chapter 6: Network Layer Chapter 6: Network Layer Introduction to Networks Intro to Networks v5 Network Layer Intro to Networks v5 2 The Network Layer End to End Transport processes Addressing end devices Encapsulation of Packets

More information

Lab Configuring OSPF Timers 2500 Series

Lab Configuring OSPF Timers 2500 Series Lab 2.3.5 Configuring OSPF Timers 2500 Series 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

Lab Configuring OSPF Authentication 2500 Series

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

More information

Module 9, Assignment 7

Module 9, Assignment 7 Module 9, Assignment 7 7.2.3 Control Router via Console (in Packet Tracer) 1. Prepare a Cisco 1841 Router (see figure 6-9). 2. Prepare a PC for administration. 3. Prepare a console cable and plug the serial

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

Password Recovery Procedure for the Cisco 1700 and 1800 Series Routers

Password Recovery Procedure for the Cisco 1700 and 1800 Series Routers Password Recovery Procedure for the Cisco 1700 and 1800 Series Routers Document ID: 22187 Introduction Prerequisites Requirements Components Used Related Products Conventions Step by Step Procedure Example

More information

co Password Recovery Procedure for the Cisco 1700 Series R

co Password Recovery Procedure for the Cisco 1700 Series R co Password Recovery Procedure for the Cisco 1700 Series R Table of Contents Password Recovery Procedure for the Cisco 1700 Series Routers...1 Introduction...1 Before You Begin...2 Conventions...2 Prerequisites...2

More information

Lab VTY Restriction Instructor Version 2500

Lab VTY Restriction Instructor Version 2500 Lab 11.2.6 VTY Restriction Instructor Version 2500 NOTE: The loopback entry in this graphic is not required in the lab. Objective Scenario Use the access-class and line commands to control Telnet access

More information

Lab Configuring IGRP Instructor Version 2500

Lab Configuring IGRP Instructor Version 2500 Lab 7.3.5 Configuring IGRP Instructor Version 2500 Objective Setup IP an addressing scheme using class C networks. Configure IGRP on routers. Background/Preparation Cable a network similar to the one in

More information

Building the Routing Table. Introducing the Routing Table Directly Connected Networks Static Routing Dynamic Routing Routing Table Principles

Building the Routing Table. Introducing the Routing Table Directly Connected Networks Static Routing Dynamic Routing Routing Table Principles Building the Routing Table Introducing the Routing Table Directly Connected Networks Static Routing Dynamic Routing Routing Table Principles Introducing the Routing Table R1# show ip route Codes: C - connected,

More information

Password Recovery Procedure for the Cisco 3600 and 3800 Series Routers

Password Recovery Procedure for the Cisco 3600 and 3800 Series Routers Password Recovery Procedure for the Cisco 3600 and 3800 Series Routers Document ID: 22189 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions Step by Step Procedure

More information

Table of Contents. Cisco Password Recovery Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, 7000 (RP), AGS, IGS, STS

Table of Contents. Cisco Password Recovery Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, 7000 (RP), AGS, IGS, STS ry Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, , IGS, STS Table of Contents Password Recovery Procedure for the Cisco 2000, 2500, 3000, 4000, AccessPro, 7000 (RP), AGS, IGS, STS 10x...1

More information

outing and Switching Elective : Le

outing and Switching Elective : Le Routing and Switching Elective : Lecture Notes Nepal Engineering College Compiled by: Junior Professor: Daya Ram Budhathoki Nepal Engineering college, Changunarayan Chapters covered: Cabling Router Configuration

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

Lab 1.1.4c Configuring Static NAT Addresses

Lab 1.1.4c Configuring Static NAT Addresses Lab 1.1.4c Configuring Static NAT Addresses Objective Configure a router to use network address translation (NAT) to convert internal IP addresses, typically private addresses, into outside public addresses.

More information

Password Recovery Procedure for the Catalyst 5500 Supervi

Password Recovery Procedure for the Catalyst 5500 Supervi Password Recovery Procedure for the Catalyst 5500 Supervi Table of Contents Password Recovery Procedure...1 for the Catalyst 5500 Supervisor RSFC...1 Introduction...1 Before You Begin...1 Conventions...1

More information

Lab Troubleshooting Routing Issues with show ip route and show ip protocols Instructor Version 2500

Lab Troubleshooting Routing Issues with show ip route and show ip protocols Instructor Version 2500 Lab 9.3.5 Troubleshooting Routing Issues with show ip route and show ip protocols Instructor Version 2500 Objective Use the show ip route and show ip protocol commands to diagnose a routing configuration

More information

Packet Tracer - Connect a Router to a LAN (Instructor Version)

Packet Tracer - Connect a Router to a LAN (Instructor Version) (Instructor Version) Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only. Topology Addressing Table Device Interface IP Address Subnet Mask Default

More information

Lab 1.1.4a Configuring NAT

Lab 1.1.4a Configuring NAT Lab 1.1.4a Configuring NAT Objective Configure a router to use network address translation (NAT) to convert internal IP addresses, typically private addresses, into outside public addresses. Background/Preparation

More information

LAB MANUAL for Computer Network

LAB MANUAL for Computer Network LAB MANUAL for Computer Network CSE-310 F Computer Network Lab L T P - - 3 Class Work : 25 Marks Exam : 25 MARKS Total : 50 Marks This course provides students with hands on training regarding the design,

More information

Lab b Simple DMZ Extended Access Lists Instructor Version 2500

Lab b Simple DMZ Extended Access Lists Instructor Version 2500 Lab 11.2.3b Simple DMZ Extended Access Lists Instructor Version 2500 Objective In this lab, the use of extended access lists to create a simple DeMilitarized Zone (DMZ) will be learned. 372-833 CCNA 2:

More information

Password Recovery Procedure for the Cisco 1900 Series Integrated Services Routers

Password Recovery Procedure for the Cisco 1900 Series Integrated Services Routers Password Recovery Procedure for the Cisco 1900 Series Integrated Services Routers Document ID: 112058 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions Step

More information

Lab Catalyst 2950T and 3550 Series Basic Setup

Lab Catalyst 2950T and 3550 Series Basic Setup Lab 1.2.9.1 Catalyst 2950T and 3550 Series Basic Setup Objective Configure a Cisco Catalyst 2950T or 3550 series Ethernet switch for the first time using the command-line interface (CLI) mode. Basic first

More information

Lab Troubleshooting Routing Issues with debug Instructor Version 2500

Lab Troubleshooting Routing Issues with debug Instructor Version 2500 Lab 9.3.7 Troubleshooting Routing Issues with debug Instructor Version 2500 Objective Utilize a systematic OSI troubleshooting process to diagnose routing problems. Use various show commands to gather

More information

SEMESTER 2 Chapter 1 Planning and Cabling a Network V 4.0

SEMESTER 2 Chapter 1 Planning and Cabling a Network V 4.0 SEMESTER 2 Chapter 1 Planning and Cabling a Network V 4.0 135 points 1.1.1 What are the common components between a router and other computers? CPU RAM ROM Operating System 1.1.1.2 What does a router connect?

More information

Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers

Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers Document ID: 12732 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions

More information

Lab Managing IOS Images with TFTP Instructor Version 2500

Lab Managing IOS Images with TFTP Instructor Version 2500 Lab 5.2.5 Managing IOS Images with TFTP Instructor Version 2500 Objective Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on

More information

Configure Initial Router Settings on Cisco 4000 Series ISRs

Configure Initial Router Settings on Cisco 4000 Series ISRs Configure Initial Router Settings on Cisco 4000 Series ISRs This chapter describes how to perform the initial configuration on Cisco 4000 Series Integrated Services Routers (ISRs). It contains the following

More information

No Service Password-Recovery

No Service Password-Recovery No Service Password-Recovery Last Updated: January 18, 2012 The No Service Password-Recovery feature is a security enhancement that prevents anyone with console access from accessing the router configuration

More information

Lab: Basic Static Route Configuration

Lab: Basic Static Route Configuration Lab: Basic Static Route onfiguration 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

More information

Lab Verifying NAT and PAT Configuration

Lab Verifying NAT and PAT Configuration Lab 1.1.5 Verifying NAT and PAT Configuration Objective Configure a router for Network Address Translation (NAT) and Port Address Translation (PAT) Test the configuration and verify NAT/PAT statistics

More information

Shooting Trouble with IP

Shooting Trouble with IP C H A P T E R 3 Shooting Trouble with IP This chapter focuses on a number of objectives falling under the CCNP Troubleshooting guidelines. Understanding basic TCP/IP troubleshooting principles not only

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

CCNA Explorer 1 Chapter 11 Configuring & Testing Your Network

CCNA Explorer 1 Chapter 11 Configuring & Testing Your Network CCNA Explorer 1 Chapter 11 Configuring & Testing Your Network 11.1.1 What is the system software in Cisco devices? The Cisco IOS provides devices with what network services? How is the IOS generally accessed?

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

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

Lab - Troubleshooting Connectivity Issues

Lab - Troubleshooting Connectivity Issues Lab - Troubleshooting Connectivity Issues Topology Addressing Table R1 ISP Objectives Device Interface IP Address Subnet Mask Default Gateway G0/1 192.168.1.1 255.255.255.0 N/A S0/0/0 10.1.1.1 255.255.255.252

More information

Lab 4.2.5a Connectivity Tests Ping

Lab 4.2.5a Connectivity Tests Ping Lab 4.2.5a Connectivity Tests Ping Objective Use the ping command to send ICMP datagrams to target host. Verify that the network layer between source and destination is working properly. Retrieve information

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 2: Routers

More information

Lab Configuring Static Routes Instructor Version 2500

Lab Configuring Static Routes Instructor Version 2500 Lab 6.1.6 Configuring Static Routes Instructor Version 2500 Objective Configure static routes between routers to allow data transfer between routers without the use of dynamic routing protocols. Background/Preparation

More information

STUDENT LAB GUIDE CCNA ( )

STUDENT LAB GUIDE CCNA ( ) STUDENT LAB GUIDE CCNA (640-802) Developed By, Router Infotech Career Academy LAB: 09 Static Route Configuration Objective: To configure & implement Static Route successfully on said devices and test its

More information

Introduction To Cisco IOS

Introduction To Cisco IOS S SRS CNS Lab2 IntroductionToCiscoIOS IntroductionToCiscoIOS 1 RouterArchitecture Ciscoroutershavemanysimilaritieswithpersonalcomputers.Afterall,mostoperating systems offer basic routing features to any

More information

CCNA Layer 2 switching. Revision no.: PPT/2K605/03

CCNA Layer 2 switching. Revision no.: PPT/2K605/03 CCNA 640-801 Layer 2 switching Revision no.: PPT/2K605/03 What is Switching? It breaks the Collision Domain It takes the packet and forwards to destined port without any modification. Network still remains

More information

Distance vector Routing protocols. 2000, Cisco Systems, Inc. 9-1

Distance vector Routing protocols. 2000, Cisco Systems, Inc. 9-1 Distance vector Routing protocols 2000, Cisco Systems, Inc. 9-1 IP Routing Configuration Tasks Router configuration Select routing protocols Specify networks or interfaces RIP Network 172.16.0.0 IGRP,

More information

Using the setup Command Facility

Using the setup Command Facility CHAPTER 2 This chapter describes how to use the setup command facility to configure your Cisco integrated access device (IAD). The setup command facility prompts you to enter information needed to start

More information

Lab 6.2.7a Managing Switch Operating System Files 2900XL Series

Lab 6.2.7a Managing Switch Operating System Files 2900XL Series Lab 6.2.7a Managing Switch Operating System Files 2900XL Series Objective Create and verify a basic switch configuration. Backup the switch IOS to a TFTP server and then restore it. Background/Preparation

More information

Lab Configuring and Verifying Standard IPv4 ACLs Topology

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

More information

Chapter 8 Lab 8-3, Configuring 6to4 Tunnels

Chapter 8 Lab 8-3, Configuring 6to4 Tunnels Chapter 8 Lab 8-3, Configuring 6to4 Tunnels Topology Objectives Configure EIGRP for IPv4. Create a 6to4 tunnel. Configure static IPv6 routes. Background In this lab, you configure EIGRP for full connectivity

More information

Lab 3.5.1: Basic Frame Relay

Lab 3.5.1: Basic Frame Relay Lab 3.5.1: Basic Frame Relay Topology Diagram Addressing Table Device Interface IP Address Subnet Mask R1 R2 Default Gateway Fa0/0 192.168.10.1 255.255.255.0 N/A S0/0/1 10.1.1.1 255.255.255.252 N/A S0/0/1

More information

How to Configure a Cisco Router Behind a Non-Cisco Cable Modem

How to Configure a Cisco Router Behind a Non-Cisco Cable Modem How to Configure a Cisco Router Behind a Non-Cisco Cable Modem Document ID: 19268 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations Verify

More information

Lab 5: Inter-VLANs Routing

Lab 5: Inter-VLANs Routing Lab 5: Inter-VLANs Routing Network Topology:- Device Interface IP Address Subnet Mask Gateway/Clock Rate Fa 0/0.10 10.5.0.1 255.255.255.192 ----- R1 Fa 0/0.20 10.6.0.1 255.255.255.192 ----- Fa 0/0.30 10.10.0.1

More information

Lab Configuring Per-Interface Inter-VLAN Routing (Solution)

Lab Configuring Per-Interface Inter-VLAN Routing (Solution) (Solution) Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/0 192.168.20.1 255.255.255.0 N/A G0/1 192.168.10.1 255.255.255.0 N/A S1 VLAN 10 192.168.10.11

More information

Lab 6.4.1: Basic Inter-VLAN Routing

Lab 6.4.1: Basic Inter-VLAN Routing Topology Diagram Addressing Table Device (Hostname) Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 172.17.99.11 255.255.255.0 172.17.99.1 S2 VLAN 99 172.17.99.12 255.255.255.0 172.17.99.1

More information

Using the Setup Script

Using the Setup Script APPENDIX A Using the Setup Script The information herein applies to the Cisco AS5350, Cisco AS5400, and Cisco AS5400HPX universal gateways that the latter requires use of Cisco IOS release 122(2)XB or

More information

o Password Recovery Procedure for the Catalyst 6000 MSFC

o Password Recovery Procedure for the Catalyst 6000 MSFC o Password Recovery Procedure for the Catalyst 6000 MSFC Table of Contents Password Recovery Procedure...1 for the Catalyst 6000 MSFCI/MSFCII...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1

More information

ord Recovery Procedure for the Cisco Catalyst 8510 Multiserv

ord Recovery Procedure for the Cisco Catalyst 8510 Multiserv ord Recovery Procedure for the Cisco Catalyst 8510 Multiserv Table of Contents Password Recovery Procedure for the Cisco Catalyst 8510 Multiservice Switch Router...1 Introduction...1 Before You Begin...1

More information

Lab Configuring Per-Interface Inter-VLAN Routing (Instructor Version)

Lab Configuring Per-Interface Inter-VLAN Routing (Instructor Version) (Instructor Version) Instructor Note: Red font color or Gray highlights indicate text that appears in the instructor copy only. Topology Addressing Table Objectives Device Interface IP Address Subnet Mask

More information

Lab Configuring Router Passwords. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode

Lab Configuring Router Passwords. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode Lab 3.1.3 Configuring Router Passwords Objective Configure a password for console login to user EXEC mode. Configure a password for virtual terminal (Telnet) sessions. Configure a secret password for privileged

More information

Antonio Cianfrani. Packet Tracer

Antonio Cianfrani. Packet Tracer Antonio Cianfrani Packet Tracer Packet Tracer (1/2) Packet Tracer? Cisco Packet Tracer is a software able to emulate CISCO networking devices. Packet Tracer features: Allows to create network topologies

More information

Lab Routing Between an External Router and an Internal Route Processor

Lab Routing Between an External Router and an Internal Route Processor Lab 5.3.4.2 Routing Between an External Router and an Internal Route Processor Objective Scenario The purpose of this lab is to configure routing between an internal route processor and an external router.

More information

Lab Configuring Basic Router Settings with IOS CLI (Instructor Version Optional Lab)

Lab Configuring Basic Router Settings with IOS CLI (Instructor Version Optional Lab) (Instructor Version Optional Lab) Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only. Optional activities are designed to enhance understanding and/or

More information

PT Activity 2.5.1: Basic Switch Configuration

PT Activity 2.5.1: Basic Switch Configuration Topology NOTE TO USER: This activity is a variation of Lab 2.5.1. Packet Tracer may not support all the tasks specified in the hands-on lab. This activity should not be considered equivalent to completing

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 3: Basic Device Configuration

Lab 3: Basic Device Configuration Lab 3: Basic Device Configuration University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 2 Lab 3: Basic Device Configuration **Given

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

Basic Router Configuration

Basic Router Configuration This section includes information about some basic router configuration, and contains the following sections: Default Configuration, on page 1 Configuring Global Parameters, on page 2 Configuring Gigabit

More information

Lab Troubleshooting Using traceroute Instructor Version 2500

Lab Troubleshooting Using traceroute Instructor Version 2500 Lab 9.3.4 Troubleshooting Using traceroute Instructor Version 2500 294-833 CCNA 2: Routers and Routing Basics v 3.1 - Lab 9.3.4 Copyright 2003, Cisco Systems, Inc. Objective Use the traceroute Cisco IOS

More information

Chapter 5 RIP version 1

Chapter 5 RIP version 1 Cisco CCNA 2 Exploration - Routing Chapter 5 RIP version 1 João José jjose@ualg.pt http://w3.ualg.pt/~jjose/cisco/ Based on: Graziani, R. (2008) CIS 82 Routing Theory and Concepts RIPv1: A Distance Vector,

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

RealCiscoLAB.com. Chapter 6 Lab 6-2, Using the AS_PATH Attribute. Topology. Objectives. Background. CCNPv6 ROUTE

RealCiscoLAB.com. Chapter 6 Lab 6-2, Using the AS_PATH Attribute. Topology. Objectives. Background. CCNPv6 ROUTE RealCiscoLAB.com CCNPv6 ROUTE Chapter 6 Lab 6-2, Using the AS_PATH Attribute Topology Objectives Background Use BGP commands to prevent private AS numbers from being advertised to the outside world. Use

More information

Lab Configuring and Verifying Standard IPv4 ACLs (Instructor Version Optional Lab)

Lab Configuring and Verifying Standard IPv4 ACLs (Instructor Version Optional Lab) (Instructor Version Optional Lab) Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only. Optional activities are designed to enhance understanding and/or

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 5.2.6b Managing IOS Images with ROMmon and Xmodem Instructor Version 2500

Lab 5.2.6b Managing IOS Images with ROMmon and Xmodem Instructor Version 2500 Lab 5.2.6b Managing IOS Images with ROMmon and Xmodem Instructor Version 2500 Objective Recover a Cisco router stuck in ROM monitor (ROMmon) mode. Learn how to avoid having to use Xmodem to restore an

More information

Lab Configuring a Serial Interface

Lab Configuring a Serial Interface Lab 3.1.5 Configuring a Serial Interface Objective Configure a serial interface on each of two routers so they can communicate. Background/Preparation Any router that meets the interface requirements may

More information

Lab Catalyst 2950 and 3550 Series Intra-VLAN Security

Lab Catalyst 2950 and 3550 Series Intra-VLAN Security Lab 7.2.5.1 Catalyst 2950 and 3550 Series Intra-VLAN Security Objective Scenario Configure intra-vlan security with Access Control Lists (ACLs) using the command-line interface (CLI) mode. This lab will

More information

Layer3 VPN with OSPF Protocol between CE-PE

Layer3 VPN with OSPF Protocol between CE-PE MPLS Layer3 VPN with OSPF Protocol between CE-PE Disclaimer This Configuration Guide is designed to assist members to enhance their skills in particular technology area. While every effort has been made

More information

Replace Supervisor Module in Cisco Catalyst 6500 Virtual Switching System 1440

Replace Supervisor Module in Cisco Catalyst 6500 Virtual Switching System 1440 Replace Supervisor Module in Cisco Catalyst 6500 Virtual Switching System 1440 Document ID: 109334 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram

More information

Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED

Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED Topology Objectives Background For IBGP peers to correctly exchange routing information, use the next-hop-self command with

More information

Lab Troubleshooting IP Address Issues Instructor Version 2500

Lab Troubleshooting IP Address Issues Instructor Version 2500 Lab 4.2.6 Troubleshooting IP Address Issues Instructor Version 2500 Objective Configure two routers and two workstations in a small WAN. Troubleshoot problems introduced by incorrect configurations. Background/Preparation

More information

Chapter 7 Lab 7-1, Configuring BGP with Default Routing

Chapter 7 Lab 7-1, Configuring BGP with Default Routing Chapter 7 Topology Objectives Configure BGP to exchange routing information with two ISPs. Background The International Travel Agency (ITA) relies extensively on the Internet for sales. For this reason,

More information

Lab Command Modes and Router Identification. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode

Lab Command Modes and Router Identification. Objective. Background/Preparation. Step 1 Login to the router in user EXEC mode Lab 3.1.2 Command Modes and Router Identification Objective Identify basic router modes of user EXEC and privileged EXEC. Use commands to enter specific modes. Become familiar with the router prompt for

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

First-Time Configuration

First-Time Configuration CHAPTER 3 This chapter contains information with which you should be familiar before you begin to configure your router for the first time, including information about understanding boot images, interface

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

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

Lab b Standard ACLs Instructor Version 2500

Lab b Standard ACLs Instructor Version 2500 Lab 11.2.1b Standard ACLs Instructor Version 2500 Objective Scenario Plan, configure, and apply a standard ACL to permit or deny specific traffic and test the ACL to determine if the desired results were

More information

Lab 5.5.2: Challenge Spanning Tree Protocol

Lab 5.5.2: Challenge Spanning Tree Protocol Topology Diagram Addressing Table Device (Hostname) Interface IP Address Subnet Mask Default Gateway S1 VLAN 99 172.17.99.11 255.255.255.0 N/A S2 VLAN 99 172.17.99.12 255.255.255.0 N/A S3 VLAN 99 172.17.99.13

More information

Lab Capturing and Analyzing Network Traffic

Lab Capturing and Analyzing Network Traffic Lab 1.2.2 Capturing and Analyzing Network Traffic Host Name IP Address Fa0/0 Subnet Mask IP Address S0/0/0 Subnet Mask Default Gateway RouterA 172.17.0.1 255.255.0.0 192.168.1.1 (DCE) 255.255.255.0 N/A

More information

Chapter 1 Lab 1-1, Basic RIPng and Default Gateway Configuration

Chapter 1 Lab 1-1, Basic RIPng and Default Gateway Configuration Chapter 1 Lab 1-1, Basic RIPng and Default Gateway Configuration Topology Objectives Configure IPv6 addressing. Configure and verify RIPng on R1 and R2. Configure IPv6 static routes between R2 and R3.

More information

CCENT Study Guide. Chapter 6 Cisco s Internetworking Operating System (IOS)

CCENT Study Guide. Chapter 6 Cisco s Internetworking Operating System (IOS) CCENT Study Guide Chapter 6 Cisco s Internetworking Operating System (IOS) Chapter 6 Objectives The CCENT Topics Covered in this chapter include: 2.0 LAN Switching Technologies 2.3 Troubleshoot interface

More information

Case Study 2: Frame Relay and OSPF Solution

Case Study 2: Frame Relay and OSPF Solution Case Study 2: Frame Relay and OSPF Solution Objective In this case study, you troubleshoot a complex scenario involving Frame Relay and Open Shortest Path First (OSPF). Figure 2-1 shows the topology for

More information

Lab Configuring and Verifying Standard ACLs Topology

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

More information

เฉลยแล ป Packet Activity

เฉลยแล ป Packet Activity เฉลยแล ป Packet Activity CCNA LAB 4-4: IP Routing - EIGRP [ต งค าท Ranet HQ (คล กท เคร อง console)] : (ไปย งแท บ Desktop > คล ก Terminal > กด OK) Ranet-HQ>en Ranet-HQ#conf t Enter configuration commands,

More information

Network Layer Week 5. Module : Computer Networks Lecturer: Lucy White Office : 324

Network Layer Week 5. Module : Computer Networks Lecturer: Lucy White Office : 324 Network Layer Week 5 Module : Computer Networks Lecturer: Lucy White lbwhite@wit.ie Office : 324 1 Network Layer Network Layer Protocols Common Network Layer Protocols Internet Protocol version 4 (IPv4)

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

Chapter 7 Lab 7-2, Using the AS_PATH Attribute

Chapter 7 Lab 7-2, Using the AS_PATH Attribute Chapter 7 Topology Objectives Use BGP commands to prevent private AS numbers from being advertised to the outside world. Use the AS_PATH attribute to filter BGP routes based on their source AS numbers.

More information

Configuring GRE Tunnel Over Cable

Configuring GRE Tunnel Over Cable Configuring GRE Tunnel Over Cable Document ID: 12084 Introduction Before You Begin Conventions Prerequisites Components Used Background Theory Configure Network Diagram Configurations Verify Troubleshoot

More information