Module 15: IP Static Routing

2y ago
40 Views
3 Downloads
3.47 MB
44 Pages
Last View : 2d ago
Last Download : 3m ago
Upload by : Grady Mosby
Transcription

All rights reserved. Cisco Confidential38

Configure Static Host RoutesHost RoutesA host route is an IPv4 address with a 32-bit mask, or an IPv6 address with a 128-bitmask. The following shows the three ways a host route can be added to the routing table: Automatically installed when an IP address is configured on the router Configured as a static host route Host route automatically obtained through other methods (discussed in later courses) 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential39

Configure Static Host RoutesAutomatically Installed Host Routes Cisco IOS automatically installs a host route, also known as a local host route, whenan interface address is configured on the router. A host route allows for a moreefficient process for packets that are directed to the router itself, rather than for packetforwarding.This is in addition to the connected route, designated with a C in the routing table forthe network address of the interface.The local routes are marked with L in the output of the routing table. 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential40

Configure Static Host RoutesStatic Host RoutesA host route can be a manually configured static route to direct traffic to a specificdestination device, such as the server shown in the figure. The static route uses adestination IP address and a 255.255.255.255 (/32) mask for IPv4 host routes, and a /128prefix length for IPv6 host routes. 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential41

Configure Static Host RoutesConfigure Static Host RoutesThe example shows the IPv4 and IPv6 static host route configuration on the Branch routerto access the server.Branch(config)# ip route 209.165.200.238 255.255.255.255 198.51.100.2Branch(config)# ipv6 route 2001:db8:acad:2::238/128 2001:db8:acad:1::2Branch(config)# exitBranch# 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential42

Configure Static Host RoutesVerify Static Host RoutesA review of both the IPv4 and IPv6 route tables verifies that the routes are active. 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential43

Configure Static Host RoutesConfigure IPv6 Static Host Route with Link-Local Next-HopFor IPv6 static routes, the next-hop address can be the link-local address of the adjacentrouter. However, you must specify an interface type and an interface number when usinga link-local address as the next hop, as shown in the example. First, the original IPv6static host route is removed, then a fully specified route configured with the IPv6 addressof the server and the IPv6 link-local address of the ISP router. 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential44

15.6 Module Practice and Quiz 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential45

Module Practice and QuizPacket Tracer – Configure IPv4 and IPv6 Static and DefaultRoutesIn this Packet Tracer, you will do the following: Configure IPv4 Static and floating static default routersConfigure IPv6 static and floating static default routesConfigureIPv4 static and floating static routes to internal LANsConfigure IPv6 static and floating static routes to the internal LANSConfigure IPv4 host routesConfigure IPv6 host routes 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential46

Module Practice and QuizLab - Configure IPv4 and IPv6 Static and Default RoutesIn this lab, you will complete the following objectives: Build the Network and Configure Basic Device Settings Configure and Verify IP and IPv6 Addressing on R1 and R2 Configure and Verify Static and Default Routing for IPv4 on R1 and R2 Configure and Verify Static and Default Routing for IPv6 on R1 and R2 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential47

Module Practice and QuizWhat Did I Learn In This Module? Static routes can be configured for IPv4 and IPv6. Both protocols support the following types of static routes: standard static route, default static route, floating static route, and summary static route.When configuring a static route, the next hop can be identified by an IP address, exit interface, or both.How the destination is specified creates one of the three following types of static route: next-hop, directlyconnected, and fully specified.IPv4 static routes are configured using the following global configuration command: ip route networkaddress subnet-mask { ip-address exit-intf [ip address] } [distance].IPv6 static routes are configured using the following global configuration command: ipv6 route ipv6prefix/prefix-length { ipv6-address exit-intf [ipv6-address]} [distance].In a next-hop static route, only the next-hop IP address is specified. The exit interface is derived from thenext hop.When configuring a static route, another option is to use the exit interface to specify the next-hop address.Directly connected static routes should only be used with point-to-point serial interfaces.In a fully specified static route, both the exit interface and the next-hop IP address are specified. This formof static route is used when the exit interface is a multi-access interface and it is necessary to explicitlyidentify the next hop. The next hop must be directly connected to the specified exit interface.In a fully specified IPv6 static route, both the exit interface and the next-hop IPv6 address are specified. 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential48

Module Practice and QuizWhat Did I Learn In This Module? (Cont.) A default route is a static route that matches all packets. Default static routes are commonly used when connecting an edge router to a service provider network, and a stub router.The command syntax for an IPv4 default static route is similar to any other IPv4 static route, except that thenetwork address is 0.0.0.0 and the subnet mask is 0.0.0.0.The command syntax for an IPv6 default static route is similar to any other IPv6 static route, except that theipv6-prefix/prefix-length is ::/0, which matches all routes.Floating static routes are static routes that are used to provide a backup path to a primary static or dynamicroute in the event of a link failure.The floating static route is configured with a higher administrative distance than the primary route. Bydefault, static routes have an administrative distance of 1, making them preferable to routes learned fromdynamic routing protocols.IP floating static routes are configured by using the distance argument to specify an administrativedistance.A host route is an IPv4 address with a 32-bit mask or an IPv6 address with a 128-bit mask. 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential49

Module Practice and QuizWhat Did I Learn In This Module? (Cont.) There are three ways a host route can be added to the routing table: automatically installed when an IPaddress is configured on the router, configured as a static host route, or automatically obtained throughother methods not covered in this module. Cisco IOS automatically installs a host route, also known as a local host route, when an interface addressis configured on the router. A host route can be a manually configured static route to direct traffic to a specific destination device. For IPv6 static routes, the next-hop address can be the link-local address of the adjacent router; however,you must specify an interface type and an interface number when using a link-local address as the nexthop. To do this, the original IPv6 static host route is removed, then a fully specified route is configured withthe IPv6 address of the server and the IPv6 link-local address of the ISP router. 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential50

Configure IP Default Static Routes Default Static Route (Cont.) IPv4 Default Static Route: The command syntax for an IPv4 default static route is similar to any other IPv4 static route, except that the network address is0.0.0.0and the subnet mask is0.0.0.0. The 0.0.0.0 0.0.0.0 in the route will match any network address.

Related Documents:

Teacher’s Book B LEVEL - English in school 6 Contents Prologue 8 Test paper answers 10 Practice Test 1 11 Module 1 11 Module 2 12 Module 3 15 Practice Test 2 16 Module 1 16 Module 2 17 Module 3 20 Practice Test 3 21 Module 1 21 Module 2 22 Module 3 25 Practice Test 4 26 Module 1 26 Module 2 27 Module 3 30 Practice Test 5 31 Module 1 31 Module .

systems (AS) (a.k.a. "domains") inter-AS routing § routing among AS'es § gateways perform inter-domain routing (as well as intra-domain routing) Internet approach to scalable routing intra-AS routing § routing among hosts, routers in same AS ("network") § all routers in AS must run sameintra-domain protocol § routers in .

iv Routing TCP/IP, Volume II About the Author Jeff Doyle, CCIE No. 1919, is vice president of research at Fishtech Labs. Specializing in IP routing protocols, SDN/NFV, data center fabrics, MPLS, and IPv6, Jeff has designed or assisted in the design of large-scale IP service provider and enterprise net-works in 26 countries over 6 continents.File Size: 7MBPage Count: 158Explore furtherRouting TCP/IP Volume 1 PDF Download Free 1578700418ebooks-it.orgDownload [PDF] Routing Tcp Ip Volume 1 2nd . - Usakochanwww.usakochan.netCcie Routing Tcp/ip Vol 1(2nd) And 2 Free . - Ebookeewww.ebookee.netJeff Doyle eBooks Download Free eBooks-IT.orgebooks-it.orgCCIE Professional Development Routing TCP . - Academia.eduwww.academia.eduTcp ip volume 1 jeff doyle pdf - AKZAMKOWY.ORGakzamkowy.orgRecommended to you b

Tutorial 13: Routing 3 Routing Routing is het gedeelte van SolidWorks waarmee je leidingen, bedradingen en componenten aan je pro-duct kunt toevoegen. Routing is geen onderdeel van de basisversie van SolidWorks. Gebruik je de Stu-dent Design Kit van SolidWorks, dan kun je deze tutorial dus niet doen. In de Student Edition is Routing

Module Objective: Troubleshoot static and default route configurations. Topic Title Topic Objective Packet Processing with Static Routes Explain how a router processes packets when a static route is configured. Troubleshoot IPv4 Static and Default Route Configuration Troubleshoot common static and default route configuration issues.

WinDbg Commands . 0:000 k . Module!FunctionD Module!FunctionC 130 Module!FunctionB 220 Module!FunctionA 110 . User Stack for TID 102. Module!FunctionA Module!FunctionB Module!FunctionC Saves return address Module!FunctionA 110 Saves return address Module!FunctionB 220 Module!FunctionD Saves return address Module!FunctionC 130 Resumes from address

XBEE PRO S2C Wire XBEE Base Board (AADD) XBEE PRO S2C U.FL XBEE Pro S1 Wire RF & TRANSRECEIVER MODULE XBEE MODULE 2. SIM800A/800 Module SIM800C Module SIM868 Module SIM808 Module SIM7600EI MODULE SIM7600CE-L Module SIM7600I Module SIM800L With ESP32 Wrover B M590 MODULE GSM Card SIM800A LM2576

ASTM C 1702 external mixing Sample 1 Sample 2 Not tested Cement, g 9.81 3.38 Water, g 4.90 1.69 Sand reference, g 37.37 12.61 Test duration, h 168 168 3. Results and Discussion 3.1 Signal to noise Figure 1 shows the heat flow measured from the sample cell charged with sand that displayed the highest overall heat flow. This was taken as a measure of noise for the purpose of this study. Figure 1 .