Hi to all,
I have the following configuration Internet Internet TO 10.2.0.0/16 ^ ^ BGP AS600 | | BGP AS600 | 10.60.2.2 --+ +--10.64.2.2 | | | | | Left | Middle | Right
10.60.2.10---- 10.60.2.3 (G0/0) (G0/1) 10.64.2.3 ----- 10.64.2.10Routers Left and Right announce 10.60 and 10.64 through BGP on the other side. BGP routes are distributes to the Middle router through EIGRP The router in the middle is the default gateway for hosts on subnets
10.60 and 10.64 respectivelyon Middle I've set ip route default 0.0.0.0 0.0.0.0 10.60.2.2 ip route default 0.0.0.0 0.0.0.0 10.64.2.2 (tried also to set a metric on the routes, but no change)
And also to have hosts from 10.64.0.0 use 10.64.2.2 I've set a route map
ip access-list extended from1064to1060 permit ip 10.64.0.0 0.0.255.255 10.60.0.0 0.0.255.255 permit ip 10.64.0.0 0.0.255.255 10.200.0.0 0.0.255.255 ip access-list extended from1064toANY deny ip 10.60.0.0 0.0.255.255 any deny ip 10.200.0.0 0.0.255.255 any deny ip 10.64.0.0 0.0.255.255 10.15.0.0 0.0.255.255 deny ip 10.64.0.0 0.0.255.255 10.16.0.0 0.0.255.255 permit ip 10.64.0.0 0.0.255.255 any
route-map toANY-RMAP permit 5 match ip address from1064to1060 set interface GigabitEthernet0/0 ! route-map toANY-RMAP permit 10 match ip address from1064toANY set ip next-hop 10.64.2.2 !
I notice a traceroute go always through 10.60 despite it matches the policy
example : traceroute 195.11.34.97 from 10.64.2.10
10.64.2.3 10.60.2.3 10.64.2.3 10.64.2.2Any clues ?? Thanks in advance Daniel