Link to home
Start Free TrialLog in
Avatar of NetNinja
NetNinja

asked on

Blocking Instant Messaging or ACL rules

Hey team,

I have a Cisco ASA 5510.
Does anyone have any examples of creating rules or an ACL to known instant messaging protocols to block?
I know restricting local Admin access would prevent users from installing programs to do this but some controls is better than non at all.

Avatar of Les Moore
Les Moore
Flag of United States of America image

Use a class map to drop all IM traffic
 
class-map type inspect im match-all IM
  match protocol yahoo-im msn-im
policy-map type inspect im MSN
  class IM
    drop-connection log
policy-map global-policy
  class global-class
    inspect im MSN

Here's another exmple that blocks more than MSN and Yahoo IM

policy-map type inspect im IM_INSPECT
        match service chat file-transfer conference voice-chat games webcam
          drop-connection log
        match protocol yahoo-im msn-im
          drop-connection log
      policy-map outside-policy
        description Block IM
        class class-default
          inspect im IM_INSPECT
      service-policy outside-policy interface outside
ASKER CERTIFIED SOLUTION
Avatar of NetNinja
NetNinja

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial