Thanks for the link!
I tried the config and now I have all traffic appearing to go down 1 link which is what I want, but it is going down the wrong link. I think I have it configured to do the opposite, but its not working. Here is how its config'd.
ISP 1 (I want this to be the primary link)
router bgp 14839
no synchronization
bgp log-neighbor-changes
redistribute static route-map static-out
neighbor 66.237.112.33 remote-as 2828
neighbor 66.237.112.33 version 4
neighbor 66.237.112.33 distribute-list 11 out
neighbor 66.237.112.33 route-map SetMetric out
neighbor 66.237.112.33 filter-list 1 out
route-map SetMetric permit 10
match ip address 11
set as-path prepend 14839
********************************************
ISP 2 (backup link)
router bgp 14839
no synchronization
bgp log-neighbor-changes
redistribute static route-map static-out
neighbor 4.24.149.53 remote-as 1
neighbor 4.24.149.53 version 4
neighbor 4.24.149.53 distribute-list 10 out
neighbor 4.24.149.53 route-map SetMetric out
neighbor 4.24.149.53 filter-list 1 out
route-map SetMetric permit 10
match ip address 10
set as-path prepend 14839 14839
**************************************
All traffic seems to be going through ISP 2 and I want it the other way.
Also when doing a show route-map, should I see counters incrementing if it is working?
daml3#show route-map SetMetric
route-map SetMetric, permit, sequence 10
Match clauses:
ip address (access-lists): 10
Set clauses:
as-path prepend 14839 14839
Policy routing matches: 0 packets, 0 bytes
Thanks again.