Tech Support > Computer Hardware > Routers > transparent proxying to all except 1
transparent proxying to all except 1
Posted by bandage on January 27th, 2006


I would like to setup transparent proxy to all workstations except for
1 or 2 workstations.
the following works fine for all workstations.

access-list 199 permit tcp 10.4.1.0 0.0.0.255 any eq www
access-list 199 deny ip any any
route-map redirect-proxy permit 10
match ip address 199
set ip next-hop 10.2.250.32

I need 10.4.1.32 not to be proxied.

cisco 6500
IOS 12.1

thanks in advance

Posted by luqs on January 27th, 2006


access-list 199 deny tcp 10.4.1.32 0.0.0.0 any eq www
access-list 199 permit tcp 10.4.1.0 0.0.0.255 any eq www
access-list 199 deny ip any any

Posted by summi on January 27th, 2006


HI

U can do this

access-list 199 deny tcp host 10.4.1.32 any eq www
access-list 199 permit tcp 10.4.1.0 0.0.0.255 any eq www
access-list 199 deny ip any any


regards
Suman Rayala


Similar Posts