Link to home
Start Free TrialLog in
Avatar of Daemon_Byte
Daemon_Byte

asked on

use cisco asdm to forward selected users to squid proxy

Hi,

I have a Cisco router asa 5505 and using ASDM I want to redirect some of our users (based on ip range preferably) to a server that is running squid as a web cache. If anyone can help point me in the right direction for this I would be very grateful as I am primarily a web developer and thus out of my comfort zone in this.
Avatar of Hodepine
Hodepine
Flag of Norway image

I'm not sure if this feature is supported as low as the 5505, but if it is, the config is quite simple:

access-list wccp extended permit tcp 10.1.1.0 0.0.0.255 eq www (fill in your addresses of course)
access-list wccp_cache extended permit ip host <ip address of web cache> any
wccp web-cache redirect-list wccp group-list wccp_cache
wccp interface inside web-cache redirect in

You'll have to register the router as a wccp-router on your cache engine.
Small typo in the first line of the access-lists:

access-list wccp extended permit tcp 10.1.1.0 0.0.0.255 any eq www (forgot the destination any).
Avatar of Daemon_Byte
Daemon_Byte

ASKER

Is there a graphical part to do this? Would I have to alter the ip address on the first line for every IP or can I somehow put a range in here?
ASKER CERTIFIED SOLUTION
Avatar of Hodepine
Hodepine
Flag of Norway image

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
I'm a web developer in a group of 3 that has suddenly gained IT department status so we're trying to catch up on things. Not a clue about wildcard masks but I will read up and decide if I will go that route or not. Thanks