SlideShare une entreprise Scribd logo
1  sur  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.

Contenu connexe

Tendances (20)

IPv6
IPv6IPv6
IPv6
 
Unicast multicast & broadcast
Unicast multicast & broadcastUnicast multicast & broadcast
Unicast multicast & broadcast
 
IPV4 vs IPV6
IPV4 vs IPV6IPV4 vs IPV6
IPV4 vs IPV6
 
Address resolution protocol (ARP)
Address resolution protocol (ARP)Address resolution protocol (ARP)
Address resolution protocol (ARP)
 
Static Routing
Static RoutingStatic Routing
Static Routing
 
Subnetting
SubnettingSubnetting
Subnetting
 
Chapter 10 - DHCP
Chapter 10 - DHCPChapter 10 - DHCP
Chapter 10 - DHCP
 
CCNA Lab Guide
CCNA Lab GuideCCNA Lab Guide
CCNA Lab Guide
 
Cisco ospf
Cisco ospf Cisco ospf
Cisco ospf
 
IPv4 Addressing
 IPv4 Addressing   IPv4 Addressing
IPv4 Addressing
 
ARP
ARPARP
ARP
 
IPv4 addressing and subnetting
IPv4 addressing and subnettingIPv4 addressing and subnetting
IPv4 addressing and subnetting
 
Eigrp.ppt
Eigrp.pptEigrp.ppt
Eigrp.ppt
 
Network Address Translation (NAT)
Network Address Translation (NAT)Network Address Translation (NAT)
Network Address Translation (NAT)
 
Network address translation
Network address translationNetwork address translation
Network address translation
 
Easy subnetting
Easy subnettingEasy subnetting
Easy subnetting
 
Routing Information Protocol
Routing Information ProtocolRouting Information Protocol
Routing Information Protocol
 
IPv4
IPv4IPv4
IPv4
 
IP RAN 100NGN
IP RAN 100NGNIP RAN 100NGN
IP RAN 100NGN
 
Ip address presentation
Ip address presentationIp address presentation
Ip address presentation
 

En vedette

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
 

En vedette (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
 

Similaire à 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
 

Similaire à 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...
 
OSPF v3
OSPF v3OSPF v3
OSPF v3
 
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
 

Plus 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
 

Plus 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
 

Dernier

Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 

Dernier (20)

Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 

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#

Notes de l'éditeur

  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).