<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CoPP Port-Filtering (Cppr) Causing DHCP Failure on Outside Interfa in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5347004#M1123520</link>
    <description>&lt;P&gt;I would suggest using an ACL to allow the DHCP traffic to the router control plane.&lt;/P&gt;
&lt;P&gt;1. Create an ACL that will match DHCP traffic.&lt;/P&gt;
&lt;P&gt;2. Create a new class-map that will match the ACL.&lt;/P&gt;
&lt;P&gt;3. Reference this class-map under the existing policy-map and set the action to pass.&lt;/P&gt;
&lt;P&gt;4. Apply the updated policy-map to the control plane.&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;</description>
    <pubDate>Thu, 13 Nov 2025 23:02:19 GMT</pubDate>
    <dc:creator>Ben Weber</dc:creator>
    <dc:date>2025-11-13T23:02:19Z</dc:date>
    <item>
      <title>CoPP Port-Filtering (Cppr) Causing DHCP Failure on Outside Interface</title>
      <link>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5346982#M1123519</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have configured the Control Plane CoPP Port-Filtering (Cppr) feature on a Cisco ISR 890 Series Router running IOS 15.8(3)M9 to stop the router from responding with &lt;STRONG&gt;closed&lt;/STRONG&gt; status on all closed or non-existent TCP/UDP ports.&lt;/P&gt;&lt;P&gt;Here is the configuration I applied:&lt;/P&gt;&lt;PRE&gt;class-map type port-filter match-any closed
match closed-ports

policy-map type port-filter closed
class closed
drop

control-plane host
service-policy type port-filter input closed&lt;/PRE&gt;&lt;P&gt;After applying this configuration, the router’s outside interface, which is configured with ip address dhcp, stopped receiving an IP address from the DHCP server. It seems this port-filtering setup is interfering with DHCP communication (UDP ports 67 and 68).&lt;/P&gt;&lt;P&gt;My questions are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Is there a way to exclude specific ports (like UDP 67/68) from this port-filtering configuration?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;If not, is there a workaround to allow the interface to obtain a DHCP IP address while still preventing the router from responding on all other closed/non-existent ports?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any guidance or configuration examples would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 21:16:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5346982#M1123519</guid>
      <dc:creator>mustafa.chapal</dc:creator>
      <dc:date>2025-11-13T21:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: CoPP Port-Filtering (Cppr) Causing DHCP Failure on Outside Interfa</title>
      <link>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5347004#M1123520</link>
      <description>&lt;P&gt;I would suggest using an ACL to allow the DHCP traffic to the router control plane.&lt;/P&gt;
&lt;P&gt;1. Create an ACL that will match DHCP traffic.&lt;/P&gt;
&lt;P&gt;2. Create a new class-map that will match the ACL.&lt;/P&gt;
&lt;P&gt;3. Reference this class-map under the existing policy-map and set the action to pass.&lt;/P&gt;
&lt;P&gt;4. Apply the updated policy-map to the control plane.&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 23:02:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5347004#M1123520</guid>
      <dc:creator>Ben Weber</dc:creator>
      <dc:date>2025-11-13T23:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: CoPP Port-Filtering (Cppr) Causing DHCP Failure on Outside Interfa</title>
      <link>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5347072#M1123526</link>
      <description>&lt;P&gt;To exclude or pass DHCP ports&lt;/P&gt;&lt;P&gt;If I add another port-filter class map for dhcp ports, the port-filter policy map does not give any police option under that class&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;class-map type port-filter match-any open
match port udp 67 68

policy-map type port-filter closed
class open
?
Policy-map class configuration commands:
drop Drop Control Plane traffic
exit Exit from class action configuration mode
log Log IPv4 and ARP packets
no Negate or set default values of a command&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try to add a regular class map for dhcp ports, the port-filter policy map does not allow that regular class to be added&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ip access-list extended dhcp
permit udp any any eq 67
permit udp any any eq 68

class-map match-any dhcp
match access-group name dhcp

policy-map type port-filter closed
class dhcp
% class dhcp of type default is not allowed in policy-map closed of type port-filter&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2025 07:05:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5347072#M1123526</guid>
      <dc:creator>mustafa.chapal</dc:creator>
      <dc:date>2025-11-14T07:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: CoPP Port-Filtering (Cppr) Causing DHCP Failure on Outside Interfa</title>
      <link>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5348618#M1123587</link>
      <description>&lt;P&gt;I was able to resolve this issue by modifying the class-map to explicitly exclude DHCP ports. The updated configuration is:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;class-map type port-filter match-all closed
 match closed-ports
 match not port udp 67 68&lt;/LI-CODE&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;After applying this change, the router’s outside interface was able to successfully obtain an IP address from the DHCP server while still enforcing port-filtering on all other closed or non-existent ports.&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;This approach ensures that DHCP traffic (UDP 67/68) is allowed through, preventing interference with IP address assignment, while maintaining the security benefits of Control Plane Port-Filtering on all other ports.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 08:55:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/copp-port-filtering-cppr-causing-dhcp-failure-on-outside/m-p/5348618#M1123587</guid>
      <dc:creator>mustafa.chapal</dc:creator>
      <dc:date>2025-11-20T08:55:28Z</dc:date>
    </item>
  </channel>
</rss>

