SlideShare uma empresa Scribd logo
1 de 13
Primero crearemos las vlan  en el switch<br />witch#VLAN Database <br />% Warning: It is recommended to configure VLAN from config mode,<br />  as VLAN database mode is being deprecated. Please consult user<br />  documentation for configuring VTP/VLAN in config mode.<br />Switch(vlan)#VLan 10 name vlan10  donde 10 es el numero de la vlan y vlan10 es el nombre<br />VLAN 10 added:<br />    Name: vlan10<br />Switch(vlan)#VLan 20 name vlan20<br />VLAN 20 added:<br />    Name: vlan20<br />Switch(vlan)#VLan 30 name vlan30<br />VLAN 30 added:<br />    Name: vlan30<br />Switch(vlan)#VLan 40 name SERVERS<br />VLAN 40 added:<br />465391586995BY YOES105300BY YOES1053    Name: SERVERS<br />Asignación de puertos<br />Switch#conf t<br />Enter configuration commands, one per line.  End with CNTL/Z.<br />Switch(config)#int fa0/3<br />Switch(config-if)#switchport mode access<br />Switch(config-if)#switchport access vlan 10<br />Switch(config-if)#int fa0/4<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 10<br />Switch(config-if)#int fa0/5<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 10<br />Switch(config-if)#int fa0/6<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 20<br />Switch(config-if)#int fa0/7<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 20<br />Switch(config-if)#int fa0/8<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 20<br />Switch(config-if)#int fa0/9<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 30<br />Switch(config-if)#int fa0/10<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 30<br />Switch(config-if)#int fa0/11<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 30<br />Switch(config-if)#int fa0/12<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 40<br />Switch(config-if)#int fa0/13<br />4644390124460BY YOES105300BY YOES1053Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 40<br />Asignación del enlace trunk<br />En el switch:<br />switch><br />Switch>enable<br />Switch#configure terminal<br />Enter configuration commands, one per line.  End with CNTL/Z.<br />Switch(config)#int fa 0/1<br />Switch(config-if)#switchport mode trunk<br />Switch(config-if)#switchport trunk allowed vlan all<br /> <br />Asignación de respectivas sub interfaces a cada vlan en el router<br />Router>enable <br />Router#configure terminal <br />Enter configuration commands, one per line.  End with CNTL/Z.<br />Router(config-if)#int fa0/1.1<br />Router(config-subif)#encapsulation dot1Q 10<br />Router(config-subif)#ip add 192.168.10.1 255.255.255.0<br />Router(config-subif)#int fa0/1.2Router(config-subif)#encapsulation dot1Q 20<br />Router(config-subif)#ip add 192.168.20.1 255.255.255.0<br />Router(config-subif)#int fa0/1.3<br />Router(config-subif)#encapsulation dot1Q 30<br />Router(config-subif)#ip add 192.168.30.1 255.255.255.0<br />Router(config-subif)#int fa0/1.4<br />Router(config-subif)#encapsulation dot1Q 40<br />Router(config-subif)#ip add 192.168.40.1 255.255.255.0<br />Router(config-subif)#end<br />468249038735BY YOES105300BY YOES1053<br />Verificación de las sub interfaces utilizando el comando show run<br />Router#sh run<br />Building configuration...<br />Current configuration : 812 bytes<br />!<br />version 12.4<br />no service timestamps log datetime msec<br />no service timestamps debug datetime msec<br />no service password-encryption<br />!<br />hostname Router<br />!<br />!<br />!<br />interface FastEthernet0/0<br /> no ip address<br /> duplex auto<br /> speed auto<br /> shutdown<br />!<br />interface FastEthernet0/1<br /> no ip address<br /> duplex auto<br /> speed auto<br />!<br />interface FastEthernet0/1.1<br /> encapsulation dot1Q 10<br /> ip address 192.168.10.1 255.255.255.0<br />!<br />interface FastEthernet0/1.2<br /> encapsulation dot1Q 20<br /> ip address 192.168.20.1 255.255.255.0<br />!<br />interface FastEthernet0/1.3<br /> encapsulation dot1Q 30<br /> ip address 192.168.30.1 255.255.255.0<br />!<br />interface FastEthernet0/1.4<br /> encapsulation dot1Q 40<br /> ip address 192.168.40.1 255.255.255.0<br />!<br />interface Vlan1<br /> no ip address<br /> shutdown<br />462534042545BY YOES105300BY YOES1053<br />configuración de DHCP en el router para cada vlan<br />Router#enable<br />Router#configure terminal<br />Para vlan 10<br />Router(config)#ip dhcp pool vlan10<br />Router(dhcp-config)#network 192.168.10.0 255.255.255.0<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#default-router 192.168.10.1<br />Para vlan 20<br />Router(dhcp-config)#ip dhcp pool vlan20<br />Router(dhcp-config)#network 192.168.20.0 255.255.255.0<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#default-router 192.168.20.1<br />Para vlan 30<br />Router(dhcp-config)#ip dhcp pool vlan30<br />Router(dhcp-config)#default-router 192.168.30.1<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#network 192.168.30.1 255.255.255.0<br />Para vlan 40<br />Router(dhcp-config)#ip dhcp pool vlanSERVERS<br />Router(dhcp-config)#network 192.168.40.0 255.255.255.0<br />Router(dhcp-config)#default-router 192.168.40.1<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#end<br />El siguiente paso es ir a cada PC <br />Escritorio=>IP configuración y seleccionar DHCP<br />Cada pc debe recibir una respectiva IP, Gateway, mascara de subred y dirección del DNS server. Según la vlan a la que corresponda.<br />La dirección del servidor DNS se la otorgaremos estáticamente  que como configuramos anteriormente será la 192.168.40.100 255.255.255.0 Gateway 192.168.40.1<br />463486564135BY YOES105300BY YOES1053<br />Configuración de una página web <br />Ingresamos al servidor DNS en la pestaña configuración y luego en DNS <br />El nombre será <br /> index.html<br />La dirección que le agregaremos es la que el servidor DCHP le otorgó  el servidor web así que iremos y la verificaremos en mí caso es la ip es:<br />Dirección 192.168.40.2<br />Después de ingresar esta información le damos en agregar y serramos la ventana.<br />Ahora procederemos a verificar nuestra página web desde un pc <br />Debe aparecer una información sobre cisco packtracert  que es la que viene por default.<br />PC5 => Escritorio =>Navegador Web <br />En la barra de direccione ponemos index .html<br />4701540166370BY YOES105300BY YOES1053<br />Configuración del TFTP <br />Ahora sacamos un nuevo servidor y lo conectamos a el switch en la interface fastethernet 0/14 <br />Y lo asemos miembro de la vlan 40 (vlanSERVERS)<br />Switch>enable<br />Switch#confonfigure terminal<br />Switch(config)#int fastEthernet 0/14<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 40<br />Switch(config-if)#end<br />A hora verifiquemos que cada vlan tenga los puertos correspondientes<br />Switch#show vlan<br />VLAN Name                             Status    Ports<br />---- -------------------------------- --------- -------------------------------<br />1    default                          active    Fa0/2, Fa0/15, Fa0/16, Fa0/17<br />                                                Fa0/18, Fa0/19, Fa0/20, Fa0/21<br />                                                Fa0/22, Fa0/23, Fa0/24, Gig1/1<br />                                                Gig1/2<br />10   vlan10                           active    Fa0/3, Fa0/4, Fa0/5<br />20   vlan20                           active    Fa0/6, Fa0/7, Fa0/8<br />30   vlan30                           active    Fa0/9, Fa0/10, Fa0/11<br />40   SERVERS                          active    Fa0/12, Fa0/13, Fa0/14<br />1002 fddi-default                     act/unsup <br />1003 token-ring-default               act/unsup <br />1004 fddinet-default                  act/unsup <br />1005 trnet-default                    act/unsup <br />VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2<br />---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------<br />1    enet  100001     1500  -      -      -        -    -        0      0<br />10   enet  100010     1500  -      -      -        -    -        0      0<br />20   enet  100020     1500  -      -      -        -    -        0      0<br />30   enet  100030     1500  -      -      -        -    -        0      0<br />4615815134620BY YOES105300BY YOES1053<br />Ingresamos al router, agregamos el servicio y el archivo por copiar en este caso su nombre será archivo<br />Procederemos de la siguiente forma:<br />Router>enable<br />Router#copy run tftp: <br />Address or name of remote host []? 192.168.40.3 <br />Destination filename [Router-confg]? archivo<br />Writing running-config...!!<br />[OK - 1265 bytes]<br />1265 bytes copied in 0.046 secs (27000 bytes/sec)<br />Router#<br />Ya tendremos salvada la configuración del router y podemos gravarla en otro router en caso de que el que está siendo usado se dañe o falle.<br />Ahora pasaremos la información a otro router  para que este quede exactamente igual al router funcional, desconectamos el servidor TFTP y sacamos un nuevo router 1841 y los conectamos directamente con un cable cruzado en la interface fastethernet 0/1<br />Asignamos la dirección ip al router que coincida con la que ya tiene el servidor TFTP que tiene la ip 192.168.40.3 255.255.255.0 que le asigno  el DHCP en este caso será la siguiente:<br />Router#enable <br />Router#configure terminal<br />Enter configuration commands, one per line.  End with CNTL/Z.<br />Router(config)#interface FastEthernet0/1<br />Router(config-if)#ip address 192.168.40.1 255.255.255.0 <br />Router(config-if)#<br />Luego procedemos a pasar la información para completar el router que será la copia de seguridad:<br />Router#copy tftp star<br />Address or name of remote host []? 192.168.40.3  dirección del servidor TFTP<br />Source filename []? archive       nombre de la copia<br />Destination filename [startup-config]? <br />471106569850BY YOES105300BY YOES1053<br />Accessing tftp://192.168.40.3/archivo...<br />Loading archivo from 192.168.40.3: !<br />[OK - 1265 bytes]<br />1265 bytes copied in 0.009 secs (140555 bytes/sec)<br />Para  verificar que el router cargo la configuración correctamente lo reiniciamos y luego verificamos de la siguiente forma:<br />Router>enable<br />Router#reload<br />Proceed with reload? [confirm]<br />%SYS-5-RELOAD: Reload requested by console. Reload Reason: Reload Command.<br />System Bootstrap, Version 12.3(8r)T8, RELEASE SOFTWARE (fc1)<br />Cisco 1841 (revision 5.0) with 114688K/16384K bytes of memory.<br />Self decompressing the image :<br />########################################################################## [OK]<br />              Restricted Rights Legend<br />Use, duplication, or disclosure by the Government is<br />subject to restrictions as set forth in subparagraph<br />(c) of the Commercial Computer Software - Restricted<br />Rights clause at FAR sec. 52.227-19 and subparagraph<br />(c) (1) (ii) of the Rights in Technical Data and Computer<br />Software clause at DFARS sec. 252.227-7013.<br />           cisco Systems, Inc.<br />           170 West Tasman Drive<br />           San Jose, California 95134-1706<br />Cisco IOS Software, 1841 Software (C1841-ADVIPSERVICESK9-M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)<br />Technical Support: http://www.cisco.com/techsupport<br />Copyright (c) 1986-2007 by Cisco Systems, Inc.<br />Compiled Wed 18-Jul-07 04:52 by pt_team<br />Image text-base: 0x60080608, data-base: 0x6270CD50<br />Cisco 1841 (revision 5.0) with 114688K/16384K bytes of memory.<br />Processor board ID FTX0947Z18E<br />M860 processor: part number 0, mask 49<br />2 FastEthernet/IEEE 802.3 interface(s)<br />191K bytes of NVRAM.<br />472059076835BY YOES105300BY YOES105363488K bytes of ATA CompactFlash (Read/Write)<br />Cisco IOS Software, 1841 Software (C1841-ADVIPSERVICESK9-M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)<br />Technical Support: http://www.cisco.com/techsupport<br />Copyright (c) 1986-2007 by Cisco Systems, Inc.<br />Compiled Wed 18-Jul-07 04:52 by pt_team<br />Press RETURN to get started! <br />%LINK-5-CHANGED: Interface Vlan1, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to administratively down<br />%LINK-5-CHANGED: Interface FastEthernet0/1.1, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.1, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1.2, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.2, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1.3, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.3, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1.4, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.4, changed state to up<br />%LINK-5-CHANGED: Interface Vlan1, changed state to administratively down<br />%SYS-5-CONFIG_I: Configured from console by console<br />4634865142240BY YOES105300BY YOES1053<br />Veamos la configuración con el comando show running-config<br />Router>enable<br />Router#show running-config<br />Building configuration...<br />Current configuration : 1265 bytes<br />!<br />version 12.4<br />no service timestamps log datetime msec<br />no service timestamps debug datetime msec<br />no service password-encryption<br />!<br />hostname Router<br />!<br />ip dhcp pool vlan10<br /> network 192.168.10.0 255.255.255.0<br /> default-router 192.168.10.1<br /> dns-server 192.168.40.100<br />ip dhcp pool vlan20<br /> network 192.168.20.0 255.255.255.0<br /> default-router 192.168.20.1<br /> dns-server 192.168.40.100<br />ip dhcp pool vlan30<br /> network 192.168.30.0 255.255.255.0<br /> default-router 192.168.30.1<br /> dns-server 192.168.40.100<br />ip dhcp pool vlanSERVERS<br /> network 192.168.40.0 255.255.255.0<br /> default-router 192.168.40.1<br /> dns-server 192.168.40.100<br />!<br />interface FastEthernet0/0<br /> no ip address<br /> duplex auto<br /> speed auto<br /> shutdown<br />4606290163830BY YOES105300BY YOES1053!<br />interface FastEthernet0/1<br /> no ip address<br /> duplex auto<br /> speed auto<br />!<br />interface FastEthernet0/1.1<br /> encapsulation dot1Q 10<br /> ip address 192.168.10.1 255.255.255.0<br />!<br />interface FastEthernet0/1.2<br /> encapsulation dot1Q 20<br /> ip address 192.168.20.1 255.255.255.0<br />!<br />interface FastEthernet0/1.3<br /> encapsulation dot1Q 30<br /> ip address 192.168.30.1 255.255.255.0<br />!<br />interface FastEthernet0/1.4<br /> encapsulation dot1Q 40<br /> ip address 192.168.40.1 255.255.255.0<br />!<br />interface Vlan1<br /> no ip address<br /> shutdown<br />!<br />ip classless<br />!<br />!<br />line con 0<br />line vty 0 4<br /> login<br />!<br />end<br />463486598425BY YOES105300BY YOES1053<br />Ahora remplazaremos el router principal por el router copia para verificar pruebas de conectividad entre otras, el resultado debe ser totalmente igual que con el primer router.<br />Al final tendremos la siguiente topología con DHCP, DNS, WEB y TFTP con conectividad de cada vlan a los servidores pero no entre vlan:<br />46729651111885BY YOES105300BY YOES1053Fin..<br />
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp
Vlan dhcp seridores dns web tftp

Mais conteúdo relacionado

Mais procurados

Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracerAnabia Anabia
 
Protocolos de enrutamiento por vector distancia
Protocolos de enrutamiento por vector distanciaProtocolos de enrutamiento por vector distancia
Protocolos de enrutamiento por vector distanciaJorge Arroyo
 
DPDK IPSec Security Gateway Application
DPDK IPSec Security Gateway ApplicationDPDK IPSec Security Gateway Application
DPDK IPSec Security Gateway ApplicationMichelle Holley
 
Enrutamiento dinamico eigrp ospf
Enrutamiento dinamico eigrp ospfEnrutamiento dinamico eigrp ospf
Enrutamiento dinamico eigrp ospfcyberleon95
 
Igrp
IgrpIgrp
Igrp1 2d
 
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...Salem Trabelsi
 
Vlan configuration guide
Vlan configuration guideVlan configuration guide
Vlan configuration guideprabh_in
 
Basic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBasic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBui Van Cuong
 
CCNA - Routing & Switching Commands
CCNA - Routing & Switching CommandsCCNA - Routing & Switching Commands
CCNA - Routing & Switching CommandsEng. Emad Al-Atoum
 
Llaboratorio 6.4.2- reto al enrutamiento inter vlan
Llaboratorio 6.4.2- reto al enrutamiento inter vlanLlaboratorio 6.4.2- reto al enrutamiento inter vlan
Llaboratorio 6.4.2- reto al enrutamiento inter vlanJose Guadalupe Couoh Dzul
 
Module 4: NETCONF Tutorial
Module 4: NETCONF Tutorial Module 4: NETCONF Tutorial
Module 4: NETCONF Tutorial Tail-f Systems
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training PresentationRohit Singh
 
101 CCNA Labs with Solutions.pdf
101 CCNA Labs with Solutions.pdf101 CCNA Labs with Solutions.pdf
101 CCNA Labs with Solutions.pdfBiVnHu1
 
Nokia IES Configuration guide
Nokia IES Configuration guideNokia IES Configuration guide
Nokia IES Configuration guideAbel Saduwa
 

Mais procurados (20)

Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracer
 
Protocolos de enrutamiento por vector distancia
Protocolos de enrutamiento por vector distanciaProtocolos de enrutamiento por vector distancia
Protocolos de enrutamiento por vector distancia
 
DPDK IPSec Security Gateway Application
DPDK IPSec Security Gateway ApplicationDPDK IPSec Security Gateway Application
DPDK IPSec Security Gateway Application
 
Enrutamiento dinamico eigrp ospf
Enrutamiento dinamico eigrp ospfEnrutamiento dinamico eigrp ospf
Enrutamiento dinamico eigrp ospf
 
Igrp
IgrpIgrp
Igrp
 
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...
 
Vlan configuration guide
Vlan configuration guideVlan configuration guide
Vlan configuration guide
 
Basic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBasic cau hinh ip tren solaris
Basic cau hinh ip tren solaris
 
CCNA - Routing & Switching Commands
CCNA - Routing & Switching CommandsCCNA - Routing & Switching Commands
CCNA - Routing & Switching Commands
 
Llaboratorio 6.4.2- reto al enrutamiento inter vlan
Llaboratorio 6.4.2- reto al enrutamiento inter vlanLlaboratorio 6.4.2- reto al enrutamiento inter vlan
Llaboratorio 6.4.2- reto al enrutamiento inter vlan
 
Network virtualization
Network virtualizationNetwork virtualization
Network virtualization
 
Module 4: NETCONF Tutorial
Module 4: NETCONF Tutorial Module 4: NETCONF Tutorial
Module 4: NETCONF Tutorial
 
Vlan
Vlan Vlan
Vlan
 
C C N A Day2
C C N A  Day2C C N A  Day2
C C N A Day2
 
Mcsa certification 410
Mcsa certification 410Mcsa certification 410
Mcsa certification 410
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training Presentation
 
101 CCNA Labs with Solutions.pdf
101 CCNA Labs with Solutions.pdf101 CCNA Labs with Solutions.pdf
101 CCNA Labs with Solutions.pdf
 
VTP
VTPVTP
VTP
 
Nokia IES Configuration guide
Nokia IES Configuration guideNokia IES Configuration guide
Nokia IES Configuration guide
 
Servicio de Nombres de Dominio DNS
Servicio de Nombres de Dominio DNSServicio de Nombres de Dominio DNS
Servicio de Nombres de Dominio DNS
 

Semelhante a Vlan dhcp seridores dns web tftp

Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un routeryoes1053
 
Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un routeryoes1053
 
Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un routeryoes1053
 
Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un routeryoes1053
 
Configuración básica de una vlan
Configuración básica de una vlanConfiguración básica de una vlan
Configuración básica de una vlanyoes1053
 
Configuración básica de una vlan
Configuración básica de una vlanConfiguración básica de una vlan
Configuración básica de una vlanyoes1053
 
Comandos dispositivos
Comandos dispositivosComandos dispositivos
Comandos dispositivosJoan Diiz
 
Switch 2900 vlan
Switch 2900 vlanSwitch 2900 vlan
Switch 2900 vlan1 2d
 
12.1 e switching_lab_4_4_1
12.1 e switching_lab_4_4_112.1 e switching_lab_4_4_1
12.1 e switching_lab_4_4_1Alvaro J
 
Practica 2 enritamiento basico entre vlan
Practica 2 enritamiento basico entre vlanPractica 2 enritamiento basico entre vlan
Practica 2 enritamiento basico entre vlanJose Limon
 
Comandosparalaconfiguraciondevlans
ComandosparalaconfiguraciondevlansComandosparalaconfiguraciondevlans
ComandosparalaconfiguraciondevlansRussell Rincon Roman
 
Configuración basica del un router.pdf
Configuración basica del un router.pdfConfiguración basica del un router.pdf
Configuración basica del un router.pdfYAELMILDRAYACOSTAMEJ
 

Semelhante a Vlan dhcp seridores dns web tftp (20)

Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un router
 
Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un router
 
Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un router
 
Configuracion basica de vlan con un router
Configuracion basica de vlan con un routerConfiguracion basica de vlan con un router
Configuracion basica de vlan con un router
 
Configuración básica de una vlan
Configuración básica de una vlanConfiguración básica de una vlan
Configuración básica de una vlan
 
Configuración básica de una vlan
Configuración básica de una vlanConfiguración básica de una vlan
Configuración básica de una vlan
 
Configurcion sw
Configurcion swConfigurcion sw
Configurcion sw
 
Comandos dispositivos
Comandos dispositivosComandos dispositivos
Comandos dispositivos
 
Switch 2900 vlan
Switch 2900 vlanSwitch 2900 vlan
Switch 2900 vlan
 
Ejercicio ccna 3
Ejercicio ccna 3Ejercicio ccna 3
Ejercicio ccna 3
 
12.1 e switching_lab_4_4_1
12.1 e switching_lab_4_4_112.1 e switching_lab_4_4_1
12.1 e switching_lab_4_4_1
 
Practica 2 enritamiento basico entre vlan
Practica 2 enritamiento basico entre vlanPractica 2 enritamiento basico entre vlan
Practica 2 enritamiento basico entre vlan
 
Rea 3
Rea 3Rea 3
Rea 3
 
Comandos básicos
Comandos básicosComandos básicos
Comandos básicos
 
Comunicación inter vlan
Comunicación inter vlanComunicación inter vlan
Comunicación inter vlan
 
Comunicación inter vlan
Comunicación inter vlanComunicación inter vlan
Comunicación inter vlan
 
Comandosparalaconfiguraciondevlans
ComandosparalaconfiguraciondevlansComandosparalaconfiguraciondevlans
Comandosparalaconfiguraciondevlans
 
Configuración basica del un router.pdf
Configuración basica del un router.pdfConfiguración basica del un router.pdf
Configuración basica del un router.pdf
 
comandos
comandoscomandos
comandos
 
Voz_IP.pdf
Voz_IP.pdfVoz_IP.pdf
Voz_IP.pdf
 

Mais de yoes1053

Dns debian
Dns debianDns debian
Dns debianyoes1053
 
Comandos en tabla
Comandos en tablaComandos en tabla
Comandos en tablayoes1053
 
Dns server
Dns serverDns server
Dns serveryoes1053
 
Dhcp server
Dhcp serverDhcp server
Dhcp serveryoes1053
 
Tutorial como conectarse al router via hypertewrminal
Tutorial como conectarse al router via hypertewrminalTutorial como conectarse al router via hypertewrminal
Tutorial como conectarse al router via hypertewrminalyoes1053
 
Introduccion al minicom
Introduccion al minicomIntroduccion al minicom
Introduccion al minicomyoes1053
 
Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1yoes1053
 
Guia de aprendizage 5 introduccion a ios de cisco
Guia de aprendizage 5 introduccion a ios de ciscoGuia de aprendizage 5 introduccion a ios de cisco
Guia de aprendizage 5 introduccion a ios de ciscoyoes1053
 
Laboratorio 8 enrutamiento dinamico part 2
Laboratorio 8 enrutamiento dinamico part 2Laboratorio 8 enrutamiento dinamico part 2
Laboratorio 8 enrutamiento dinamico part 2yoes1053
 
Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1yoes1053
 
Guía de aprendizaje 7
Guía de aprendizaje 7Guía de aprendizaje 7
Guía de aprendizaje 7yoes1053
 
Configuracion y direccionamiento del router
Configuracion y direccionamiento del routerConfiguracion y direccionamiento del router
Configuracion y direccionamiento del routeryoes1053
 
Introduccion a las redes
Introduccion a las redesIntroduccion a las redes
Introduccion a las redesyoes1053
 
Herramientas de red de los sistemas operativos
Herramientas de red de los sistemas operativosHerramientas de red de los sistemas operativos
Herramientas de red de los sistemas operativosyoes1053
 
Cofiguracion de una_red
Cofiguracion de una_redCofiguracion de una_red
Cofiguracion de una_redyoes1053
 

Mais de yoes1053 (20)

Dns debian
Dns debianDns debian
Dns debian
 
Comandos en tabla
Comandos en tablaComandos en tabla
Comandos en tabla
 
Dns server
Dns serverDns server
Dns server
 
Dhcp server
Dhcp serverDhcp server
Dhcp server
 
Dhcp
DhcpDhcp
Dhcp
 
Tutorial como conectarse al router via hypertewrminal
Tutorial como conectarse al router via hypertewrminalTutorial como conectarse al router via hypertewrminal
Tutorial como conectarse al router via hypertewrminal
 
Minicom
MinicomMinicom
Minicom
 
Introduccion al minicom
Introduccion al minicomIntroduccion al minicom
Introduccion al minicom
 
Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1
 
Guia de aprendizage 5 introduccion a ios de cisco
Guia de aprendizage 5 introduccion a ios de ciscoGuia de aprendizage 5 introduccion a ios de cisco
Guia de aprendizage 5 introduccion a ios de cisco
 
Laboratorio 8 enrutamiento dinamico part 2
Laboratorio 8 enrutamiento dinamico part 2Laboratorio 8 enrutamiento dinamico part 2
Laboratorio 8 enrutamiento dinamico part 2
 
Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1Laboratorio 8 enrutamiento dinamico part 1
Laboratorio 8 enrutamiento dinamico part 1
 
Guía de aprendizaje 7
Guía de aprendizaje 7Guía de aprendizaje 7
Guía de aprendizaje 7
 
Configuracion y direccionamiento del router
Configuracion y direccionamiento del routerConfiguracion y direccionamiento del router
Configuracion y direccionamiento del router
 
Introduccion a las redes
Introduccion a las redesIntroduccion a las redes
Introduccion a las redes
 
Herramientas de red de los sistemas operativos
Herramientas de red de los sistemas operativosHerramientas de red de los sistemas operativos
Herramientas de red de los sistemas operativos
 
Cofiguracion de una_red
Cofiguracion de una_redCofiguracion de una_red
Cofiguracion de una_red
 
Taller 6
Taller 6Taller 6
Taller 6
 
Taller 6
Taller 6Taller 6
Taller 6
 
Taller 6
Taller 6Taller 6
Taller 6
 

Último

LOS AMBIENTALISTAS todo por un mundo mejor
LOS AMBIENTALISTAS todo por un mundo mejorLOS AMBIENTALISTAS todo por un mundo mejor
LOS AMBIENTALISTAS todo por un mundo mejormrcrmnrojasgarcia
 
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024gharce
 
PPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbal
PPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbalPPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbal
PPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbalRosarioChoque3
 
Fichas de Matemática DE SEGUNDO DE SECUNDARIA.pdf
Fichas de Matemática DE SEGUNDO DE SECUNDARIA.pdfFichas de Matemática DE SEGUNDO DE SECUNDARIA.pdf
Fichas de Matemática DE SEGUNDO DE SECUNDARIA.pdfssuser50d1252
 
Secuencia didáctica.DOÑA CLEMENTINA.2024.docx
Secuencia didáctica.DOÑA CLEMENTINA.2024.docxSecuencia didáctica.DOÑA CLEMENTINA.2024.docx
Secuencia didáctica.DOÑA CLEMENTINA.2024.docxNataliaGonzalez619348
 
Cuadernillo de actividades eclipse solar.pdf
Cuadernillo de actividades eclipse solar.pdfCuadernillo de actividades eclipse solar.pdf
Cuadernillo de actividades eclipse solar.pdflizcortes48
 
HISPANIDAD - La cultura común de la HISPANOAMERICA
HISPANIDAD - La cultura común de la HISPANOAMERICAHISPANIDAD - La cultura común de la HISPANOAMERICA
HISPANIDAD - La cultura común de la HISPANOAMERICAJesus Gonzalez Losada
 
PRIMER GRADO SOY LECTOR PART1- MD EDUCATIVO.pdf
PRIMER GRADO SOY LECTOR PART1- MD  EDUCATIVO.pdfPRIMER GRADO SOY LECTOR PART1- MD  EDUCATIVO.pdf
PRIMER GRADO SOY LECTOR PART1- MD EDUCATIVO.pdfGabrieldeJesusLopezG
 
DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...
DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...
DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...Martin M Flynn
 
PLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADO
PLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADOPLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADO
PLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADOMARIBEL DIAZ
 
HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).
HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).
HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).hebegris04
 
DIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJO
DIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJODIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJO
DIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJOLeninCariMogrovejo
 
Presentación Bloque 3 Actividad 2 transversal.pptx
Presentación Bloque 3 Actividad 2 transversal.pptxPresentación Bloque 3 Actividad 2 transversal.pptx
Presentación Bloque 3 Actividad 2 transversal.pptxRosabel UA
 
4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE 9-4-24 (1).docx
4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE     9-4-24 (1).docx4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE     9-4-24 (1).docx
4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE 9-4-24 (1).docxMagalyDacostaPea
 
BITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdf
BITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdfBITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdf
BITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdfsolidalilaalvaradoro
 
Actividades eclipse solar 2024 Educacion
Actividades eclipse solar 2024 EducacionActividades eclipse solar 2024 Educacion
Actividades eclipse solar 2024 Educacionviviantorres91
 

Último (20)

LOS AMBIENTALISTAS todo por un mundo mejor
LOS AMBIENTALISTAS todo por un mundo mejorLOS AMBIENTALISTAS todo por un mundo mejor
LOS AMBIENTALISTAS todo por un mundo mejor
 
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
 
PPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbal
PPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbalPPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbal
PPT_ Prefijo homo tema para trabajar los prefijos en razonamiento verbal
 
Aedes aegypti + Intro to Coquies EE.pptx
Aedes aegypti + Intro to Coquies EE.pptxAedes aegypti + Intro to Coquies EE.pptx
Aedes aegypti + Intro to Coquies EE.pptx
 
Fichas de Matemática DE SEGUNDO DE SECUNDARIA.pdf
Fichas de Matemática DE SEGUNDO DE SECUNDARIA.pdfFichas de Matemática DE SEGUNDO DE SECUNDARIA.pdf
Fichas de Matemática DE SEGUNDO DE SECUNDARIA.pdf
 
Secuencia didáctica.DOÑA CLEMENTINA.2024.docx
Secuencia didáctica.DOÑA CLEMENTINA.2024.docxSecuencia didáctica.DOÑA CLEMENTINA.2024.docx
Secuencia didáctica.DOÑA CLEMENTINA.2024.docx
 
Aedes aegypti + Intro to Coquies EE.pptx
Aedes aegypti + Intro to Coquies EE.pptxAedes aegypti + Intro to Coquies EE.pptx
Aedes aegypti + Intro to Coquies EE.pptx
 
Cuadernillo de actividades eclipse solar.pdf
Cuadernillo de actividades eclipse solar.pdfCuadernillo de actividades eclipse solar.pdf
Cuadernillo de actividades eclipse solar.pdf
 
HISPANIDAD - La cultura común de la HISPANOAMERICA
HISPANIDAD - La cultura común de la HISPANOAMERICAHISPANIDAD - La cultura común de la HISPANOAMERICA
HISPANIDAD - La cultura común de la HISPANOAMERICA
 
PRIMER GRADO SOY LECTOR PART1- MD EDUCATIVO.pdf
PRIMER GRADO SOY LECTOR PART1- MD  EDUCATIVO.pdfPRIMER GRADO SOY LECTOR PART1- MD  EDUCATIVO.pdf
PRIMER GRADO SOY LECTOR PART1- MD EDUCATIVO.pdf
 
¿Amor o egoísmo? Esa es la cuestión.pptx
¿Amor o egoísmo? Esa es la cuestión.pptx¿Amor o egoísmo? Esa es la cuestión.pptx
¿Amor o egoísmo? Esa es la cuestión.pptx
 
DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...
DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...
DIGNITAS INFINITA - DIGNIDAD HUMANA; Declaración del dicasterio para la doctr...
 
PLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADO
PLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADOPLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADO
PLAN DE TUTORIA- PARA NIVEL PRIMARIA CUARTO GRADO
 
HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).
HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).
HISTORIETA: AVENTURAS VERDES (ECOLOGÍA).
 
DIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJO
DIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJODIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJO
DIDÁCTICA DE LA EDUCACIÓN SUPERIOR- DR LENIN CARI MOGROVEJO
 
Unidad 2 | Teorías de la Comunicación | MCDIU
Unidad 2 | Teorías de la Comunicación | MCDIUUnidad 2 | Teorías de la Comunicación | MCDIU
Unidad 2 | Teorías de la Comunicación | MCDIU
 
Presentación Bloque 3 Actividad 2 transversal.pptx
Presentación Bloque 3 Actividad 2 transversal.pptxPresentación Bloque 3 Actividad 2 transversal.pptx
Presentación Bloque 3 Actividad 2 transversal.pptx
 
4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE 9-4-24 (1).docx
4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE     9-4-24 (1).docx4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE     9-4-24 (1).docx
4° SES MATE DESCOMP. ADIT. DE NUMEROS SOBRE CASOS DE DENGUE 9-4-24 (1).docx
 
BITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdf
BITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdfBITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdf
BITÁCORA DE ESTUDIO DE PROBLEMÁTICA. TUTORÍA V. PDF 2 UNIDAD.pdf
 
Actividades eclipse solar 2024 Educacion
Actividades eclipse solar 2024 EducacionActividades eclipse solar 2024 Educacion
Actividades eclipse solar 2024 Educacion
 

Vlan dhcp seridores dns web tftp

  • 1. Primero crearemos las vlan en el switch<br />witch#VLAN Database <br />% Warning: It is recommended to configure VLAN from config mode,<br /> as VLAN database mode is being deprecated. Please consult user<br /> documentation for configuring VTP/VLAN in config mode.<br />Switch(vlan)#VLan 10 name vlan10 donde 10 es el numero de la vlan y vlan10 es el nombre<br />VLAN 10 added:<br /> Name: vlan10<br />Switch(vlan)#VLan 20 name vlan20<br />VLAN 20 added:<br /> Name: vlan20<br />Switch(vlan)#VLan 30 name vlan30<br />VLAN 30 added:<br /> Name: vlan30<br />Switch(vlan)#VLan 40 name SERVERS<br />VLAN 40 added:<br />465391586995BY YOES105300BY YOES1053 Name: SERVERS<br />Asignación de puertos<br />Switch#conf t<br />Enter configuration commands, one per line. End with CNTL/Z.<br />Switch(config)#int fa0/3<br />Switch(config-if)#switchport mode access<br />Switch(config-if)#switchport access vlan 10<br />Switch(config-if)#int fa0/4<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 10<br />Switch(config-if)#int fa0/5<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 10<br />Switch(config-if)#int fa0/6<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 20<br />Switch(config-if)#int fa0/7<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 20<br />Switch(config-if)#int fa0/8<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 20<br />Switch(config-if)#int fa0/9<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 30<br />Switch(config-if)#int fa0/10<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 30<br />Switch(config-if)#int fa0/11<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 30<br />Switch(config-if)#int fa0/12<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 40<br />Switch(config-if)#int fa0/13<br />4644390124460BY YOES105300BY YOES1053Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 40<br />Asignación del enlace trunk<br />En el switch:<br />switch><br />Switch>enable<br />Switch#configure terminal<br />Enter configuration commands, one per line. End with CNTL/Z.<br />Switch(config)#int fa 0/1<br />Switch(config-if)#switchport mode trunk<br />Switch(config-if)#switchport trunk allowed vlan all<br /> <br />Asignación de respectivas sub interfaces a cada vlan en el router<br />Router>enable <br />Router#configure terminal <br />Enter configuration commands, one per line. End with CNTL/Z.<br />Router(config-if)#int fa0/1.1<br />Router(config-subif)#encapsulation dot1Q 10<br />Router(config-subif)#ip add 192.168.10.1 255.255.255.0<br />Router(config-subif)#int fa0/1.2Router(config-subif)#encapsulation dot1Q 20<br />Router(config-subif)#ip add 192.168.20.1 255.255.255.0<br />Router(config-subif)#int fa0/1.3<br />Router(config-subif)#encapsulation dot1Q 30<br />Router(config-subif)#ip add 192.168.30.1 255.255.255.0<br />Router(config-subif)#int fa0/1.4<br />Router(config-subif)#encapsulation dot1Q 40<br />Router(config-subif)#ip add 192.168.40.1 255.255.255.0<br />Router(config-subif)#end<br />468249038735BY YOES105300BY YOES1053<br />Verificación de las sub interfaces utilizando el comando show run<br />Router#sh run<br />Building configuration...<br />Current configuration : 812 bytes<br />!<br />version 12.4<br />no service timestamps log datetime msec<br />no service timestamps debug datetime msec<br />no service password-encryption<br />!<br />hostname Router<br />!<br />!<br />!<br />interface FastEthernet0/0<br /> no ip address<br /> duplex auto<br /> speed auto<br /> shutdown<br />!<br />interface FastEthernet0/1<br /> no ip address<br /> duplex auto<br /> speed auto<br />!<br />interface FastEthernet0/1.1<br /> encapsulation dot1Q 10<br /> ip address 192.168.10.1 255.255.255.0<br />!<br />interface FastEthernet0/1.2<br /> encapsulation dot1Q 20<br /> ip address 192.168.20.1 255.255.255.0<br />!<br />interface FastEthernet0/1.3<br /> encapsulation dot1Q 30<br /> ip address 192.168.30.1 255.255.255.0<br />!<br />interface FastEthernet0/1.4<br /> encapsulation dot1Q 40<br /> ip address 192.168.40.1 255.255.255.0<br />!<br />interface Vlan1<br /> no ip address<br /> shutdown<br />462534042545BY YOES105300BY YOES1053<br />configuración de DHCP en el router para cada vlan<br />Router#enable<br />Router#configure terminal<br />Para vlan 10<br />Router(config)#ip dhcp pool vlan10<br />Router(dhcp-config)#network 192.168.10.0 255.255.255.0<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#default-router 192.168.10.1<br />Para vlan 20<br />Router(dhcp-config)#ip dhcp pool vlan20<br />Router(dhcp-config)#network 192.168.20.0 255.255.255.0<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#default-router 192.168.20.1<br />Para vlan 30<br />Router(dhcp-config)#ip dhcp pool vlan30<br />Router(dhcp-config)#default-router 192.168.30.1<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#network 192.168.30.1 255.255.255.0<br />Para vlan 40<br />Router(dhcp-config)#ip dhcp pool vlanSERVERS<br />Router(dhcp-config)#network 192.168.40.0 255.255.255.0<br />Router(dhcp-config)#default-router 192.168.40.1<br />Router(dhcp-config)#dns-server 192.168.40.100 <br />Router(dhcp-config)#end<br />El siguiente paso es ir a cada PC <br />Escritorio=>IP configuración y seleccionar DHCP<br />Cada pc debe recibir una respectiva IP, Gateway, mascara de subred y dirección del DNS server. Según la vlan a la que corresponda.<br />La dirección del servidor DNS se la otorgaremos estáticamente que como configuramos anteriormente será la 192.168.40.100 255.255.255.0 Gateway 192.168.40.1<br />463486564135BY YOES105300BY YOES1053<br />Configuración de una página web <br />Ingresamos al servidor DNS en la pestaña configuración y luego en DNS <br />El nombre será <br /> index.html<br />La dirección que le agregaremos es la que el servidor DCHP le otorgó el servidor web así que iremos y la verificaremos en mí caso es la ip es:<br />Dirección 192.168.40.2<br />Después de ingresar esta información le damos en agregar y serramos la ventana.<br />Ahora procederemos a verificar nuestra página web desde un pc <br />Debe aparecer una información sobre cisco packtracert que es la que viene por default.<br />PC5 => Escritorio =>Navegador Web <br />En la barra de direccione ponemos index .html<br />4701540166370BY YOES105300BY YOES1053<br />Configuración del TFTP <br />Ahora sacamos un nuevo servidor y lo conectamos a el switch en la interface fastethernet 0/14 <br />Y lo asemos miembro de la vlan 40 (vlanSERVERS)<br />Switch>enable<br />Switch#confonfigure terminal<br />Switch(config)#int fastEthernet 0/14<br />Switch(config-if)#switchport mode access <br />Switch(config-if)#switchport access vlan 40<br />Switch(config-if)#end<br />A hora verifiquemos que cada vlan tenga los puertos correspondientes<br />Switch#show vlan<br />VLAN Name Status Ports<br />---- -------------------------------- --------- -------------------------------<br />1 default active Fa0/2, Fa0/15, Fa0/16, Fa0/17<br /> Fa0/18, Fa0/19, Fa0/20, Fa0/21<br /> Fa0/22, Fa0/23, Fa0/24, Gig1/1<br /> Gig1/2<br />10 vlan10 active Fa0/3, Fa0/4, Fa0/5<br />20 vlan20 active Fa0/6, Fa0/7, Fa0/8<br />30 vlan30 active Fa0/9, Fa0/10, Fa0/11<br />40 SERVERS active Fa0/12, Fa0/13, Fa0/14<br />1002 fddi-default act/unsup <br />1003 token-ring-default act/unsup <br />1004 fddinet-default act/unsup <br />1005 trnet-default act/unsup <br />VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2<br />---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------<br />1 enet 100001 1500 - - - - - 0 0<br />10 enet 100010 1500 - - - - - 0 0<br />20 enet 100020 1500 - - - - - 0 0<br />30 enet 100030 1500 - - - - - 0 0<br />4615815134620BY YOES105300BY YOES1053<br />Ingresamos al router, agregamos el servicio y el archivo por copiar en este caso su nombre será archivo<br />Procederemos de la siguiente forma:<br />Router>enable<br />Router#copy run tftp: <br />Address or name of remote host []? 192.168.40.3 <br />Destination filename [Router-confg]? archivo<br />Writing running-config...!!<br />[OK - 1265 bytes]<br />1265 bytes copied in 0.046 secs (27000 bytes/sec)<br />Router#<br />Ya tendremos salvada la configuración del router y podemos gravarla en otro router en caso de que el que está siendo usado se dañe o falle.<br />Ahora pasaremos la información a otro router para que este quede exactamente igual al router funcional, desconectamos el servidor TFTP y sacamos un nuevo router 1841 y los conectamos directamente con un cable cruzado en la interface fastethernet 0/1<br />Asignamos la dirección ip al router que coincida con la que ya tiene el servidor TFTP que tiene la ip 192.168.40.3 255.255.255.0 que le asigno el DHCP en este caso será la siguiente:<br />Router#enable <br />Router#configure terminal<br />Enter configuration commands, one per line. End with CNTL/Z.<br />Router(config)#interface FastEthernet0/1<br />Router(config-if)#ip address 192.168.40.1 255.255.255.0 <br />Router(config-if)#<br />Luego procedemos a pasar la información para completar el router que será la copia de seguridad:<br />Router#copy tftp star<br />Address or name of remote host []? 192.168.40.3 dirección del servidor TFTP<br />Source filename []? archive nombre de la copia<br />Destination filename [startup-config]? <br />471106569850BY YOES105300BY YOES1053<br />Accessing tftp://192.168.40.3/archivo...<br />Loading archivo from 192.168.40.3: !<br />[OK - 1265 bytes]<br />1265 bytes copied in 0.009 secs (140555 bytes/sec)<br />Para verificar que el router cargo la configuración correctamente lo reiniciamos y luego verificamos de la siguiente forma:<br />Router>enable<br />Router#reload<br />Proceed with reload? [confirm]<br />%SYS-5-RELOAD: Reload requested by console. Reload Reason: Reload Command.<br />System Bootstrap, Version 12.3(8r)T8, RELEASE SOFTWARE (fc1)<br />Cisco 1841 (revision 5.0) with 114688K/16384K bytes of memory.<br />Self decompressing the image :<br />########################################################################## [OK]<br /> Restricted Rights Legend<br />Use, duplication, or disclosure by the Government is<br />subject to restrictions as set forth in subparagraph<br />(c) of the Commercial Computer Software - Restricted<br />Rights clause at FAR sec. 52.227-19 and subparagraph<br />(c) (1) (ii) of the Rights in Technical Data and Computer<br />Software clause at DFARS sec. 252.227-7013.<br /> cisco Systems, Inc.<br /> 170 West Tasman Drive<br /> San Jose, California 95134-1706<br />Cisco IOS Software, 1841 Software (C1841-ADVIPSERVICESK9-M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)<br />Technical Support: http://www.cisco.com/techsupport<br />Copyright (c) 1986-2007 by Cisco Systems, Inc.<br />Compiled Wed 18-Jul-07 04:52 by pt_team<br />Image text-base: 0x60080608, data-base: 0x6270CD50<br />Cisco 1841 (revision 5.0) with 114688K/16384K bytes of memory.<br />Processor board ID FTX0947Z18E<br />M860 processor: part number 0, mask 49<br />2 FastEthernet/IEEE 802.3 interface(s)<br />191K bytes of NVRAM.<br />472059076835BY YOES105300BY YOES105363488K bytes of ATA CompactFlash (Read/Write)<br />Cisco IOS Software, 1841 Software (C1841-ADVIPSERVICESK9-M), Version 12.4(15)T1, RELEASE SOFTWARE (fc2)<br />Technical Support: http://www.cisco.com/techsupport<br />Copyright (c) 1986-2007 by Cisco Systems, Inc.<br />Compiled Wed 18-Jul-07 04:52 by pt_team<br />Press RETURN to get started! <br />%LINK-5-CHANGED: Interface Vlan1, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to administratively down<br />%LINK-5-CHANGED: Interface FastEthernet0/1.1, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.1, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1.2, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.2, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1.3, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.3, changed state to up<br />%LINK-5-CHANGED: Interface FastEthernet0/1.4, changed state to up<br />%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.4, changed state to up<br />%LINK-5-CHANGED: Interface Vlan1, changed state to administratively down<br />%SYS-5-CONFIG_I: Configured from console by console<br />4634865142240BY YOES105300BY YOES1053<br />Veamos la configuración con el comando show running-config<br />Router>enable<br />Router#show running-config<br />Building configuration...<br />Current configuration : 1265 bytes<br />!<br />version 12.4<br />no service timestamps log datetime msec<br />no service timestamps debug datetime msec<br />no service password-encryption<br />!<br />hostname Router<br />!<br />ip dhcp pool vlan10<br /> network 192.168.10.0 255.255.255.0<br /> default-router 192.168.10.1<br /> dns-server 192.168.40.100<br />ip dhcp pool vlan20<br /> network 192.168.20.0 255.255.255.0<br /> default-router 192.168.20.1<br /> dns-server 192.168.40.100<br />ip dhcp pool vlan30<br /> network 192.168.30.0 255.255.255.0<br /> default-router 192.168.30.1<br /> dns-server 192.168.40.100<br />ip dhcp pool vlanSERVERS<br /> network 192.168.40.0 255.255.255.0<br /> default-router 192.168.40.1<br /> dns-server 192.168.40.100<br />!<br />interface FastEthernet0/0<br /> no ip address<br /> duplex auto<br /> speed auto<br /> shutdown<br />4606290163830BY YOES105300BY YOES1053!<br />interface FastEthernet0/1<br /> no ip address<br /> duplex auto<br /> speed auto<br />!<br />interface FastEthernet0/1.1<br /> encapsulation dot1Q 10<br /> ip address 192.168.10.1 255.255.255.0<br />!<br />interface FastEthernet0/1.2<br /> encapsulation dot1Q 20<br /> ip address 192.168.20.1 255.255.255.0<br />!<br />interface FastEthernet0/1.3<br /> encapsulation dot1Q 30<br /> ip address 192.168.30.1 255.255.255.0<br />!<br />interface FastEthernet0/1.4<br /> encapsulation dot1Q 40<br /> ip address 192.168.40.1 255.255.255.0<br />!<br />interface Vlan1<br /> no ip address<br /> shutdown<br />!<br />ip classless<br />!<br />!<br />line con 0<br />line vty 0 4<br /> login<br />!<br />end<br />463486598425BY YOES105300BY YOES1053<br />Ahora remplazaremos el router principal por el router copia para verificar pruebas de conectividad entre otras, el resultado debe ser totalmente igual que con el primer router.<br />Al final tendremos la siguiente topología con DHCP, DNS, WEB y TFTP con conectividad de cada vlan a los servidores pero no entre vlan:<br />46729651111885BY YOES105300BY YOES1053Fin..<br />