Want to create interactive content? It’s easy in Genially!

Get started free

4.3.7 Configuración de enrutamiento en un switch de capa 3

Lagos Luis

Created on September 27, 2025

Start designing with a free template

Discover more than 1500 professional designs like these:

Math Mission

Simulation: How to Act Against Bullying

World Ecosystems

AI Diagnostic Survey for the Corporate Environment

Video: Keys to Effective Communication

Character Clues Game Education

Character Clues Game Education Mobile

Transcript

Complete los siguientes pasos para configurar D1 para enrutar con R1:

4.3.7 Configuración de enrutamiento en un switch de capa 3

Configure G1/0/1 para que sea un puerto enrutado, asígnele una dirección IPv4 y habilítelo. D1(config)# interface GigabitEthernet0/0/1 D1(config-if)# description routed Port Link to R1 D1(config-if)# no switchport D1(config-if)# ip address 10.10.10.2 255.255.255.0 D1(config-if)# no shut D1(config-if)# exit D1(config)#

Asegúrese de que el enrutamiento IPv4 esté habilitado con el comando de configuración global ip routing. D1(config)# ip routing D1(config)#

Verifique la tabla de enrutamiento en D1. Observe que D1 ahora tiene una ruta a la red 10.20.20.0/24. D1# show ip route | begin Gateway Gateway of last resort is not set 10.0.0.0/8 is variably subnetted, 3 subnets, 3 masks C 10.10.10.0/30 is directly connected, GigabitEthernet1/0/1 L 10.10.10.2/32 is directly connected, GigabitEthernet1/0/1 O 10.20.20.0/24 [110/2] via 10.10.10.1, 00:00:06, GigabitEthernet1/0/1 192.168.10.0/24 is variably subnetted, 2 subnets, 2 masks C 192.168.10.0/24 is directly connected, Vlan10 L 192.168.10.1/32 is directly connected, Vlan10 192.168.20.0/24 is variably subnetted, 2 subnets, 2 masks C 192.168.20.0/24 is directly connected, Vlan20 L 192.168.20.1/32 is directly connected, Vlan20 D1#

Configure el protocolo de enrutamiento OSPF para anunciar las redes VLAN 10 y VLAN 20, junto con la red que está conectada a R1. Observe el mensaje que le informa que se ha establecido una adyacencia con R1. D1(config)# router ospf 10 D1(config-router)# network 192.168.10.0 0.0.0.255 area 0 D1(config-router)# network 192.168.20.0 0.0.0.255 area 0 D1(config-router)# network 10.10.10.0 0.0.0.3 area 0 D1(config-router)# ^Z D1# *Sep 17 13:52:51.163: %OSPF-5-ADJCHG: Process 10, Nbr 10.20.20.1 on GigabitEthernet1/0/1 from LOADING to FULL, Loading Done D1#