SlideShare a Scribd company logo
1
CCIE
22222
Infrastructure and Services
• Voice VLAN and Data VLAN
• Native Trunk & VLAN
• XL vs L3 Switch Requirement
• CDP – Enable or Disable
• DHCP
• DHCP on CUCM
• DHCP on IOS
• Static DHCP Configuration – Host IP reservation
• NTP Server
• Configuring NTP on Router
• Configuring NTP on CUCM
• Source Address of NTP Device
333
CCIE Collaboration Topology
444
VLAN
• VLANs will be required in order to segregate Voice an
Data traffic. In CCIE Collaboration Labs VLAN must be
configured for different type of switches such as 3750 or
EtherSwith Module.
• Port must be trunk and VLAN must be allowed on trunk
port.
• Native VLAM must be configured to be the same as
DATA VLAN
555
VLAN Task
• Configure Voice VLANs for switch ports connecting to IP
Phones at HQ, SiteB and SiteC. Voice VLAN IDs for HQ,
SiteB and SiteC are 10Y, 30Y and 50Y respectively.
• There is a machine connected to each switch port.
Configure switch ports such that machine will be placed
in an appropriate data VLAN. Data VLAN IDs for HQ,
SiteB and SiteC are 20Y, 40Y and 60Y respectively. Refer
to port assignment and VLAN Detail tables for more
information.
666
Step by Step Instructions for
VLAN
• Step 1 – CDP
• Step 2 - Create VLAN and VTP
• Step 3 – Assign Data VLAN to all IP Phone ports
• Step 4 – Assign Voice VLAN to all IP phone ports
• Step 5 – Router port must be trunk
• Step 6 - All voice port must be trunk if the switch is EtherSwitch
• Step 7 - All Trunk port must have native vlan set to data vlan
• Step 8 – Define DHCP Server to assign IP address
777
CDP Check
1
2
CDP Enable on Per Interface
CDP Disable on Per Interface
3
4
1 – CDP Enable
Globally
2 – Enable CDP incase
disable and enable
version 2
3 – CDP can be enable
per interface level.
If Globally it is
disable, you can
enable on per
interface
4 – Example of CDP
disable on per
interface level
888
Create & Assign VLAN
• To Create VLAN on a SWITCH follow the instruction
below
It is important to name the vlan for
documentation purpose.
Assign VLAN to Port
Some EtherSwitch Module Cisco Catalyst 3750 Switch
999
Networks Services
• DNS configuration is required if name resolution is required
• Network Time Protocol server must be configured.
• DHCP used to automate network access
• CUCM DHCP or IOS DHCP
DHCP server needs to provide the following:
IP Address and network mask
Default Gateway
Option 150, TFTP server IP address
DNS Server (optional)
Use ip helper-address to forward DHCP request to DHCP Server
Can be locally implemented on IOS router just incase WAN failure occurs.
• CDP is required in order for IP Phone to communicate with AVVID
network
101010
Defining DHCP in CUCM
• Dynamic Host Configuration Protocol (DHCP) server
enables Cisco Unified IP Phones
• You can activate and deactivate DHCP monitor process
by using the Serviceability window of Cisco Unified
Communications Manager. Use the following procedure
to activate the service.
• In Cisco Unified Communications Manager
Administration, use the System > DHCP > DHCP Server
menu path to configure a DHCP server.
111111
CUCM DHCP
121212
DHCP Servers
Server where DHCP will be hosted
DNS Server
TFTP Server
131313
DHCP Subne
141414
Networks Services: DHCP
PSTN
IP WAN
HQ
SiteB
CallManager
DHCP Server
(135.7.100.20)
IP phone request for IP
Via DHCP Broadcast
Interface vlan 101
ip address 135.7.65.240
ip helper-address 135.Y.100.30
151515
Networks Services: IOS DHCP
UK Office
Exclude IP address
VLAN 10X VLAN 500
VLAN 10X
VLAN 500
Most IOS Router can act as a DHCP Server
ip dhcp excluded-address 135.XX.67.1 135.XX.67.14
ip dhcp excluded-address 135.XX.67.51 135.xx.67.254
ip dhcp pool VOICE
network 135.XX.67.0 255.255.255.0
default-router 135.XX.67.240
option 150 ip 135.xx.67.240
!
!
interface fastEthernet0/0.10X (where X is Rack)
Enacapsulation dot1q 10X
ip address 135.xx.67.240 255.255.255.0
!
interface fastEthernet0/0.500
Encapsulation dot1q 500 native vlan
ip address 135.XX.167.240 255.255.255.0
161616
Static DHCP Configuration
• You can use DHCP on Cisco Router to reserve particular
IP address for a host. Below is an example of Phone 1
getting the same IP address. Assume Phone 1 MAC
Address is 0200.1000.1234 and client-id 0102.0010.0012.34
Add 01 to the MAC address to get Client ID
ip dhcp pool PH1
host 142.10Y.66.12 255.255.255.0
client-identifier 0102.0010.0012.34
default-router 142.10Y.66.254
option 150 ip 135.Y.100.30
ip dhcp pool PH2
host 142.10Y.66.13 255.255.255.0
client-identifier 0102.0010.0012.35
default-router 142.10Y.66.254
option 150 ip 135.Y.100.30
NOTE: One Pool for Each Phone
171717
DHCP via Database
• A DHCP database contains the mappings between a client IP
address and hardware address, referred to as a binding
• This database contains list of mac address with
corresponded IP address
• static mapping text file must be created with proper file format
• The static bindings must not be deleted when a
DHCPRELEASE is received or must not be timed out by the
DHCP timer.
181818
Configuring the DHCP Server to
Read a Static Mapping Text File
• Configure a single pool
•
• You must disable the DHCP server using
the no service dhcp command before editing the file
• Type service dhcp to enable it and read the text file
• Once done – type show ip dhcp binding to verify
Ip dhcp database static.txt
ip dhcp pool Voice
origin file flash:static.txt
default-router 142.10Y.66.254
option 150 ip 142.1Y.64.11
191919
Static Mapping Text File
• *time* Dec 13 2013 08:22 AM
• *version* 2
• !IP address Type Hardware address Lease expiration
• 142.101.66.12 /24 1 0060.9f92.e3f1 Infinite
• 142.101.66.12 /24 1 0060.9f90.d333 Infinite
• *end*
• Create text file in Notepad – as per following format
• Upload the file to the flash
202020
NTP Configurations
To Configure Router to join NTP Server
HQ – Pacific Time Zone GMT -8
r7tor(config)#clock timezone EST -5
r7tor(config)# ntp server 135.11.11.11
SiteB – Eastern Time Zone GMT -5
r7sfo(config)#clock timezone PST -5
r7sfo(config)#ntp server 135.11.11.11
SiteC – GMT +8
r7uk(config)#clock timezone GMT 0
r7sfo(config)#ntp server 135.11.11.11
To Configure Router to act as NTP Server
ntp master  define Router as NTP server
ntp source loopback 0  source NTP Traffic from Loopback interface
212121
UCM NTP Server
Login to OS Administration
Go to Settings  NTP Server
Publisher obtain its time
From NTP Server but Subscriber
Will obtain its time from
Publisher
222222
Practice Lab Questions
VLAN
Configure Voice VLANs for switch ports connecting to IP Phones at HQ, SiteB and SiteC. Voice VLAN IDs
for HQ, SiteB and SiteC are 10Y, 30Y and 50Y respectively. There is a machine connected to each switch port.
Configure switch ports such that machine will be placed in an appropriate data VLAN. Data VLAN IDs for
HQ, SiteB and SiteC are 20Y, 40Y and 60Y respectively.
DHCP
Configure CUCM Publisher as DHCP server to provide IP Addresses for IP Phones at HQ and SiteB from their
respective Voice subnets. For HQ, use IP address range from 142.10Y.64.20/24 to 142.10Y.64.30/24 For SiteB,
use IP address range from 142.10Y.65.20/24 to 142.10Y.65.30/24 Lastly, configure local Cisco 2801 router as
DHCP server to provide IP addresses for SiteC IP Phones from local Voice subnet. Make sure that the BR
Phone 1 always gets 142.10Y.66.11 and Br Phone 2 should always get 142.10Y.66.12
NTP
Synchronize HQ router with external NTP source at 135.11.11.11. This External NTP server is in UTC time
zone. Configure HQ router in PST time zone which is 8 hours behind UTC. Synchronize CUCM Publisher with
loopback interface of HQ router. SiteB is in CST time zone which is 2 hours ahead of PST. Lastly, SiteC is in
Hong Kong time zone which is 8 hours ahead of Coordinated Universal Timezone. Synchronize SiteC NTP
with external source. Configure CUCM such that IP phones display appropriate time according to the time zone
to which they belong.
232323
End of Module
• VLAN must be created and assigned to IP Phone
• Enable VLAN on trunk port incase if it is not allowed
• Router port if already trunk verify it has all the necessary VLAN
• Ensure VLAN Names are configured
• DHCP must be configured properly.
• Verify all scope settings and file name if needed
• NTP must be configured to ensure server and phone sync their time

More Related Content

What's hot

Easyroute how to_sip_calls_en
Easyroute how to_sip_calls_enEasyroute how to_sip_calls_en
Easyroute how to_sip_calls_en
Javier Boquin Rivera
 
Hybrid IP PBX February 2014
Hybrid IP PBX February 2014Hybrid IP PBX February 2014
Hybrid IP PBX February 2014Matrixcomsec Ttg
 
Introduction to SIP(Session Initiation Protocol)
Introduction to SIP(Session Initiation Protocol)Introduction to SIP(Session Initiation Protocol)
Introduction to SIP(Session Initiation Protocol)
William Lee
 
Panasonic kx tde100_config-guide
Panasonic kx tde100_config-guidePanasonic kx tde100_config-guide
Panasonic kx tde100_config-guide
Nam Nguyen
 
SIP security in IP telephony
SIP security in IP telephonySIP security in IP telephony
SIP security in IP telephony
PaloSanto Solutions
 
Webinar Slides: Multicast Paging With The snom PA1
Webinar Slides: Multicast Paging With The snom PA1Webinar Slides: Multicast Paging With The snom PA1
Webinar Slides: Multicast Paging With The snom PA1
snom technology
 
Matrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI Gateway
Matrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI GatewayMatrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI Gateway
Matrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI Gateway
Matrix Comsec
 
10 step-to-configure-cisco-call-manager-express
10 step-to-configure-cisco-call-manager-express10 step-to-configure-cisco-call-manager-express
10 step-to-configure-cisco-call-manager-express
Nguyen Thanh
 
Indroduction to SIP
Indroduction to SIPIndroduction to SIP
Indroduction to SIP
Chien Cheng Wu
 
Matrix Telecom Solutions: SETU ATAs
Matrix Telecom Solutions: SETU ATAs Matrix Telecom Solutions: SETU ATAs
Matrix Telecom Solutions: SETU ATAs
Matrix Comsec
 
Sip trunk webinar
Sip trunk webinarSip trunk webinar
Sip trunk webinar
nexogy
 
Uptodate IP PBX System
Uptodate IP PBX System Uptodate IP PBX System
Uptodate IP PBX System
Guisun Han
 
SIP (Session Initiation Protocol)
SIP (Session Initiation Protocol)SIP (Session Initiation Protocol)
SIP (Session Initiation Protocol)
KHNOG
 
Session initiation protocol SIP
Session initiation protocol SIPSession initiation protocol SIP
Session initiation protocol SIP
Laraib Khan
 
Distributed IP-PBX
Distributed IP-PBX Distributed IP-PBX
Introduction to SIP
Introduction to SIP  Introduction to SIP
Introduction to SIP
neerav_adhikari
 
Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...
Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...
Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...
ALTANAI BISHT
 

What's hot (20)

Easyroute how to_sip_calls_en
Easyroute how to_sip_calls_enEasyroute how to_sip_calls_en
Easyroute how to_sip_calls_en
 
IP and VoIP Fundamentals
IP and VoIP FundamentalsIP and VoIP Fundamentals
IP and VoIP Fundamentals
 
Hybrid IP PBX February 2014
Hybrid IP PBX February 2014Hybrid IP PBX February 2014
Hybrid IP PBX February 2014
 
Introduction to SIP(Session Initiation Protocol)
Introduction to SIP(Session Initiation Protocol)Introduction to SIP(Session Initiation Protocol)
Introduction to SIP(Session Initiation Protocol)
 
Panasonic kx tde100_config-guide
Panasonic kx tde100_config-guidePanasonic kx tde100_config-guide
Panasonic kx tde100_config-guide
 
SIP security in IP telephony
SIP security in IP telephonySIP security in IP telephony
SIP security in IP telephony
 
Webinar Slides: Multicast Paging With The snom PA1
Webinar Slides: Multicast Paging With The snom PA1Webinar Slides: Multicast Paging With The snom PA1
Webinar Slides: Multicast Paging With The snom PA1
 
Matrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI Gateway
Matrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI GatewayMatrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI Gateway
Matrix Telecom Solutions: SETU VTEP - Fixed VoIP to T1/E1 PRI Gateway
 
10 step-to-configure-cisco-call-manager-express
10 step-to-configure-cisco-call-manager-express10 step-to-configure-cisco-call-manager-express
10 step-to-configure-cisco-call-manager-express
 
Enterprise E911
Enterprise E911 Enterprise E911
Enterprise E911
 
Indroduction to SIP
Indroduction to SIPIndroduction to SIP
Indroduction to SIP
 
Matrix Telecom Solutions: SETU ATAs
Matrix Telecom Solutions: SETU ATAs Matrix Telecom Solutions: SETU ATAs
Matrix Telecom Solutions: SETU ATAs
 
Sip trunk webinar
Sip trunk webinarSip trunk webinar
Sip trunk webinar
 
Uptodate IP PBX System
Uptodate IP PBX System Uptodate IP PBX System
Uptodate IP PBX System
 
SIP (Session Initiation Protocol)
SIP (Session Initiation Protocol)SIP (Session Initiation Protocol)
SIP (Session Initiation Protocol)
 
Session initiation protocol SIP
Session initiation protocol SIPSession initiation protocol SIP
Session initiation protocol SIP
 
Distributed IP-PBX
Distributed IP-PBX Distributed IP-PBX
Distributed IP-PBX
 
Introduction to SIP
Introduction to SIP  Introduction to SIP
Introduction to SIP
 
SIP for geeks
SIP for geeksSIP for geeks
SIP for geeks
 
Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...
Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...
Sip Detailed , Call flows , Architecture descriptions , SIP services , sip se...
 

Similar to CCIE Collaboration Lecture - Chapter 1.1 campus design - vlan dhcp and ntp

EMEA Airheads- Manage Devices at Branch Office (BOC)
EMEA Airheads- Manage Devices at Branch Office (BOC)EMEA Airheads- Manage Devices at Branch Office (BOC)
EMEA Airheads- Manage Devices at Branch Office (BOC)
Aruba, a Hewlett Packard Enterprise company
 
CCNA 1 Final v5.0 2014
CCNA 1 Final  v5.0 2014CCNA 1 Final  v5.0 2014
CCNA 1 Final v5.0 2014
Đồng Quốc Vương
 
Configuring a Cisco Router as a PPPoE Client for DSL Connectivity
 Configuring a Cisco Router as a PPPoE Client for DSL Connectivity Configuring a Cisco Router as a PPPoE Client for DSL Connectivity
Configuring a Cisco Router as a PPPoE Client for DSL Connectivity
3Anetwork com
 
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdfcisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
AsgarAlam6
 
N at
N atN at
managing your network environment
managing your network environmentmanaging your network environment
managing your network environment
scooby_doo
 
Byte blower basic setting full_v2
Byte blower basic setting full_v2Byte blower basic setting full_v2
Byte blower basic setting full_v2
Chen-Chih Lee
 
Module (8) DHCP Server.pptx
Module (8) DHCP Server.pptxModule (8) DHCP Server.pptx
Module (8) DHCP Server.pptx
GeorgeThoreJr
 
Day 17.1 nat pat
Day 17.1 nat pat Day 17.1 nat pat
Day 17.1 nat pat
CYBERINTELLIGENTS
 
162 15-768
162 15-768162 15-768
162 15-768
faisal123000
 
Apnic IPv6 Deployment
Apnic IPv6 DeploymentApnic IPv6 Deployment
Apnic IPv6 Deployment
APNIC
 
CCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docx
CCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docxCCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docx
CCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docx
keturahhazelhurst
 
IPv6 deployment at APNIC
IPv6 deployment at APNICIPv6 deployment at APNIC
IPv6 deployment at APNIC
APNIC
 
Group-7-DHCPv4.pptx
Group-7-DHCPv4.pptxGroup-7-DHCPv4.pptx
Group-7-DHCPv4.pptx
IvanTabanag1
 
Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...
Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...
Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...
gogo6
 
05 module managing your network enviornment
05  module managing your network enviornment05  module managing your network enviornment
05 module managing your network enviornmentAsif
 
ACI DHCP Config Guide
ACI DHCP Config GuideACI DHCP Config Guide
ACI DHCP Config Guide
Woo Hyung Choi
 
CCNA Icnd110 s05l04
CCNA Icnd110 s05l04CCNA Icnd110 s05l04
CCNA Icnd110 s05l04
computerlenguyen
 

Similar to CCIE Collaboration Lecture - Chapter 1.1 campus design - vlan dhcp and ntp (20)

EMEA Airheads- Manage Devices at Branch Office (BOC)
EMEA Airheads- Manage Devices at Branch Office (BOC)EMEA Airheads- Manage Devices at Branch Office (BOC)
EMEA Airheads- Manage Devices at Branch Office (BOC)
 
CCNA 1 Final v5.0 2014
CCNA 1 Final  v5.0 2014CCNA 1 Final  v5.0 2014
CCNA 1 Final v5.0 2014
 
Configuring a Cisco Router as a PPPoE Client for DSL Connectivity
 Configuring a Cisco Router as a PPPoE Client for DSL Connectivity Configuring a Cisco Router as a PPPoE Client for DSL Connectivity
Configuring a Cisco Router as a PPPoE Client for DSL Connectivity
 
BACIK CISCO SKILLS
BACIK CISCO SKILLSBACIK CISCO SKILLS
BACIK CISCO SKILLS
 
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdfcisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
cisco-ewan-nat-acl-pt-practice-sba-with-solution-110516171316-phpapp02.pdf
 
N at
N atN at
N at
 
managing your network environment
managing your network environmentmanaging your network environment
managing your network environment
 
Byte blower basic setting full_v2
Byte blower basic setting full_v2Byte blower basic setting full_v2
Byte blower basic setting full_v2
 
Module (8) DHCP Server.pptx
Module (8) DHCP Server.pptxModule (8) DHCP Server.pptx
Module (8) DHCP Server.pptx
 
Day 17.1 nat pat
Day 17.1 nat pat Day 17.1 nat pat
Day 17.1 nat pat
 
162 15-768
162 15-768162 15-768
162 15-768
 
Apnic IPv6 Deployment
Apnic IPv6 DeploymentApnic IPv6 Deployment
Apnic IPv6 Deployment
 
CCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docx
CCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docxCCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docx
CCNA Connecting NetworksSA ExamLab 13 CCNA Connecting Netwo.docx
 
IPv6 deployment at APNIC
IPv6 deployment at APNICIPv6 deployment at APNIC
IPv6 deployment at APNIC
 
Group-7-DHCPv4.pptx
Group-7-DHCPv4.pptxGroup-7-DHCPv4.pptx
Group-7-DHCPv4.pptx
 
Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...
Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...
Deploying IPv6 in Cisco's Labs by Robert Beckett at gogoNET LIVE! 3 IPv6 Conf...
 
Nat 03
Nat 03Nat 03
Nat 03
 
05 module managing your network enviornment
05  module managing your network enviornment05  module managing your network enviornment
05 module managing your network enviornment
 
ACI DHCP Config Guide
ACI DHCP Config GuideACI DHCP Config Guide
ACI DHCP Config Guide
 
CCNA Icnd110 s05l04
CCNA Icnd110 s05l04CCNA Icnd110 s05l04
CCNA Icnd110 s05l04
 

Recently uploaded

Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
Mohammed Sikander
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
goswamiyash170123
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Marketing internship report file for MBA
Marketing internship report file for MBAMarketing internship report file for MBA
Marketing internship report file for MBA
gb193092
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
Krisztián Száraz
 

Recently uploaded (20)

Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Marketing internship report file for MBA
Marketing internship report file for MBAMarketing internship report file for MBA
Marketing internship report file for MBA
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
 

CCIE Collaboration Lecture - Chapter 1.1 campus design - vlan dhcp and ntp

  • 2. 22222 Infrastructure and Services • Voice VLAN and Data VLAN • Native Trunk & VLAN • XL vs L3 Switch Requirement • CDP – Enable or Disable • DHCP • DHCP on CUCM • DHCP on IOS • Static DHCP Configuration – Host IP reservation • NTP Server • Configuring NTP on Router • Configuring NTP on CUCM • Source Address of NTP Device
  • 4. 444 VLAN • VLANs will be required in order to segregate Voice an Data traffic. In CCIE Collaboration Labs VLAN must be configured for different type of switches such as 3750 or EtherSwith Module. • Port must be trunk and VLAN must be allowed on trunk port. • Native VLAM must be configured to be the same as DATA VLAN
  • 5. 555 VLAN Task • Configure Voice VLANs for switch ports connecting to IP Phones at HQ, SiteB and SiteC. Voice VLAN IDs for HQ, SiteB and SiteC are 10Y, 30Y and 50Y respectively. • There is a machine connected to each switch port. Configure switch ports such that machine will be placed in an appropriate data VLAN. Data VLAN IDs for HQ, SiteB and SiteC are 20Y, 40Y and 60Y respectively. Refer to port assignment and VLAN Detail tables for more information.
  • 6. 666 Step by Step Instructions for VLAN • Step 1 – CDP • Step 2 - Create VLAN and VTP • Step 3 – Assign Data VLAN to all IP Phone ports • Step 4 – Assign Voice VLAN to all IP phone ports • Step 5 – Router port must be trunk • Step 6 - All voice port must be trunk if the switch is EtherSwitch • Step 7 - All Trunk port must have native vlan set to data vlan • Step 8 – Define DHCP Server to assign IP address
  • 7. 777 CDP Check 1 2 CDP Enable on Per Interface CDP Disable on Per Interface 3 4 1 – CDP Enable Globally 2 – Enable CDP incase disable and enable version 2 3 – CDP can be enable per interface level. If Globally it is disable, you can enable on per interface 4 – Example of CDP disable on per interface level
  • 8. 888 Create & Assign VLAN • To Create VLAN on a SWITCH follow the instruction below It is important to name the vlan for documentation purpose. Assign VLAN to Port Some EtherSwitch Module Cisco Catalyst 3750 Switch
  • 9. 999 Networks Services • DNS configuration is required if name resolution is required • Network Time Protocol server must be configured. • DHCP used to automate network access • CUCM DHCP or IOS DHCP DHCP server needs to provide the following: IP Address and network mask Default Gateway Option 150, TFTP server IP address DNS Server (optional) Use ip helper-address to forward DHCP request to DHCP Server Can be locally implemented on IOS router just incase WAN failure occurs. • CDP is required in order for IP Phone to communicate with AVVID network
  • 10. 101010 Defining DHCP in CUCM • Dynamic Host Configuration Protocol (DHCP) server enables Cisco Unified IP Phones • You can activate and deactivate DHCP monitor process by using the Serviceability window of Cisco Unified Communications Manager. Use the following procedure to activate the service. • In Cisco Unified Communications Manager Administration, use the System > DHCP > DHCP Server menu path to configure a DHCP server.
  • 12. 121212 DHCP Servers Server where DHCP will be hosted DNS Server TFTP Server
  • 14. 141414 Networks Services: DHCP PSTN IP WAN HQ SiteB CallManager DHCP Server (135.7.100.20) IP phone request for IP Via DHCP Broadcast Interface vlan 101 ip address 135.7.65.240 ip helper-address 135.Y.100.30
  • 15. 151515 Networks Services: IOS DHCP UK Office Exclude IP address VLAN 10X VLAN 500 VLAN 10X VLAN 500 Most IOS Router can act as a DHCP Server ip dhcp excluded-address 135.XX.67.1 135.XX.67.14 ip dhcp excluded-address 135.XX.67.51 135.xx.67.254 ip dhcp pool VOICE network 135.XX.67.0 255.255.255.0 default-router 135.XX.67.240 option 150 ip 135.xx.67.240 ! ! interface fastEthernet0/0.10X (where X is Rack) Enacapsulation dot1q 10X ip address 135.xx.67.240 255.255.255.0 ! interface fastEthernet0/0.500 Encapsulation dot1q 500 native vlan ip address 135.XX.167.240 255.255.255.0
  • 16. 161616 Static DHCP Configuration • You can use DHCP on Cisco Router to reserve particular IP address for a host. Below is an example of Phone 1 getting the same IP address. Assume Phone 1 MAC Address is 0200.1000.1234 and client-id 0102.0010.0012.34 Add 01 to the MAC address to get Client ID ip dhcp pool PH1 host 142.10Y.66.12 255.255.255.0 client-identifier 0102.0010.0012.34 default-router 142.10Y.66.254 option 150 ip 135.Y.100.30 ip dhcp pool PH2 host 142.10Y.66.13 255.255.255.0 client-identifier 0102.0010.0012.35 default-router 142.10Y.66.254 option 150 ip 135.Y.100.30 NOTE: One Pool for Each Phone
  • 17. 171717 DHCP via Database • A DHCP database contains the mappings between a client IP address and hardware address, referred to as a binding • This database contains list of mac address with corresponded IP address • static mapping text file must be created with proper file format • The static bindings must not be deleted when a DHCPRELEASE is received or must not be timed out by the DHCP timer.
  • 18. 181818 Configuring the DHCP Server to Read a Static Mapping Text File • Configure a single pool • • You must disable the DHCP server using the no service dhcp command before editing the file • Type service dhcp to enable it and read the text file • Once done – type show ip dhcp binding to verify Ip dhcp database static.txt ip dhcp pool Voice origin file flash:static.txt default-router 142.10Y.66.254 option 150 ip 142.1Y.64.11
  • 19. 191919 Static Mapping Text File • *time* Dec 13 2013 08:22 AM • *version* 2 • !IP address Type Hardware address Lease expiration • 142.101.66.12 /24 1 0060.9f92.e3f1 Infinite • 142.101.66.12 /24 1 0060.9f90.d333 Infinite • *end* • Create text file in Notepad – as per following format • Upload the file to the flash
  • 20. 202020 NTP Configurations To Configure Router to join NTP Server HQ – Pacific Time Zone GMT -8 r7tor(config)#clock timezone EST -5 r7tor(config)# ntp server 135.11.11.11 SiteB – Eastern Time Zone GMT -5 r7sfo(config)#clock timezone PST -5 r7sfo(config)#ntp server 135.11.11.11 SiteC – GMT +8 r7uk(config)#clock timezone GMT 0 r7sfo(config)#ntp server 135.11.11.11 To Configure Router to act as NTP Server ntp master  define Router as NTP server ntp source loopback 0  source NTP Traffic from Loopback interface
  • 21. 212121 UCM NTP Server Login to OS Administration Go to Settings  NTP Server Publisher obtain its time From NTP Server but Subscriber Will obtain its time from Publisher
  • 22. 222222 Practice Lab Questions VLAN Configure Voice VLANs for switch ports connecting to IP Phones at HQ, SiteB and SiteC. Voice VLAN IDs for HQ, SiteB and SiteC are 10Y, 30Y and 50Y respectively. There is a machine connected to each switch port. Configure switch ports such that machine will be placed in an appropriate data VLAN. Data VLAN IDs for HQ, SiteB and SiteC are 20Y, 40Y and 60Y respectively. DHCP Configure CUCM Publisher as DHCP server to provide IP Addresses for IP Phones at HQ and SiteB from their respective Voice subnets. For HQ, use IP address range from 142.10Y.64.20/24 to 142.10Y.64.30/24 For SiteB, use IP address range from 142.10Y.65.20/24 to 142.10Y.65.30/24 Lastly, configure local Cisco 2801 router as DHCP server to provide IP addresses for SiteC IP Phones from local Voice subnet. Make sure that the BR Phone 1 always gets 142.10Y.66.11 and Br Phone 2 should always get 142.10Y.66.12 NTP Synchronize HQ router with external NTP source at 135.11.11.11. This External NTP server is in UTC time zone. Configure HQ router in PST time zone which is 8 hours behind UTC. Synchronize CUCM Publisher with loopback interface of HQ router. SiteB is in CST time zone which is 2 hours ahead of PST. Lastly, SiteC is in Hong Kong time zone which is 8 hours ahead of Coordinated Universal Timezone. Synchronize SiteC NTP with external source. Configure CUCM such that IP phones display appropriate time according to the time zone to which they belong.
  • 23. 232323 End of Module • VLAN must be created and assigned to IP Phone • Enable VLAN on trunk port incase if it is not allowed • Router port if already trunk verify it has all the necessary VLAN • Ensure VLAN Names are configured • DHCP must be configured properly. • Verify all scope settings and file name if needed • NTP must be configured to ensure server and phone sync their time