Summary
Cisco Router and ASA example configuration for use with Smoothwall's WCCP v2 setup.
Problem
How do I set up my Smoothwall to use WCCP with my Cisco router?
Solution
Example configuration using WCCP v.2:
- Example Cisco Router IOS Configuration:
!Configure WCCP version:
ip wccp version 2
!Configure Proxy Server Group:
ip access-list standard PROXIES
permit 192.168.151.100
ip wccp web-cache group-list PROXIES
ip wccp 70 group-list PROXIES
!
!Configure Redirect ACL:
ip access-list standard WCCP
remark ACL for WCCP redirect
remark proxies bypass WCCP
deny 192.168.151.100
remark permit LAN traffic
permit 192.168.0.0
permit 10.0.0.0
!Assign ACL to WCCP:
ip wccp web-cache redirect-list WCCP
ip wccp 70 redirect-list WCCP
!
!Configure WCCP password:
ip wccp web-cache password smooth
ip wccp 70 password smooth
!Assign redirect to interface:
int fast0/0
ip wccp web-cache redirect in
ip wccp 70 redirect in
- Example Cisco ASA Configuration:
access-list PROXY-SERVERS extended permit ip host 172.19.0.3 any
access-list PROXY-CLIENTS extended permit tcp 172.19.0.0 255.255.252.0 any eq www
access-list PROXY-CLIENTS extended permit tcp 172.19.0.0 255.255.252.0 any eq https
wccp web-cache redirect-list PROXY-CLIENTS group-list PROXY-SERVERS password smooth
wccp 70 redirect-list PROXY-CLIENTS group-list PROXY-SERVERS password smooth
wccp interface Student-Wireless 70 redirect in
wccp interface Student-Wireless web-cache redirect in