11-11-2018 10:00 PM - edited 03-01-2019 05:56 PM
Hi, I am doing some simple IPv6 routing lab using GNS3. Here's the topology:
the scenario is i want to redistribute the route from is-is to ospf network and vice versa.
here's the running config from R2:
Current configuration : 1329 bytes
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
!
hostname R2
!
boot-start-marker
boot-end-marker
!
!
!
no aaa new-model
no ip icmp rate-limit unreachable
ip cef
!
!
!
!
!
!
no ip domain lookup
ipv6 unicast-routing
ipv6 cef
!
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
ip tcp synwait-time 5
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex full
!
interface Serial1/0
no ip address
ipv6 address 2018::1:2/126
ipv6 enable
ipv6 router isis
serial restart-delay 0
isis circuit-type level-1
!
interface Serial1/1
no ip address
ipv6 address 2018::1:5/126
ipv6 enable
ipv6 ospf 1 area 0
serial restart-delay 0
!
interface Serial1/2
no ip address
shutdown
serial restart-delay 0
!
interface Serial1/3
no ip address
shutdown
serial restart-delay 0
!
router isis
net 11.0000.0000.0002.00
is-type level-1
redistribute ospf 1 metric 10 match internal
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
ipv6 router ospf 1
router-id 2.2.2.2
redistribute isis level-1-2 include-connected
!
!
!
!
control-plane
!
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line aux 0
exec-timeout 0 0
privilege level 15
logging synchronous
stopbits 1
line vty 0 4
login
!
!
end
The redistribution command seems works well at the R3:
But at R1, the redistribution is not working.
So that is the problem. The questions is, Am i make something stupid? Anyone know the solution for this problem? Please help me guys.
I am sorry if my English is bad :(
12-08-2018 03:10 AM
Hi,
Sorry for this answer coming so late. I still hope, though, it will be useful.
The redistribution into IS-IS did not work for you because of two important reasons:
If you wanted to fix your IS-IS configuration on R2, it would be:
route-map SetISISLevel permit 10 set level level-1 ! router isis net 11.0000.0000.0002.00 is-type level-1 ! address-family ipv6 redistribute ospf 1 metric 10 match internal route-map SetISISLevel include-connected
A couple of additional comments:
Please feel welcome to ask further!
Best regards,
Peter
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide