! ... ! ipv6 unicast-routing ipv6 cef ip cef ! ! ... ! ! Cisco demands configuring the "phone net" 941210 ! interface Loopback0 ip address 10.10.0.12 255.255.255.255 ipv6 address 2001:DB8::1/32 ! ! interface GigabitEthernet0/1 description IOP interface ip address 10.63.0.1 255.255.255.252 duplex auto speed auto ! ! router bgp 65100 bgp router-id 10.10.0.12 bgp log-neighbor-changes timers bgp 10 30 neighbor 10.10.5.12 remote-as 65105 neighbor 10.10.5.12 ebgp-multihop 3 neighbor 10.63.0.2 remote-as 65105 neighbor 10.63.0.2 update-source GigabitEthernet0/1 ! address-family ipv4 no bgp nexthop trigger enable network 10.10.0.0 mask 255.255.0.0 network 10.10.0.12 mask 255.255.255.255 neighbor 10.10.5.12 activate neighbor 10.10.5.12 next-hop-self neighbor 10.10.5.12 advertisement-interval 1 neighbor 10.10.5.12 soft-reconfiguration inbound ! ! do not advertise any IPv4 nets to the CO-neighbors! ! neighbor 10.10.5.12 distribute-list 1 out neighbor 10.63.0.2 activate neighbor 10.63.0.2 next-hop-self neighbor 10.63.0.2 advertisement-interval 1 neighbor 10.63.0.2 soft-reconfiguration inbound no auto-summary exit-address-family ! address-family ipv6 ! to redistribute routes into OSPFv3 use: !bgp redistribute-internal ! to redistribute routes from OSPFv3 use: !redistribute ospf 1 match internal external 1 external 2 ! network 2001:DB8:941:210::/64 network 2001:DB8:941:210:321:2131::/96 neighbor 10.10.5.12 activate neighbor 10.10.5.12 advertisement-interval 1 neighbor 10.10.5.12 soft-reconfiguration inbound neighbor 10.10.5.12 route-map MAP out exit-address-family ! ! do not advertise any IPv4 nets to the CO-neighbors! ! access-list 1 deny 0.0.0.0 ! ! set the CO next hop ! route-map MAP permit 10 set ipv6 next-hop 2001:DB8::10:10:0:12 ! ! make these resolvable ! ip route 10.10.0.0 255.255.0.0 Null0 ! ! make these resolvable ! ipv6 route 2001:DB8:941:210::/64 Null0 ipv6 route 2001:DB8:941:210:321:2131::/96 Null0 ! ! ...