SlideShare uma empresa Scribd logo
1 de 16
IPv6 Static Routes
John Rullan
Cisco Certified Instructor Trainer
Thomas A. Edison CTE HS
Stephen Lynch
Network Architect, CCIE #36243
ABS Technology Architects
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 2
• Static routes defines explicit path between two routers. They are not
automatically updated which means you must manually reconfigure static
routes when network changes occur.
• Static routes use less bandwidth than dynamic routes.
• No CPU cycles are used to calculate and analyze routing updates.
• Static routes should be used in an environments where network traffic is
predictable and where the network design is simple.
• Static routes should not be used in a large network environment where it’s
constantly changing because static routes cannot react to network changes.
• Even though static routes are obsolete due to the high use of dynamic
routes in a network, some companies still implement static routes for special
occasions.
• Static routes are also useful for specifying a gateway of last resort (a default
route which all un-routeable packets are sent).
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 3
There are four types of static routes. The
following types of IPv4 and IPv6 static routes
will be discussed:
• Standard static route
• Default static route
• Summary static route
• Floating static route
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 4
• You must specify only the output interface (the interface on which all
packets are sent to the destination network) in a directly connected
static route.
• The router assumes the destination is directly attached to the output
interface.
Directly Connected
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::1/64
2001:DB8:3::1/64
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
LAN-1
LAN-2
Branch-1(config)# ipv6 route 2001:DB8:2::1/64 s0/0/1
Branch-1(config)# ipv6 route 2001:DB8:3::1/64 s0/0/1
Directly Connected
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 5
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::1/64
2001:DB8:3::1/64
Branch-1(config)# ipv6 route 2001:DB8:2::1/64 s0/0/1
Branch-1(config)# ipv6 route 2001:DB8:3::1/64 s0/0/1
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
Directly Connected
LAN-1
LAN-2
Branch-1#show ipv6 route
(Output Omitted)
S 2001:DB8:2::/62 [1/0]
via ::, Serial0/0/1
S 2001:DB8:3::/62 [1/0]
via ::, Serial0/0/1
C 2001:DB8:A::2/127 [0/0]
via ::, Serial0/0/1
L 2001:DB8:A::3/128 [0/0]
via ::, Serial0/0/1
C 2001:DB8:B::/127 [0/0]
via ::, Serial0/0/0
L 2001:DB8:B::/128 [0/0]
via ::, Serial0/0/0
L FF00::/8 [0/0]
via ::, Null0
Branch-2#
“L” in the routing table is a new
identifier which indicates the
specific address assigned to an
interface, as opposed to “C”
which only displays
the subnet.
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 6
• In a next-hop static route, the IPv6 address of the neighboring
router is specified.
• The output interface is derived from the next hop.
• Before any packet is forwarded by router, the routing table process
must determine the exit interface to use to in order to forward the
packet. This causes the router to take a second look at the routing
table to determine the exit interface for the destination network.
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::1/64
2001:DB8:3::1/64
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
LAN-1
LAN-2
Next Hop/Recursive
Branch-1(config)# ipv6 route 2001:DB8:2::1/64 2001:DB8:A::2
Branch-1(config)# ipv6 route 2001:DB8:3::1/64 2001:DB8:A::2
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 7
Branch-1(config)# ipv6 route 2001:DB8:2::1/64 2001:DB8:A::2
Branch-1(config)# ipv6 route 2001:DB8:3::1/64 2001:DB8:A::2
Next Hop/Recursive
Branch-1#show ipv6 route
(Output Omitted)
S 2001:DB8:2::/64 [1/0]
via 2001:DB8:A::2
S 2001:DB8:3::/64 [1/0]
via 2001:DB8:A::2
C 2001:DB8:A::2/127 [0/0]
via ::, Serial0/0/1
L 2001:DB8:A::3/128 [0/0]
via ::, Serial0/0/1
C 2001:DB8:B::/127 [0/0]
via ::, Serial0/0/0
L 2001:DB8:B::/128 [0/0]
via ::, Serial0/0/0
L FF00::/8 [0/0]
via ::, Null0
Branch-2#
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::1/64
2001:DB8:3::1/64
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
LAN-1
LAN-2
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 8
Branch-2
2001:DB8:A::2/64 2001:DB8:A::1/64
2001:DB8:2::1/64
2001:DB8:3::1/64
G0/0 G0/0
Branch-1
LAN-1
LAN-2
Branch-1(config)# ipv6 route 2001:DB8:2::1/64 g0/0 2001:DB8:A::2
Branch-1(config)# ipv6 route 2001:DB8:3::1/64 g0/0 2001:DB8:A::2Fully Specified
• The output interface and the next-hop address are both used in a
fully specify static route.
• Used when the output interface is a multi-access interface and
needs the next-hop address to be identified.
• The next-hop must be directly attached to the specified output
interface.
G0/0
G0/0 Branch-4
Branch-3
2001:DB8:A::4/64
2001:DB8:A::3/64
DSW-1
G0/1
G0/0
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 9
Fully Specified
Branch-1#show ipv6 route
(Output Omitted)
S 2001:DB8:2::1/64 [1/0]
via 2001:DB8:A::2, Gigabit0/0
S 2001:DB8:3::1/64 [1/0]
via 2001:DB8:A::2, Gigabit0/0
C 2001:DB8:A::2/127 [0/0]
via ::, Serial0/0/1
L 2001:DB8:A::3/128 [0/0]
via ::, Serial0/0/1
C 2001:DB8:B::/127 [0/0]
via ::, Serial0/0/0
L 2001:DB8:B::/128 [0/0]
via ::, Serial0/0/0
L FF00::/8 [0/0]
via ::, Null0
Branch-2#
Branch-2
2001:DB8:A::2/64 2001:DB8:A::1/64
2001:DB8:2::1/64
2001:DB8:3::1/64
G0/0 G0/0
Branch-1
LAN-1
LAN-2
G0/0
G0/0 Branch-4
Branch-3
2001:DB8:A::4/64
2001:DB8:A::3/64
DSW-1
G0/1
G0/0
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 10
• No other routes in the routing table match the packet destination IP
address. In other words, when a more specific match does not exist.
• A common use is when connecting a company's edge router to the ISP’s
network.
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::1/64
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
LAN-1
LAN-2
Branch-1(config)#ipv6 route ::/0 s0/0/0
Branch-1(config)#ipv6 route ::/0 2001:DB8:A::2
Branch-1(config)#ipv6 route ::/0 s0/0/0 2001:DB8:A::2
2001:DB8:3::1/64
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 11
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::1/64
2001:DB8:3::1/64
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
LAN-1
LAN-2
Branch-1(config)#ipv6 route ::/0 s0/0/0
Branch-1#sh ipv6 route
(Output Omitted)
S ::/0 [1/0]
via ::, Serial0/0/0
S 2001:DB8:2::1/64 [1/0]
via 2001:DB8:A::2, Serial0/0/1
S 2001:DB8:3::1/64 [1/0]
via 2001:DB8:A::2, Serial0/0/1
C 2001:DB8:A::2/127 [0/0]
via ::, Serial0/0/1
L 2001:DB8:A::3/128 [0/0]
via ::, Serial0/0/1
C 2001:DB8:B::/127 [0/0]
via ::, Serial0/0/0
L 2001:DB8:B::/128 [0/0]
via ::, Serial0/0/0
L FF00::/8 [0/0]
via ::, Null0
Branch-1#
Default Route
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 12
• Summary routes are used to reduce the number of routing table entries.
• Multiple static routes can be summarized into a single static route if:
- The destination networks are contiguous and can be summarized into a
single network address.
- The multiple static routes all use the same exit interface or next-hop IP
address.
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::1/64
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
LAN-1
LAN-2
2001:DB8:3::1/64
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 13
Branch-1(config)#ipv6 route 2001:DB8:2::/46 s0/0/0
Branch-1#show ipv6 route
(output omitted)
S ::/0 [1/0]
via ::, Serial0/0/0
S 2001:DB8::/46 [1/0]
via ::, Serial0/0/1
2001:DB8:0000000000000010
2001:DB8:0000000000000011
Summarize based on common bits:
• 16-bits in the 1st and 2nd hextets for a total of 32-bits
• 14-bits in the 3rd hextet
• Total of 46-bits in common between the two addresses
Common Bits
Branch-1# ping 2001:db8:2::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:db8:2::, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/10/41 ms
Branch-1# ping 2001:db8:3::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:db8:3::, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 2/9/18 ms
Branch-1#
Branch-2
2001:DB8:A::2/127
2001:DB8:A::3/127
2001:DB8:2::/64
S0/0/0
S0/0/1 InternetS0/0/0
Branch-1
LAN-1
LAN-2
2001:DB8:3::/64
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 14
• A floating static route is a static route that the router uses to back up
dynamic route.
• You must configure a floating static route with a higher
administrative distance than the dynamic route that it backs up.
• In this instance, the router prefers a dynamic route to a floating static
route. You can use a floating static route as a replacement if the
dynamic route is lost.
InternetBranch-1
Branch-2
© 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 15
InternetBranch-1
Branch-2
Branch-1(config)# ipv6 route 2001:DB8:4::1/127 s0/0/1 91
Branch-1(config)# ipv6 route 2001:DB8:5::1/127 s0/0/1 91
Branch-1(config)# ipv6 route 2001:DB8:6::1/127 s0/0/1 91
Branch-1(config)# ipv6 route 2001:DB8:C::1/127 s0/0/1 91
Branch-1(config)# ipv6 route 2001:DB8:A::1/127 s0/0/1 91
Branch-1#sh ipv6 route
(output omitted)
D 2001:DB8:4::/128 [90/3321856]
via FE80::2E0:8FFF:FE31:4201, Serial0/0/0
D 2001:DB8:5::/128 [90/3321856]
via FE80::2E0:8FFF:FE31:4201, Serial0/0/0
D 2001:DB8:6::/128 [90/3321856]
via FE80::2E0:8FFF:FE31:4201, Serial0/0/0
D 2001:DB8:B::/127 [90/3193856]
via FE80::2E0:8FFF:FE31:4201, Serial0/0/0
D 2001:DB8:C::/127 [90/2681856]
via FE80::2E0:8FFF:FE31:4201, Serial0/0/0
Branch-1#
Branch-1#show ipv6 route
(output omitted)
S 2001:DB8:4::/128 [91/0]
via ::, Serial0/0/1
S 2001:DB8:5::/128 [91/0]
via ::, Serial0/0/1
S 2001:DB8:6::/128 [91/0]
via ::, Serial0/0/1
S 2001:DB8:A::/128 [91/0]
via ::, Serial0/0/1
S 2001:DB8:C::/128 [91/0]
Branch-1#
Thank you.

Mais conteúdo relacionado

Mais procurados

Chapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routingChapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routingteknetir
 
1000 Ccna Questions And Answers
1000 Ccna Questions And Answers1000 Ccna Questions And Answers
1000 Ccna Questions And AnswersCCNAResources
 
Troubleshooting BGP
Troubleshooting BGPTroubleshooting BGP
Troubleshooting BGPDuane Bodle
 
Tn 310 vlan-trunking
Tn 310 vlan-trunkingTn 310 vlan-trunking
Tn 310 vlan-trunkingsali Ibrahimu
 
CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3Nil Menon
 
Cisco router configuration tutorial
Cisco router configuration tutorialCisco router configuration tutorial
Cisco router configuration tutorialIT Tech
 
CCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip NetworksCCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip NetworksVuz Dở Hơi
 
Cisco IPv6 Tutorial
Cisco IPv6 TutorialCisco IPv6 Tutorial
Cisco IPv6 Tutorialkriz5
 
Segment Routing: A Tutorial
Segment Routing: A TutorialSegment Routing: A Tutorial
Segment Routing: A TutorialAPNIC
 
CCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing ConceptsCCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing ConceptsVuz Dở Hơi
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6Nil Menon
 

Mais procurados (20)

Chapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routingChapter 16 : inter-vlan routing
Chapter 16 : inter-vlan routing
 
1000 Ccna Questions And Answers
1000 Ccna Questions And Answers1000 Ccna Questions And Answers
1000 Ccna Questions And Answers
 
Troubleshooting BGP
Troubleshooting BGPTroubleshooting BGP
Troubleshooting BGP
 
Router configuration
Router configurationRouter configuration
Router configuration
 
Ospf
OspfOspf
Ospf
 
Tn 310 vlan-trunking
Tn 310 vlan-trunkingTn 310 vlan-trunking
Tn 310 vlan-trunking
 
Cisco Commands
Cisco CommandsCisco Commands
Cisco Commands
 
Routing protocols
Routing protocolsRouting protocols
Routing protocols
 
Ppt of routing protocols
Ppt of routing protocolsPpt of routing protocols
Ppt of routing protocols
 
ccna cheat_sheet
ccna cheat_sheetccna cheat_sheet
ccna cheat_sheet
 
CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3
 
Cisco router configuration tutorial
Cisco router configuration tutorialCisco router configuration tutorial
Cisco router configuration tutorial
 
CCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip NetworksCCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
 
Cisco IPv6 Tutorial
Cisco IPv6 TutorialCisco IPv6 Tutorial
Cisco IPv6 Tutorial
 
Segment Routing: A Tutorial
Segment Routing: A TutorialSegment Routing: A Tutorial
Segment Routing: A Tutorial
 
Cisco CCNA- DHCP Server
Cisco CCNA-  DHCP ServerCisco CCNA-  DHCP Server
Cisco CCNA- DHCP Server
 
Ospf.ppt
Ospf.pptOspf.ppt
Ospf.ppt
 
Cisco ospf
Cisco ospf Cisco ospf
Cisco ospf
 
CCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing ConceptsCCNAv5 - S2: Chapter4 Routing Concepts
CCNAv5 - S2: Chapter4 Routing Concepts
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6
 

Destaque

CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6Irsandi Hasan
 
CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11Irsandi Hasan
 
CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11Irsandi Hasan
 
Lesson.7: Configuring IP Routing A
Lesson.7: Configuring IP Routing ALesson.7: Configuring IP Routing A
Lesson.7: Configuring IP Routing AMahmmoud Mahdi
 
CCNA Exploration 4 - Chapter 3
CCNA Exploration 4 - Chapter 3CCNA Exploration 4 - Chapter 3
CCNA Exploration 4 - Chapter 3Irsandi Hasan
 
CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10Irsandi Hasan
 
ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4Irsandi Hasan
 
ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2Irsandi Hasan
 
CCNA Exploration 4 - Chapter 4
CCNA Exploration 4 - Chapter 4CCNA Exploration 4 - Chapter 4
CCNA Exploration 4 - Chapter 4Irsandi Hasan
 
CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1Irsandi Hasan
 
CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6Irsandi Hasan
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8Irsandi Hasan
 
ITE v5.0 - Chapter 10
ITE v5.0 - Chapter 10ITE v5.0 - Chapter 10
ITE v5.0 - Chapter 10Irsandi Hasan
 
CCNA Exploration 4 - Chapter 5
CCNA Exploration 4 - Chapter 5CCNA Exploration 4 - Chapter 5
CCNA Exploration 4 - Chapter 5Irsandi Hasan
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7Irsandi Hasan
 
Chapter 06 - Static Routing
Chapter 06 - Static RoutingChapter 06 - Static Routing
Chapter 06 - Static RoutingYaser Rahmati
 
CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6Irsandi Hasan
 
ITE v5.0 - Chapter 8
ITE v5.0 - Chapter 8ITE v5.0 - Chapter 8
ITE v5.0 - Chapter 8Irsandi Hasan
 

Destaque (20)

CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6
 
CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11
 
CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11
 
CCNA 200-120 Exam Questions
CCNA 200-120 Exam QuestionsCCNA 200-120 Exam Questions
CCNA 200-120 Exam Questions
 
IPv6 EIGRP
IPv6 EIGRPIPv6 EIGRP
IPv6 EIGRP
 
Lesson.7: Configuring IP Routing A
Lesson.7: Configuring IP Routing ALesson.7: Configuring IP Routing A
Lesson.7: Configuring IP Routing A
 
CCNA Exploration 4 - Chapter 3
CCNA Exploration 4 - Chapter 3CCNA Exploration 4 - Chapter 3
CCNA Exploration 4 - Chapter 3
 
CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10
 
ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4
 
ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2
 
CCNA Exploration 4 - Chapter 4
CCNA Exploration 4 - Chapter 4CCNA Exploration 4 - Chapter 4
CCNA Exploration 4 - Chapter 4
 
CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1
 
CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8
 
ITE v5.0 - Chapter 10
ITE v5.0 - Chapter 10ITE v5.0 - Chapter 10
ITE v5.0 - Chapter 10
 
CCNA Exploration 4 - Chapter 5
CCNA Exploration 4 - Chapter 5CCNA Exploration 4 - Chapter 5
CCNA Exploration 4 - Chapter 5
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7
 
Chapter 06 - Static Routing
Chapter 06 - Static RoutingChapter 06 - Static Routing
Chapter 06 - Static Routing
 
CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6
 
ITE v5.0 - Chapter 8
ITE v5.0 - Chapter 8ITE v5.0 - Chapter 8
ITE v5.0 - Chapter 8
 

Semelhante a IPv6 Static Routes

Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructionstrayyoo
 
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...SilvioDias29
 
57798_Lectures1415.pptx
57798_Lectures1415.pptx57798_Lectures1415.pptx
57798_Lectures1415.pptxSheerazAli55
 
Chapter 6 : Network layer
Chapter 6 : Network layerChapter 6 : Network layer
Chapter 6 : Network layerteknetir
 
Chapter 06 - Network Layer
Chapter 06 - Network LayerChapter 06 - Network Layer
Chapter 06 - Network LayerYaser Rahmati
 
CCNAv5 - S1: Chapter 6 - Network Layer
CCNAv5 - S1: Chapter 6 - Network LayerCCNAv5 - S1: Chapter 6 - Network Layer
CCNAv5 - S1: Chapter 6 - Network LayerVuz Dở Hơi
 
Multi Static Routng & Default Routing
Multi Static Routng & Default RoutingMulti Static Routng & Default Routing
Multi Static Routng & Default RoutingKishore Kumar
 
CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6Nil Menon
 
Scaling Networks Lab Manual 1st Edition Cisco Solutions Manual
Scaling Networks Lab Manual 1st Edition Cisco Solutions ManualScaling Networks Lab Manual 1st Edition Cisco Solutions Manual
Scaling Networks Lab Manual 1st Edition Cisco Solutions Manualnudicixox
 
SRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptxSRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptxSaqibAli696638
 
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docxCSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docxfaithxdunce63732
 
Cisco router configuration
Cisco router configurationCisco router configuration
Cisco router configurationvin424
 
BRKRST-3068 Troubleshooting Catalyst 2K and 3K.pdf
BRKRST-3068  Troubleshooting Catalyst 2K and 3K.pdfBRKRST-3068  Troubleshooting Catalyst 2K and 3K.pdf
BRKRST-3068 Troubleshooting Catalyst 2K and 3K.pdfssusercbaa33
 
Detailed explanation of Basic router configuration
Detailed explanation of Basic router configurationDetailed explanation of Basic router configuration
Detailed explanation of Basic router configurationsamreenghauri786
 
Ospf Last Modified Eng
Ospf  Last Modified EngOspf  Last Modified Eng
Ospf Last Modified EngAlp isik
 
Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02A.S.M Shmimul Islam.
 

Semelhante a IPv6 Static Routes (20)

I pv6 eigrp
I pv6 eigrpI pv6 eigrp
I pv6 eigrp
 
Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructions
 
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
 
Day 13.1..1 catalyst switch
Day 13.1..1 catalyst switchDay 13.1..1 catalyst switch
Day 13.1..1 catalyst switch
 
57798_Lectures1415.pptx
57798_Lectures1415.pptx57798_Lectures1415.pptx
57798_Lectures1415.pptx
 
Chapter 6 : Network layer
Chapter 6 : Network layerChapter 6 : Network layer
Chapter 6 : Network layer
 
Chapter 06 - Network Layer
Chapter 06 - Network LayerChapter 06 - Network Layer
Chapter 06 - Network Layer
 
CCNAv5 - S1: Chapter 6 - Network Layer
CCNAv5 - S1: Chapter 6 - Network LayerCCNAv5 - S1: Chapter 6 - Network Layer
CCNAv5 - S1: Chapter 6 - Network Layer
 
Lab 3.5.1 basic frame relay
Lab 3.5.1 basic frame relayLab 3.5.1 basic frame relay
Lab 3.5.1 basic frame relay
 
Tema3
Tema3Tema3
Tema3
 
Multi Static Routng & Default Routing
Multi Static Routng & Default RoutingMulti Static Routng & Default Routing
Multi Static Routng & Default Routing
 
CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6
 
Scaling Networks Lab Manual 1st Edition Cisco Solutions Manual
Scaling Networks Lab Manual 1st Edition Cisco Solutions ManualScaling Networks Lab Manual 1st Edition Cisco Solutions Manual
Scaling Networks Lab Manual 1st Edition Cisco Solutions Manual
 
SRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptxSRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptx
 
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docxCSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
 
Cisco router configuration
Cisco router configurationCisco router configuration
Cisco router configuration
 
BRKRST-3068 Troubleshooting Catalyst 2K and 3K.pdf
BRKRST-3068  Troubleshooting Catalyst 2K and 3K.pdfBRKRST-3068  Troubleshooting Catalyst 2K and 3K.pdf
BRKRST-3068 Troubleshooting Catalyst 2K and 3K.pdf
 
Detailed explanation of Basic router configuration
Detailed explanation of Basic router configurationDetailed explanation of Basic router configuration
Detailed explanation of Basic router configuration
 
Ospf Last Modified Eng
Ospf  Last Modified EngOspf  Last Modified Eng
Ospf Last Modified Eng
 
Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02
 

Mais de Irsandi Hasan

CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01Irsandi Hasan
 
VMware vShield - Overview
VMware vShield - OverviewVMware vShield - Overview
VMware vShield - OverviewIrsandi Hasan
 
CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10Irsandi Hasan
 
CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9Irsandi Hasan
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8Irsandi Hasan
 
CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5Irsandi Hasan
 
CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4Irsandi Hasan
 
CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3Irsandi Hasan
 
CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2Irsandi Hasan
 
CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9Irsandi Hasan
 

Mais de Irsandi Hasan (20)

CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11
 
CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10
 
CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09
 
CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08
 
CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06
 
CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05
 
CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04
 
CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03
 
CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01
 
VMware vShield - Overview
VMware vShield - OverviewVMware vShield - Overview
VMware vShield - Overview
 
CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10
 
CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8
 
CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5
 
CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4
 
CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3
 
CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2
 
CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9
 

Último

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 

Último (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 

IPv6 Static Routes

  • 1. IPv6 Static Routes John Rullan Cisco Certified Instructor Trainer Thomas A. Edison CTE HS Stephen Lynch Network Architect, CCIE #36243 ABS Technology Architects
  • 2. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 2 • Static routes defines explicit path between two routers. They are not automatically updated which means you must manually reconfigure static routes when network changes occur. • Static routes use less bandwidth than dynamic routes. • No CPU cycles are used to calculate and analyze routing updates. • Static routes should be used in an environments where network traffic is predictable and where the network design is simple. • Static routes should not be used in a large network environment where it’s constantly changing because static routes cannot react to network changes. • Even though static routes are obsolete due to the high use of dynamic routes in a network, some companies still implement static routes for special occasions. • Static routes are also useful for specifying a gateway of last resort (a default route which all un-routeable packets are sent).
  • 3. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 3 There are four types of static routes. The following types of IPv4 and IPv6 static routes will be discussed: • Standard static route • Default static route • Summary static route • Floating static route
  • 4. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 4 • You must specify only the output interface (the interface on which all packets are sent to the destination network) in a directly connected static route. • The router assumes the destination is directly attached to the output interface. Directly Connected Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::1/64 2001:DB8:3::1/64 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 LAN-1 LAN-2 Branch-1(config)# ipv6 route 2001:DB8:2::1/64 s0/0/1 Branch-1(config)# ipv6 route 2001:DB8:3::1/64 s0/0/1 Directly Connected
  • 5. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 5 Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::1/64 2001:DB8:3::1/64 Branch-1(config)# ipv6 route 2001:DB8:2::1/64 s0/0/1 Branch-1(config)# ipv6 route 2001:DB8:3::1/64 s0/0/1 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 Directly Connected LAN-1 LAN-2 Branch-1#show ipv6 route (Output Omitted) S 2001:DB8:2::/62 [1/0] via ::, Serial0/0/1 S 2001:DB8:3::/62 [1/0] via ::, Serial0/0/1 C 2001:DB8:A::2/127 [0/0] via ::, Serial0/0/1 L 2001:DB8:A::3/128 [0/0] via ::, Serial0/0/1 C 2001:DB8:B::/127 [0/0] via ::, Serial0/0/0 L 2001:DB8:B::/128 [0/0] via ::, Serial0/0/0 L FF00::/8 [0/0] via ::, Null0 Branch-2# “L” in the routing table is a new identifier which indicates the specific address assigned to an interface, as opposed to “C” which only displays the subnet.
  • 6. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 6 • In a next-hop static route, the IPv6 address of the neighboring router is specified. • The output interface is derived from the next hop. • Before any packet is forwarded by router, the routing table process must determine the exit interface to use to in order to forward the packet. This causes the router to take a second look at the routing table to determine the exit interface for the destination network. Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::1/64 2001:DB8:3::1/64 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 LAN-1 LAN-2 Next Hop/Recursive Branch-1(config)# ipv6 route 2001:DB8:2::1/64 2001:DB8:A::2 Branch-1(config)# ipv6 route 2001:DB8:3::1/64 2001:DB8:A::2
  • 7. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 7 Branch-1(config)# ipv6 route 2001:DB8:2::1/64 2001:DB8:A::2 Branch-1(config)# ipv6 route 2001:DB8:3::1/64 2001:DB8:A::2 Next Hop/Recursive Branch-1#show ipv6 route (Output Omitted) S 2001:DB8:2::/64 [1/0] via 2001:DB8:A::2 S 2001:DB8:3::/64 [1/0] via 2001:DB8:A::2 C 2001:DB8:A::2/127 [0/0] via ::, Serial0/0/1 L 2001:DB8:A::3/128 [0/0] via ::, Serial0/0/1 C 2001:DB8:B::/127 [0/0] via ::, Serial0/0/0 L 2001:DB8:B::/128 [0/0] via ::, Serial0/0/0 L FF00::/8 [0/0] via ::, Null0 Branch-2# Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::1/64 2001:DB8:3::1/64 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 LAN-1 LAN-2
  • 8. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 8 Branch-2 2001:DB8:A::2/64 2001:DB8:A::1/64 2001:DB8:2::1/64 2001:DB8:3::1/64 G0/0 G0/0 Branch-1 LAN-1 LAN-2 Branch-1(config)# ipv6 route 2001:DB8:2::1/64 g0/0 2001:DB8:A::2 Branch-1(config)# ipv6 route 2001:DB8:3::1/64 g0/0 2001:DB8:A::2Fully Specified • The output interface and the next-hop address are both used in a fully specify static route. • Used when the output interface is a multi-access interface and needs the next-hop address to be identified. • The next-hop must be directly attached to the specified output interface. G0/0 G0/0 Branch-4 Branch-3 2001:DB8:A::4/64 2001:DB8:A::3/64 DSW-1 G0/1 G0/0
  • 9. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 9 Fully Specified Branch-1#show ipv6 route (Output Omitted) S 2001:DB8:2::1/64 [1/0] via 2001:DB8:A::2, Gigabit0/0 S 2001:DB8:3::1/64 [1/0] via 2001:DB8:A::2, Gigabit0/0 C 2001:DB8:A::2/127 [0/0] via ::, Serial0/0/1 L 2001:DB8:A::3/128 [0/0] via ::, Serial0/0/1 C 2001:DB8:B::/127 [0/0] via ::, Serial0/0/0 L 2001:DB8:B::/128 [0/0] via ::, Serial0/0/0 L FF00::/8 [0/0] via ::, Null0 Branch-2# Branch-2 2001:DB8:A::2/64 2001:DB8:A::1/64 2001:DB8:2::1/64 2001:DB8:3::1/64 G0/0 G0/0 Branch-1 LAN-1 LAN-2 G0/0 G0/0 Branch-4 Branch-3 2001:DB8:A::4/64 2001:DB8:A::3/64 DSW-1 G0/1 G0/0
  • 10. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 10 • No other routes in the routing table match the packet destination IP address. In other words, when a more specific match does not exist. • A common use is when connecting a company's edge router to the ISP’s network. Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::1/64 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 LAN-1 LAN-2 Branch-1(config)#ipv6 route ::/0 s0/0/0 Branch-1(config)#ipv6 route ::/0 2001:DB8:A::2 Branch-1(config)#ipv6 route ::/0 s0/0/0 2001:DB8:A::2 2001:DB8:3::1/64
  • 11. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 11 Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::1/64 2001:DB8:3::1/64 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 LAN-1 LAN-2 Branch-1(config)#ipv6 route ::/0 s0/0/0 Branch-1#sh ipv6 route (Output Omitted) S ::/0 [1/0] via ::, Serial0/0/0 S 2001:DB8:2::1/64 [1/0] via 2001:DB8:A::2, Serial0/0/1 S 2001:DB8:3::1/64 [1/0] via 2001:DB8:A::2, Serial0/0/1 C 2001:DB8:A::2/127 [0/0] via ::, Serial0/0/1 L 2001:DB8:A::3/128 [0/0] via ::, Serial0/0/1 C 2001:DB8:B::/127 [0/0] via ::, Serial0/0/0 L 2001:DB8:B::/128 [0/0] via ::, Serial0/0/0 L FF00::/8 [0/0] via ::, Null0 Branch-1# Default Route
  • 12. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 12 • Summary routes are used to reduce the number of routing table entries. • Multiple static routes can be summarized into a single static route if: - The destination networks are contiguous and can be summarized into a single network address. - The multiple static routes all use the same exit interface or next-hop IP address. Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::1/64 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 LAN-1 LAN-2 2001:DB8:3::1/64
  • 13. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 13 Branch-1(config)#ipv6 route 2001:DB8:2::/46 s0/0/0 Branch-1#show ipv6 route (output omitted) S ::/0 [1/0] via ::, Serial0/0/0 S 2001:DB8::/46 [1/0] via ::, Serial0/0/1 2001:DB8:0000000000000010 2001:DB8:0000000000000011 Summarize based on common bits: • 16-bits in the 1st and 2nd hextets for a total of 32-bits • 14-bits in the 3rd hextet • Total of 46-bits in common between the two addresses Common Bits Branch-1# ping 2001:db8:2::1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2001:db8:2::, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/10/41 ms Branch-1# ping 2001:db8:3::1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2001:db8:3::, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 2/9/18 ms Branch-1# Branch-2 2001:DB8:A::2/127 2001:DB8:A::3/127 2001:DB8:2::/64 S0/0/0 S0/0/1 InternetS0/0/0 Branch-1 LAN-1 LAN-2 2001:DB8:3::/64
  • 14. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 14 • A floating static route is a static route that the router uses to back up dynamic route. • You must configure a floating static route with a higher administrative distance than the dynamic route that it backs up. • In this instance, the router prefers a dynamic route to a floating static route. You can use a floating static route as a replacement if the dynamic route is lost. InternetBranch-1 Branch-2
  • 15. © 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 15 InternetBranch-1 Branch-2 Branch-1(config)# ipv6 route 2001:DB8:4::1/127 s0/0/1 91 Branch-1(config)# ipv6 route 2001:DB8:5::1/127 s0/0/1 91 Branch-1(config)# ipv6 route 2001:DB8:6::1/127 s0/0/1 91 Branch-1(config)# ipv6 route 2001:DB8:C::1/127 s0/0/1 91 Branch-1(config)# ipv6 route 2001:DB8:A::1/127 s0/0/1 91 Branch-1#sh ipv6 route (output omitted) D 2001:DB8:4::/128 [90/3321856] via FE80::2E0:8FFF:FE31:4201, Serial0/0/0 D 2001:DB8:5::/128 [90/3321856] via FE80::2E0:8FFF:FE31:4201, Serial0/0/0 D 2001:DB8:6::/128 [90/3321856] via FE80::2E0:8FFF:FE31:4201, Serial0/0/0 D 2001:DB8:B::/127 [90/3193856] via FE80::2E0:8FFF:FE31:4201, Serial0/0/0 D 2001:DB8:C::/127 [90/2681856] via FE80::2E0:8FFF:FE31:4201, Serial0/0/0 Branch-1# Branch-1#show ipv6 route (output omitted) S 2001:DB8:4::/128 [91/0] via ::, Serial0/0/1 S 2001:DB8:5::/128 [91/0] via ::, Serial0/0/1 S 2001:DB8:6::/128 [91/0] via ::, Serial0/0/1 S 2001:DB8:A::/128 [91/0] via ::, Serial0/0/1 S 2001:DB8:C::/128 [91/0] Branch-1#

Notas do Editor

  1. In order for Branch-1 to forward a packet to Branch-2’s LANs, it has to send the packet out of its serial 0/0/1 interface. The exit interface is also considered the direction in which to reach these networks.
  2. Using the exit interface displays the static route as being directly connected, hence the name Directly connected static route. Read the “L” on the slide. Explain how the link shows a 128 bit prefix and the “C” displays the actual prefix used. In this example, the subnet identified by the “C” is the 2001:DB8:A::2/127 and the address configured on the interface identified by the “L” or local host route is 2001:DB8:A::3/128
  3. In this example, in order for Branch-1 to forward a packet to Branch-2’s LANs it must forward the packet to the next hop router in the direction of those networks. In this example, that would be the IPv6 address of Branch-2.
  4. There is a noticeable difference how a directly connected and a recursive static route are displayed in the routing table. A directly connected static route shows that it is directly connected to an interface, while the recursive static route shows via the next hop router identified by its IPv6 address. In this example, in order for Branch-1 to route traffic to Brnach-2’s LANs, it will send it to the 2001:DB8:A::2 address which happens to be the IPv6 address configured on Branch-2. Now the router has to do a second routing table lookup to determine how to get to the 2001:DB8:A::2 network. Based on this information, the router will now forward the packet out of its serial 0/0/1 interface.
  5. Fully specified static routes displays both the next hop router’s IPv6 address as well as the exit interface.
  6. Fully specified static routes displays both the next hop router’s IPv6 address as well as the exit interface. As you can see in the routing table, a fully specified static route displays both the next hop router’s IPv6 address as well as the exit interface.
  7. A default route is used when no other routes in the routing table match the packet destination IP address. In other words, when a more specific match does not exist. A default route is usually configured on a company's edge router that connects to the ISP’s network. The command for an IPv6 default route is ::/0. This is the IPv6 version of the all zero address (remember the :: is used to identify consecutive zeros) which is similar to the quad zero address used in an IPv4 default route. A default route can be configured as a directly connected, recursive, or as a fully specified static default route.
  8. Notice how the default route is displayed in the routing table as an “S” because the correct name is a static default route but notice that the * (asterisk) is not used to identify a default route in an IPv6 routing table.
  9. Notice how we can ping both LAN interfaces with only one static route entry in the routing table. Instead of configuring two static routes to reach Branch-2’s LANs, we can summarize them based on common bits in the network portion of the address. In this example, both addresses have the first 46-bits in common. 16 bits in the first two hextets and 14 bits in the 3rdhextet for a total of 63-bits. As you can see, we can ping each LAN interface with only one static route entry in the routing table.
  10. Some of the output was omitted because it didn’t fit on the slide. 5 floating static routes were configured with an administrative distance of 91, one more that the routing protocol which in this case is EIGRP. The output to the left displays the IPv6 routing table with only the dynamic routes installed. When the primary path (interface s0/0/0) goes down, the dynamic routes are removed from the routing table and the floating static routes replace them. The Branch-1 will now route traffic to Branch-2 through the backup path (Serial 0/0/1).