Hello,
This is my first ACL work and i'm a little confuse ....
Routing is active on my Procurve 2610.
I've got 4 VLAN :
Default_vlan : 192.168.1.0 (router adress : 192.168.1.253)
VLAN1 : 192.168.2.0 (192.168.2.253)
VLAN3 : 192.168.3.0 (192.168.3.253)
VLAN4 : 192.168.4.0 (192.168.4.253)
I wrote those lines :
no ip access-list extended 102
no ip access-list extended 103
no ip access-list extended 104
;---------------------------------------------
;Extended named ACL for Vlan 2
;------------------------------
ip access-list extended "102"
; blocking VLAN 3 and 4 going to Vlan 2
deny ip 192.168.3.0 0.255.255.255 192.168.2.0 0.255.255.255
deny ip 192.168.4.0 0.255.255.255 192.168.2.0 0.255.255.255
; Permiting all other traffic
permit ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255
exit
;Extended named ACL for Vlan 3
;------------------------------
ip access-list extended "103"
; blocking VLAN 2 and 4 going to Vlan 3
deny ip 192.168.2.0 0.255.255.255 192.168.3.0 0.255.255.255
deny ip 192.168.4.0 0.255.255.255 192.168.3.0 0.255.255.255
; Permiting all other traffic
permit ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255
exit
;Extended named ACL for Vlan 4
;------------------------------
ip access-list extended "104"
; blocking VLAN 2 and 3 going to Vlan 4
deny ip 192.168.2.0 0.255.255.255 192.168.4.0 0.255.255.255
deny ip 192.168.3.0 0.255.255.255 192.168.4.0 0.255.255.255
; Permiting all other traffic
permit ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255
exit
Applied ACL to ports corresponding to VLANs.
I want VLAN2 - 3 - 4 can see VLAN1
But VLAN 2 3 and 4 not see each other
Can someone help me writing those ACL ? I read again and again the Access Security Guide and try lots of thing without a good result.
When I apply ACLs every VLAN can't see anyone.
But DHCP work (adress-helper -> 192.168.1.10)
Sorry for my english : i'm french.
Regards,
Cyril