<?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: MFP in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107119#M915360</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;Is there a way to limit the network ,but to exclude some IP addresses?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Aug 2008 13:16:24 GMT</pubDate>
    <dc:creator>TcsHungary</dc:creator>
    <dc:date>2008-08-07T13:16:24Z</dc:date>
    <item>
      <title>MFP</title>
      <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107114#M915350</link>
      <description>&lt;P&gt;Hi, We have 1 MB dedicated link and network gets slower when mutiple users download anything. I know we can restrict them by using MFP but we have connected few sites by using STS tunnel and I dont want that MFP to be implement on my tunnel traffic. I want to use MFP only for internet purpose if any user download anything then he must not consume the higher speed more than 30 KB. If any user download anything from remote sites then the user must not be restrict. Please advice.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 13:24:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/mfp/m-p/1107114#M915350</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2019-03-11T13:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: MFP</title>
      <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107115#M915352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first i gusse u use a firewall&lt;/P&gt;&lt;P&gt;and the intended thing is MPF not MFP&lt;/P&gt;&lt;P&gt;which mean moduler policy framework&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway the idea is to make policing in ur case what u need to do is to make an acl the match any traffic source from ur network and going to ur remote site netwrok&lt;/P&gt;&lt;P&gt;and put this traffic in a prority queue butnot must&lt;/P&gt;&lt;P&gt;lets say ur local network is 192.168.1.0/24&lt;/P&gt;&lt;P&gt;and remote network is 172.16.1.0/24&lt;/P&gt;&lt;P&gt;and ur L2L tunnel name in ur firewall config named 172.16.1.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first creat ACL&lt;/P&gt;&lt;P&gt;access-list 100 DENY ip 192.168.1.0 255.255.255.0 172.16.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;access-list 100 permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this acl to match all traffic EXcept the tunnel traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the important thing is ur tunnel group config and name so i assumed its name is [172.16.1.2]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so creat class map to match this tunnel traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map tunnel-traffic&lt;/P&gt;&lt;P&gt;match tunnel-group 172.16.1.2&lt;/P&gt;&lt;P&gt;match flow ip destination-address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make calss-map to match the traffic match by ACL 100&lt;/P&gt;&lt;P&gt;which include all traffic exept the tunnel traffic and the we gonna limit this traffic rate to 30kb&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map non-tunneled&lt;/P&gt;&lt;P&gt;match access-list 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then the policy time&lt;/P&gt;&lt;P&gt;policy-map policy1&lt;/P&gt;&lt;P&gt;class tunneled-traffic&lt;/P&gt;&lt;P&gt;police output 850000 conform-action transmit exceed-action transmit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class non-tunneled&lt;/P&gt;&lt;P&gt;police output 30000 conform-action transmit exceed-action drop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then apply the policy as follow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service-policy policy1 interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assumeing that ur outside interface named outside&lt;/P&gt;&lt;P&gt;and with above config i put it the tunnel traffic about 850kb but if it go above it will be transmited too&lt;/P&gt;&lt;P&gt;on the other hand the non-tunneled traffic limited to 30kb and if it go beyond that linit it gonna be droped with drop comman mentioned above&lt;/P&gt;&lt;P&gt;finally&lt;/P&gt;&lt;P&gt;You can monitor policer activity with the following command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firewall# show service-policy [interface ifc_name]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please, Rate if hlepful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Aug 2008 13:45:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/mfp/m-p/1107115#M915352</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-03T13:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: MFP</title>
      <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107116#M915354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thank you for proving such a valuable information..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 03:40:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/mfp/m-p/1107116#M915354</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T03:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: MFP</title>
      <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107117#M915356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did u get work as u want ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 03:45:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/mfp/m-p/1107117#M915356</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-04T03:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: MFP</title>
      <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107118#M915358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah..but wht abt other tunnels. you shown example of sngle tunnel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 09:40:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/mfp/m-p/1107118#M915358</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T09:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: MFP</title>
      <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107119#M915360</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;Is there a way to limit the network ,but to exclude some IP addresses?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 13:16:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/mfp/m-p/1107119#M915360</guid>
      <dc:creator>TcsHungary</dc:creator>
      <dc:date>2008-08-07T13:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: MFP</title>
      <link>https://community.cisco.com/t5/network-security/mfp/m-p/1107120#M915362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sure&lt;/P&gt;&lt;P&gt;in the matching statemnt which is an ACL and class-map&lt;/P&gt;&lt;P&gt;first deny the hosts u dont want them to be limited them amch any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example if we wanna exlude host with ip 192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do &lt;/P&gt;&lt;P&gt;access-list 100 deny ip host 192.168.1.1 any&lt;/P&gt;&lt;P&gt;access-list permit ip 192.168.1.0 255.255.255.0 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case we excluded this host and included all the network within that rang&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;use this ACL with the rquired class-map and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please, if helful rate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 13:31:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/mfp/m-p/1107120#M915362</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-07T13:31:55Z</dc:date>
    </item>
  </channel>
</rss>

