Cisco – How to Disable IP Fragmentation on Cisco Port

ciscomturouterswitch

We are getting many IP Fragmentation attack. Our server only dealing with UDP RTP traffic so i wonder can we set don't fragment configuration so switch or cisco router port drop all packet instead of sending them to Server and server get overload to reassemble them.

I know IP Fragmentation is very important but in our case we are only handling RTP UDP traffic and packet size is very small.. so i doubt we need IP Fragmentation feature.

Best Answer

On the external interface of your router, use this ACL:

access-list extended NO_FRAG
deny ip any any fragments
permit ip any any
end

interface <ext interface>
ip access-group NO_FRAG in
Related Topic