How to configure static routing in IPv6 on Cisco Routers
How to configure static routing in IPv6 on Cisco Routers
Imagine you are standing on the shore of a vast ocean – its far side not visible in the distance. The right and left edges recede into the fringes of your vision and disappear over the horizon. The water is inky black, so dark you can’t see even the pebbles under the surface even at your feet where it is only inches deep. Where are you? You are about to dip your toe into the immense IPv6 address space.
This might sound like the beginning of a horror story – and to some people, it is. IPv6 is enormous, at least in mathematical terms, so some may interpret that as IPv6 being too much to digest. This is not the case. The earlier reference to dipping a toe is apropos. As with any other topic, a great way to begin is to take little nibbles of the topic rather than trying to gulp down the entire subject in one sitting. So cast aside your flip-flops and let’s start dipping toes.
As noted in the title of this blog, the scope will be limited to static routing; that is, routing in the absence of any routing protocol. First, let’s take a look at the scenario:
To quote from “The Hunt for Red October,” I like to ‘run home to mama’ when I am trying to learn something new by generating a frame of reference with something I already know. In the scenario above, I have configured static routes to allow for complete end-to-end IPv4 connectivity. On Branch I have configured it thus:
ip route 172.16.1.0 255.255.255.0 209.165.201.2
On HQ I have a corresponding static route pointing back the other way that looks like this:
ip route 10.1.10.0 255.255.255.0 209.165.201.1
If everything is working as expected, I should be able to ping from HQ to PC, and use a source address from Loopback 0. Let’s check:
Cool! All is well. Since many readers will already be familiar with the principles of IPv4 static routing, let’s get a little toe-dipping action by performing the same feat of legerdemain using IPv6. The IPv6 addresses have already been placed on the interfaces as shown in the diagram. You will note that PC1 has no IPv6 address configured. So let’s first just use a manually configured IPv6 address on PC1 and verify that we can ping the Branch router with it. Just like in IPv4, I need to select an IPv6 address that is in the same network as the address on Branch that I am using as a target. The address on Branch is 2001:DB8:C0A8:1::1/64. Since the first 64 bits belong to the network, my manually assigned address on PC1 need to match to the first 64 bits as well. I will use 2001:DB8:C0A8:1::2/64. To verify:
If this were IPv4 and I wanted to verify connectivity at Layer 2, I would try to ping from PC1 to Branch. Let’s try the same thing using IPv6:
We are not just dipping our toe into the IPv6 ocean – we are walking on the water! The next step would be to ping from PC1 to the HQ router. Let’s see if we can get that far…
The first try garnered an error message that there was no valid source address for the destination. I then tried using the source address information that was just configured – to no avail. We cannot reach the intended destination yet. Calling on our IPv4 troubleshooting skills, we quickly discern that if PC1 has no default route, any pings to an unknown destination will fail. Let’s correct that by configuring a default IPv6 route on PC1. I configured it on PC1 with the following command: ipv6 route ::/0 f0/0 2001:DB8:C0A8:1::1
With that in place, let’s try to ping g0/0 on HQ again. I also configured HQ to debug IPv6 icmp messages to see if they are arriving. First, the try from PC1:
Now to see if HQ is receiving the pings:
Sure enough, the pings are arriving. So the problem must be the path back. Since I already configured a default route on PC1, let’s do something similar but different by configuring a static route on HQ pointing specifically to the network from which PC1 is pinging. Like this:
ipv6 route 2001:db8:c0a8:1::/64 g0/0 2001:db8:d1a5:1::1
With that in place, let’s retry that ping from PC1:
Now it is prediction time. Will I be able to successfully ping from PC1 to the Loopback 0 interface on HQ? Place your bets, place your bets. If you think it will not be successful, what is your reason why? Okay, enough suspense, let’s check:
Let’s run through the progression to see why it fails. PC1 has a default route that points to f1/0.10 on Branch. HQ can successful ping PC1. Where is the gap in our network? Let’s look at the ipv6 routing table on Branch:
Aha! Branch does not know about the ipv6 network represented by the Loopback 0 on HQ. Let’s fix that with this command:
ipv6 route 2001:db8:ac10:100::/64 g0/0 2001:db8:d1a5:1::2
Now Branch has the necessary information, so let’s try that same ping again:
Yippee! Success at last! So we have configured a very small networking environment and made it work using all manually configured ipv6 route commands – not a routing protocol in sight. Now that we have done a little wading in the IPv6 ocean, let’s see if we can move on to surfing. In a future blog, I will introduce IPv6 routing using dynamic routing protocols. The ocean is vast, yet it can be conquered. Begin the journey…
Mark Jacob
Cisco Instructor – Interface Technical Training
Phoenix, AZ
You May Also Like
debug ipv6 icmp, default route, IPv6, ping, static route, static routing
A Simple Introduction to Cisco CML2
0 3703 0Mark Jacob, Cisco Instructor, presents an introduction to Cisco Modeling Labs 2.0 or CML2.0, an upgrade to Cisco’s VIRL Personal Edition. Mark demonstrates Terminal Emulator access to console, as well as console access from within the CML2.0 product. Hello, I’m Mark Jacob, a Cisco Instructor and Network Instructor at Interface Technical Training. I’ve been using … Continue reading A Simple Introduction to Cisco CML2
How to create a Cisco IOS Banner – Login and MOTD Message of the Day
0 4246 4In this video, Cisco CCNA instructor Mark Jacob shows how to create a Login and Message of the Day (MOTD) banners in Cisco IOS. The Banner is an interesting feature of the Cisco IOS. You could probably get by without it, but in a commercial environment you want to have it.
OSPF Adjacency Troubleshooting Solution – Getting Close to the OSPF adj
0 247 1In this video, Cisco CCNA & CCNP instructor Mark Jacob shows how to troubleshoot OSPF Adjacency issues by showing the distance between routers with the show ip ospf neighbor command.