So I've been working on my project and I've implemented vlans nad also router stick.Now I want to block connections between vlans that are not same with extended access list but something does not work..Here are the commands that I've written
ip access-list extended VLAN10-PING
permit icmp 192.168.10.0 0.0.0.255 192.168.10.0 0.0.0.255
deny icmp 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255
permit ip any any
ip access-list extended VLAN20-PING
permit icmp 192.168.20.0 0.0.0.255 192.168.20.0 0.0.0.255
deny icmp 192.168.20.0 0.0.0.255 192.168.10.0 0.0.0.255
permit ip any any
Here is the zip file.. Please help