Sie sind auf Seite 1von 6

ESCUELA SUPERIOR POLITECNICA DEL LITORAL

TECNOLOGIA DE REDES WAN


RESOLUCION DE PROBLEMAS DHCP Y NAT
INTEGRANTES:

DANIEL TORRES CARLOS PERALTA JEAN CARLO MAZZINI ERWIN BRAVO JONATHAN AGUIRRE BRYAN ASTUDILLO

DHCP Y NAT Deteccin de errores

Configuration actual R1
hostname R1 ! enable secret class ! no ip domain lookup ! interface FastEthernet0/0 ip address 172.16.10.1 255.255.255.0 ip helper-address 172.16.0.2

no shutdown ! interface FastEthernet0/1 ip address 172.16.11.1 255.255.255.0 no shutdown ! interface Serial0/0/0 ip address 172.16.0.1 255.255.255.252 clock rate 125000 no shutdown ! router rip version 2 network 172.16.0.0 no auto-summary ! banner motd $AUTHORIZED ACCESS ONLY$ ! line con 0 password cisco logging synchronous login line vty 0 4 password cisco logging synchronous login ! end

R2
hostname R2 ! enable secret class ! ip dhcp excluded-address 172.16.10.1 172.16.10.3 ip dhcp excluded-address 172.16.11.1 172.16.11.3 ! ip dhcp pool R1_LAN10 network 172.16.10.0 255.255.255.0 dns-server 172.16.20.254 !

ip dhcp pool R1_LAN11 network 172.16.11.0 255.255.255.0 dns-server 172.16.20.254 ! no ip domain lookup ! interface Loopback0 ip address 172.16.20.1 255.255.255.0 ip nat inside no shutdown ! interface Serial0/0/0 ip address 172.16.0.2 255.255.255.252 no shutdown ! interface Serial0/0/1 ip address 209.165.201.1 255.255.255.252 ip nat outside clock rate 125000 no shutdown ! router rip version 2 network 172.16.0.0 default-information originate no auto-summary ! ip route 0.0.0.0 0.0.0.0 209.165.201.2 ! ip nat pool NAT_POOL 209.165.201.9 209.165.201.14 netmask 255.255.255.248 ip nat inside source list NAT_ACL pool NATPOOL overload ! ip access-list standard NAT_ACL permit 172.16.10.0 0.0.0.255 ! banner motd $AUTHORIZED ACCESS ONLY$ ! line con 0 password cisco logging synchronous login line vty 0 4

password cisco logging synchronous login ! end

ISP
hostname ISP ! enable secret class ! interface Serial0/0/1 ip address 209.165.201.2 255.255.255.252 no shutdown ! ip route 0.0.0.0 0.0.0.0 Serial0/0/1 ! banner motd $AUTHORIZED ACCESS ONLY$ ! line con 0 password cisco logging synchronous login line vty 0 4 password cisco logging synchronous login ! end

Errores y Soluciones.
1) En el router 1 en la interfaz fast 0/1 no tiene ip helperaddress 172.16.0.2 Solucin: configurar el ip helper-address en la interfaz fa 0/1 R1(config)#interface fa0/1

R1(config-if)#ip helper-address 172.16.0.2 2) En el router 2 en la creacin del pool R1_lan10 no tiene el default-router xxx.xxx.xxx.xxx , en el router 2 en la creacin del pool R1_lan11 no tiene el default-router xxx.xxx.xxx.xxx Solucin: configurar respectivo el default-router en cada pool

R2(dhcp-config)#default-router 172.16.10.1 Para el pool R1_lan10 R2(dhcp-config)#default-router 172.16.11.1 Para el pool R1_lan11 3) En el router 2 la interfaz fa0/0 no est configurada. En su lugar se ha configurado la direccin adecuada pero a la interfaz incorrecta (Loopback). 4) Las PC's no tienen configurado el direccionamiento dinmico DHCP. 5) En la ACL del router 2 la red 172.16.11.0 no tena permitido el acceso. Solucin: configurar la acl para permitir la red R2(config)#ip access-list standard NAT R2(config-std-nacl)#permit 172.16.10.0 0.0.0.255 R2(config-std-nacl)#permit 172.16.11.0 0.0.0.255 6) En el router 2 en la serial 0/0/0, no posee ip nat inside

Solucin: configurar el ip nat inside en la serial 0/0/0 7) En el router 2, al momento de establecer la traduccin dinmica de las direcciones, se escribi mal el nombre del pool. 8) En el router 2, no est configurado el pool de direcciones nat, para hacer las respectivas traduccin de la red interna hacia el isp y viceversa

Das könnte Ihnen auch gefallen