Posts

Showing posts from October, 2018

Red OSPF con salida a internet usando routers Cisco, Juniper y Mikrotik en GNS3.

Image
COMANDOS: JUNIPER cli configure set interfaces em0 unit 0 family inet address 10.10.2.1/24 set interfaces em1 unit 0 family inet address 10.10.3.1/24 set interfaces em2 unit 0 family inet address 10.10.15.1/24 set interfaces em3 unit 0 family inet address 10.10.16.1/24 set routing-options router-id 1.1.1.1 set protocols ospf area 0.0.0.0 interface em0 set protocols ospf area 0.0.0.0 interface em1 set protocols ospf area 0.0.0.0 interface em2 set protocols ospf area 0.0.0.0 interface em3 commit exit ========================================== R1 conf t int e0/0 ip add 10.10.2.2 255.255.255.0 ip ospf 10 area 0 no shut exit int e0/1 ip add 10.10.4.1 255.255.255.0 ip ospf 10 area 0 no shut exit int e0/2 ip add 10.10.7.1 255.255.255.0 ip ospf 10 area 0 no shut exit int e0/3 ip add 10.10.8.1 255.255.255.0 ip ospf 10 area 0 no shut exit router ospf 10 router-id 11.11.11.11 exit ========================================== R2 conf t int e0/0 ip

Configuración de OSPF en routers CISCO mediante el software GNS3

Image
COMANDOS UTILIZADOS EN LA CONFIGURACIÓN   R1 conf t int e0/1 ip add 192.168.20.1 255.255.255.0 no shut exit int e0/2 ip add 192.168.10.1 255.255.255.0 no shut exit int e0/3 ip add 192.168.11.1 255.255.255.0 no shut exit int e1/0 ip add 192.168.12.1 255.255.255.0 no shut exit router ospf 10 router-id 1.1.1.1 network 192.168.20.0 0.0.0.255 area 0 network 192.168.10.0 0.0.0.255 area 0 network 192.168.11.0 0.0.0.255 area 0 network 192.168.12.0 0.0.0.255 area 0 exit ================================= R2 conf t int e0/0 ip add 192.168.20.2 255.255.255.0 no shut exit int e0/2 ip add 192.168.31.1 255.255.255.0 no shut exit int e0/3 ip add 192.168.32.1 255.255.255.0 no shut exit int e0/1 ip add 192.168.30.1 255.255.255.0 no shut exit router ospf 10 router-id 2.2.2.2 network 192.168.20.0 0.0.0.255 area 0 network 192.168.30.0 0.0.0.255 area 0 network 192.168.31.0 0.0.0.255 area 0 network 192.168.32.0 0.0.0.255 area 0 exit ==============