cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
440
Views
3
Helpful
4
Replies

ASA two default routes

Mohammed.Fawzi
Level 1
Level 1

hi

I have a scenario where I have 2 ISPs and they both have default route

route ISP1 0 0 1.1.1.1 1

route ISP2 0 0 2.2.2.2 2

i need network 192.168.1.0 to go out with ISP2 not ISP1

how can i do this in Cisco ASA

Best Regards,

1 Accepted Solution

Accepted Solutions

M02@rt37
VIP
VIP

Hello @Mohammed.Fawzi,

You can configure PBR:

route-map PBR_MAP permit 10
match ip address ISP2_TRAFFIC
set ip next-hop 2.2.2.2

ACL ISP2_TRAFFIC match the traffic you want to send through ISP2 (2.2.2.2): 192.168.1.0/24.

Apply the route map to the inside interface where the traffic originates.

interface inside
ip policy route-map PBR_MAP

 

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.

View solution in original post

4 Replies 4

@Mohammed.Fawzi to route a specific network out a different ISP than the default route then you will need to use Policy Based Routing (PBR). Example:- https://integratingit.wordpress.com/2020/03/01/asa-policy-based-routing/

 

M02@rt37
VIP
VIP

Hello @Mohammed.Fawzi,

You can configure PBR:

route-map PBR_MAP permit 10
match ip address ISP2_TRAFFIC
set ip next-hop 2.2.2.2

ACL ISP2_TRAFFIC match the traffic you want to send through ISP2 (2.2.2.2): 192.168.1.0/24.

Apply the route map to the inside interface where the traffic originates.

interface inside
ip policy route-map PBR_MAP

 

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.

its worked,thank you soo much

You're very welcome @Mohammed.Fawzi.

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.
Review Cisco Networking for a $25 gift card