SlideShare a Scribd company logo
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

PDF
CCNA - Routing & Switching Commands
Eng. Emad Al-Atoum
 
PDF
Ccna Commands In 10 Minutes
CCNAResources
 
DOCX
Configuración del dial peer
miguelangelperezhenao
 
PPTX
Juniper SRX Quickstart 12.1R3 by Thomas Schmidt
Nam Nguyen
 
DOCX
How to configure vlan, stp, dtp step by step guide
IT Tech
 
PDF
CCNAv5 - S2: Chapter3 Vlans
Vuz Dở Hơi
 
PPT
Les vlans
Lhoussain Ait Benmouh
 
CCNA - Routing & Switching Commands
Eng. Emad Al-Atoum
 
Ccna Commands In 10 Minutes
CCNAResources
 
Configuración del dial peer
miguelangelperezhenao
 
Juniper SRX Quickstart 12.1R3 by Thomas Schmidt
Nam Nguyen
 
How to configure vlan, stp, dtp step by step guide
IT Tech
 
CCNAv5 - S2: Chapter3 Vlans
Vuz Dở Hơi
 

What's hot (20)

PPTX
direcciones ip no validas
Giovani Hernandez
 
PDF
Maintenance informatique
Fabrice Enock
 
PDF
CCNA Lab Guide
Salachudin Emir
 
PPSX
Router y su funcionamiento
Alejandro Murcia
 
PDF
Ccna command
Sudhir Maherwal
 
DOC
Cisco switch commands cheat sheet
3Anetwork com
 
DOC
Huawei switch configuration commands
Huanetwork
 
PDF
CCNAv5 - S2: Chapter4 Routing Concepts
Vuz Dở Hơi
 
DOCX
Ccna command
Siddhartha Rajbhatt
 
PDF
Eincop Netwax Lab: Redistribution
Netwax Lab
 
PPTX
GRE Tunnel Configuration
NetProtocol Xpert
 
PDF
cours le routage statique (ipv4 et ipv6)
EL AMRI El Hassan
 
PPT
CCNA PPT
Reetesh Gupta
 
PPT
Mpls Qos Jayk
Suraj Kumar
 
PDF
Eincop Netwax Lab: Lab 1 static route
Netwax Lab
 
PPTX
Enrutamiento Estático y Dinamicos (RIP v2 y OSPF)
narcisa Crespo
 
PDF
200 301-ccna
Jasser Kouki
 
PPT
Capitulo 2 enrutamiento estatico
malienlaf
 
PDF
CCNAv5 - S2: Chapter5 Inter Vlan Routing
Vuz Dở Hơi
 
PDF
IOS Cisco - Cheat sheets
Alejandro Marin
 
direcciones ip no validas
Giovani Hernandez
 
Maintenance informatique
Fabrice Enock
 
CCNA Lab Guide
Salachudin Emir
 
Router y su funcionamiento
Alejandro Murcia
 
Ccna command
Sudhir Maherwal
 
Cisco switch commands cheat sheet
3Anetwork com
 
Huawei switch configuration commands
Huanetwork
 
CCNAv5 - S2: Chapter4 Routing Concepts
Vuz Dở Hơi
 
Ccna command
Siddhartha Rajbhatt
 
Eincop Netwax Lab: Redistribution
Netwax Lab
 
GRE Tunnel Configuration
NetProtocol Xpert
 
cours le routage statique (ipv4 et ipv6)
EL AMRI El Hassan
 
CCNA PPT
Reetesh Gupta
 
Mpls Qos Jayk
Suraj Kumar
 
Eincop Netwax Lab: Lab 1 static route
Netwax Lab
 
Enrutamiento Estático y Dinamicos (RIP v2 y OSPF)
narcisa Crespo
 
200 301-ccna
Jasser Kouki
 
Capitulo 2 enrutamiento estatico
malienlaf
 
CCNAv5 - S2: Chapter5 Inter Vlan Routing
Vuz Dở Hơi
 
IOS Cisco - Cheat sheets
Alejandro Marin
 
Ad

Viewers also liked (20)

PPSX
Presentacion pokertek
Alberto López
 
PDF
Frame Relay
Alberto López
 
PPT
Tipo de-modulacion codificacion y decodificacion
Alberto López
 
PDF
Señales
Alberto López
 
PDF
Ivr sp
Alberto López
 
PPTX
Presentación1
Alberto López
 
PDF
Powtoon
Alberto López
 
PDF
Wndw3 es-ebook
Alberto López
 
DOCX
Direccionamiento ip
Alberto López
 
PDF
Syllabus de cableado estructurado
Alberto López
 
PDF
Abel h.323 vs sip
Alberto López
 
PDF
Protocolos y codecs vo ip
Alberto López
 
PDF
Asterisknow Tutorial
Alberto López
 
PPTX
Vo ip para el desarrollo
Alberto López
 
PPT
Conversion digital a digital
Alberto López
 
PPTX
Telecomunicaciones
Alberto López
 
PDF
Mejores practicas de implementacion de ivr
Alberto López
 
PDF
Teoria y-calculo-de-antenas
Alberto López
 
Presentacion pokertek
Alberto López
 
Frame Relay
Alberto López
 
Tipo de-modulacion codificacion y decodificacion
Alberto López
 
Señales
Alberto López
 
Presentación1
Alberto López
 
Wndw3 es-ebook
Alberto López
 
Direccionamiento ip
Alberto López
 
Syllabus de cableado estructurado
Alberto López
 
Abel h.323 vs sip
Alberto López
 
Protocolos y codecs vo ip
Alberto López
 
Asterisknow Tutorial
Alberto López
 
Vo ip para el desarrollo
Alberto López
 
Conversion digital a digital
Alberto López
 
Telecomunicaciones
Alberto López
 
Mejores practicas de implementacion de ivr
Alberto López
 
Teoria y-calculo-de-antenas
Alberto López
 
Ad

Similar to Vo ip avanzado pt (20)

PDF
Eincop Netwax Lab: Vlan and Trunking ii
Netwax Lab
 
TXT
Cmd
molare2000
 
TXT
Cmd
bayal
 
DOCX
Ccna 4 final lab switchi
Leandro Uglar
 
PDF
CCNA Voice workbook
Ace Sabya
 
DOC
Ccna lab manual 640 802
manikkan
 
DOC
PROYECTO VLANS
rubendavidsuarez
 
PDF
Ccn pv6 switch_lab1-2_clearing_attached_switches_student
mart_ixu
 
PDF
Packet Tracer Simulation Lab Layer 2 Switching
Johnson Liu
 
DOC
Cisco 2960 basic configuration – vlan configuration
3Anetwork com
 
PPTX
How to obtain ip address from a different network dhcp
tcpipguru
 
TXT
Examen switcheo
Whaleejaa Wha
 
DOC
Ejercicio 4 vtp
Sebastian Hevia
 
DOC
Lab 6.4.1 InterVLAN routing
Muhd Mu'izuddin
 
DOC
Modul Tournamentof Cisco.doc
36Zaini
 
DOC
Resumen vlan configuracion basica
Rodrigo Guerra
 
PDF
Aruba mobility access switch useful commands v2
Aruba, a Hewlett Packard Enterprise company
 
PPT
Day 14.2 configuringvla ns
CYBERINTELLIGENTS
 
DOCX
correction pratique eff 2021.docx
salah734578
 
Eincop Netwax Lab: Vlan and Trunking ii
Netwax Lab
 
Cmd
bayal
 
Ccna 4 final lab switchi
Leandro Uglar
 
CCNA Voice workbook
Ace Sabya
 
Ccna lab manual 640 802
manikkan
 
PROYECTO VLANS
rubendavidsuarez
 
Ccn pv6 switch_lab1-2_clearing_attached_switches_student
mart_ixu
 
Packet Tracer Simulation Lab Layer 2 Switching
Johnson Liu
 
Cisco 2960 basic configuration – vlan configuration
3Anetwork com
 
How to obtain ip address from a different network dhcp
tcpipguru
 
Examen switcheo
Whaleejaa Wha
 
Ejercicio 4 vtp
Sebastian Hevia
 
Lab 6.4.1 InterVLAN routing
Muhd Mu'izuddin
 
Modul Tournamentof Cisco.doc
36Zaini
 
Resumen vlan configuracion basica
Rodrigo Guerra
 
Aruba mobility access switch useful commands v2
Aruba, a Hewlett Packard Enterprise company
 
Day 14.2 configuringvla ns
CYBERINTELLIGENTS
 
correction pratique eff 2021.docx
salah734578
 

More from Alberto López (12)

PDF
Qué es moodle
Alberto López
 
PDF
Qué es la web 2.0
Alberto López
 
PDF
Partes de la computadora
Alberto López
 
PDF
Herramientas e instrumentos del electricista
Alberto López
 
PDF
Categorias ponchado cable utp
Alberto López
 
PDF
Herramientas usadas en el cableado estructurado
Alberto López
 
PDF
Ley de watt
Alberto López
 
PDF
Leyes de Kirchhoff
Alberto López
 
PDF
4 pasos para implementar un ivr
Alberto López
 
PPTX
PSTN RTB
Alberto López
 
PDF
Manual freepbx-espanol
Alberto López
 
PDF
Redes inalambricas 802.11
Alberto López
 
Qué es moodle
Alberto López
 
Qué es la web 2.0
Alberto López
 
Partes de la computadora
Alberto López
 
Herramientas e instrumentos del electricista
Alberto López
 
Categorias ponchado cable utp
Alberto López
 
Herramientas usadas en el cableado estructurado
Alberto López
 
Ley de watt
Alberto López
 
Leyes de Kirchhoff
Alberto López
 
4 pasos para implementar un ivr
Alberto López
 
PSTN RTB
Alberto López
 
Manual freepbx-espanol
Alberto López
 
Redes inalambricas 802.11
Alberto López
 

Recently uploaded (20)

PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PDF
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
PDF
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 

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!!!