What Is IPv6 Static and Default Route - How To Configuration

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

11/23/2016 What is IPv6 Static and Default Route ?

How to Configuration

Home
Networking Fundamentals
Routing
Switching
IP Routing Protocols
IP Addressing
Access Control Lists – ACLs
What is a VLAN?
Network Security.
Network Troubleshooting.
Advertise
Book Store
Services

What is IPv6 Static and Default Route ? How to


Conꆿ�guration
By orbitco | 9th November 2015 0 Comment

Static and default routes IP conꆿ�gurations on network routers is to enable communication to remote
networks that are not directly connected.

There are similarities when conꆿ�guring IPv4 and IPv6 static and default routes on Cisco Integrated
Services Routers (ISRs), the only diȋerence is the IP addressing formats and IPv6 routing had to be
enabled on the router with the ipv6 unicast-routing command in global conꆿ�guration mode.

2N2222A DataSheet PDF


Download PDF Datasheets for Free. No Registering Required. Go to datasheetspdf.com

Types of IPv6 Static and Default Routes

There are three types of IPv6 static and default routes:

Directly Connected IPv6 Static Route – A directly connected static route is enabled when an outgoing
interface is speciꆿ�ed.

A directly connected static route is normally used with a point-to-point serial interface.

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 1/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

To conꆿ�gure a directly attached IPv6 static route, use the following command format:

e.g.

Router(conꆿ�g)# ipv6 route <ipv6-preꆿ�x/preꆿ�x-length> <outgoing-interface-type> <outgoing-interface-


number>

Recursive IPv6 Static Route – A recursive static route is created when specifying the next-hop IP
address.

This method enable the router to perform a recursive lookup in the routing table in order to identify the
outgoing interface.

In a recursive IPv6 static route, the route entry has the next-hop router IPv6 address.

To conꆿ�gure a recursive IPv6 static route, use the following command format:

e.g.

Router(conꆿ�g)# ipv6 route <ipv6-preꆿ�x/preꆿ�x-length> <next-hop-ipv6-address>

Default IPv6 Static Route – A default IPv6 static route is created by specifying the destination IPv6
preꆿ�x and preꆿ�x length all zeros, ::/0.

e.g.

Router(conꆿ�g)# ipv6 route ::/0 <outgoing-interface-type> <outgoing-interface-number> {and/or} <next-hop-


ipv6-address>

2N2222A DataSheet PDF


Download PDF Datasheets for Free. No Registering Required. Go
to datasheetspdf.com

How to Con�gure IPv6 Static and Default Routes.

We will use the topology below as an example:

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 2/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

Step-by-step IPv6 static and default routes con�guration.

All router interfaces must be enabled with IPv6 unicast-routing command before further conꆿ�gurations.

If you look closely at the topology, the routers GigabitEthernet0/1 (G0/1) interface has a globally routable
unicast address and EUI-64 is used to create the interface identiꆿ�er portion of the address.

The S0/0/1 interface has a privately routable, unique-local address, which is recommended for point-to-
point serial connections.

R1 Con�guration.

1. Enable IPv6 routing, then conꆿ�gure the router G0/1 and serial interface with IPv6 address.

R1(conꆿ�g)# ipv6 unicast-routing

R1(conꆿ�g)# interface g0/1

R1(conꆿ�g-if)# ipv6 address 2001:FC8:A72C:A::/64 eui-64

R1(conꆿ�g-if)# no shutdown

R1(conꆿ�g-if)# interface serial 0/0/1

R1(conꆿ�g-if)# ipv6 address FC00::1/64

R1(conꆿ�g-if)# no shutdown

R1(conꆿ�g-if)# exit

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 3/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

R2 Con�guration.

2. Enable IPv6 routing, then conꆿ�gure the router G0/1 and serial interface with IPv6 address.

R2(conꆿ�g)# ipv6 unicast-routing

R2(conꆿ�g)# interface g0/1

R2(conꆿ�g-if)# ipv6 address 2001:FC8:A72C:B::/64 eui-64

R2(conꆿ�g-if)# no shutdown

R2(conꆿ�g-if)# interface serial 0/0/0

R2(conꆿ�g-if)# ipv6 address FC00::2/64

R2(conꆿ�g-if)# no shutdown

R2(conꆿ�g-if)# exit

How to Con�gure a directly connected IPv6 static route.

R1(con�g)# ipv6 route 2001:FC8:A72C:B::/64 serial 0/0/1

R1(conꆿ�g)#

Notepad for Write Down Your Thoughts Right


Code Next to Code

3. Now create a return route to 2001:FC8:A72C:A::/64 on R2 to successfully ping across the network.

R2(con�g)# ipv6 route 2001:FC8:A72C:A::/64 serial 0/0/0

R2(conꆿ�g)#

Now that both routers have static routes conꆿ�gured on them, communication across the network will be
successful.

How to Con�gure a recursive IPv6 static route.

In a next-hop/recursive static route, the IPv6 address of the neighboring router is speciꆿ�ed.

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 4/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

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.

Firstly, delete the directly enabled static route On router R1, and conꆿ�gure a recursive static route.

R1(conꆿ�g)# no ipv6 route 2001:FC8:A72C:B::/64 serial 0/0/1

R1(conꆿ�g)# ipv6 route 2001:FC8:A72C:B::/64 FC00::2

R1(conꆿ�g)# exit

also, delete the directly enabled static route On router R2, and conꆿ�gure a recursive static route.

R2(conꆿ�g)# no ipv6 route 2001:FC8:A72C:A::/64 serial 0/0/0

R2(conꆿ�g)# ipv6 route 2001:FC8:A72C:A::/64 FC00::1

R2(conꆿ�g)# exit

How to Con�gure a default IPv6 static route.

In a default static route, the destination IPv6 preꆿ�x and preꆿ�x length are all zeros.

Firstly, delete the recursive static route on router R1 and conꆿ�gure a default static route.

R1(conꆿ�g)# no ipv6 route 2001:FC8:A72C:B::/64 FC00::2

R1(conꆿ�g)# ipv6 route ::/0 serial 0/0/1

R1(conꆿ�g)#

Delete the recursive static route and add a default static route on R2.

R2(conꆿ�g)# no ipv6 route 2001:FC8:A72C:A::/64 FC00::2

R2(conꆿ�g)# ipv6 route ::/0 serial 0/0/0

R2(conꆿ�g)#

Why We Need IPv6.

IPv6 Address Expression and Example.

Types of IPv6 Address

How to Conꆿ�gure IPv6 on Cisco Router.

How DHCPv6 Works

IPv6 Routing Protocols.

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 5/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

IPv6 ACLs

Host Standby Router Protocol (HSRP)

0 ‫ﺃﻋﺟﺑﻧﻲ‬ 0 tweet

IP Addressing

Related Posts
What is Stateless DHCPv6? Explained with Examples

What is Stateful DHCPv6: DHCPv6 Autoconꆿ�guration- Server and Client.

What is IPv6? Explained with Examples

What is CIDR? Explained with Examples

← What is Network Monitoring ? Explained What is Network Security software ? Explained →

Leave a Reply

Your email address will not be published. Required ꆿ�elds are marked *

Comment

Name *

Email *

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 6/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

Website

Post Comment

Search

Sponsors

Sign Up For Post Updates

* required

First Name:

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 7/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

Email Address: *

Sign Me Up

Email & Social Media


Marketing by
VerticalResponse

Home

Advertise

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 8/9
11/23/2016 What is IPv6 Static and Default Route ? How to Configuration

Routing

Switching

Book Store

free vlsm made easy ebook


download

(c) Copyright 2013. Orbit-Computer-Solutions.Com. All rights reserved. The information provided on this

website is for informational purposes only. Orbit-computer-solutions.com makes no warranties, either


expressed or implied, with respect to any information contained on this website. Orbit -computer-

solutions.com reserves the right to change this policy at any time without prior notice. Cisco and All related

product mentioned in any portion of this website are the registered trademarks of Cisco.com their

respective owners. Microsoft Windows and All related products mentioned in any portion of this website are
registered trademark of Microsoft Corporation.

http://www.orbit­computer­solutions.com/ipv6­static­and­default­route­how­to­configure­ipv6­static­and­default­route/ 9/9

You might also like