cancelar
Mostrando los resultados de 
Buscar en lugar de 
Quiere decir: 
cancel
393
Visitas
0
ÚTIL
1
Respuestas

Connection between vlans

diegonchoo
Level 1
Level 1

Good morning dear community, I have a problem for which you may have an answer.

It turns out that I have a topology like this, my problem is: I want the existing vlans to get IP addresses through DHCP and that forces me to make sub interfaces, but when I do this configuration, the consequence is that different vlans have connection, I don't want them to connect to each other, but I want them to get DHCP from the router.

What is the solution to this problem?
TopologyTopology

1 SOLUCIÓN ACEPTADA

Soluciones aceptadas

balaji.bandi
Hall of Fame
Hall of Fame

if you do not like to connect to each other you need to apply IP ACL on the interfaces each to block and rest allow.

example :

ip access-list extended myblock-list 

deny ip 192.168.2.0 0.0.0.255 192.168.3.0 0.0.0.255  (example vlan 20 192.168.2.0 vlan 30 192.168.3.0)

....

permit IP any any

 

interface gig 1/1.10

ip access-group myblock-list in

BB

***** Rate All Helpful Responses *****

How to Ask The Cisco Community for Help

Ver la solución en mensaje original publicado

1 RESPUESTA 1

balaji.bandi
Hall of Fame
Hall of Fame

if you do not like to connect to each other you need to apply IP ACL on the interfaces each to block and rest allow.

example :

ip access-list extended myblock-list 

deny ip 192.168.2.0 0.0.0.255 192.168.3.0 0.0.0.255  (example vlan 20 192.168.2.0 vlan 30 192.168.3.0)

....

permit IP any any

 

interface gig 1/1.10

ip access-group myblock-list in

BB

***** Rate All Helpful Responses *****

How to Ask The Cisco Community for Help