I have MPLS TE configured and working, but it is currently using IPV4 and I needed to include IPV6. My current tunnel configuration is the following:
interface Tunnel1
ip unnumbered Loopback0
ipv6 enable
tunnel destination 200.0.0.2
tunnel mode mpls traffic-eng
tunnel mpls traffic-eng autoroute announce
tunnel mpls traffic-eng priority 7 7
tunnel mpls traffic-eng bandwidth 2000
tunnel mpls traffic-eng path-option 1 dynamic
no routing dynamic
!
I know I need to activate ipv6 cef
.
I have currently configured PBR (Policy Based Routing) to route all the traffic I need through this tunnel:
access-list 101 permit icmp 81.100.1.192 0.0.0.63 81.100.1.0 0.0.0.63
route-map trafficTOOPorto permit 10
match ip address 101
set interface Tunnel1
!
I wanted to know how can I achieve the same but using IPV6 (which I have configured in all other interfaces of the network). I already know that IPV6 is not supported by MPLS. So what should I do?