SlideShare a Scribd company logo
1 of 10
Download to read offline
Objetivos:
- Vamos a configurar la topología de la imágen anterior en cisco
packet tracer 5.3.3, es importante que sigamos todo al pie de la letra.
Router: 2811; Switch:2960.
- Configuraremos 3 VLAN'S (GESTION(1), COMERCIAL(1) Y VOZ(1))
por cada switche en CADA sede; es decir, por cada sede habrá 6
VLAN'S.
- SE REALIZARAN LLAMADAS A NIVEL WAN. (todo dará ping,
excepto los switches porque no configuraremos vlan nativa la cual es
para administración)
CONFIGURACION EN LOS ROUTERS.
EN EL ROUTER DE LA SEDE 1.
enable
configure terminal
PRENDEMOS LA INTERFAZ
int fa0/0
no shut
exit
CREAMOS LAS SUBINTERFACES PARA CADA VLAN.
int fa0/0.30
encapsulation dot1Q 30
ip add 192.168.10.1 255.255.255.0
exit
int fa0/0.40
encapsulation dot1Q 40
ip add 192.168.20.1 255.255.255.0
exit
int fa0/0.50
encapsulation dot1Q 50
ip add 192.168.30.1 255.255.255.0
exit
HACEMOS LO MISMO CON LA OTRA INTERFAZ.
int fa0/1
no shut
exit
LA ENCAPSULACION.
int fa0/1.30
encapsulation dot1Q 30
ip add 192.168.40.1 255.255.255.0
exit
int fa0/1.40
encapsulation dot1Q 40
ip add 192.168.50.1 255.255.255.0
exit
int fa0/1.50
encapsulation dot1Q 50
ip add 192.168.60.1 255.255.255.0
exit
CREAMOS EL DHCP EN EL ROUTER SEDE 1.
ip dhcp excluded-address 192.168.10.1
ip dhcp pool GESTION
network 192.168.10.0 255.255.255.0
default-router 192.168.10.1
option 150 ip 192.168.10.1
exit
ip dhcp excluded-address 192.168.20.1
ip dhcp pool COMERCIAL
network 192.168.20.0 255.255.255.0
default-router 192.168.20.1
option 150 ip 192.168.20.1
exit
ip dhcp excluded-address 192.168.30.1
ip dhcp pool VOZ
network 192.168.30.0 255.255.255.0
default-router 192.168.30.1
option 150 ip 192.168.30.1
exit
ip dhcp excluded-address 192.168.40.1
ip dhcp pool GESTION2
network 192.168.40.0 255.255.255.0
default-router 192.168.40.1
option 150 ip 192.168.40.1
exit
ip dhcp excluded-address 192.168.50.1
ip dhcp pool COMERCIAL2
network 192.168.50.0 255.255.255.0
default-router 192.168.50.1
option 150 ip 192.168.50.1
exit
ip dhcp excluded-address 192.168.60.1
ip dhcp pool VOZ2
network 192.168.60.0 255.255.255.0
default-router 192.168.60.1
option 150 ip 192.168.60.1
exit
REALIZAMOS LA CONFIGURACIÓN DE LOS TELEFONOS IP ROUTER SEDE
1.
telephony-service
max-dn 5
max-ephones 5
ip source-address 192.168.30.1 port 2000 (GATEWAY VLAN VOZ)
ip source-address 192.168.60.1 port 2000 (GATEWAY VLAN VOZ1)
auto assign 1 to 5
ephone-dn 1
number 54001
exit
ephone-dn 2
number 54002
exit
ephone-dn 3
number 54003
exit
ephone-dn 4
number 54004
exit
exit
wr (GUARDAMOS)
exit
CONFIGURACION EN EL SWITCHES SEDE-1.
en
config ter
vlan 30
name GESTION
exit
vlan 40
name COMERCIAL
exit
vlan 50
name VOZ
exit
int fa0/1
switchport mode access
switchport access vlan 30
exit
int range f0/2-f0/3
switchport mode access
switchport access vlan 40
exit
int f0/4
switchport mode access
switchport acces vlan 30
switchport voice vlan 50
spanning-tree portfast
exit
int f0/5
switchport mode access
switchport acces vlan 40
switchport voice vlan 50
spanning-tree portfast
exit
int f0/24
switchport mode trunk
switchport trunk allowed vlan 30-50
exit
exit
exit
SEGUNDO SWITCH..
en
config ter
vlan 30
name GESTION2
exit
vlan 40
name COMERCIAL2
exit
vlan 50
name VOZ2
exit
int fa0/1
switchport mode access
switchport access vlan 30
exit
int range f0/2-f0/3
switchport mode access
switchport access vlan 40
exit
int range f0/4-f0/5
switchport mode access
switchport acces vlan 30
switchport voice vlan 50
spanning-tree portfast
exit
int f0/24
switchport mode trunk
switchport trunk allowed vlan 30-50
exit
exit
exit
REALIZAREMOS LA CONFIGURACION PARA EL ROUTER SEDE 2.
enable
configure terminal
PRENDEMOS LA INTERFAZ
int fa0/0
no shut
exit
CREAMOS LAS SUBINTERFACES PARA CADA VLAN, ESTO ES PARA QUE
SE PUEDA HACER PING ENTRE ELLAS.
int fa0/0.60
encapsulation dot1Q 60
ip add 192.170.10.1 255.255.255.0
exit
int fa0/0.70
encapsulation dot1Q 70
ip add 192.170.20.1 255.255.255.0
exit
int fa0/0.80
encapsulation dot1Q 80
ip add 192.170.30.1 255.255.255.0
exit
HACEMOS LO MISMO CON LA OTRA INTERFAZ
int fa0/1
no shut
exit
LAS SUBINTERFACES.
int fa0/1.60
encapsulation dot1Q 60
ip add 192.170.40.1 255.255.255.0
exit
int fa0/1.70
encapsulation dot1Q 70
ip add 192.170.50.1 255.255.255.0
exit
int fa0/1.80
encapsulation dot1Q 80
ip add 192.170.60.1 255.255.255.0
exit
CREAMOS EL DHCP..
ip dhcp excluded-address 192.170.10.1
ip dhcp pool GESTION
network 192.170.10.0 255.255.255.0
default-router 192.170.10.1
option 150 ip 192.170.10.1
exit
ip dhcp excluded-address 192.170.20.1
ip dhcp pool COMERCIAL
network 192.170.20.0 255.255.255.0
default-router 192.170.20.1
option 150 ip 192.170.20.1
exit
ip dhcp excluded-address 192.170.30.1
ip dhcp pool VOZ
network 192.170.30.0 255.255.255.0
default-router 192.170.30.1
option 150 ip 192.170.30.1
exit
ip dhcp excluded-address 192.170.40.1
ip dhcp pool GESTION2
network 192.170.40.0 255.255.255.0
default-router 192.170.40.1
option 150 ip 192.170.40.1
exit
ip dhcp excluded-address 192.170.50.1
ip dhcp pool COMERCIAL2
network 192.170.50.0 255.255.255.0
default-router 192.170.50.1
option 150 ip 192.170.50.1
exit
ip dhcp excluded-address 192.170.60.1
ip dhcp pool VOZ2
network 192.170.60.0 255.255.255.0
default-router 192.170.60.1
option 150 ip 192.170.60.1
exit
CONFIGURACION PARA LOS TELEFONOS IP
telephony-service
max-dn 5
max-ephones 5
ip source-address 192.170.30.1 port 2000 (GATEWAY DE LA VLAN DE VOZ)
ip source-address 192.170.60.1 port 2000 (GATEWAY DE LA VLAN DE VOZ1)
auto assign 1 to 5
ephone-dn 1
number 54005
exit
ephone-dn 2
number 54006
exit
ephone-dn 3
number 54007
exit
ephone-dn 4
number 54008
exit
exit
wr (GUARDAMOS)
exit
CONFIGURACION SWITCHES SEDE 2.
en
config ter
vlan 60
name GESTION
exit
vlan 70
name VOZ
exit
vlan 80
name COMERCIAL
exit
int fa0/1
switchport mode access
switchport access vlan 60
exit
int f0/2
switchport mode access
switchport voice vlan 70
spanning-tree portfast
exit
int f0/3
switchport mode access
switchport acces vlan 80
switchport voice vlan 70
spanning-tree portfast
exit
int f0/24
switchport mode trunk
switchport trunk allowed vlan 60-80
exit
exit
exit
SEGUNDO SWITCH..
en
config ter
vlan 60
name GESTION2
exit
vlan 70
name VOZ2
exit
vlan 80
name COMERCIAL2
exit
int fa0/1
switchport mode access
switchport access vlan 60
exit
int f0/2
switchport mode access
switchport voice vlan 70
spanning-tree portfast
exit
int f0/3
switchport mode access
switchport acces vlan 80
switchport voice vlan 70
spanning-tree portfast
exit
int f0/24
switchport mode trunk
switchport trunk allowed vlan 60-80
exit
exit
exit
//////////////////ENRUTAMIENTO////////////////
ROUTER SEDE 1
Route eigrp 100
Network 192.168.10.0 0.0.0.255
Network 192.168.20.0 0.0.0.255
Network 192.168.30.0 0.0.0.255
Network 192.168.40.0 0.0.0.255
Network 192.168.50.0 0.0.0.255
Network 192.168.60.0 0.0.0.255
Network 200.150.0.0 0.0.0.3
ROUTER SEDE 2
Route eigrp 100
Network 192.170.10.0 0.0.0.255
Network 192.170.20.0 0.0.0.255
Network 192.170.30.0 0.0.0.255
Network 192.170.40.0 0.0.0.255
Network 192.170.50.0 0.0.0.255
Network 192.170.60.0 0.0.0.255
Network 200.150.0.0 0.0.0.3
CONFIGURACION DE LOS TELEFONOS A NIVEL WAN
configuracion CME
ROUTER SEDE 1 (INTERFAZ DEL SERIAL 200.150.0.1)
dial-peer voice 1 voip
destination-pattern 5400. (EL PUNTO AL FINAL ES IMPORTANTE)
session target ipv4:200.150.0.2 (AQUI VA LA IP DE LA INTERFAZ WAN DEL
ROUTER DE LAS SEDE 2)
exit
ROUTER SEDE 2 (INTERFAZ DEL SERIAL 200.150.0.2)
dial-peer voice 1 voip
destination-pattern 5400. (EL PUNTO AL FINAL ES IMPORTANTE)
session target ipv4:200.150.0.1 (AQUI VA LA IP DE LA INTERFAZ WAN DEL
ROUTER DE LAS SEDE 1)
exit
PRUEBA!!!

More Related Content

What's hot

Cisco switch commands cheat sheet
Cisco switch commands cheat sheetCisco switch commands cheat sheet
Cisco switch commands cheat sheet3Anetwork com
 
Configuring Cisco Routing Protocols
Configuring Cisco Routing ProtocolsConfiguring Cisco Routing Protocols
Configuring Cisco Routing ProtocolsI Putu Hariyadi
 
VLANs_Module_3.pptx
VLANs_Module_3.pptxVLANs_Module_3.pptx
VLANs_Module_3.pptxBOURY1
 
EtherChannel PAgP and LACP modes
EtherChannel PAgP and LACP modesEtherChannel PAgP and LACP modes
EtherChannel PAgP and LACP modesNetProtocol Xpert
 
Palo Alto VM-100 Configuration Lab
Palo Alto VM-100 Configuration LabPalo Alto VM-100 Configuration Lab
Palo Alto VM-100 Configuration LabMykhaylo Skrypka
 
How to configure dhcp on a cisco asa 5505
How to configure dhcp on a cisco asa 5505How to configure dhcp on a cisco asa 5505
How to configure dhcp on a cisco asa 5505IT Tech
 
VLAN, VTP, DTP, Ether channel Cheat Sheet With examples.pptx
VLAN, VTP, DTP, Ether channel  Cheat Sheet With examples.pptxVLAN, VTP, DTP, Ether channel  Cheat Sheet With examples.pptx
VLAN, VTP, DTP, Ether channel Cheat Sheet With examples.pptxINFitunes
 
Vlan lab
Vlan labVlan lab
Vlan labtmim8
 
OSPF- Multi area
OSPF- Multi area OSPF- Multi area
OSPF- Multi area Ahmed Ali
 
Vxlan control plane and routing
Vxlan control plane and routingVxlan control plane and routing
Vxlan control plane and routingWilfredzeng
 
TechWiseTV Workshop: Cisco SD-WAN
TechWiseTV Workshop: Cisco SD-WANTechWiseTV Workshop: Cisco SD-WAN
TechWiseTV Workshop: Cisco SD-WANRobb Boyd
 
CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4Nil Menon
 
Enrutamiento IPv6 OSPFv3
Enrutamiento IPv6 OSPFv3Enrutamiento IPv6 OSPFv3
Enrutamiento IPv6 OSPFv3Jhoni Guerrero
 

What's hot (20)

Cisco switch commands cheat sheet
Cisco switch commands cheat sheetCisco switch commands cheat sheet
Cisco switch commands cheat sheet
 
Configuring Cisco Routing Protocols
Configuring Cisco Routing ProtocolsConfiguring Cisco Routing Protocols
Configuring Cisco Routing Protocols
 
VLANs_Module_3.pptx
VLANs_Module_3.pptxVLANs_Module_3.pptx
VLANs_Module_3.pptx
 
EtherChannel PAgP and LACP modes
EtherChannel PAgP and LACP modesEtherChannel PAgP and LACP modes
EtherChannel PAgP and LACP modes
 
Palo Alto VM-100 Configuration Lab
Palo Alto VM-100 Configuration LabPalo Alto VM-100 Configuration Lab
Palo Alto VM-100 Configuration Lab
 
How to configure dhcp on a cisco asa 5505
How to configure dhcp on a cisco asa 5505How to configure dhcp on a cisco asa 5505
How to configure dhcp on a cisco asa 5505
 
VLAN, VTP, DTP, Ether channel Cheat Sheet With examples.pptx
VLAN, VTP, DTP, Ether channel  Cheat Sheet With examples.pptxVLAN, VTP, DTP, Ether channel  Cheat Sheet With examples.pptx
VLAN, VTP, DTP, Ether channel Cheat Sheet With examples.pptx
 
Vlan lab
Vlan labVlan lab
Vlan lab
 
ccna cheat_sheet
ccna cheat_sheetccna cheat_sheet
ccna cheat_sheet
 
Static Routing
Static RoutingStatic Routing
Static Routing
 
Ospf
OspfOspf
Ospf
 
CCNA Lab Guide
CCNA Lab GuideCCNA Lab Guide
CCNA Lab Guide
 
OSPF- Multi area
OSPF- Multi area OSPF- Multi area
OSPF- Multi area
 
Vxlan control plane and routing
Vxlan control plane and routingVxlan control plane and routing
Vxlan control plane and routing
 
TechWiseTV Workshop: Cisco SD-WAN
TechWiseTV Workshop: Cisco SD-WANTechWiseTV Workshop: Cisco SD-WAN
TechWiseTV Workshop: Cisco SD-WAN
 
Ether channel fundamentals
Ether channel fundamentalsEther channel fundamentals
Ether channel fundamentals
 
VLAN
VLANVLAN
VLAN
 
Configuración del dial peer
Configuración del dial peer Configuración del dial peer
Configuración del dial peer
 
CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4
 
Enrutamiento IPv6 OSPFv3
Enrutamiento IPv6 OSPFv3Enrutamiento IPv6 OSPFv3
Enrutamiento IPv6 OSPFv3
 

Viewers also liked

Viewers also liked (20)

Presentacion pokertek
Presentacion pokertekPresentacion pokertek
Presentacion pokertek
 
Frame Relay
Frame RelayFrame Relay
Frame Relay
 
Tipo de-modulacion codificacion y decodificacion
Tipo de-modulacion codificacion y decodificacionTipo de-modulacion codificacion y decodificacion
Tipo de-modulacion codificacion y decodificacion
 
Señales
SeñalesSeñales
Señales
 
Ivr sp
Ivr spIvr sp
Ivr sp
 
Rip
RipRip
Rip
 
Pstn
PstnPstn
Pstn
 
Presentación1
Presentación1Presentación1
Presentación1
 
Powtoon
PowtoonPowtoon
Powtoon
 
Wndw3 es-ebook
Wndw3 es-ebookWndw3 es-ebook
Wndw3 es-ebook
 
Direccionamiento ip
Direccionamiento ipDireccionamiento ip
Direccionamiento ip
 
Syllabus de cableado estructurado
Syllabus de cableado estructuradoSyllabus de cableado estructurado
Syllabus de cableado estructurado
 
Abel h.323 vs sip
Abel h.323 vs sipAbel h.323 vs sip
Abel h.323 vs sip
 
Protocolos y codecs vo ip
Protocolos y codecs vo ipProtocolos y codecs vo ip
Protocolos y codecs vo ip
 
Asterisknow Tutorial
Asterisknow TutorialAsterisknow Tutorial
Asterisknow Tutorial
 
Vo ip para el desarrollo
Vo ip para el desarrolloVo ip para el desarrollo
Vo ip para el desarrollo
 
Conversion digital a digital
Conversion digital a digitalConversion digital a digital
Conversion digital a digital
 
Telecomunicaciones
TelecomunicacionesTelecomunicaciones
Telecomunicaciones
 
Mejores practicas de implementacion de ivr
Mejores practicas de implementacion de ivrMejores practicas de implementacion de ivr
Mejores practicas de implementacion de ivr
 
Teoria y-calculo-de-antenas
Teoria y-calculo-de-antenasTeoria y-calculo-de-antenas
Teoria y-calculo-de-antenas
 

Similar to Vo ip avanzado pt

Eincop Netwax Lab: Vlan and Trunking ii
Eincop Netwax Lab: Vlan and Trunking iiEincop Netwax Lab: Vlan and Trunking ii
Eincop Netwax Lab: Vlan and Trunking iiNetwax Lab
 
Ccna 4 final lab switchi
Ccna 4 final lab switchiCcna 4 final lab switchi
Ccna 4 final lab switchiLeandro Uglar
 
CCNA Voice workbook
CCNA Voice workbookCCNA Voice workbook
CCNA Voice workbookAce Sabya
 
Ccna lab manual 640 802
Ccna lab manual 640 802Ccna lab manual 640 802
Ccna lab manual 640 802manikkan
 
Ccn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_studentCcn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_studentmart_ixu
 
Packet Tracer Simulation Lab Layer 2 Switching
Packet Tracer Simulation Lab Layer 2 SwitchingPacket Tracer Simulation Lab Layer 2 Switching
Packet Tracer Simulation Lab Layer 2 SwitchingJohnson Liu
 
Cisco 2960 basic configuration – vlan configuration
Cisco 2960 basic configuration – vlan configurationCisco 2960 basic configuration – vlan configuration
Cisco 2960 basic configuration – vlan configuration3Anetwork com
 
How to obtain ip address from a different network dhcp
How to obtain ip address from a different network dhcpHow to obtain ip address from a different network dhcp
How to obtain ip address from a different network dhcptcpipguru
 
Lab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingLab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingMuhd Mu'izuddin
 
Modul Tournamentof Cisco.doc
Modul Tournamentof Cisco.docModul Tournamentof Cisco.doc
Modul Tournamentof Cisco.doc36Zaini
 
Resumen vlan configuracion basica
Resumen vlan configuracion basicaResumen vlan configuracion basica
Resumen vlan configuracion basicaRodrigo Guerra
 
correction pratique eff 2021.docx
correction pratique eff 2021.docxcorrection pratique eff 2021.docx
correction pratique eff 2021.docxsalah734578
 

Similar to Vo ip avanzado pt (20)

Eincop Netwax Lab: Vlan and Trunking ii
Eincop Netwax Lab: Vlan and Trunking iiEincop Netwax Lab: Vlan and Trunking ii
Eincop Netwax Lab: Vlan and Trunking ii
 
Cmd
CmdCmd
Cmd
 
Cmd
CmdCmd
Cmd
 
Ccna 4 final lab switchi
Ccna 4 final lab switchiCcna 4 final lab switchi
Ccna 4 final lab switchi
 
CCNA Voice workbook
CCNA Voice workbookCCNA Voice workbook
CCNA Voice workbook
 
Ccna lab manual 640 802
Ccna lab manual 640 802Ccna lab manual 640 802
Ccna lab manual 640 802
 
PROYECTO VLANS
PROYECTO VLANSPROYECTO VLANS
PROYECTO VLANS
 
Ccn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_studentCcn pv6 switch_lab1-2_clearing_attached_switches_student
Ccn pv6 switch_lab1-2_clearing_attached_switches_student
 
Packet Tracer Simulation Lab Layer 2 Switching
Packet Tracer Simulation Lab Layer 2 SwitchingPacket Tracer Simulation Lab Layer 2 Switching
Packet Tracer Simulation Lab Layer 2 Switching
 
Cisco 2960 basic configuration – vlan configuration
Cisco 2960 basic configuration – vlan configurationCisco 2960 basic configuration – vlan configuration
Cisco 2960 basic configuration – vlan configuration
 
How to obtain ip address from a different network dhcp
How to obtain ip address from a different network dhcpHow to obtain ip address from a different network dhcp
How to obtain ip address from a different network dhcp
 
Examen switcheo
Examen switcheoExamen switcheo
Examen switcheo
 
Ejercicio 4 vtp
Ejercicio 4 vtpEjercicio 4 vtp
Ejercicio 4 vtp
 
Lab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routingLab 6.4.1 InterVLAN routing
Lab 6.4.1 InterVLAN routing
 
Modul Tournamentof Cisco.doc
Modul Tournamentof Cisco.docModul Tournamentof Cisco.doc
Modul Tournamentof Cisco.doc
 
Resumen vlan configuracion basica
Resumen vlan configuracion basicaResumen vlan configuracion basica
Resumen vlan configuracion basica
 
Aruba mobility access switch useful commands v2
Aruba mobility access switch useful commands v2Aruba mobility access switch useful commands v2
Aruba mobility access switch useful commands v2
 
Day 14.2 configuringvla ns
Day 14.2 configuringvla nsDay 14.2 configuringvla ns
Day 14.2 configuringvla ns
 
correction pratique eff 2021.docx
correction pratique eff 2021.docxcorrection pratique eff 2021.docx
correction pratique eff 2021.docx
 
Swith
SwithSwith
Swith
 

More from Alberto López

Partes de la computadora
Partes de la computadoraPartes de la computadora
Partes de la computadoraAlberto López
 
Herramientas e instrumentos del electricista
Herramientas e instrumentos del electricistaHerramientas e instrumentos del electricista
Herramientas e instrumentos del electricistaAlberto López
 
Categorias ponchado cable utp
Categorias ponchado cable utpCategorias ponchado cable utp
Categorias ponchado cable utpAlberto López
 
Herramientas usadas en el cableado estructurado
Herramientas usadas en el cableado estructuradoHerramientas usadas en el cableado estructurado
Herramientas usadas en el cableado estructuradoAlberto López
 
4 pasos para implementar un ivr
4 pasos para implementar un ivr4 pasos para implementar un ivr
4 pasos para implementar un ivrAlberto López
 
Manual freepbx-espanol
Manual freepbx-espanolManual freepbx-espanol
Manual freepbx-espanolAlberto López
 
Redes inalambricas 802.11
Redes inalambricas 802.11Redes inalambricas 802.11
Redes inalambricas 802.11Alberto López
 

More from Alberto López (12)

Qué es moodle
Qué es moodleQué es moodle
Qué es moodle
 
Qué es la web 2.0
Qué es la web 2.0Qué es la web 2.0
Qué es la web 2.0
 
Partes de la computadora
Partes de la computadoraPartes de la computadora
Partes de la computadora
 
Herramientas e instrumentos del electricista
Herramientas e instrumentos del electricistaHerramientas e instrumentos del electricista
Herramientas e instrumentos del electricista
 
Categorias ponchado cable utp
Categorias ponchado cable utpCategorias ponchado cable utp
Categorias ponchado cable utp
 
Herramientas usadas en el cableado estructurado
Herramientas usadas en el cableado estructuradoHerramientas usadas en el cableado estructurado
Herramientas usadas en el cableado estructurado
 
Ley de watt
Ley de wattLey de watt
Ley de watt
 
Leyes de Kirchhoff
Leyes de KirchhoffLeyes de Kirchhoff
Leyes de Kirchhoff
 
4 pasos para implementar un ivr
4 pasos para implementar un ivr4 pasos para implementar un ivr
4 pasos para implementar un ivr
 
PSTN RTB
PSTN RTBPSTN RTB
PSTN RTB
 
Manual freepbx-espanol
Manual freepbx-espanolManual freepbx-espanol
Manual freepbx-espanol
 
Redes inalambricas 802.11
Redes inalambricas 802.11Redes inalambricas 802.11
Redes inalambricas 802.11
 

Recently uploaded

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 

Recently uploaded (20)

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 

Vo ip avanzado pt

  • 1. Objetivos: - Vamos a configurar la topología de la imágen anterior en cisco packet tracer 5.3.3, es importante que sigamos todo al pie de la letra. Router: 2811; Switch:2960. - Configuraremos 3 VLAN'S (GESTION(1), COMERCIAL(1) Y VOZ(1)) por cada switche en CADA sede; es decir, por cada sede habrá 6 VLAN'S. - SE REALIZARAN LLAMADAS A NIVEL WAN. (todo dará ping, excepto los switches porque no configuraremos vlan nativa la cual es para administración) CONFIGURACION EN LOS ROUTERS. EN EL ROUTER DE LA SEDE 1. enable configure terminal PRENDEMOS LA INTERFAZ int fa0/0 no shut
  • 2. exit CREAMOS LAS SUBINTERFACES PARA CADA VLAN. int fa0/0.30 encapsulation dot1Q 30 ip add 192.168.10.1 255.255.255.0 exit int fa0/0.40 encapsulation dot1Q 40 ip add 192.168.20.1 255.255.255.0 exit int fa0/0.50 encapsulation dot1Q 50 ip add 192.168.30.1 255.255.255.0 exit HACEMOS LO MISMO CON LA OTRA INTERFAZ. int fa0/1 no shut exit LA ENCAPSULACION. int fa0/1.30 encapsulation dot1Q 30 ip add 192.168.40.1 255.255.255.0 exit int fa0/1.40 encapsulation dot1Q 40 ip add 192.168.50.1 255.255.255.0 exit int fa0/1.50 encapsulation dot1Q 50 ip add 192.168.60.1 255.255.255.0 exit CREAMOS EL DHCP EN EL ROUTER SEDE 1. ip dhcp excluded-address 192.168.10.1 ip dhcp pool GESTION network 192.168.10.0 255.255.255.0 default-router 192.168.10.1 option 150 ip 192.168.10.1 exit ip dhcp excluded-address 192.168.20.1 ip dhcp pool COMERCIAL network 192.168.20.0 255.255.255.0 default-router 192.168.20.1 option 150 ip 192.168.20.1
  • 3. exit ip dhcp excluded-address 192.168.30.1 ip dhcp pool VOZ network 192.168.30.0 255.255.255.0 default-router 192.168.30.1 option 150 ip 192.168.30.1 exit ip dhcp excluded-address 192.168.40.1 ip dhcp pool GESTION2 network 192.168.40.0 255.255.255.0 default-router 192.168.40.1 option 150 ip 192.168.40.1 exit ip dhcp excluded-address 192.168.50.1 ip dhcp pool COMERCIAL2 network 192.168.50.0 255.255.255.0 default-router 192.168.50.1 option 150 ip 192.168.50.1 exit ip dhcp excluded-address 192.168.60.1 ip dhcp pool VOZ2 network 192.168.60.0 255.255.255.0 default-router 192.168.60.1 option 150 ip 192.168.60.1 exit REALIZAMOS LA CONFIGURACIÓN DE LOS TELEFONOS IP ROUTER SEDE 1. telephony-service max-dn 5 max-ephones 5 ip source-address 192.168.30.1 port 2000 (GATEWAY VLAN VOZ) ip source-address 192.168.60.1 port 2000 (GATEWAY VLAN VOZ1) auto assign 1 to 5 ephone-dn 1 number 54001 exit ephone-dn 2 number 54002 exit ephone-dn 3 number 54003 exit ephone-dn 4 number 54004
  • 4. exit exit wr (GUARDAMOS) exit CONFIGURACION EN EL SWITCHES SEDE-1. en config ter vlan 30 name GESTION exit vlan 40 name COMERCIAL exit vlan 50 name VOZ exit int fa0/1 switchport mode access switchport access vlan 30 exit int range f0/2-f0/3 switchport mode access switchport access vlan 40 exit int f0/4 switchport mode access switchport acces vlan 30 switchport voice vlan 50 spanning-tree portfast exit int f0/5 switchport mode access switchport acces vlan 40 switchport voice vlan 50 spanning-tree portfast exit int f0/24 switchport mode trunk switchport trunk allowed vlan 30-50 exit exit exit
  • 5. SEGUNDO SWITCH.. en config ter vlan 30 name GESTION2 exit vlan 40 name COMERCIAL2 exit vlan 50 name VOZ2 exit int fa0/1 switchport mode access switchport access vlan 30 exit int range f0/2-f0/3 switchport mode access switchport access vlan 40 exit int range f0/4-f0/5 switchport mode access switchport acces vlan 30 switchport voice vlan 50 spanning-tree portfast exit int f0/24 switchport mode trunk switchport trunk allowed vlan 30-50 exit exit exit REALIZAREMOS LA CONFIGURACION PARA EL ROUTER SEDE 2. enable configure terminal PRENDEMOS LA INTERFAZ int fa0/0 no shut exit CREAMOS LAS SUBINTERFACES PARA CADA VLAN, ESTO ES PARA QUE SE PUEDA HACER PING ENTRE ELLAS.
  • 6. int fa0/0.60 encapsulation dot1Q 60 ip add 192.170.10.1 255.255.255.0 exit int fa0/0.70 encapsulation dot1Q 70 ip add 192.170.20.1 255.255.255.0 exit int fa0/0.80 encapsulation dot1Q 80 ip add 192.170.30.1 255.255.255.0 exit HACEMOS LO MISMO CON LA OTRA INTERFAZ int fa0/1 no shut exit LAS SUBINTERFACES. int fa0/1.60 encapsulation dot1Q 60 ip add 192.170.40.1 255.255.255.0 exit int fa0/1.70 encapsulation dot1Q 70 ip add 192.170.50.1 255.255.255.0 exit int fa0/1.80 encapsulation dot1Q 80 ip add 192.170.60.1 255.255.255.0 exit CREAMOS EL DHCP.. ip dhcp excluded-address 192.170.10.1 ip dhcp pool GESTION network 192.170.10.0 255.255.255.0 default-router 192.170.10.1 option 150 ip 192.170.10.1 exit ip dhcp excluded-address 192.170.20.1 ip dhcp pool COMERCIAL network 192.170.20.0 255.255.255.0 default-router 192.170.20.1 option 150 ip 192.170.20.1 exit ip dhcp excluded-address 192.170.30.1 ip dhcp pool VOZ
  • 7. network 192.170.30.0 255.255.255.0 default-router 192.170.30.1 option 150 ip 192.170.30.1 exit ip dhcp excluded-address 192.170.40.1 ip dhcp pool GESTION2 network 192.170.40.0 255.255.255.0 default-router 192.170.40.1 option 150 ip 192.170.40.1 exit ip dhcp excluded-address 192.170.50.1 ip dhcp pool COMERCIAL2 network 192.170.50.0 255.255.255.0 default-router 192.170.50.1 option 150 ip 192.170.50.1 exit ip dhcp excluded-address 192.170.60.1 ip dhcp pool VOZ2 network 192.170.60.0 255.255.255.0 default-router 192.170.60.1 option 150 ip 192.170.60.1 exit CONFIGURACION PARA LOS TELEFONOS IP telephony-service max-dn 5 max-ephones 5 ip source-address 192.170.30.1 port 2000 (GATEWAY DE LA VLAN DE VOZ) ip source-address 192.170.60.1 port 2000 (GATEWAY DE LA VLAN DE VOZ1) auto assign 1 to 5 ephone-dn 1 number 54005 exit ephone-dn 2 number 54006 exit ephone-dn 3 number 54007 exit ephone-dn 4 number 54008 exit
  • 8. exit wr (GUARDAMOS) exit CONFIGURACION SWITCHES SEDE 2. en config ter vlan 60 name GESTION exit vlan 70 name VOZ exit vlan 80 name COMERCIAL exit int fa0/1 switchport mode access switchport access vlan 60 exit int f0/2 switchport mode access switchport voice vlan 70 spanning-tree portfast exit int f0/3 switchport mode access switchport acces vlan 80 switchport voice vlan 70 spanning-tree portfast exit int f0/24 switchport mode trunk switchport trunk allowed vlan 60-80 exit exit exit SEGUNDO SWITCH.. en config ter vlan 60 name GESTION2
  • 9. exit vlan 70 name VOZ2 exit vlan 80 name COMERCIAL2 exit int fa0/1 switchport mode access switchport access vlan 60 exit int f0/2 switchport mode access switchport voice vlan 70 spanning-tree portfast exit int f0/3 switchport mode access switchport acces vlan 80 switchport voice vlan 70 spanning-tree portfast exit int f0/24 switchport mode trunk switchport trunk allowed vlan 60-80 exit exit exit //////////////////ENRUTAMIENTO//////////////// ROUTER SEDE 1 Route eigrp 100 Network 192.168.10.0 0.0.0.255 Network 192.168.20.0 0.0.0.255 Network 192.168.30.0 0.0.0.255 Network 192.168.40.0 0.0.0.255 Network 192.168.50.0 0.0.0.255 Network 192.168.60.0 0.0.0.255 Network 200.150.0.0 0.0.0.3 ROUTER SEDE 2 Route eigrp 100 Network 192.170.10.0 0.0.0.255 Network 192.170.20.0 0.0.0.255 Network 192.170.30.0 0.0.0.255
  • 10. Network 192.170.40.0 0.0.0.255 Network 192.170.50.0 0.0.0.255 Network 192.170.60.0 0.0.0.255 Network 200.150.0.0 0.0.0.3 CONFIGURACION DE LOS TELEFONOS A NIVEL WAN configuracion CME ROUTER SEDE 1 (INTERFAZ DEL SERIAL 200.150.0.1) dial-peer voice 1 voip destination-pattern 5400. (EL PUNTO AL FINAL ES IMPORTANTE) session target ipv4:200.150.0.2 (AQUI VA LA IP DE LA INTERFAZ WAN DEL ROUTER DE LAS SEDE 2) exit ROUTER SEDE 2 (INTERFAZ DEL SERIAL 200.150.0.2) dial-peer voice 1 voip destination-pattern 5400. (EL PUNTO AL FINAL ES IMPORTANTE) session target ipv4:200.150.0.1 (AQUI VA LA IP DE LA INTERFAZ WAN DEL ROUTER DE LAS SEDE 1) exit PRUEBA!!!