Layer 7 HTTP Policy Map

Hi Everyone,
I have this Layer 7 Policy Map which i config using ASDM  under inspects
policy-map type inspect http test4
        parameters
          protocol-violation action drop-connection log
        class _default_GoToMyPC-tunnel
          drop-connection log
class maps identify the traffic and policy maps tell us what action to take.
Need to know on above config class map which matches the trafic is
class _default_GoToMyPC-tunnel
Regards
Mahesh
Message was edited by: mahesh parmar

Hi julio,
I tried below commands but seems it does not work
ASA1# show run class-map type inspect _default_GoToMyPC-tunnel
                                      ^
ERROR: % Invalid input detected at '^' marker.
ASA1# show run class-map type inspect ?
  dns       Configure a class-map of type DNS
  ftp       Configure a class-map of type FTP
  h323      Configure a class-map of type H323
  http      Configure a class-map of type HTTP
  im        Configure a class-map of type IM
  rtsp      Configure a class-map of type RTSP
  scansafe  Configure a class-map of type SCANSAFE
  sip       Configure a class-map of type SIP
ASA1# show run class-map type inspect  default_GoToMyPC-tunnel
                                        ^
ERROR: % Invalid input detected at '^' marker.
ASA1# show run class-map type inspect_default_GoToMyPC-tunnel
                                     ^
ERROR: % Invalid input detected at '^' marker.
ASA1#
Thanks
Mahesh

Similar Messages

  • Layer 7 class-map with different match types

    Hello,
    I am fighting with a problem on an ACE-4710 version A3(2.4) configuation. I just want to configure a layer 7 class-map that matches if one of two conditions is true. The problem is that these conditions are not from the same type and the ACE refuses the second match statement. However, in the configuration guide, it is clearly defined that it should be possible :
    Here is what the configuration guides says :
    host1/Admin(config)# class-map type http loadbalance match-any CLASS3
    host1/Admin(config-cmap-http-lb)# 100 match http url .*.gif
    host1/Admin(config-cmap-http-lb)# 200 match http header Host header-value XYZ
    host1/Admin(config-cmap-http-lb)# exit
    If I test exactly the same configuration in a context of my ACE, I receive an error message :
    CH01AC03/P-104-A(config)# class-map type http loadbalance match-any CLASS3
    CH01AC03/P-104-A(config-cmap-http-lb)# 100 match http url .*.gif
    CH01AC03/P-104-A(config-cmap-http-lb)# 200 match http header Host header-value XYZ
    Error: Match-any classmap can not have different type of match
    If I use nested class-maps, I receive the same error message !
    Is it a known problem or is it a solution for it ?
    Thank you for any help
    Yves

    Hello Yves,
    The command error is correct.  I'll take a look at the docs and see about getting them corrected, if necessary.
    Basically, for a match-all, you would have to use different types.  For example, there will only be one Host header, so you would only specify it once using regex or a fixed string.  As you found out, the match-any requires that they all be of the same type.  See my example below:
    class-map type http loadbalance match-all HEADER-AND-URL
      100 match http url /login.*
      200 match http header Host header-value "XYZ"
    class-map type http loadbalance match-any URLS
      100 match http url .*\.gif
      200 match http url .*\.jpg
    class-map type http loadbalance match-any HEADER
      200 match http header Host header-value "CISCO"
    policy-map type loadbalance first-match SLB_LOGIC
      class HEADER-AND-URL
        serverfarm LOGIN-FARM
      class URLS
        serverfarm IMAGES-FARM
      class HEADER
        serverfarm CISCO-FARM
      class class-default
        serverfarm WWW-FARM
    So let's say you want to match requests for URLs ending in .jpg or for requests with Host header XYZ, and if it matches either one, then send to the same serverfarm.
    class-map type http loadbalance match-any URL-JPG
      2 match http url .*\.jpg
    class-map type http loadbalance match-any HOST-XYZ
      2 match http header Host header-value "XYZ"
    policy-map type loadbalance first-match SLB_LOGIC
      class URL-JPG
        serverfarm SERVER-FARM
      class HOST-XYZ
        serverfarm SERVER-FARM
    If you wanted to send these requests to the farm only if they matched BOTH matches, then you could do it as follows:
    class-map type http  loadbalance match-all HEADER-AND-URL
       100 match http url /login.*
       200 match http header Host header-value "XYZ"
    policy-map type  loadbalance first-match SLB_LOGIC
       class HEADER-AND-URL
         serverfarm LOGIN-FARM
    Hope this helps,
    Sean

  • Best practice for web servers behind a router (NAT, ACL, policy-map, VLAN)

    Hi,
    I'm a new Network admin, and I have some configuration questions about my installation (see attachment).
    I have 3 web servers behind a router.
    Public interface: 3 public ip adresses
    Private interface: router on a stick config ( 3 sub-interfaces, 3 different networks, 3 VLAN)
    I would to know the best way to redirect http traffic to the right server.
    My idea is to map a public address to a private address, via NAT, but I'm not sure for the configuration.  I could also redirect via Policy-map and filter by url content.
    So if you have some advise for this case, it would be really appreciated.
    Thank you.
    Chris.

    Hello Christophe,
    As I understand you want 1st that ; 
    if somebody go to A.local.com from internet then he will redirect to 192.168.1.10 in your internal network. 
    That means, you need static mapping between your public @ip address and your local ip address. 
    for this example, your local interface is Fa0/0.1 and I dont your public interface because it is not mention in your diagram. I will suppose S0/0 for public interface. 
    that is the config for the Web Server1. You can do the same with the remaining servers:
    interface fa0/0.1 
    ip nat inside
    interface serial0/0
     ip nat outside
    ip nat inside source static 192.168.1.10 172.1.2.3 
    static mapping from local to public. 
    I suppose you have done the dns mapping in your network and the ISP have done the same in his network. 
    ip route 171.1.2.3 interface serial0/0 
    or 
    ip route 0.0.0.0 0.0.0.0 interface serial0/0. 
    After these step for each web server, you will get the mapping. 
    Now you can restrict access to this ip only to http or https protocol on your isp and after on your local network 
    like
    ip access-list extended ACL_WebServer1
    permit ip any 192.168.1.10 eq www
    deny ip any 192.168.1.10
    exit
    interface fa0/0.1
     ip acess-group ACL_WebServer1 in
    no shut
    exit
    That is the first step. 
    Second step : you want to filter traffic by url, that means layer 5 to 7 filtering. 
    I am not sure that it is possible using cisco router with (ZBF + Regex).
    Check the first step and let us know ! 
    Please rate and mark as correct if it is the case. 
    Regards,

  • Is there a policy map difference from 8.0 to 9.0?

    We have been testing blocking a few select websites (no web filtering yet) with some of our smaller location ASA's.  Following the document at:
    https://supportforums.cisco.com/docs/DOC-1268
    I have been successful at sites which run ASA's with version 8.0 of the IOS on them, but not with 9.0.  With 9.0 (2) it appears that when you institute the policy map to make it take effect, it blocks all web traffic, not just the ones specified. 
    So, I guess I'm asking, is there that large of a difference between 8.0 and 9.0 that would cause this to no longer work properly?

    You went to the same page I did 7 hours ago. Use the "FILES TYPE EDIT" solution and follow almost all of the instructions...Edit FIREFOX URL, HYPERTEXT TRANSFER PROTOCOL and HYPERTEXT TRANSFER PROTOCOL WITH PRIVACY....It isn't necessary to take the step of "unchecking the "DDE BOX", just follow the instructions to delete the characters in the "DDE Message Box" and the problem is fixed. If you uncheck the "DDE BOX", as instructed, it may come back to bite you.
    Thank you for helping,
    Sel Warren

  • Cyrillic characters in Layer-7 Class Maps statements ?

    Hi,
    For a specific implementation, I need the ACE to parse URIs with cyrillic characters in a Layer-7 class-map. Does the ACE-4710 support it ?
    If yes, how to enter them in a L7 class-map statement like : match http url /Искусство.*
    Thank you for any hints
    Yves

    Hi Yves,
    I cannot find anything regarding this and i don't see a way to put that in there. I tried pasting it in my ACE and it didn't take it. I would suggest to open a TAC case for official confirmation.
    Regards,
    Kanwal
    Note: Please mark answers if they are helpful.

  • ACE - HTTPS CLASS MAP CONFIGURATION

    Hi,
    We have a secured web site (HTTPS) currently fronted by Cisco ACE 4170, running version A5(1.2). We are trying to use the http class map to manipulate the traffic flow in the following manner:
    https://abc.com/ABC/* -> serverfarm#1
    https://abc.com/* -> serverfarm#2           (Default)
    Tecnically this should not be difficult and below is a sample of our configuration. We have similar configuration working on our non-secured web site (HTTP) However for the secure web site, the https request https://abc.com/ABC/xxx is continued being routed to serverfarm#2 instead of serverfarm#1 which is very frustrating.
    We can easily get this working on my F5 LTM within 5 minutes but this Cisco ACE continue to frustrate me...Appreciate if any expert on Cisco ACE can help to advise on our configuration.. Thanks.
    =========================================================
    serverfarm host serverfarm#1
    predictor leastconns
    probe https_probe
    rserver rs_server#1
      inservice
    rserver rs_server#2
      inservice
    serverfarm host serverfarm#2
    predictor leastconns
    probe https_probe
    rserver rs_server#3
      inservice
    rserver rs_server#4
      inservice
    sticky http-cookie STICKY_HTTPS_serverfarm#1
    cookie insert browser-expire
    timeout 15
    replicate sticky
    serverfarm serverfarm#1
    sticky http-cookie STICKY_HTTPS_serverfarm#2
    cookie insert browser-expire
    timeout 15
    replicate sticky
    serverfarm serverfarm#2
    class-map type http loadbalance match-any class-map-serverfarm#1
    2 match http url /ABC/.*
    policy-map type loadbalance first-match vs_serverfarm_https
    class class-map-serverfarm#1
      sticky-serverfarm STICKY_HTTPS_serverfarm#1
      insert-http x-forward header-value "%is"
      ssl-proxy client ssl_serverfarm
    class class-default
      sticky-serverfarm STICKY_HTTPS_serverfarm#2
      insert-http x-forward header-value "%is"
      ssl-proxy client ssl_serverfarm
    =========================================================

    Kanwaljeet,
    Yes, we are using ACE for SSL termination i.e. front end is https and back-end is also https.
    We are doing end-to-end encryption as our IT security and audit wanted end-to-end encryption between the client and servers. ACE should be able to look at the HTTP header at the front end since the client SSL session is terminate on the ACE.
    Below is an extract of the configuration, I've leave out the remaining configuration which is not required.
    =========================================================
    serverfarm host serverfarm#1
    predictor leastconns
    probe https_probe
    rserver rs_server#1
      inservice
    rserver rs_server#2
      inservice
    serverfarm host serverfarm#2
    predictor leastconns
    probe https_probe
    rserver rs_server#3
      inservice
    rserver rs_server#4
      inservice
    sticky http-cookie STICKY_HTTPS_serverfarm#1
    cookie insert browser-expire
    timeout 15
    replicate sticky
    serverfarm serverfarm#1
    sticky http-cookie STICKY_HTTPS_serverfarm#2
    cookie insert browser-expire
    timeout 15
    replicate sticky
    serverfarm serverfarm#2
    class-map match-all vs_serverfarm
      2 match virtual-address 10.178.50.140 tcp eq https
    class-map type http loadbalance match-any class-map-serverfarm#1
    2 match http url /ABC/.*
    policy-map type loadbalance first-match vs_serverfarm_https
    class class-map-serverfarm#1
      sticky-serverfarm STICKY_HTTPS_serverfarm#1
      insert-http x-forward header-value "%is"
      ssl-proxy client ssl_serverfarm
    class class-default
      sticky-serverfarm STICKY_HTTPS_serverfarm#2
      insert-http x-forward header-value "%is"
      ssl-proxy client ssl_serverfarm
    policy-map multi-match PRODWEB_POLICY
      class vs_serverfarm
        loadbalance vip inservice
        loadbalance policy vs_serverfarm_https
        loadbalance vip icmp-reply active
        nat dynamic 100 vlan 100
        ssl-proxy server ssl_serverfarm
    =========================================================

  • Issue with ACE HTTP class map

    This is what I want to achieve USING the ACE as a reverse proxy.
    User uses the url https://abc/password - gets to the destination server & the web page
    If user tries to use any thing additional then the connection is dropped at the ACE such as
    https://abc/password/test or any such variation.
    Following is the config I have to achieve this
    class-map type http loadbalance match-any L7-CLASS-TEST
      match http url /password
      match http url /password/
    class-map type http loadbalance match-any L7-CLASS-TEST-deny
      2 match http url .*.*
    policy-map type loadbalance first-match LBP-TEST
      class L7-CLASS-TEST
        serverfarm FARM-TEST
        ssl-proxy client TEST
      class L7-CLASS-TEST-deny
        drop
      class class-default
        serverfarm FARM-TEST
        ssl-proxy client TEST
    The problem with this is when the page opens I get broken links on all the images. If I use the following line
    match http url /password.*
    I get the images to work but the user can use the https://abc/password/test which is not what I want.
    Has any one faced this issue ?
    Any help will be appreciated.
    Thanks in advance
    Prasanna

    Prasanna,
    What about if you try it in HTTP and apply the following change?
    class-map type http loadbalance match-any L7-CLASS-TEST-deny
      2 match http url /.*
    This should work in HTTP but not with HTTPS
    Anyway, it should not work since everything seems to be encrypted, you may require either SSL-termination or END-TO-END SSL for this then the ACE can decrypt the request see what it needs to do and take the load balance decision.
    Jorge

  • Radius accounting for QoS pppoe policy-map

    Hi folks
    I have a radius pushing an AVPAIR ip:sub-qos-policy-out to a virtual template for clients connected to a BRAS through PPPOE.
    The AVPAIR is correctly applied to each and every pppoe session but the following link  http://www.cisco.com/c/en/us/td/docs/ios/12_2sb/feature/guide/sbbbrs1c.html  is indicating that I should be able to push back to the RADIUS some traffic info per class-map/policy map. This would allow some Quota stuff and getting some info about traffic used per customer
    From what I have been able to configure, i'm not getting any of this stats back to the RADIUS
    the debug radius accounting :
    *Mar 12 05:29:00.419: RADIUS/ENCODE(0000000E):Orig. component type = PPPoE
    *Mar 12 05:29:00.419: RADIUS/ENCODE(0000000E): Acct-session-id pre-pended with Nas Port = 0/0/3/0
    *Mar 12 05:29:00.419: RADIUS(0000000E): Config NAS IP: 0.0.0.0
    *Mar 12 05:29:00.419: RADIUS(0000000E): sending
    *Mar 12 05:29:00.419: RADIUS/ENCODE: Best Local IP-Address 192.168.38.133 for Radius-Server 192.168.38.131
    *Mar 12 05:29:00.419: RADIUS(0000000E): Send Accounting-Request to 192.168.38.131:1813 id 1646/55, len 299
    *Mar 12 05:29:00.419: RADIUS:  authenticator ED 94 CF EE BD 73 30 7E - 93 07 A4 C3 50 A6 03 DE
    *Mar 12 05:29:00.419: RADIUS:  Acct-Session-Id     [44]  18  "0/0/3/0_00000005"
    *Mar 12 05:29:00.419: RADIUS:  Framed-Protocol     [7]   6   PPP                       [1]
    *Mar 12 05:29:00.419: RADIUS:  Framed-IP-Address   [8]   6   10.10.10.2
    *Mar 12 05:29:00.419: RADIUS:  User-Name           [1]   9   "olivier"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  35
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   29  "connect-progress=LAN Ses Up"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  29
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   23  "nas-tx-speed=10000000"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  29
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   23  "nas-rx-speed=10000000"
    *Mar 12 05:29:00.419: RADIUS:  Acct-Session-Time   [46]  6   2582
    *Mar 12 05:29:00.419: RADIUS:  Acct-Input-Octets   [42]  6   7232
    *Mar 12 05:29:00.419: RADIUS:  Acct-Output-Octets  [43]  6   7232
    *Mar 12 05:29:00.419: RADIUS:  Acct-Input-Packets  [47]  6   517
    *Mar 12 05:29:00.419: RADIUS:  Acct-Output-Packets [48]  6   517
    *Mar 12 05:29:00.419: RADIUS:  Acct-Authentic      [45]  6   RADIUS                    [1]
    *Mar 12 05:29:00.419: RADIUS:  Acct-Status-Type    [40]  6   Watchdog                  [3]
    *Mar 12 05:29:00.419: RADIUS:  NAS-Port-Type       [61]  6   Virtual                   [5]
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  15
    *Mar 12 05:29:00.419: RADIUS:   cisco-nas-port     [2]   9   "0/0/3/0"
    *Mar 12 05:29:00.419: RADIUS:  NAS-Port            [5]   6   50331648
    *Mar 12 05:29:00.419: RADIUS:  NAS-Port-Id         [87]  9   "0/0/3/0"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  41
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   35  "client-mac-address=aabb.cc00.6430"
    *Mar 12 05:29:00.419: RADIUS:  Service-Type        [6]   6   Framed                    [2]
    *Mar 12 05:29:00.419: RADIUS:  NAS-IP-Address      [4]   6   192.168.38.133
    *Mar 12 05:29:00.419: RADIUS:  Ascend-Session-Svr-K[151] 10
    *Mar 12 05:29:00.419: RADIUS:   37 39 38 32 45 41 38 30          [ 7982EA80]
    *Mar 12 05:29:00.419: RADIUS:  Acct-Delay-Time     [41]  6   0
    *Mar 12 05:29:00.419: RADIUS(0000000E): Started 5 sec timeout
    *Mar 12 05:29:00.419: RADIUS: Received from id 1646/55 192.168.38.131:1813, Accounting-response, len 20
    *Mar 12 05:29:00.419: RADIUS:  authenticator A7 0E 79 40 C5 B5 CF DC - 09 46 27 48 52 BE 01 7D
    What I get in the freeradius log :
    Tue Mar 11 22:30:04 2014
            Acct-Session-Id = "0/0/3/0_00000005"
            Framed-Protocol = PPP
            Framed-IP-Address = 10.10.10.2
            User-Name = "olivier"
            Cisco-AVPair = "connect-progress=LAN Ses Up"
            Cisco-AVPair = "nas-tx-speed=10000000"
            Cisco-AVPair = "nas-rx-speed=10000000"
            Acct-Session-Time = 2646
            Acct-Input-Octets = 7428
            Acct-Output-Octets = 7428
            Acct-Input-Packets = 531
            Acct-Output-Packets = 531
            Acct-Authentic = RADIUS
            Acct-Status-Type = Interim-Update
            NAS-Port-Type = Virtual
            Cisco-NAS-Port = "0/0/3/0"
            NAS-Port = 50331648
            NAS-Port-Id = "0/0/3/0"
            Cisco-AVPair = "client-mac-address=aabb.cc00.6430"
            Service-Type = Framed-User
            NAS-IP-Address = 192.168.38.133
            X-Ascend-Session-Svr-Key = "7982EA80"
            Acct-Delay-Time = 0
            Acct-Unique-Session-Id = "523eac6ae326a778"
            Timestamp = 1394602204
            Request-Authenticator = Verified
    user config in the users file on the freeradius server :
    olivier Cleartext-Password := "olivier"
            Service-Type = Framed-User,
            Cisco-AVPair += "ip:addr-pool=pppoepool",
            Cisco-AVpair += "ip:sub-qos-policy-out=TEST"
    I see that the policy map name is pulled correctly from the radius server and applied to the session :
    #sh policy-map session uid 14
     SSS session identifier 14 -
      Service-policy output: TEST
        Class-map: TEST (match-all)
          0 packets, 0 bytes
          5 minute offered rate 0 bps, drop rate 0 bps
          Match: any
          police:
              cir 8000 bps, bc 1500 bytes
            conformed 0 packets, 0 bytes; actions:
              transmit
            exceeded 0 packets, 0 bytes; actions:
              drop
            conformed 0 bps, exceed 0 bps
        Class-map: class-default (match-any)
          0 packets, 0 bytes
          5 minute offered rate 0 bps, drop rate 0 bps
          Match: any
    Any input very welcome

    Cisco sever is working fine. When you do use non-standard or non-RFC requests from your NAS to the AAA server for instance, you have to configure your server accordingly to instruct it how to handle this kind of requests.
    This is typically done with something called "dictionary", which should be included in your radius server. The server typically decodes all RFC 2865 VSAs (or should), but when a new NAS model is introduced into the network, you can modify it to add any VSAs not appearing in the dictionary, which is your case.
    As an example, imagine you want to change the attribute cisco-vsa-port-string to tagged-string, your dictionary will look somethign similar than:
    And finally you will have to modify with a text editor, or XML editor and change type="tagged-string" supposing your device comply with RFC 2868. Probably
    the AAA server will have to restarted for taking this
    changes into account.
    Also,since this does apply to all devices for this vendor, you've got other option more, which is define your own dictionary for a specific vendor, or even if you wish for a specific NAS or group or NASes.
    In NavisRadius you could associate a dictionary to a
    device adding a client-class:
    # Client-IP Client-Secret Client-Class
    10.0.0.1 secret taos-old
    And then specifying the dictionary later in client_properties for this device:
    # This file contains information about client classes # and is used to set per-client specific information.
    # TAOS Devices in OLD mode with RFC conflicts
    taos-old
    Client-Dictionary=max_dictionary
    # Other devices now, etc.
    Hope it helps

  • [Trend Micro Ios content filtering] parameter-type command under policy map not available

    Hi, all:
    I'm trying to configure TrendMicro IOS content filtering. I have this working on a separate box, running 15.1.
    On this particular testbed, I have a 2900 running:
    System image file is "flash0:c2900-universalk9-mz.SPA.152-3.T1.bin"
    And the following licensing:
    Technology Package License Information for Module:'c2900'
    Technology    Technology-package           Technology-package
                  Current       Type           Next reboot 
    ipbase        ipbasek9      Permanent      ipbasek9
    security      securityk9    Permanent      securityk9
    uc            uck9          Permanent      uck9
    data          datak9        Permanent      datak9
    Configuration register is 0x2102
    CUBE_GOLD_MEX#show ip trm subscription status
           Package Name:  Security & Productivity (Trial)
                 Status:  Active
    Status Update Time:  18:02:51 CST Mon Jul 23 2012
        Expiration-Date:  Mon Aug 20 02:00:00 2012
        Last Req Status:  Processed response successfully
    Last Req Sent Time:  18:02:51 CST Mon Jul 23 2012
    CUBE_GOLD_MEX#
    Also, I have the following config lines on it:
    ip host trps.trendmicro.com 216.104.8.100
    ip name-server 4.2.2.2
    ip cef
    multilink bundle-name authenticated
    parameter-map type urlfpolicy trend tm-pmap
    allow-mode on
    [snip]
    parameter-map type trend-global trend-glob-map
    class-map type inspect match-all http-imap
    match protocol http
    class-map type urlfilter trend match-any drop-category
    match url category Abortion
    match url category Activist-Groups
    match url category Adult-Mature-Content
    match url reputation ADWARE
    match url reputation DIALER
    match url reputation DISEASE-VECTOR
    match url reputation HACKING
    match url reputation PASSWORD-CRACKING-APPLICATIONS
    match url reputation PHISHING
    match url reputation POTENTIALLY-MALICIOUS-SOFTWARE
    match url reputation SPYWARE
    match url reputation VIRUS-ACCOMPLICE
    policy-map type inspect urlfilter trend-policy
    class type urlfilter trend drop-category
    I have not been able to get to the good part of configuring the ZBF.
    I've looked over several configuration examples and can't figure out what I'm doing wrong, since I'm not able to see the command 'parameter-map' under the 'policy-map urlfiltering'
    XXXXXX(config)#policy-map type inspect urlfilter trend-policy
    XXXXXX(config-pmap)#?
    Policy-map configuration commands:
      class        policy criteria
      description  Policy-Map description
      exit         Exit from policy-map configuration mode
      no           Negate or set default values of a command
    XXXXXX(config-pmap)#
    I thought it might be an issue with version 15.2.3, but according to configuration guides, commands are the same.
    Can anyone provide some assistance?
    TIA.
    c.

    Hi Carlos,
    I am having the same problem.  I have seen a few diffenent configuration examples and they all show adding the "parameter type urlfpolicy trend parm-map-name" command but it doesn't exist, at least in 15.2(3)T1 and I see it listed in the the IOS documentation for 15.2.  Maybe they forgot it :-)
    I guess I will open a TAC case as I do not want to downgrade...
    I will keep you posted if I find the answer.
    Regards,
    Troy

  • Cisco ACS Policy Mapping

    Hallo,
    I have a question about the policy mapping in ACS 5.4.
    When a request matches in "Access Selection Rule" the request goes to an "Access Service".
    In "Access Service" there are three kinds of policy rules:
    - Identity:
    If condition match then result "Identity Source"
    - Group Mapping
    If condition match then result "Identity Group"
    - Authorization
    If condition match the result "Auth Profil"
    Q1:
    For example:
    The User "Test" is registered in Internal User with a local password. But now I will authenticate the user "Test" from a RSA Token server. How can I configure this rule in "identity policy"? Wich condition matches to choose the identity source. I will set the internal user with an attribute enumeration field like "Password". The administrator should have an option to choose "locale databse password" or "token passcode".
    Q2:
    What does it mean: "Group mapping"?
    Thx for your answer!
    Stefan

    Hi Stefan,
    The User "Test" is registered in Internal User with a local password.  But now I will authenticate the user "Test" from a RSA Token server.  How can I configure this rule in "identity policy"? Wich condition  matches to choose the identity source. I will set the internal user with  an attribute enumeration field like "Password". The administrator  should have an option to choose "locale databse password" or "token  passcode".
    In the identity, if you click on select, you can select the type of Database, you can choose RSA (you will first need to create the connection under Users and Identity Stores-->External Identity Stores-->RSA secure ID)
    Another, way is you continue to use the internal users DB, but you go to that user internally and select the password type to be RSA
    (you will first need to create the connection under Users and Identity Stores-->External Identity Stores-->RSA secure ID)
    Group mapping is a feature to assign a local identity group as a result by choose conditions.
    EG:
    If (Active directory x) Then (Internal group x)
    The IF is the condition and Then is Result.
    https://supportforums.cisco.com/docs/DOC-34890
    Hope this Helps.
    Ed

  • Policy Map Case

    Dears HI
    please i want to limit Input traffic to a port  c3750 to 20Mbps , by Policy-Map
    #policy-map A-PM
        # class  A-CM
    #police 20000000 ?
      <8000-1000000>  Normal burst bytes
    #police 20000000 3750000 ?
    % Unrecognized command
    As you know Normal Burst Bytes of 20Mbps is 3750000 , so why i cant issue this number ?
    PLEASE HELP ME

    Hi Rawa,
    I dont't agree that the normal burst size would be 3750000.
    Go through the following links to calculate the correct burst size:
    https://supportforums.cisco.com/thread/151681and https://learningnetwork.cisco.com/thread/53215
    Thanks
    Ankur
    "Please rate the post if found useful"

  • POLICY-MAP counters

    I have configured policy-maps and class-maps on 3550 and 3560 switches.
    The following is excerpt....
    class-map match-any voip_class
    match access-group 100
    policy-map voip_policy
    class voip_class
    trust dscp
    interface GigabitEthernet0/12
    service-policy input voip_policy
    priority-queue out
    access-list 100 permit udp any any
    I have the access-list 'open' for testing purposes.
    However when I run the command 'sh policy-map int gi0/12' I get no counters increasing.
    Should I?
    Also if I run the 'sh access-list 100' command, should I get increasing counters?
    Thanks for any help
    Nik Mihelioudakis

    Sh policy map is not supported on this platform
    http://www.cisco.com/cgi-bin/bugtool/onebug.pl?bugid=CSCdy50035
    Use "show mls qos interface gig0/12 statistics" instead.

  • Policy-map multi-match

    Hi Guys,
    I need explanation on multi-match policy on ACE. How does it work ?
    Lets take this example-
    policy-map multi-match CLIENT-VIPS
      class VIP1-80
        loadbalance vip inservice
        loadbalance policy VIP1-POLICY
    policy-map type loadbalance first-match VIP1-POLICY
      class class-default
        serverfarm SERVERFARM1
    class-map match-all VIP1-80
      2 match virtual-address 192.168.1.200 tcp eq http
    This will work for sure looking for functional diffrence if I make POLICY CLIENT_VIPS to frist match,what difrence will come in this case. will it not just match class VIP1-80 and redirect request to serverfarm.
    Or this is something where multiple class can be called under CLIENT_VIPS like Inspection ?
    Thanks
    Ajay

    HI Ajay,
    Say if you have 2 class-maps on different ports 80 & 443
    policy-map multi-match CLIENT-VIPS
      class VIP1-80
        loadbalance vip inservice
        loadbalance policy VIP1-POLICY1
      class VIP1-443
        loadbalance vip inservice
        loadbalance policy VIP1-POLICY2
    class-map match-all VIP1-80
      2 match virtual-address 192.168.1.200 tcp eq http
    class-map match-all VIP1-443
      2 match virtual-address 192.168.1.200 tcp eq https
    Regards,
    Siva

  • Policy-Map

    Ok I am going insane here! I have a policy map on one of my 5k's but not the other and seem to create it either. They are in an active/active pair. Here is the policy, can someone help me understand what it is and maybe why I cant create it on my other device?
    policy-map type control-plane copp-system-policy-customized
    class copp-system-class-hsrp-vrrp
    police cir 1024 kbps bc 256000 bytes
    class copp-system-class-l3dest-miss
    police cir 64 kbps bc 16000 bytes

    Yes vPC pair. The issue is I enter the commands but they do not show in the running config on one of the two units...
    N5K1
    N5K2
    show policy-map type control-plane
      policy-map type control-plane copp-system-policy-customized
        class copp-system-class-igmp
          police cir 1024 kbps bc 65535 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 1024 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 64 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 256 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
      policy-map type control-plane copp-system-policy-default
        class copp-system-class-igmp
          police cir 1024 kbps bc 65535 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 1024 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 64 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 256 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
      policy-map type control-plane copp-system-policy-scaled-l2
        class copp-system-class-igmp
          police cir 4096 kbps bc 264000 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 1024 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 64 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 256 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
      policy-map type control-plane copp-system-policy-scaled-l3
        class copp-system-class-igmp
          police cir 4096 kbps bc 264000 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 4000 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 4000 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 4000 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
    NEXUS5K001# show policy-map interface control-plane
    Control Plane
      service-policy  input: copp-system-policy-customized
        class-map copp-system-class-igmp (match-any)
          match protocol igmp
          police cir 1024 kbps , bc 65535 bytes
            conformed 834102 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-pim-hello (match-any)
          match protocol pim
          police cir 1024 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-bridging (match-any)
          match protocol bridging
          police cir 20000 kbps , bc 4800000 bytes
            conformed 184965072 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-arp (match-any)
          match protocol arp
          match protocol nd
          police cir 1024 kbps , bc 3600000 bytes
            conformed 1711299342 bytes; action: transmit
            violated 467458 bytes;
        class-map copp-system-class-dhcp (match-any)
          match protocol dhcp
          police cir 1024 kbps , bc 4800000 bytes
            conformed 96669859 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-mgmt (match-any)
          match protocol mgmt
          police cir 12000 kbps , bc 4800000 bytes
            conformed 3420991988 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-lacp (match-any)
          match protocol lacp
          police cir 1024 kbps , bc 4800000 bytes
            conformed 5003732 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-lldp (match-any)
          match protocol lldp_dcx
          police cir 2048 kbps , bc 4800000 bytes
            conformed 8283269 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-udld (match-any)
          match protocol udld
          police cir 2048 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-isis (match-any)
          match protocol isis_dce
          police cir 1024 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-msdp (match-any)
          match protocol msdp
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-cdp (match-any)
          match protocol cdp
          police cir 1024 kbps , bc 4800000 bytes
            conformed 5995146 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-fip (match-any)
          match protocol fip
          police cir 1024 kbps , bc 4800000 bytes
            conformed 7396000 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-bgp (match-any)
          match protocol bgp
          police cir 9600 kbps , bc 4800000 bytes
            conformed 52049287 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-eigrp (match-any)
          match protocol eigrp
          match protocol eigrp6
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-exception (match-any)
          match protocol exception
          police cir 64 kbps , bc 4800000 bytes
            conformed 16415315 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-glean (match-any)
          match protocol glean
          police cir 1024 kbps , bc 4800000 bytes
            conformed 94203992002 bytes; action: transmit
            violated 5920334550 bytes;
        class-map copp-system-class-hsrp-vrrp (match-any)
          match protocol hsrp_vrrp
          match protocol hsrp6
          police cir 1024 kbps , bc 256000 bytes
            conformed 54227844 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-icmp-echo (match-any)
          match protocol icmp_echo
          police cir 64 kbps , bc 3600000 bytes
            conformed 184940591 bytes; action: transmit
            violated 46970 bytes;
        class-map copp-system-class-ospf (match-any)
          match protocol ospf
          match protocol ospf3
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-pim-register (match-any)
          match protocol reg
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-rip (match-any)
          match protocol rip
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-l3dest-miss (match-any)
          match protocol unicast
          police cir 64 kbps , bc 16000 bytes
            conformed 4214 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-mcast-miss (match-any)
          match protocol multicast
          police cir 256 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-excp-ip-frag (match-any)
          match protocol ip_frag
          police cir 64 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-excp-same-if (match-any)
          match protocol same-if
          police cir 64 kbps , bc 3200000 bytes
            conformed 17075590565 bytes; action: transmit
            violated 370668351863 bytes;
        class-map copp-system-class-excp-ttl (match-any)
          match protocol ttl
          police cir 64 kbps , bc 3200000 bytes
            conformed 1243144216 bytes; action: transmit
            violated 1611787 bytes;
        class-map copp-system-class-default (match-any)
          match protocol default
          police cir 512 kbps , bc 6400000 bytes
            conformed 157079876 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-rpf-fail (match-any)
          police cir 512 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-mcast-last-hop (match-any)
          police cir 512 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
    NEXUS5K001#  show running copp all
    !Command: show running-config copp all
    !Time: Wed Mar 31 13:35:40 2010
    version 6.0(2)N1(2a)
    control-plane
      scale-factor 1.00 module 1
      scale-factor 1.00 module 2
      scale-factor 1.00 module 3
    control-plane
      service-policy input copp-system-policy-customized
    NEXUS5K001#
    Nexus 5000 Switch
    Cisco Nexus Operating System (NX-OS) Software
    TAC support: http://www.cisco.com/tac
    Copyright (c) 2002-2013, Cisco Systems, Inc. All rights reserved.
    The copyrights to certain works contained in this software are
    owned by other third parties and used and distributed under
    license. Certain components of this software are licensed under
    the GNU General Public License (GPL) version 2.0 or the GNU
    Lesser General Public License (LGPL) Version 2.1. A copy of each
    such license is available at
    http://www.opensource.org/licenses/gpl-2.0.php and
    http://www.opensource.org/licenses/lgpl-2.1.php
    NEXUS5K002# show policy-map type control-plane
      policy-map type control-plane copp-system-policy-customized
        class copp-system-class-igmp
          police cir 1024 kbps bc 65535 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 1024 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 64 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 256 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
      policy-map type control-plane copp-system-policy-default
        class copp-system-class-igmp
          police cir 1024 kbps bc 65535 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 1024 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 64 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 256 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
      policy-map type control-plane copp-system-policy-scaled-l2
        class copp-system-class-igmp
          police cir 4096 kbps bc 264000 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 1024 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 64 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 256 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
      policy-map type control-plane copp-system-policy-scaled-l3
        class copp-system-class-igmp
          police cir 4096 kbps bc 264000 bytes
        class copp-system-class-pim-hello
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bridging
          police cir 20000 kbps bc 4800000 bytes
        class copp-system-class-arp
          police cir 4000 kbps bc 3600000 bytes
        class copp-system-class-dhcp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-mgmt
          police cir 12000 kbps bc 4800000 bytes
        class copp-system-class-lacp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-lldp
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-udld
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-isis
          police cir 2048 kbps bc 4800000 bytes
        class copp-system-class-msdp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-cdp
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-fip
          police cir 1024 kbps bc 4800000 bytes
        class copp-system-class-bgp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-eigrp
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-exception
          police cir 64 kbps bc 4800000 bytes
        class copp-system-class-glean
          police cir 4000 kbps bc 4800000 bytes
        class copp-system-class-hsrp-vrrp
          police cir 1024 kbps bc 256000 bytes
        class copp-system-class-icmp-echo
          police cir 4000 kbps bc 3600000 bytes
        class copp-system-class-ospf
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-pim-register
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-rip
          police cir 9600 kbps bc 4800000 bytes
        class copp-system-class-l3dest-miss
          police cir 64 kbps bc 16000 bytes
        class copp-system-class-mcast-miss
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-excp-ip-frag
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-same-if
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-excp-ttl
          police cir 64 kbps bc 3200000 bytes
        class copp-system-class-default
          police cir 512 kbps bc 6400000 bytes
        class copp-system-class-rpf-fail
          police cir 512 kbps bc 3200000 bytes
        class copp-system-class-mcast-last-hop
          police cir 512 kbps bc 3200000 bytes
    NEXUS5K002# show policy-map interface control-plane
    Control Plane
      service-policy  input: copp-system-policy-customized
        class-map copp-system-class-igmp (match-any)
          match protocol igmp
          police cir 1024 kbps , bc 65535 bytes
            conformed 1099702577173 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-pim-hello (match-any)
          match protocol pim
          police cir 1024 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-bridging (match-any)
          match protocol bridging
          police cir 20000 kbps , bc 4800000 bytes
            conformed 1117682720167 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-arp (match-any)
          match protocol arp
          match protocol nd
          police cir 1024 kbps , bc 3600000 bytes
            conformed 7392073468 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-dhcp (match-any)
          match protocol dhcp
          police cir 1024 kbps , bc 4800000 bytes
            conformed 1554060880 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-mgmt (match-any)
          match protocol mgmt
          police cir 12000 kbps , bc 4800000 bytes
            conformed 3360293230 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-lacp (match-any)
          match protocol lacp
          police cir 1024 kbps , bc 4800000 bytes
            conformed 1100653025235 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-lldp (match-any)
          match protocol lldp_dcx
          police cir 2048 kbps , bc 4800000 bytes
            conformed 1101335075091 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-udld (match-any)
          match protocol udld
          police cir 2048 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-isis (match-any)
          match protocol isis_dce
          police cir 1024 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-msdp (match-any)
          match protocol msdp
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-cdp (match-any)
          match protocol cdp
          police cir 1024 kbps , bc 4800000 bytes
            conformed 1100822976136 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-fip (match-any)
          match protocol fip
          police cir 1024 kbps , bc 4800000 bytes
            conformed 1334982352 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-bgp (match-any)
          match protocol bgp
          police cir 9600 kbps , bc 4800000 bytes
            conformed 55322608 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-eigrp (match-any)
          match protocol eigrp
          match protocol eigrp6
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-exception (match-any)
          match protocol exception
          police cir 64 kbps , bc 4800000 bytes
            conformed 7678996 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-glean (match-any)
          match protocol glean
          police cir 1024 kbps , bc 4800000 bytes
            conformed 22710843199 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-hsrp-vrrp (match-any)
          match protocol hsrp_vrrp
          match protocol hsrp6
          police cir 1024 kbps , bc 256000 bytes
            conformed 12316200612 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-icmp-echo (match-any)
          match protocol icmp_echo
          police cir 64 kbps , bc 3600000 bytes
            conformed 50470007 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-ospf (match-any)
          match protocol ospf
          match protocol ospf3
          police cir 9600 kbps , bc 4800000 bytes
            conformed 3366 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-pim-register (match-any)
          match protocol reg
          police cir 9600 kbps , bc 4800000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-rip (match-any)
          match protocol rip
          police cir 9600 kbps , bc 4800000 bytes
            conformed 12510 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-l3dest-miss (match-any)
          match protocol unicast
          police cir 64 kbps , bc 16000 bytes
            conformed 15136 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-mcast-miss (match-any)
          match protocol multicast
          police cir 256 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-excp-ip-frag (match-any)
          match protocol ip_frag
          police cir 64 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-excp-same-if (match-any)
          match protocol same-if
          police cir 64 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-excp-ttl (match-any)
          match protocol ttl
          police cir 64 kbps , bc 3200000 bytes
            conformed 8531281 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-default (match-any)
          match protocol default
          police cir 512 kbps , bc 6400000 bytes
            conformed 33212075608 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-rpf-fail (match-any)
          police cir 512 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
        class-map copp-system-class-mcast-last-hop (match-any)
          police cir 512 kbps , bc 3200000 bytes
            conformed 0 bytes; action: transmit
            violated 0 bytes;
    NEXUS5K002# show running copp all
    !Command: show running-config copp all
    !Time: Wed Mar 31 13:38:37 2010
    version 6.0(2)N1(2a)
    control-plane
      scale-factor 1.00 module 1
      scale-factor 1.00 module 2
      scale-factor 1.00 module 3
    policy-map type control-plane copp-system-policy-customized
      class copp-system-class-hsrp-vrrp
        police cir 1024 kbps bc 256000 bytes
      class copp-system-class-l3dest-miss
        police cir 64 kbps bc 16000 bytes
    control-plane
      service-policy input copp-system-policy-customized
    NEXUS5K002#

  • Policy Map bypass issue

    Hi,
    I am trying  to bypass some ip network from policy-map rule.It`s not working.Any one please help me to resolve the problem.
    class-map match-any http
    match not access-group name http-allow
    match protocol http host "www.yyyy.com"
    match protocol http host "www.xxxx.net"
    policy-map http
    class http
    police 8000 conform-action drop  exceed-action drop
    ip access-list extended http-allow
    permit ip 192.168.100.2 0.0.0.1 any
    permit ip any 192.168.100.2 0.0.0.1
    permit ip any any
    interface FastEthernet0/0 (WAN Interface)
    service-policy input http

    the ACL that you have configured is sourcing from the internal host to any on the outside. So you would need to apply that on the inside interface.
    If you would like to limit the return traffic towards that host, then you would need to configure ACL with source any and destination the NATed ip address of that internal host.

Maybe you are looking for

  • Error Message: JBO-28020: Passivation error on collection TXN, node id -1

    Hi all! I've got this error when I try to run my BC4J Application: Error Message: JBO-28020: Passivation error on collection TXN, node id -1 Error Message: JBO-28030: Could not insert row into table PCST_TXN, id -1 on this env: SUN SOLARIS 2.7 OC4J D

  • My itunes will not do a full sync

    My itunes will not do a full sync. it recognizes my phones is plugged in but when it goes to sync (new music for example) i hit sync and it starts but it only does step 1 of 1 then its done. no pics have been tranfered no music nothing. can anyone he

  • Windows Live Mail 2011 & PSE9

    I raised a query with Adobe and was told that Windows7/64bit/WLM 2011 works with PSE9. However I am also reading in this forum that it does not support WLM2011 ... see below Which is correct ... I need to know before I part with money to purchase PSE

  • Is it legal to use NiModbus under linux?

    Hi, situation is: National Instruments provides the Instaler for NiModbus Library only for Windows-OS... but the Library itselv  also runs on Linux-OS. So the Question is: Is it legal to copy the ni.modbusllb out of an installation on Windows-OS and

  • Change Authorization Schemes

    Hello All. I have an application with a custom Authorization Scheme on it. This scheme is used on every page's Security option, with "Page Requires Authentication" set. If I need to change or upgrade the scheme, I need to navigate to every page in th