- CheckMates
- :
- Products
- :
- Quantum
- :
- Security Gateways
- :
- Re: Path Monitoring for Policy Based Routing
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Are you a member of CheckMates?
×- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Path Monitoring for Policy Based Routing
Hi, guys. Check Point newbie here.
I know there's been plenty of topics regarding PBR on Check Point, but I don't seem to find path monitoring configuration for PBR. Do Check Point support this?
I want the PBR rule to be active only if a particular IP is reachable from the Check Point. For example, send the traffic via MPLS if 5.5.5.5 is reachable. If the IP is unreachable, disable the PBR rule and forward the traffic based on the routing table. This is supported on Palo Alto and wondering is there a way to achieve this on CP.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The rule itself cannot be disabled but you can monitor routes in the PBR table and the route can be changed as per reachability. Manipulation of PBR routes should be able to help you achieve desired results. Please contact PS, TAC or Diamond for further assistance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I don't know if you found a solution your issue but as I was having the same question, I checked the documentation and found clish commands needed to monitor PBR routes. Here it's for default route but you can adapt it as you wish
set ip-reachability-detection ping address 1.1.1.1 enable-ping on
set ip-reachability-detection ping address 8.8.8.8 enable-ping on
set pbr table <PBR_Table> static-route default nexthop gateway address <Prefered_Default_Route> priority 1
set pbr table <PBR_Table> static-route default nexthop gateway address <Prefered_Default_Route> monitored-ip 1.1.1.1 on
set pbr table <PBR_Table> static-route default nexthop gateway address <Prefered_Default_Route> monitored-ip 8.8.8.8 on
set pbr table <PBR_Table> static-route default nexthop gateway address <Prefered_Default_Route> monitored-ip-option fail-any
set pbr table <PBR_Table> static-route default nexthop gateway address <Second_Prefered_Default_Route> priority 2
set pbr table <PBR_Table> static-route default nexthop gateway address <Second_Prefered_Default_Route> monitored-ip 1.1.1.1 on
set pbr table <PBR_Table> static-route default nexthop gateway address <Second_Prefered_Default_Route> monitored-ip 8.8.8.8 on
set pbr table <PBR_Table> static-route default nexthop gateway address <Second_Prefered_Default_Route> monitored-ip-option fail-any
set pbr table <PBR_Table> static-route default nexthop gateway address <Third_Prefered_Default_Route> priority 3
set pbr table <PBR_Table> static-route default nexthop gateway address <Third_Prefered_Default_Route> monitored-ip 1.1.1.1 on
set pbr table <PBR_Table> static-route default nexthop gateway address <Third_Prefered_Default_Route> monitored-ip 8.8.8.8 on
set pbr table <PBR_Table> static-route default nexthop gateway address <Third_Prefered_Default_Route> monitored-ip-option fail-any
save config
