I try to configure theses ACL on a 3500yl:
vlan 1: 10.10.10.0 255.255.255.0 GW: 10.10.10.1
vlan 2: 20.20.20.0 255.255.255.0 GW: 20.20.20.1
vlan 3: 30.30.30.0 255.255.255.0 GW: 30.30.30.1
host_1: 10.10.10.250
host_2: 20.20.20.250
host_3: 30.30.30.250
all vlans are internet access by their gateway.
the vlan 1's computers shouldn't access to other vlan but the 2 other vlan should access to vlan 1 but should access to host_3
ip access-list extended "vlan_1"
permit ip 10.10.10.0 0.0.0.255 30.30.30.250 0.0.0.0
deny ip 10.10.10.0 0.0.0.255 20.20.20.0 0.0.0.255
deny ip 10.10.10.0 0.0.0.255 30.30.30.0 0.0.0.255
permit ip any any
interface ethernet xx
access-group "vlan_1" in
vlan 3 should only access to host_2 on vlan 2.
ip access-list extended "vlan_3"
permit ip 30.30.30.0 0.0.0.255 20.20.20.250 0.0.0.0
deny ip 30.30.30.0 0.0.0.255 20.20.20.0 0.0.0.255
permit ip any any
interface ethernet yy
access-group "vlan_3" in
vlan 2 should access to any vlan.
ip access-list extended "vlan_2"
permit ip any any
interface ethernet zz
access-group "vlan_2" in
It's possible with 3500yl? I could read 3500yl doesn't do that because it doesn't do statfull like a firewall...
Thanks for your help.
Regards,
francois.