ā02-29-2024 05:49 AM
I have an issue with a control plane policy that is tearing down BGP without any specific pattern.
ip access-list ex TEST
permit tcp host 192.168.1.1 host 192.168.1.2 eq bgp
permit tcp host 192.168.1.1 eq bgp host 192.168.1.2
policy-map CONTROL_PLANE_POLICY
class COPP_ROUTING
police rate 500 pps burst 750 packets peak-rate 1000 pps
conform-action transmit
exceed-action transmit
violate-action drop
class class-default
police rate 10 pps
conform action drop
So after a period of time BGP gets torn down. The peer is only sending a default route. The policy map does not show any exceed or violate in the COPP_ROUTING class.
What would be causing this?
Solved! Go to Solution.
ā02-29-2024 05:56 AM
Did you check arp it can Control plane drop arp which need for bgp to establish tcp connections
MHM
ā02-29-2024 05:56 AM
Did you check arp it can Control plane drop arp which need for bgp to establish tcp connections
MHM
ā02-29-2024 07:39 AM
Yep that did it. Created:
class-map ARP
match protocol arp
stuck that in the policy-map CONTROL_PLANE_POLICY
BGP has stayed up!
ā02-29-2024 07:41 AM - edited ā02-29-2024 07:44 AM
ā03-01-2024 12:14 AM
A very good spot. Just me typing it in for the sake of brevity i'm afraid.
It actually reads
class class-default
police rate 10 pps
conform-action transmit
exceed-action drop
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide