cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3079
Views
5
Helpful
2
Replies

Policy Based Routing on a Cisco 3560x

davidpurdie
Level 1
Level 1

Hi,

I'm trying to configure PBR on a Cisco  WS-C3560X-24P-E. I am trying to redirect packets to another next-hop  (route not in routing table as I have a default route configured) once  it has matched an extended access list. Please see config below

sdm prefer routing

ip access-list extended Test

permit tcp 172.16.1.0 0.0.0.255 any eq www 443

route-map RMTest permit 10

match ip address Test

set ip default next-hop 192.168.0.1

interface Vlan1

ip address 172.16.1.1 255.255.255.0

ip route-cache policy

no ip route-cache cef

ip policy route-map RMTest

After I put in the ip policy route-map command I get the following error:

%PLATFORM_PBR-3-UNSUPPORTED_RMAP: Route-map I_Net not supported for Policy-Based Routing

Any ideas?

2 Replies 2

John Blakley
VIP Alumni
VIP Alumni
You can't use the "ip default next-hop" under the route map.

Error Message    PLATFORM_PBR-3-UNSUPPORTED_RMAP: Route-map [chars] not supported for Policy-Based Routing

Explanation    This message means that the route-map attached to an interface for policy routing  contains an action that is not supported on this platform. This is a hardware limitation. [chars] is the  route-map.

Recommended Action    Reconfigure the route-map to use permit entries and set ip next-hop actions only.

HTH,
John

*** Please rate all useful posts ***

HTH, John *** Please rate all useful posts ***

Thanks John, I had the same issue and your explanation quickly helped me to find the answer.

Siddhartha

Siddhartha