04-23-2020 04:40 AM
We have 4 VLANs. The first VLAN has to be connected with all three others. VLAN 2, 3 and 4 have to communicate with the first but not with each other. Is this possible with a layer 3 switch? And how?
04-23-2020 04:49 AM - edited 04-23-2020 04:49 AM
04-23-2020 05:08 AM
Hello @DommeDE ,
yes it is possible by using extended IP ACLs applied to the SVI interfaces of the multilayer switch.
Remember of the implicit deny any in the ACL if you need to allow access to/from the internet.
Hope to help
Giuseppe
04-23-2020 06:36 AM
Hello
As stated @Giuseppe Larosa you can achieve this via RACL applied to the SVI interface of vlan 2, 3, 4
Example:
ip access-list extended vlan2
deny ip any 3.3.3.0 0.0.0.255
deny ip any 4.4.4.0 0.0.0.255
permit ip any any
int vlan 2
ip access-group vlan2 in
ip access-list extended vlan3
deny ip any 2.2.2.0 0.0.0.255
deny ip any 4.4.4.0 0.0.0.255
permit ip any any
int vlan 3
ip access-group vlan3 in
ip access-list extended vlan4
deny ip any 2.2.2.0 0.0.0.255
deny ip any 3.3.3.0 0.0.0.255
permit ip any any
int vlan 4
ip access-group vlan4 in
04-23-2020 08:25 AM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide