I want to limit the internet traffic from certain IP addresses to only 4 internet websites, but my internet traffic goes through a proxy. So my access-list probably won't work, so the proxy, 172.16.1.1 is setup in the user's browser.
access-list 100 permit tcp 172.16.4.0 0.0.0.255 any eq 80
access-list 100 deny tcp 172.16.4.0 0.0.0.255 host 198.133.219.25 eq 80
The request actually goes to 172.16.1.1, before 198.133.219.25, so that won't work. Is there another way to do this?
access-list 100 permit tcp 172.16.4.0 0.0.0.255 any eq 80
access-list 100 deny tcp 172.16.4.0 0.0.0.255 host 198.133.219.25 eq 80
The request actually goes to 172.16.1.1, before 198.133.219.25, so that won't work. Is there another way to do this?