Implementación de Redes Empresariales con OSPF Multiárea, EIGRP y Alta Disponibilidad
Este proyecto avanzado integra todos los conceptos de escalado de redes para implementar una infraestructura empresarial robusta con redundancia, enrutamiento dinámico avanzado (OSPF multiárea y EIGRP), agregación de enlaces y resolución de problemas complejos.
Integración de WLAN con infraestructura cableada, controladores WLC y seguridad.
Una empresa con sede central y 3 sucursales necesita:
[Sede Central] | | [Core]--[Distribución] | | | | [Área 0] [Área 1] [Área 2] [EIGRP] | | | | [Access] [WLC] [Servidores] [Sucursal Remota] | [Switch Access]--[AP]
Core(config)# router ospf 1 Core(config-router)# router-id 1.1.1.1 Core(config-router)# network 10.0.0.0 0.255.255.255 area 0 Core(config-router)# network 192.168.1.0 0.0.0.255 area 1 Core(config-router)# area 1 range 192.168.1.0 255.255.255.0 Core(config-router)# passive-interface default Core(config-router)# no passive-interface GigabitEthernet0/0 Core(config-router)# exit
area range
reduce LSA Type 3Sucursal(config)# router eigrp 100 Sucursal(config-router)# network 172.16.0.0 Sucursal(config-router)# eigrp stub connected Sucursal(config-router)# exit
Core(config)# router ospf 1 Core(config-router)# redistribute eigrp 100 subnets Core(config-router)# exit Core(config)# router eigrp 100 Core(config-router)# redistribute ospf 1 metric 10000 100 255 1 1500
show ip route
y show ip protocols
SwitchCore(config)# interface range GigabitEthernet1/0/1-2 SwitchCore(config-if-range)# channel-group 1 mode active SwitchCore(config-if-range)# exit SwitchCore(config)# interface port-channel 1 SwitchCore(config-if)# switchport mode trunk SwitchCore(config-if)# switchport trunk allowed vlan 10,20,30 SwitchCore(config-if)# exit SwitchDist(config)# interface range GigabitEthernet1/0/1-2 SwitchDist(config-if-range)# channel-group 1 mode passive
show etherchannel summary
port-channel load-balance
Dist1(config)# interface Vlan10 Dist1(config-if)# ip address 192.168.10.2 255.255.255.0 Dist1(config-if)# standby 10 ip 192.168.10.1 Dist1(config-if)# standby 10 priority 110 Dist1(config-if)# standby 10 preempt Dist1(config-if)# exit Dist2(config)# interface Vlan10 Dist2(config-if)# ip address 192.168.10.3 255.255.255.0 Dist2(config-if)# standby 10 ip 192.168.10.1 Dist2(config-if)# standby 10 priority 90 Dist2(config-if)# exit
show standby brief
(WLC) > config interface address management 192.168.30.10 255.255.255.0 192.168.30.1 (WLC) > config wlan create 1 CORPORATE (WLC) > config wlan security dot1x enable 1 (WLC) > config wlan enable 1 # En Switch de Acceso (AP conectado): SwitchAP(config)# interface GigabitEthernet1/0/5 SwitchAP(config-if)# switchport mode trunk SwitchAP(config-if)# switchport trunk native vlan 30 SwitchAP(config-if)# spanning-tree portfast trunk
show wlan summary
show ip ospf neighbor # Verificar adyacencias show ip ospf interface brief # Interfaces participantes debug ip ospf adj # Depurar formación de vecindad
show ip eigrp neighbors show ip eigrp topology debug eigrp packets
show etherchannel summary show lacp neighbor show interface trunk
debug
selectivamenteCriterio | Puntaje |
---|---|
Implementación correcta de OSPF multiárea | 25% |
Configuración de EIGRP y redistribución | 20% |
Redundancia (EtherChannel, HSRP) | 20% |
Integración WLAN | 15% |
Resolución de problemas | 10% |
Documentación profesional | 10% |