cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
962
Views
1
Helpful
3
Replies

packet tracer ACL

Baratheon
Level 1
Level 1

Hi, friends, I would like to ask about the ACL settings. In the picture, I want both R1 and R2 to be able to ping the IT Router, and The IT Router cannot ping R1. I would like to ask you the specific ACL configuration method? No more trouble to guide, thank you.

ACL問題.png

1 Accepted Solution

Accepted Solutions

Hello,

You can try to put an ACL denying ICMP traffic on R2s Incoming interface G0/1 (incoming direction)

access-list 110 deny icmp any 192.168.12.0 0.0.0.255

access-list 110 permit ip any any

interface g0/1

ip access-group 110 in

 

-David

View solution in original post

3 Replies 3

Hello,

You can try to put an ACL denying ICMP traffic on R2s Incoming interface G0/1 (incoming direction)

access-list 110 deny icmp any 192.168.12.0 0.0.0.255

access-list 110 permit ip any any

interface g0/1

ip access-group 110 in

 

-David

@David Ruess @Thank you for your response

@David Ruess Thank you for your response.