CONFIGURACIÓN DE RIP CON DHCP CISCO
Enviado por iaguasaco • 22 de Abril de 2021 • Tarea • 474 Palabras (2 Páginas) • 98 Visitas
CONFIGURACIÓN DE RIP CON DHCP CISCO
[pic 1]
REDES | |||
RED A | RED B | RED C | RED D |
168.100.0.0 | 100.0.0.0 | 128.10.10.0 | 22.100.0.0 |
====================================================
= ROUTER 0 =
====================================================
enable
configure terminal
interface GigabitEthernet0/0
no shutdown
ip address 1.0.0.1 255.255.255.252
exit
interface GigabitEthernet0/1
no shutdown
ip address 168.100.0.1 255.255.255.0
exit
interface loopback 1
ip address 1.1.1.1 255.255.255.255
no shutdown
exit
ip dhcp excluded-address 168.100.0.1 168.100.0.100
ip dhcp pool red1
network 168.100.0.1 255.255.255.0
default-router 1.1.1.1
dns-server 8.8.8.8
exit
router rip
version 1
network 168.100.0.1
network 1.0.0.0
exit
====================================================
= ROUTER 1 =
====================================================
enable
configure terminal
interface GigabitEthernet0/0
no shutdown
ip address 1.0.0.5 255.255.255.252
exit
interface GigabitEthernet0/1
no shutdown
ip address 128.10.10.1 255.255.255.0
exit
interface loopback 1
ip address 1.1.1.1 255.255.255.255
no shutdown
exit
ip dhcp excluded-address 128.10.10.1 128.10.10.100
ip dhcp pool red1
network 128.10.10.1 255.255.255.0
default-router 1.1.1.1
dns-server 8.8.8.8
exit
router rip
version 1
network 128.10.10.0
network 1.0.0.0
exit
====================================================
= ROUTER 2 =
====================================================
enable
configure terminal
interface FastEthernet0/0
no shutdown
ip address 1.0.0.2 255.255.255.252
exit
interface FastEthernet0/1
no shutdown
ip address 1.0.0.6 255.255.255.252
exit
interface FastEthernet1/0
no shutdown
ip address 1.0.0.9 255.255.255.252
exit
interface FastEthernet1/1
no shutdown
ip address 1.0.0.13 255.255.255.252
exit
router rip
version 1
network 1.0.0.0
exit
====================================================
= ROUTER 3 =
====================================================
...