You are on page 1of 3

----R1----

enable
conf t
int e0/0
ip add 192.168.1.1 255.255.255.0
no sh
exit
int e0/2
ip add 10.10.1.1 255.255.255.252
no sh
exit
int e0/1
ip add 10.10.4.1 255.255.255.252
no sh
exit
router rip
version 2
network 192.168.1.0
network 10.10.1.0
network 10.10.4.0
--------R2------
ena
conf t
int e0/1
ip add 10.10.4.2 255.255.255.252
no sh
exit
int e0/0
ip add 192.168.4.1 255.255.255.0
no sh
exit
router rip
version 2
network 10.10.4.0
network 192.168.4.0
exit
host
ip 192.168.1.11 255.255.255.0 192.168.1.1
ip 192.168.4.11 255.255.255.0 192.168.4.1
ip 192.168.4.12 255.255.255.0 192.168.4.1
-------R3----
ena
conf t
int e0/0
ip add 10.10.1.2 255.255.255.252
no sh
exit
int e0/1
ip add 10.10.2.1 255.255.255.252
no sh
exit
int e0/2
ip add 10.10.3.1 255.255.255.252
no sh
exit
router rip
version 2
network 10.10.1.0
exit
router ospf 1
network 10.10.3.0 0.0.0.3 area 0
exit
router eigrp 10
no auto-summary
network 10.10.2.0
exit

---Red distribución de RIP a OSPF---


conf t
router rip
version 2
redistribute ospf 1 metric 1
exit
------Red distribución de OSPF a RIP----
router ospf 1
redistribute rip metric 10 subnet
-----Red distribución de RIP a EIGRP--
conf t
router rip
version 2
redistribute eigrp 10 metric 1
exit
-----Red distribución de EIGRP a RIP--
router eigrp 10
redistribute rip metric 256 100 1 255 1500
exit
-----Red distribución de EIGRP a OSPF--
conf t
router eigrp 10
redistribute ospf 1 metric 256 100 1 255 1500
exit
-----Red distribución de OSPF a EIGRP---
router ospf 1
redistribute eigrp 10 metric 10 subnet
exit
-----R4-----
ena
conf t
int e0/0
ip add 10.10.3.2 255.255.255.252
no sh
exit
int e0/1
ip add 192.168.3.1 255.255.255.0
no sh
exit
router ospf 1
network 10.10.3.0 0.0.0.3 area 0
network 192.168.3.0 0.0.0.255 area 0
host
ip 192.168.3.11 255.255.255.0 192.168.3.1
---------R5------
ena
conf t
int e0/0
ip add 10.10.2.2 255.255.255.252
no sh
exit
int e0/1
ip add 192.168.2.1 255.255.255.0
no sh
exit
router eigrp 10
no auto-summary
network 10.10.2.0
network 192.168.2.0
exit

host
ip 192.168.2.11 255.255.255.0 192.168.2.1

You might also like