<?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 multiple ports in extended access list in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/multiple-ports-in-extended-access-list/m-p/2199255#M361809</link>
    <description>&lt;P&gt;Allow Source 10.137.10.66 Destination 10.10.24.109 ports 1198,1199,5445,5455&lt;BR /&gt;&lt;BR /&gt;How I can add above ports in access list ??&lt;BR /&gt;&lt;BR /&gt;# access-list secure_access extended permit tcp object-group xxxx host xxxxx (ports??)&lt;BR /&gt;&lt;BR /&gt;1. How I can create object group for multiple ports?&lt;BR /&gt;2. How if I don't create object group for multiple ports?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Any PDF for how to add multiple ports and make groups in extended access list will be much appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support iPhone App&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2019 01:02:22 GMT</pubDate>
    <dc:creator>usmanghani255</dc:creator>
    <dc:date>2019-03-12T01:02:22Z</dc:date>
    <item>
      <title>multiple ports in extended access list</title>
      <link>https://community.cisco.com/t5/network-security/multiple-ports-in-extended-access-list/m-p/2199255#M361809</link>
      <description>&lt;P&gt;Allow Source 10.137.10.66 Destination 10.10.24.109 ports 1198,1199,5445,5455&lt;BR /&gt;&lt;BR /&gt;How I can add above ports in access list ??&lt;BR /&gt;&lt;BR /&gt;# access-list secure_access extended permit tcp object-group xxxx host xxxxx (ports??)&lt;BR /&gt;&lt;BR /&gt;1. How I can create object group for multiple ports?&lt;BR /&gt;2. How if I don't create object group for multiple ports?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Any PDF for how to add multiple ports and make groups in extended access list will be much appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support iPhone App&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 01:02:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/multiple-ports-in-extended-access-list/m-p/2199255#M361809</guid>
      <dc:creator>usmanghani255</dc:creator>
      <dc:date>2019-03-12T01:02:22Z</dc:date>
    </item>
    <item>
      <title>multiple ports in extended access list</title>
      <link>https://community.cisco.com/t5/network-security/multiple-ports-in-extended-access-list/m-p/2199256#M361811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you for example wanted to group the above ports and the ports used were TCP then you could use the following configuration on an ASA firewall&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object-group service SERVICES-TCP tcp&lt;/P&gt;&lt;P&gt; port-object range 1198 1199&lt;/P&gt;&lt;P&gt; port-object eq 5445&lt;/P&gt;&lt;P&gt; port-object eq 5455&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list TEST extended permit tcp host 10.137.10.66 host 10.10.24.109 object-group SERVICES-TCP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we look at the above ACL rule with "show access-list TEST" command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASA(config)# sh access-list TEST&lt;/P&gt;&lt;P&gt;access-list TEST; 3 elements; name hash: 0xd37fdb2b&lt;/P&gt;&lt;P&gt;access-list TEST line 1 extended permit tcp host 10.137.10.66 host 10.10.24.109 object-group SERVICES-TCP&lt;/P&gt;&lt;P&gt;&amp;nbsp; access-list TEST line 1 extended permit tcp host 10.137.10.66 host 10.10.24.109 range 1198 1199 (hitcnt=0) &lt;/P&gt;&lt;P&gt;&amp;nbsp; access-list TEST line 1 extended permit tcp host 10.137.10.66 host 10.10.24.109 eq 5445 (hitcnt=0) 0x81df9a21&lt;/P&gt;&lt;P&gt;&amp;nbsp; access-list TEST line 1 extended permit tcp host 10.137.10.66 host 10.10.24.109 eq 5455 (hitcnt=0) 0x08e8f13d&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Optionally without using any object-groups then you would have to simply write every line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list TEST extended permit tcp host 10.137.10.66 host 10.10.24.109 eq 1198&lt;/P&gt;&lt;P&gt;access-list TEST extended permit tcp host 10.137.10.66 host 10.10.24.109 eq 1199&lt;/P&gt;&lt;P&gt;access-list TEST extended permit tcp host 10.137.10.66 host 10.10.24.109 eq 5445&lt;/P&gt;&lt;P&gt;access-list TEST extended permit tcp host 10.137.10.66 host 10.10.24.109 eq 5455&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 11:27:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/multiple-ports-in-extended-access-list/m-p/2199256#M361811</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-02-19T11:27:25Z</dc:date>
    </item>
  </channel>
</rss>

