security notes from the field

Just another WordPress.com weblog

Archive for November, 2008

WCCP update on Cisco ASA

Posted by Tech in Field on November 11, 2008

I have decided to repost an update to my WCCP config for ASA’s.  This example here will reroute only subnet 192.168.1.0/24 to the web cache.

#setup first access list to define the wccp server
#we will call this ACL “wccpserver”
#
access-list wccpserver extended permit ip host 192.168.42.42 any

#setup access list to define the subnets to be redirected and filtered 
#for this example we will call the access list “filter” and only define
#the subnet 192.168.1.0/24
#
access-list filter permit ip 192.168.1.0 0.255.255.255 any

access-list filter deny ip any any

 

# Setup wccp v2 with no passwords, redirecting the “filter” ACL
#to the wccp server defined in the ACL “wccpserver”.
#
wccp web-cache redirect-list filter group-list wccpserver
wccp interface inside web-cache redirect in

 

Posted in Uncategorized | Leave a Comment »