cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
530
Views
0
Helpful
1
Replies

Access-Lists

mangeshsjoshi
Level 1
Level 1

Dear All,

Pls help me out to put an access-list on router for allowwing particular users and block rest to proxy server.

I tried following but didnt work .

access-list 101 permit ip host 10.155.6.76 (USER) host 10.1.0.37 (PROXY)

access-list 101 deny ip any host 10.1.0.37

and then applied to interface.

Kindly suggest me.

1 Reply 1

milan.kulik
Level 10
Level 10

Hi, don't forget there is a default

deny ip any any

line at the end of each access-list.

So if you apply you access-list as incoming access-list on the interface the traffic comes to from the user, it will block all IP traffic except the traffic from that one user to the proxy.

So you need to add a line

access-list 101 permit ip any any

to allow all other thraffic (with any destination different from the proxy) to pass.

Regards,

Milan