Notes
Chapter #1 – Static Routing
IPv6 routing is very similar to IPv4. On a Cisco router, start by enabling ‘ipv6 unicast’
Then, you can just use the ‘ipv6 route’ command to add static routes. ::/0 is the default route.
Use ‘show ipv6 route’ to show the routing table. Keep in mind that this is a different routing table to IPv4. They are independent of each other.
If you want, you can configure ‘unnumbered’ interfaces. These interfaces use link-local addresses only. All you have to do is enable IPv6 on the interface (ipv6 enable), and then the router will add a link-local address.
Chapter #2 – OSPFv3
OSPFv2 is IPv4 only. OSPFv3 can handle both IPv4 and IPv6. The basics of OSPFv3 are the same as OSPFv2. There are just a few differences in configuration.
The older way to configure OSPFv3 is with ‘ipv6 router ospf <process>’. This method is IPv6 only. The newer method is ‘router ospfv3 <process>’. This can be used with IPv4 or IPv6. Where there is a difference in configuration between the two, address-families are used. An address family just refers to different protocols, such as IPv4 and IPv6. Some routing protocols can carry more address families than just these two.
Command Summary
Command | Mode | Description |
ipv6 route <prefix> <next-hop> | Configuration | Create a static route |
ipv6 route ::/0 <next-hop> | Configuration | Create a default route |
ipv6 route <prefix> <next-hop> <metric> | Configuration | Create a floating static route |
show ipv6 route | Global Exec | Show the IPv6 routing table |
router ospfv3 <process-id> | Configuration | Configure/Start the OSPFv3 process |
ipv6 ospf <process-id> area <area> | Interface Configuration | Add the interface to an OSPFv3 area |
address-family ipv6 unicast | OSPFv3 configuration | Edit the IPv6 unicast settings |