Enabling Static Routing

Slides:



Advertisements
Similar presentations
IP Routing Static Routing Information management 2 Groep T Leuven – Information department 2/14 The Router Router Interface is a physical.
Advertisements

Chapter 22 Network Layer: Delivery, Forwarding, and Routing.
Routing Basics By Craig Lindstrom. Overview Routing Process Routing Process Default Routing Default Routing Static Routing Static Routing Dynamic Routing.
© 2006 Cisco Systems, Inc. All rights reserved. ICND v2.3—3-1 Determining IP Routes Introducing Routing.
IP ROUTING -1 STATIC ROUTING DEFAULT ROUTING.  A routing protocol is used by routers to dynamically find all the networks in the internetwork and to.
1 Semester 2 Module 6 Routing and Routing Protocols YuDa college of business James Chen
OSPF To route, a router needs to do the following: Know the destination address Identify the sources it can learn from Discover possible.
© 2007 Cisco Systems, Inc. All rights reserved.ICND1 v1.0—5-1 WAN Connections Enabling Static Routing.
CISCO NETWORKING ACADEMY Chabot College ELEC IP Routing Protocol Highlights.
1 Routing Protocols and Configuration Instructor: Te-Lung Liu Program Associate Researcher NCHC, South Region Office.
Sybex CCENT Chapter 8: IP Routing Instructor & Todd Lammle.
Sybex CCNA Chapter 6: IP Routing Instructor & Todd Lammle.
M.Menelaou CCNA2 ROUTING. M.Menelaou ROUTING Routing is the process that a router uses to forward packets toward the destination network. A router makes.
1. 2 Anatomy of an IP Packet IP packets consist of the data from upper layers plus an IP header. The IP header consists of the following:
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public ITE PC v4.0 Chapter 1 1 Introduction to Routing and Packet Forwarding Routing Protocols and.
1 Pertemuan 26 Integrating Network using Routing Protocol.
© 2002, Cisco Systems, Inc. All rights reserved..
© 2002, Cisco Systems, Inc. All rights reserved. 1 Determining IP Routes.
Institute of Technology Sligo - Dept of Computing Sem 2 Chapter 12 Routing Protocols.
© 2002, Cisco Systems, Inc. All rights reserved. 1 Routing Overview.
Routing and Routing Protocols
1 Identifying Static and Dynamic Routes Static Route Uses a route that a network administrator enters into the router manually Dynamic Route Uses a route.
© 2008 Cisco Systems, Inc. All rights reserved.Cisco ConfidentialPresentation_ID 1 Chapter 6: Static Routing Routing and Switching Essentials.
Cisco Systems Networking Academy S2 C 12 Routing Protocols.
 RIP — A distance vector interior routing protocol  IGRP — The Cisco distance vector interior routing protocol (not used nowadays)  OSPF — A link-state.
+ Routing Concepts 1 st semester Objectives  Describe the primary functions and features of a router.  Explain how routers use information.
University of the Western Cape Chapter 12: Routing Protocols Interior and Exterior Routing Protocols Aleksandar Radovanovic.
CHAPTER 6: STATIC ROUTING Static Routing 2 nd semester
ROUTING AND ROUTING TABLES 2 nd semester
Cisco Routers Routers collectively provide the main feature of the network layer—the capability to forward packets end-to-end through a network. routers.
Sem 2 v2 Chapter 12: Routing. Routers can be configured to use one or more IP routing protocols. Two of these IP routing protocols are RIP and IGRP. After.
Lec4: Introduction to Dynamic Routing Protocol
Working at a Small-to-Medium Business or ISP – Chapter 6
IP Routing using Packet Tracer Simulator
CCENT Study Guide Chapter 9 IP Routing.
STATIC ROUTING.
Link State Routing protocol
Routing and routing tables
Static and Default Routing
© 2002, Cisco Systems, Inc. All rights reserved.
Routing and Routing Protocols: Routing Static
© 2002, Cisco Systems, Inc. All rights reserved.
Chapter 4: Routing Concepts
Routing Information Protocol
Routing and routing tables
Chapter 2: Static Routing
© 2002, Cisco Systems, Inc. All rights reserved.
CCNA 2 v3.1 Module 6 Routing and Routing Protocols
Troubleshooting IP Addressing
Routing & Enabling RIP WAN Connections.
Introduction to Dynamic Routing Protocol
Network Layer Path Determination.
Chapter 2: Static Routing
Chapter 3: Dynamic Routing
Routing and Routing Protocols: Routing Static
Introduction to Dynamic Routing Protocol
Chapter 3: Dynamic Routing
Delivery and Routing of IP Packets
Chapter 2: Static Routing
Static Routing 1st semester
After 3.2 Revised
Static and Default Routing
Routing Information Protocol
CIT 384: Network Administration
Working at a Small-to-Medium Business or ISP – Chapter 6
© 2002, Cisco Systems, Inc. All rights reserved.
Static Routing 2nd semester
© 2002, Cisco Systems, Inc. All rights reserved.
Presentation transcript:

Enabling Static Routing WAN Connections

Routing Protocol

Router Operations A router needs to do the following: Slide 1 of 2 Purpose: This figure introduces students to routing. The router must accomplish the items listed in the figure for routing to occur. Emphasize: Path determination occurs at Layer 3, the network layer. The path determination function enables a router to evaluate the available paths to a destination and to establish the best path. Routing services use network topology information when evaluating network paths. This information can be configured by the network administrator (static routes) or collected through dynamic processes (routing protocols) running in the network. Transition: How do you represent the path to the packet’s destination? A router needs to do the following: Know the destination address. Identify the sources from which the router can learn. Discover possible routes to the intended destination. Select the best route. Maintain and verify routing information.

Router Operations (Cont.) Slide 2 of 2 Purpose: This figure explains that routers must learn about paths that are not directly connected. Emphasize: The router already knows about directly connected networks. It must learn about those networks that are not connected. This chapter describes how routers learn about those paths. Routers must learn destinations that are not directly connected.

Identifying Static and Dynamic Routes Static route Uses a route that a network administrator enters into the router manually Dynamic route Uses a route that a network routing protocol adjusts automatically for topology or traffic changes Purpose: This figure introduces students to static and dynamic routes. Emphasize: Static knowledge is administered manually—a network administrator enters it into the router’s configuration. The administrator must manually update this static route entry whenever an internetwork topology change requires an update. Static knowledge can be private—by default it is not conveyed to other routers as part of an update process. You can, however, configure the router to share this knowledge. Dynamic knowledge works differently. After the network administrator enters configuration commands to start dynamic routing, route knowledge is updated automatically by a routing process. Whenever new topology information is received from the internetwork, routers update neighbors about the route change.

Static Routes Purpose: This figure describes how a static route operates. Emphasize: For intercommunication, static routes must be configured in both directions. Static routes are often used to route traffic to a stub network or other network where only a single route to that network exists. Configure unidirectional static routes to and from a stub network to allow communications to occur.

Static Route Configuration RouterX(config)# ip route network [mask] {address | interface}[distance] [permanent] Defines a path to an IP destination network or subnet or host Address = IP address of the next hop router Interface = outbound interface of the local router Purpose: This figure describes the command syntax used to establish an IP static route. Emphasize: A static route allows manual configuration of the routing table. No dynamic changes to this table entry will occur as long as the path is active. Routing updates are not sent on a link that is only defined by a static route; hence, conserving bandwidth. The ip route field descriptions are as follows: network—Destination network or subnet mask—Subnet mask address—IP address of next-hop router interface—Name of the interface to use to get to the destination network Transition: The next figure provides a static route configuration example.

Static Route Example or Purpose: This figure gives an example of a static route configuration. RouterX(config)# ip route 172.16.1.0 255.255.255.0 172.16.2.1 or Router(config)#ip route 172.16.1.0 255.255.255.0 s0/0/0 This is a unidirectional route. You must have a route configured in the opposite direction.

Default Routes Purpose: This figure gives an example of a default route configuration. Emphasize: With an address and subnet mask of 0.0.0.0 0.0.0.0 in the ip route statement, packets for any network not listed in the routing table will be sent to the next hop, 172.16.2.2. This route allows the stub network to reach all known networks beyond Router A.

Verifying the Static Route Configuration RouterX# show 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 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, * - candidate default U - per-user static route   Gateway of last resort is 0.0.0.0 to network 0.0.0.0 10.0.0.0/8 is subnetted, 1 subnets C 10.1.1.0 is directly connected, Serial0/0/0 S* 0.0.0.0/0 is directly connected, Serial0 Slide 2 of 6 Purpose: This figure shows how the show frame-relay LMI command is used to verify the LMI type used for signaling. Emphasize: Describe the highlighted output to the students.

Summary Routing is the process by which items get from one location to another. In networking, a router is the device used to route traffic. Routers can forward packets over static routes or dynamic routes, based on the router configuration. Static routers use a route that a network administrator enters into the router manually. Dynamic routers use a route that a network routing protocol adjusts automatically for topology or traffic changes. Unidirectional static routes must be configured to and from a stub network to allow communications to occur. The ip route command can be used to configure default route forwarding. The show ip route command is used to verify that static routing is properly configured. Static routes are signified in the command output by “S”. Purpose: This slide discuss the initial configurations on the routers and switches. Note: There is no setup mode on the Catalyst 1900 switch.