Hello everybody,
I am Implementing
Cisco IP Routing (CCNP ROUTE FLG) book and right now I am reviewing IPv6 chapter.
This part of OSPFv3 multiple instances over a single physical interface caught my attention
Attachment:
OSPFv3.png [ 159.41 KiB | Viewed 392 times ]
According to the Figure 8-27, each router is connected via a single interface to a shared segment.
R3 is running only one instance, Instance 1
R4 is running only one instance, Instance 2
R1 and R2 are running both instances
I wanted to see this running (since no example configuration for this feature was provided), so I fired up my GNS3, connected 4 routers (
C2691-ADVIPSERVICESK9-M, Version 12.4(15)T12) via a single Ethernet switch and eventually ended without getting it to work
I configured IPv6 addresses in Fa0/0 interfaces and verified connectivity (directly connected neighbors' Fa0/0s could be pinged)
I enabled
Code:
ipv6 unicast-routing
I created
Code:
ipv6 router ospf 1
process and assigned a unique router ID to every router
under R3 Fa0/0 interface I configured
Code:
ipv6 ospf 1 area 0 instance 1
under R4 Fa0/0 interface I configured
Code:
ipv6 ospf 1 area 0 instance 2
under R2 Fa0/0 interface I configured
Code:
ipv6 ospf 1 area 0 instance 1
ipv6 ospf 1 area 0 instance 2
under R1 Fa0/0 interface I configured
Code:
ipv6 ospf 1 area 0 instance 1
ipv6 ospf 1 area 0 instance 2
everything was running fine for instance 2 but no neighbors came up for instance 1
I checked the running-configuration and only the latter command for instance 2 was there
I tried it with separate OSPF proecesses on R1 and R2 e.g.
Code:
ipv6 ospf 1 area 0 instance 1
ipv6 ospf 2 area 0 instance 2
but it only took the latter command (the first one was overwritten with the second one)
Apparently it only takes 1
Code:
ipv6 ospf PROCESS-ID area AREA-ID
command per interface
Could anybody please tell me what am I doing wrong?
How can I run multiple instances of OSPFv3 over a single physical interface as shown in the book ?
Thank you very much for any answers in advance