<?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: IDSM Traffic Exclusion in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455586#M67529</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Omair,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure, I understand.&amp;nbsp; I did discuss the second map statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The traffic to 10.1.1.1 will not match this clause and so it won't be captured but will match the next clause and be forwarded.&amp;nbsp; Of course, your second access-list could have been "10 permit ip any any" and it would work since all that should make it to this clause is traffic to 10.1.1.1.&amp;nbsp; Assuming everything else is correct in your configuration, it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am referring to each vlan map statement as "clause".&amp;nbsp; So, you did this right...the single host traffic won't match the first clause (vlan map) and will proceed to the next clause (vlan map statement).&amp;nbsp; I don't see a problem with your configuration except, the missing "ip" in the access-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 May 2010 16:58:55 GMT</pubDate>
    <dc:creator>Ronald Anthony</dc:creator>
    <dc:date>2010-05-03T16:58:55Z</dc:date>
    <item>
      <title>IDSM Traffic Exclusion</title>
      <link>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455583#M67524</link>
      <description>&lt;P&gt;Is it possible to exclude traffic which be default goes to IDSM. I have following scenario:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LAN--&amp;gt;IDSM-&amp;gt;FWSM--&amp;gt;Server VLAN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDSM and FWSM are in one single chassis and all the traffic coming from LAN is captured and forwarded to IDSM before it hits FWSM. I need to exclude some traffic that should not get captured and gets forwarded to IDSM but should hit FWSM directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following configuration exist currently:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan access-map idsm-map 10&lt;/P&gt;&lt;P&gt;match ip address idsm-acl&lt;/P&gt;&lt;P&gt;action forward captured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list ext idsm-acl&lt;/P&gt;&lt;P&gt;10 permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking of doing following for exclusion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan access-map idsm-map 10&lt;/P&gt;&lt;P&gt;match ip address idsm-acl&lt;/P&gt;&lt;P&gt;action forward captured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan access-map idsm-map 20&lt;/P&gt;&lt;P&gt;match ip address idsm-acl-1&lt;/P&gt;&lt;P&gt;action forward&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list ext idsm-acl&lt;/P&gt;&lt;P&gt;1 deny any host 10.1.1.1&lt;/P&gt;&lt;P&gt;10 permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list ext idsm-acl-1&lt;/P&gt;&lt;P&gt;10 permit ip any host 10.1.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will later configuration stop any traffic for destination 10.1.1.1 bypass IDSM or is there any other way aroud to achieve this on IDSM itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later&lt;/P&gt;&lt;P&gt;Omair&lt;/P&gt;</description>
      <pubDate>Sun, 10 Mar 2019 11:58:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455583#M67524</guid>
      <dc:creator>oqureshi</dc:creator>
      <dc:date>2019-03-10T11:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: IDSM Traffic Exclusion</title>
      <link>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455584#M67526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Omair,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you are going about this the correct way.&amp;nbsp; You don't want to send traffic to the IDSM that is not intended to go through the IDSM.&amp;nbsp; What you describes sounds good...you will just have to add "ip" to your access-list statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list ext idsm-acl&lt;/P&gt;&lt;P&gt;1 deny any host 10.1.1.1&amp;nbsp; --should be 1 deny ip any host 10.1.1.1&lt;/P&gt;&lt;P&gt;10 permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The traffic to 10.1.1.1 will not match this clause and so it won't be captured but will match the next clause and be forwarded.&amp;nbsp; Of course, your second access-list could have been "10 permit ip any any" and it would work since all that should make it to this clause is traffic to 10.1.1.1.&amp;nbsp; Assuming everything else is correct in your configuration, it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Apr 2010 19:59:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455584#M67526</guid>
      <dc:creator>Ronald Anthony</dc:creator>
      <dc:date>2010-04-30T19:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: IDSM Traffic Exclusion</title>
      <link>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455585#M67527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I little confuse from your reply as you didnt say anything about second vlan map, below is the final configs that I understand might be correct, please correct me if I am wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan access-map idsm-map 10&lt;/P&gt;&lt;P&gt;match ip address idsm-acl&lt;/P&gt;&lt;P&gt;action forward captured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vlan access-map idsm-map 20&lt;/P&gt;&lt;P&gt;match ip address idsm-acl-1&lt;/P&gt;&lt;P&gt;action forward&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list ext idsm-acl&lt;/P&gt;&lt;P&gt;1 deny ip any host 10.1.1.1&lt;/P&gt;&lt;P&gt;10 permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list ext idsm-acl-1&lt;/P&gt;&lt;P&gt;10 permit ip any host 10.1.1.1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 May 2010 09:03:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455585#M67527</guid>
      <dc:creator>oqureshi</dc:creator>
      <dc:date>2010-05-01T09:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: IDSM Traffic Exclusion</title>
      <link>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455586#M67529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Omair,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure, I understand.&amp;nbsp; I did discuss the second map statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The traffic to 10.1.1.1 will not match this clause and so it won't be captured but will match the next clause and be forwarded.&amp;nbsp; Of course, your second access-list could have been "10 permit ip any any" and it would work since all that should make it to this clause is traffic to 10.1.1.1.&amp;nbsp; Assuming everything else is correct in your configuration, it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am referring to each vlan map statement as "clause".&amp;nbsp; So, you did this right...the single host traffic won't match the first clause (vlan map) and will proceed to the next clause (vlan map statement).&amp;nbsp; I don't see a problem with your configuration except, the missing "ip" in the access-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 16:58:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/idsm-traffic-exclusion/m-p/1455586#M67529</guid>
      <dc:creator>Ronald Anthony</dc:creator>
      <dc:date>2010-05-03T16:58:55Z</dc:date>
    </item>
  </channel>
</rss>

