DHCP - Cisco IV
Enviado por karkacha • 12 de Diciembre de 2013 • 264 Palabras (2 Páginas) • 203 Visitas
DHCP - Dynamic Host Control Potrocol
- Permite asignar de manera automática:
o Direccion IP
o Máscara
o Gateway
o DNS
- Puede haber direcciones estáticas pero se deben excluir de las automáticas
- Se puede configurar en un servidor o en un router
- Se configura para redes locales
- Sintaxis
o Router(config)# ip dhcp pool nombre
o Router(dhcp-config)#network red máscara
o Router(dhcp-config)#default-router IP de la fast
o Router(dhcp-config)#dns-server IP del server
o Router(dhcp-config)#exit
o Router(config)# ip dhcp excluded-address PrimeraIPaExcluir UltimaIPaExcluir
a) Configurar interfaces y protocolo OSPF6 en RA
RA(config)#int f0/0
RA(config-if)# no shutdown
# ip add 8.0.0.1 255.0.0.0
#int s0/0
# no shutdown
#ip add 16.0.0.1 255.0.0.0
#router ospf 6
RA(config-router)# network 8.0.0.0 0.255.255.255 area 0
# network 16.0.0.0 0.255.255.255 area 0
b) Configurar interfaces y EIGRP 7 en RB (incluya FrameRelay)
RB(config)#int f0/0
RB(config-if)# no shutdown
# ip add 197.7.7.1 255.255.255.0
#int s0/0
# no shutdown
#ip add 200.10.10.1 255.255.255.0
#encaps frame-relay
RB(config-if)#router eigrp 7
RB(config-router)# net 197.7.7.0
#net 200.10.10.0
c) Configurar NAT Estático en ISP
ISP(config)#ip nat inside source static 5.0.0.2 16.0.0.3
#ip nat inside source static 5.0.0.3 16.0.0.4
#int f0/0
ISP(config-if))# ip nat inside
#int s0/1
#ip nat outside
d) Configurar PAT en RB
Pasos:
1. Rango privado (lista de acceso)
2. Rango público (pool)
3. Cambiar rangos
4. Asignar interfaces
1) RB(config)#access-list 10 permit 197.7.7.0 0.0.0.255
2) RB(config)#ip nat pool UNO 200.10.10.5 200.10.10.15 netmask 255.255.255.0
3) RB(config)#ip nat inside source list 10 pool UNO overload
4) RB(config)# int f0/0
RB(config-if)#ip nat inside
#int s0/0
#ip nat outside
e) Configurar PPP entre ISP y RA
ISP(config)#username RA password unico
ISP(config)#int s0/1
ISP(config-if)# encaps PPP
#PPP authentication CHAP
RA(config)#username ISP pass unico
#int s0/0
RA(config-if)# encaps PPP
#PPP authentication CHAP
f) Configurar PAP entre ISP y RA
ISP(config)#username RA password unico
ISP(config)#int s0/1
ISP(config-if)# encaps PPP
#PPP
...