<?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 Access list in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/access-list/m-p/4180420#M1075572</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;object network SSL-VPN-POOL&lt;BR /&gt; subnet 10.25.235.0 255.255.255.0&lt;BR /&gt;object-group service DM_INLINE_SERVICE&lt;BR /&gt; service-object icmp echo&lt;BR /&gt; service-object icmp echo-reply&lt;BR /&gt; service-object tcp destination eq https &lt;BR /&gt; service-object object vnc &lt;BR /&gt;&lt;BR /&gt;object network iDRAC_LAN&lt;BR /&gt; subnet 10.25.230.0 255.255.255.0&lt;BR /&gt;&lt;BR /&gt;access-list OUTSIDE_in extended permit &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;object-group DM_INLINE_SERVICE object SSL-VPN-POOL&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;object iDRAC_LAN&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you guys translate this access-list, what is the src ip and port and what is the dst ip and port?&lt;/P&gt;&lt;P&gt;if I am not wrong, the red is the source ip port, and the blue is the destination sets of ip port although we don't have any destination port in this example?!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 08 Nov 2020 03:20:57 GMT</pubDate>
    <dc:creator>WiLL-I-Am</dc:creator>
    <dc:date>2020-11-08T03:20:57Z</dc:date>
    <item>
      <title>Access list</title>
      <link>https://community.cisco.com/t5/network-security/access-list/m-p/4180420#M1075572</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;object network SSL-VPN-POOL&lt;BR /&gt; subnet 10.25.235.0 255.255.255.0&lt;BR /&gt;object-group service DM_INLINE_SERVICE&lt;BR /&gt; service-object icmp echo&lt;BR /&gt; service-object icmp echo-reply&lt;BR /&gt; service-object tcp destination eq https &lt;BR /&gt; service-object object vnc &lt;BR /&gt;&lt;BR /&gt;object network iDRAC_LAN&lt;BR /&gt; subnet 10.25.230.0 255.255.255.0&lt;BR /&gt;&lt;BR /&gt;access-list OUTSIDE_in extended permit &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;object-group DM_INLINE_SERVICE object SSL-VPN-POOL&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;object iDRAC_LAN&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you guys translate this access-list, what is the src ip and port and what is the dst ip and port?&lt;/P&gt;&lt;P&gt;if I am not wrong, the red is the source ip port, and the blue is the destination sets of ip port although we don't have any destination port in this example?!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Nov 2020 03:20:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-list/m-p/4180420#M1075572</guid>
      <dc:creator>WiLL-I-Am</dc:creator>
      <dc:date>2020-11-08T03:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Access list</title>
      <link>https://community.cisco.com/t5/network-security/access-list/m-p/4180450#M1075573</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/893003"&gt;@WiLL-I-Am&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No that's incorrect, the service object is referenced before source/destination networks. I pasted your config into my lab, as you can see the ports you defined in your service group are all destination services.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DC-2(config)# show access-list&lt;BR /&gt;access-list OUTSIDE_in; 4 elements; name hash: 0xc644d63b&lt;BR /&gt;access-list OUTSIDE_in line 1 extended permit object-group DM_INLINE_SERVICE object SSL-VPN-POOL object iDRAC_LAN (hitcnt=0) 0xc0311470&lt;BR /&gt;access-list OUTSIDE_in line 1 extended permit icmp 10.25.235.0 255.255.255.0 10.25.230.0 255.255.255.0 echo (hitcnt=0) 0x2aa70f34&lt;BR /&gt;access-list OUTSIDE_in line 1 extended permit icmp 10.25.235.0 255.255.255.0 10.25.230.0 255.255.255.0 echo-reply (hitcnt=0) 0xc3652676&lt;BR /&gt;access-list OUTSIDE_in line 1 extended permit tcp 10.25.235.0 255.255.255.0 10.25.230.0 255.255.255.0 &lt;STRONG&gt;eq https&lt;/STRONG&gt; (hitcnt=0) 0x45426cbd&lt;/PRE&gt;
&lt;P&gt;If you had a service group object with the service &lt;STRONG&gt;source&lt;/STRONG&gt; defined&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;object-group service SVC&lt;BR /&gt;service-object tcp &lt;STRONG&gt;source&lt;/STRONG&gt; eq 3000&lt;/PRE&gt;
&lt;P&gt;You'd see this in the ACL (traffic is permitted from&amp;nbsp;10.25.235.0/24 on source tcp/3000 to any destination port on 10.25.230.0/24).&lt;/P&gt;
&lt;PRE&gt;access-list OUTSIDE_in line 3 extended permit object-group SVC object SSL-VPN-POOL object iDRAC_LAN (hitcnt=0) 0x9a1dd9b3&lt;BR /&gt;access-list OUTSIDE_in line 3 extended permit tcp 10.25.235.0 255.255.255.0 &lt;STRONG&gt;eq 3000&lt;/STRONG&gt; 10.25.230.0 255.255.255.0 (hitcnt=0) 0x2d3359ec&lt;/PRE&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Sun, 08 Nov 2020 09:11:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-list/m-p/4180450#M1075573</guid>
      <dc:creator>Rob Ingram</dc:creator>
      <dc:date>2020-11-08T09:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Access list</title>
      <link>https://community.cisco.com/t5/network-security/access-list/m-p/4180465#M1075575</link>
      <description>&lt;PRE&gt;access-list OUTSIDE_in extended permit &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;object-group DM_INLINE_SERVICE&lt;/FONT&gt; object SSL-VPN-POOL&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;object iDRAC_LAN&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Green&lt;/FONT&gt;&lt;/STRONG&gt; - This is the protocl being used.&amp;nbsp; That is IP, TCP, UDP, ICMP, etc.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Red&lt;/FONT&gt;&lt;/STRONG&gt; -&amp;nbsp; is the source IP or subnet&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;Blue&lt;/FONT&gt;&lt;/STRONG&gt;&amp;nbsp;- is the destination IP or subnet&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Nov 2020 09:50:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-list/m-p/4180465#M1075575</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2020-11-08T09:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Access list</title>
      <link>https://community.cisco.com/t5/network-security/access-list/m-p/4180574#M1075577</link>
      <description>&lt;PRE&gt;object-group service DM_INLINE_SERVICE&lt;BR /&gt; service-object icmp echo &amp;lt;-ICPM is L3 protocol don't have source/destination L4 port number &lt;BR /&gt; service-object icmp echo-reply&amp;lt;-&amp;lt;-ICPM is L3 protocol don't have source/destination L4 port number&amp;nbsp;&lt;BR /&gt; service-object tcp destination eq https&amp;lt;-here you already specific L4 port number that the source is any and destination is http.&lt;/PRE&gt;&lt;P&gt;So you filter from SSL-VPN client toward destination LAN,&lt;BR /&gt;for tcp it easy&lt;BR /&gt;for ICMP &amp;nbsp;only &amp;nbsp;these types with source and destination is permit other is deny.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Nov 2020 19:59:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-list/m-p/4180574#M1075577</guid>
      <dc:creator>MHM Cisco World</dc:creator>
      <dc:date>2020-11-08T19:59:24Z</dc:date>
    </item>
  </channel>
</rss>

