SlideShare a Scribd company logo
1 of 24
Download to read offline
Lecture 10 – Wide Area Networks
DCN330 Fall 2017
Lisa Li
Outline
DCN330 Fall 2017
 Common WAN Terminology
 WAN Connection Types
 WAN Support
 Data Terminal Equipment and Data Communication Equipment
 High-Level Data-Link Control (HDLC) Protocol
 Point-to-Point Protocol (PPP)
 Verifying and Troubleshooting Serial Links
2
Common WAN Terminology
 Customer premises equipment (CPE): is equipment that’s typically owned by the
subscriber and located on the subscriber’s premises.
DCN330 Fall 2017
4
Common WAN Terminology
 Demarcation point: A point established in a building or complex to separate
customer equipment from service provider equipment. Physically, the demarcation
point is the cabling junction box, located on the customer premises, that connects
the CPE wiring to the local loop. It is usually placed for easy access by a technician.
The demarcation point is the place where the responsibility for the connection
changes from the user to the service provider. When problems arise, it is necessary
to determine whether the user or the service provider is responsible for
troubleshooting or repair.
DCN330 Fall 2017
5
Common WAN Terminology
 Data communications equipment (DCE): Also called data circuit-terminating
equipment, the DCE consists of devices that put data on the local loop. The DCE
primarily provides an interface to connect subscribers to a communication link on the
WAN cloud..
DCN330 Fall 2017
6
Common WAN Terminology
 Data terminal equipment (DTE): The customer devices that pass the data from a
customer network or host computer for transmission over the WAN. The DTE
connects to the local loop through the DCE.
DCN330 Fall 2017
7
Common WAN Terminology
 Local loop: The actual copper or fiber cable that connects the CPE to the CO of the
service provider. The local loop is also sometimes called the “last mile.”
DCN330 Fall 2017
8
Common WAN Terminology
 Central office (CO): The CO is the local service provider facility or building that
connects the CPE to the provider network.
DCN330 Fall 2017
9
Common WAN Terminology
 Toll network: This consists of the long-haul, all-digital, fiber-optic communications
lines, switches, routers, and other equipment inside the WAN provider network.
DCN330 Fall 2017
10
WAN Connection Types
DCN330 Fall 2017
11
WAN Support
 Physical Layer Standards
 EIA/TIA-232, EIA/TIA-449, V.24, V.35, X.21, T1,
T3, E1, E3, SONET, SDH
 Data Link Layer Standards and Protocols
 HDLC
 PPP
 Frame-Relay
 ATM
 Carrier Ethernet
DCN330 Fall 2017
12
WAN Support (cont’d)
DCN330 Fall 2017
14
WAN Support (cont’d)
 Router Serial WAN Connectors Examples
DCN330 Fall 2017
15
WAN Support (cont’d)
DCN330 Fall 2017
 Cisco supports many layer 2 WAN encapsulations on its
serial interfaces, including HDLC (High-Level Data Link
Control), PPP (Point-to-Point Protocol), and Frame
Relay.
16
Data Terminal Equipment and
Data Communication Equipment
 By default, router interfaces are typically data terminal equipment
(DTE), and they connect into data communication equipment
(DCE) like a channel service unit/data service unit (CSU/DSU)
using a V.35 connector.
18
In a production environment, the DCE network includes the CSU/DSU, through the provider’s
wiring and switches, all the way to the CSU/DSU at the other end. The network’s DCE device
(CSU/DSU) provides clocking to the DTE-connected interface (the router’s serial interface).
High-Level Data-Link Control
(HDLC) Protocol
 If you run the command sh int s0/0/0, you probably will notice the
HDLC information is shown as follows (notice that you won’t see the
encapsulation info by running show running-config (or sh run):
 HDLC is the default encapsulation used by Cisco routers over
synchronous serial links. And Cisco’s HDLC is proprietary, meaning
it won’t communicate with any other vendor’s HDLC
implementation. But don’t give Cisco grief for it—everyone’s HDLC
implementation is proprietary.
DCN330 Fall 2017
20
Point-to-Point Protocol (PPP)
 The basic purpose of PPP is to transport layer
3 packets across a Data Link layer point-to-
point link, and it’s nonproprietary.
 Plus, since PPP can encapsulate several layer
3 routed protocols and provide authentication,
dynamic addressing, and callback, PPP could
actually be the best encapsulation solution for
you over HDLC.
DCN330 Fall 2017
21
Point-to-Point Protocol (PPP)
(cont’d)
 PPP protocol stack is specified at the Physical and Data Link layers only.
 Network Control Protocol (NCP) is used to allow communication of multiple
Network layer protocols by identifying and encapsulating the protocols across a PPP
data link.
 Link Control Protocol (LCP) offers different PPP encapsulation options, including:
authentication, compression, error detection, multilink (supported since IOS v11.1),
and PPP callback.
DCN330 Fall 2017
22
 Figure 21-10: Point-to-Point
Protocol stack
PPP Session Establishment
 When PPP connections are started, the links
go through three phases of session
establishment, shown as:
DCN330 Fall 2017
23
PPP Authentication Methods
 There are two methods of authentication that can be used with PPP
links:
 Password Authentication Protocol (PAP) is the less secure of the two methods.
Passwords are sent in clear text and PAP is performed only upon the initial link
establishment. When the PPP link is first established, the remote node sends the
username and password back to the originating target router until authentication is
acknowledged.
 Challenge Handshake Authentication Protocol (CHAP) is used at the initial startup
of a link and at periodic checkups on the link to ensure that the router is still
communicating with the same host.
 After PPP finishes its initial link-establishment phase, the local router
sends a challenge request to the remote device. The remote device
sends a value calculated using a one-way hash function called MD5.
The local router checks this hash value to make sure it matches. If the
values don’t match, the link is immediately terminated.
DCN330 Fall 2017
24
PPP Authentication Configuration
 To configure it from the CLI, use these simple router commands:
 After you configure your serial interface to support PPP
encapsulation, you can then configure authentication using PPP
between routers.
 Set the hostname of the router if it hasn’t been set already. After that, you
set the username and password for the remote router that will be connecting
to your router, like this:
 Remember to configure it similarly on the other router, e.g., the router with
hostname RouterB. DCN330 Fall 2017
25
PPP Authentication Configuration (Cont’d)
 Now, after you’ve set the hostname, usernames, and passwords,
choose either CHAP or PAP as the authentication method:
 Remarks: when using the username command, remember that the
username is the hostname of the remote router that’s connecting to your
router. And it’s case sensitive too. Also, the password on both routers must
be the same. It’s a plain-text password that you can see with a show run
command, and you can encrypt the password by using the command
service password-encryption (note: run it in the global configuration
mode). You must have a username and password configured for each
router you plan to connect to.
DCN330 Fall 2017
26
PPP Authentication Configuration (Cont’d)
 You can start verifying the configuration with the show interface command,
e.g.
 Debugging PPP Authentication To display the CHAP authentication process
as it occurs between two routers in the network, just use the command
debug ppp authentication.
DCN330 Fall 2017
27
PPP Authentication Configuration (Cont’d)
 Example
DCN330 Fall 2017
28

More Related Content

What's hot (20)

Ss7 Introduction Li In
Ss7 Introduction Li InSs7 Introduction Li In
Ss7 Introduction Li In
 
Point to point protocol | PPP - Nitish Jadia
Point to point protocol | PPP - Nitish JadiaPoint to point protocol | PPP - Nitish Jadia
Point to point protocol | PPP - Nitish Jadia
 
Introduction to PPP
Introduction to PPPIntroduction to PPP
Introduction to PPP
 
Ccna 3-discovery-4-0-module-7-100-
Ccna 3-discovery-4-0-module-7-100-Ccna 3-discovery-4-0-module-7-100-
Ccna 3-discovery-4-0-module-7-100-
 
Point to-point-protocol
Point to-point-protocolPoint to-point-protocol
Point to-point-protocol
 
Cs8591 Computer Networks
Cs8591 Computer NetworksCs8591 Computer Networks
Cs8591 Computer Networks
 
Cs8601 4
Cs8601 4Cs8601 4
Cs8601 4
 
Cs8591 Computer Networks
Cs8591 Computer NetworksCs8591 Computer Networks
Cs8591 Computer Networks
 
Isup
IsupIsup
Isup
 
Multicast address
Multicast addressMulticast address
Multicast address
 
SS7 Network Technology
SS7 Network TechnologySS7 Network Technology
SS7 Network Technology
 
MC0087 Internal Assignment (SMU)
MC0087 Internal Assignment (SMU)MC0087 Internal Assignment (SMU)
MC0087 Internal Assignment (SMU)
 
CN_Lec 5_OSI
CN_Lec 5_OSICN_Lec 5_OSI
CN_Lec 5_OSI
 
Cisco discovery drs ent module 7 - v.4 in english.
Cisco discovery   drs ent module 7 - v.4 in english.Cisco discovery   drs ent module 7 - v.4 in english.
Cisco discovery drs ent module 7 - v.4 in english.
 
Ccna4 mod5-frame relay
Ccna4 mod5-frame relayCcna4 mod5-frame relay
Ccna4 mod5-frame relay
 
Ppp
PppPpp
Ppp
 
PPP (Point to Point Protocol)
PPP (Point to Point Protocol)PPP (Point to Point Protocol)
PPP (Point to Point Protocol)
 
Ch22
Ch22Ch22
Ch22
 
Cs8591 Computer Networks
Cs8591 Computer NetworksCs8591 Computer Networks
Cs8591 Computer Networks
 
Signaling system 7 (ss7)
Signaling system 7 (ss7)Signaling system 7 (ss7)
Signaling system 7 (ss7)
 

Similar to WAN Lecture on Networks, Protocols and Authentication

Ccna 4 chapter 2 v4.0 answers 2011
Ccna 4 chapter 2 v4.0 answers 2011Ccna 4 chapter 2 v4.0 answers 2011
Ccna 4 chapter 2 v4.0 answers 2011Dân Chơi
 
Remote access service
Remote access serviceRemote access service
Remote access serviceApoorw Pandey
 
Chapter14ccna
Chapter14ccnaChapter14ccna
Chapter14ccnarobertoxe
 
Ccna day5-140715152501-phpapp01
Ccna day5-140715152501-phpapp01Ccna day5-140715152501-phpapp01
Ccna day5-140715152501-phpapp01Sachin Morya
 
Cisco discovery d homesb module 10 final exam - v.4 in english.
Cisco discovery   d homesb module 10 final exam - v.4 in english.Cisco discovery   d homesb module 10 final exam - v.4 in english.
Cisco discovery d homesb module 10 final exam - v.4 in english.igede tirtanata
 
Cisco discovery d homesb module 10 final exam - v.4 in english.
Cisco discovery   d homesb module 10 final exam - v.4 in english.Cisco discovery   d homesb module 10 final exam - v.4 in english.
Cisco discovery d homesb module 10 final exam - v.4 in english.igede tirtanata
 
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docx
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docxChapter 11 Selecting Technologies and Devices for Enterprise Netwo.docx
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docxbartholomeocoombs
 
Ccna 4 Chapter 8 V4.0 Answers
Ccna 4 Chapter 8 V4.0 AnswersCcna 4 Chapter 8 V4.0 Answers
Ccna 4 Chapter 8 V4.0 Answersccna4discovery
 
CCNA PPP and Frame Relay
CCNA PPP and Frame RelayCCNA PPP and Frame Relay
CCNA PPP and Frame RelayDsunte Wilson
 
Ccnav5.org ccna 4-v50_practice_final_exam
Ccnav5.org ccna 4-v50_practice_final_examCcnav5.org ccna 4-v50_practice_final_exam
Ccnav5.org ccna 4-v50_practice_final_examĐồng Quốc Vương
 

Similar to WAN Lecture on Networks, Protocols and Authentication (20)

Wan networks
Wan networksWan networks
Wan networks
 
Ccna 4 chapter 2 v4.0 answers 2011
Ccna 4 chapter 2 v4.0 answers 2011Ccna 4 chapter 2 v4.0 answers 2011
Ccna 4 chapter 2 v4.0 answers 2011
 
CCNA CHAPTER 9 BY jetarvind kumar madhukar
CCNA CHAPTER 9 BY jetarvind kumar madhukarCCNA CHAPTER 9 BY jetarvind kumar madhukar
CCNA CHAPTER 9 BY jetarvind kumar madhukar
 
Remote access service
Remote access serviceRemote access service
Remote access service
 
Chapter14ccna
Chapter14ccnaChapter14ccna
Chapter14ccna
 
Chapter14ccna
Chapter14ccnaChapter14ccna
Chapter14ccna
 
Ccna day5
Ccna day5Ccna day5
Ccna day5
 
Ccna day5
Ccna day5Ccna day5
Ccna day5
 
Ccna day5-140715152501-phpapp01
Ccna day5-140715152501-phpapp01Ccna day5-140715152501-phpapp01
Ccna day5-140715152501-phpapp01
 
Ccna day5
Ccna day5Ccna day5
Ccna day5
 
Cisco discovery d homesb module 10 final exam - v.4 in english.
Cisco discovery   d homesb module 10 final exam - v.4 in english.Cisco discovery   d homesb module 10 final exam - v.4 in english.
Cisco discovery d homesb module 10 final exam - v.4 in english.
 
Cisco discovery d homesb module 10 final exam - v.4 in english.
Cisco discovery   d homesb module 10 final exam - v.4 in english.Cisco discovery   d homesb module 10 final exam - v.4 in english.
Cisco discovery d homesb module 10 final exam - v.4 in english.
 
Wan
WanWan
Wan
 
Frame Relay
Frame RelayFrame Relay
Frame Relay
 
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docx
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docxChapter 11 Selecting Technologies and Devices for Enterprise Netwo.docx
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docx
 
C C N A Day5
C C N A  Day5C C N A  Day5
C C N A Day5
 
Ccna 4 Chapter 8 V4.0 Answers
Ccna 4 Chapter 8 V4.0 AnswersCcna 4 Chapter 8 V4.0 Answers
Ccna 4 Chapter 8 V4.0 Answers
 
CCNA PPP and Frame Relay
CCNA PPP and Frame RelayCCNA PPP and Frame Relay
CCNA PPP and Frame Relay
 
Ccnav5.org ccna 4-v50_practice_final_exam
Ccnav5.org ccna 4-v50_practice_final_examCcnav5.org ccna 4-v50_practice_final_exam
Ccnav5.org ccna 4-v50_practice_final_exam
 
ccna 4 final 2012
ccna 4 final 2012ccna 4 final 2012
ccna 4 final 2012
 

More from trayyoo

ops300 Week5 storage
ops300 Week5 storageops300 Week5 storage
ops300 Week5 storagetrayyoo
 
ops300 Week8 practical test
ops300 Week8 practical testops300 Week8 practical test
ops300 Week8 practical testtrayyoo
 
ops300 Week8 gre
ops300 Week8 greops300 Week8 gre
ops300 Week8 gretrayyoo
 
ops300 Week9 feedback
ops300 Week9 feedbackops300 Week9 feedback
ops300 Week9 feedbacktrayyoo
 
ops300 Week10 technology evaluation
ops300 Week10   technology evaluationops300 Week10   technology evaluation
ops300 Week10 technology evaluationtrayyoo
 
ops300 Research paperrubric
ops300 Research paperrubricops300 Research paperrubric
ops300 Research paperrubrictrayyoo
 
ops300 Project(4)
ops300 Project(4)ops300 Project(4)
ops300 Project(4)trayyoo
 
ops300 Project(3)
ops300 Project(3)ops300 Project(3)
ops300 Project(3)trayyoo
 
ops300 Assignment 02
ops300 Assignment  02ops300 Assignment  02
ops300 Assignment 02trayyoo
 
ops300 Week5 storage (1)
ops300 Week5 storage (1)ops300 Week5 storage (1)
ops300 Week5 storage (1)trayyoo
 
srt311 Project2
srt311 Project2srt311 Project2
srt311 Project2trayyoo
 
Project papercontent requirement
Project papercontent requirementProject papercontent requirement
Project papercontent requirementtrayyoo
 
Dcn330 project papertemplate(1)
Dcn330 project papertemplate(1)Dcn330 project papertemplate(1)
Dcn330 project papertemplate(1)trayyoo
 
Dcn330 project-paper-rubric
Dcn330 project-paper-rubricDcn330 project-paper-rubric
Dcn330 project-paper-rubrictrayyoo
 
Introduction(2)
Introduction(2)Introduction(2)
Introduction(2)trayyoo
 
Report for lab 1
Report for lab 1Report for lab 1
Report for lab 1trayyoo
 
Report for lab 2(2)
Report for lab 2(2)Report for lab 2(2)
Report for lab 2(2)trayyoo
 
Report for lab 3(1)
Report for lab 3(1)Report for lab 3(1)
Report for lab 3(1)trayyoo
 
Report for lab 4 2017(1)
Report for lab 4 2017(1)Report for lab 4 2017(1)
Report for lab 4 2017(1)trayyoo
 
Report for lab 5 2017
Report for lab 5 2017Report for lab 5 2017
Report for lab 5 2017trayyoo
 

More from trayyoo (20)

ops300 Week5 storage
ops300 Week5 storageops300 Week5 storage
ops300 Week5 storage
 
ops300 Week8 practical test
ops300 Week8 practical testops300 Week8 practical test
ops300 Week8 practical test
 
ops300 Week8 gre
ops300 Week8 greops300 Week8 gre
ops300 Week8 gre
 
ops300 Week9 feedback
ops300 Week9 feedbackops300 Week9 feedback
ops300 Week9 feedback
 
ops300 Week10 technology evaluation
ops300 Week10   technology evaluationops300 Week10   technology evaluation
ops300 Week10 technology evaluation
 
ops300 Research paperrubric
ops300 Research paperrubricops300 Research paperrubric
ops300 Research paperrubric
 
ops300 Project(4)
ops300 Project(4)ops300 Project(4)
ops300 Project(4)
 
ops300 Project(3)
ops300 Project(3)ops300 Project(3)
ops300 Project(3)
 
ops300 Assignment 02
ops300 Assignment  02ops300 Assignment  02
ops300 Assignment 02
 
ops300 Week5 storage (1)
ops300 Week5 storage (1)ops300 Week5 storage (1)
ops300 Week5 storage (1)
 
srt311 Project2
srt311 Project2srt311 Project2
srt311 Project2
 
Project papercontent requirement
Project papercontent requirementProject papercontent requirement
Project papercontent requirement
 
Dcn330 project papertemplate(1)
Dcn330 project papertemplate(1)Dcn330 project papertemplate(1)
Dcn330 project papertemplate(1)
 
Dcn330 project-paper-rubric
Dcn330 project-paper-rubricDcn330 project-paper-rubric
Dcn330 project-paper-rubric
 
Introduction(2)
Introduction(2)Introduction(2)
Introduction(2)
 
Report for lab 1
Report for lab 1Report for lab 1
Report for lab 1
 
Report for lab 2(2)
Report for lab 2(2)Report for lab 2(2)
Report for lab 2(2)
 
Report for lab 3(1)
Report for lab 3(1)Report for lab 3(1)
Report for lab 3(1)
 
Report for lab 4 2017(1)
Report for lab 4 2017(1)Report for lab 4 2017(1)
Report for lab 4 2017(1)
 
Report for lab 5 2017
Report for lab 5 2017Report for lab 5 2017
Report for lab 5 2017
 

Recently uploaded

Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 

Recently uploaded (20)

Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 

WAN Lecture on Networks, Protocols and Authentication

  • 1. Lecture 10 – Wide Area Networks DCN330 Fall 2017 Lisa Li
  • 2. Outline DCN330 Fall 2017  Common WAN Terminology  WAN Connection Types  WAN Support  Data Terminal Equipment and Data Communication Equipment  High-Level Data-Link Control (HDLC) Protocol  Point-to-Point Protocol (PPP)  Verifying and Troubleshooting Serial Links 2
  • 3. Common WAN Terminology  Customer premises equipment (CPE): is equipment that’s typically owned by the subscriber and located on the subscriber’s premises. DCN330 Fall 2017 4
  • 4. Common WAN Terminology  Demarcation point: A point established in a building or complex to separate customer equipment from service provider equipment. Physically, the demarcation point is the cabling junction box, located on the customer premises, that connects the CPE wiring to the local loop. It is usually placed for easy access by a technician. The demarcation point is the place where the responsibility for the connection changes from the user to the service provider. When problems arise, it is necessary to determine whether the user or the service provider is responsible for troubleshooting or repair. DCN330 Fall 2017 5
  • 5. Common WAN Terminology  Data communications equipment (DCE): Also called data circuit-terminating equipment, the DCE consists of devices that put data on the local loop. The DCE primarily provides an interface to connect subscribers to a communication link on the WAN cloud.. DCN330 Fall 2017 6
  • 6. Common WAN Terminology  Data terminal equipment (DTE): The customer devices that pass the data from a customer network or host computer for transmission over the WAN. The DTE connects to the local loop through the DCE. DCN330 Fall 2017 7
  • 7. Common WAN Terminology  Local loop: The actual copper or fiber cable that connects the CPE to the CO of the service provider. The local loop is also sometimes called the “last mile.” DCN330 Fall 2017 8
  • 8. Common WAN Terminology  Central office (CO): The CO is the local service provider facility or building that connects the CPE to the provider network. DCN330 Fall 2017 9
  • 9. Common WAN Terminology  Toll network: This consists of the long-haul, all-digital, fiber-optic communications lines, switches, routers, and other equipment inside the WAN provider network. DCN330 Fall 2017 10
  • 11. WAN Support  Physical Layer Standards  EIA/TIA-232, EIA/TIA-449, V.24, V.35, X.21, T1, T3, E1, E3, SONET, SDH  Data Link Layer Standards and Protocols  HDLC  PPP  Frame-Relay  ATM  Carrier Ethernet DCN330 Fall 2017 12
  • 13. WAN Support (cont’d)  Router Serial WAN Connectors Examples DCN330 Fall 2017 15
  • 14. WAN Support (cont’d) DCN330 Fall 2017  Cisco supports many layer 2 WAN encapsulations on its serial interfaces, including HDLC (High-Level Data Link Control), PPP (Point-to-Point Protocol), and Frame Relay. 16
  • 15. Data Terminal Equipment and Data Communication Equipment  By default, router interfaces are typically data terminal equipment (DTE), and they connect into data communication equipment (DCE) like a channel service unit/data service unit (CSU/DSU) using a V.35 connector. 18 In a production environment, the DCE network includes the CSU/DSU, through the provider’s wiring and switches, all the way to the CSU/DSU at the other end. The network’s DCE device (CSU/DSU) provides clocking to the DTE-connected interface (the router’s serial interface).
  • 16. High-Level Data-Link Control (HDLC) Protocol  If you run the command sh int s0/0/0, you probably will notice the HDLC information is shown as follows (notice that you won’t see the encapsulation info by running show running-config (or sh run):  HDLC is the default encapsulation used by Cisco routers over synchronous serial links. And Cisco’s HDLC is proprietary, meaning it won’t communicate with any other vendor’s HDLC implementation. But don’t give Cisco grief for it—everyone’s HDLC implementation is proprietary. DCN330 Fall 2017 20
  • 17. Point-to-Point Protocol (PPP)  The basic purpose of PPP is to transport layer 3 packets across a Data Link layer point-to- point link, and it’s nonproprietary.  Plus, since PPP can encapsulate several layer 3 routed protocols and provide authentication, dynamic addressing, and callback, PPP could actually be the best encapsulation solution for you over HDLC. DCN330 Fall 2017 21
  • 18. Point-to-Point Protocol (PPP) (cont’d)  PPP protocol stack is specified at the Physical and Data Link layers only.  Network Control Protocol (NCP) is used to allow communication of multiple Network layer protocols by identifying and encapsulating the protocols across a PPP data link.  Link Control Protocol (LCP) offers different PPP encapsulation options, including: authentication, compression, error detection, multilink (supported since IOS v11.1), and PPP callback. DCN330 Fall 2017 22  Figure 21-10: Point-to-Point Protocol stack
  • 19. PPP Session Establishment  When PPP connections are started, the links go through three phases of session establishment, shown as: DCN330 Fall 2017 23
  • 20. PPP Authentication Methods  There are two methods of authentication that can be used with PPP links:  Password Authentication Protocol (PAP) is the less secure of the two methods. Passwords are sent in clear text and PAP is performed only upon the initial link establishment. When the PPP link is first established, the remote node sends the username and password back to the originating target router until authentication is acknowledged.  Challenge Handshake Authentication Protocol (CHAP) is used at the initial startup of a link and at periodic checkups on the link to ensure that the router is still communicating with the same host.  After PPP finishes its initial link-establishment phase, the local router sends a challenge request to the remote device. The remote device sends a value calculated using a one-way hash function called MD5. The local router checks this hash value to make sure it matches. If the values don’t match, the link is immediately terminated. DCN330 Fall 2017 24
  • 21. PPP Authentication Configuration  To configure it from the CLI, use these simple router commands:  After you configure your serial interface to support PPP encapsulation, you can then configure authentication using PPP between routers.  Set the hostname of the router if it hasn’t been set already. After that, you set the username and password for the remote router that will be connecting to your router, like this:  Remember to configure it similarly on the other router, e.g., the router with hostname RouterB. DCN330 Fall 2017 25
  • 22. PPP Authentication Configuration (Cont’d)  Now, after you’ve set the hostname, usernames, and passwords, choose either CHAP or PAP as the authentication method:  Remarks: when using the username command, remember that the username is the hostname of the remote router that’s connecting to your router. And it’s case sensitive too. Also, the password on both routers must be the same. It’s a plain-text password that you can see with a show run command, and you can encrypt the password by using the command service password-encryption (note: run it in the global configuration mode). You must have a username and password configured for each router you plan to connect to. DCN330 Fall 2017 26
  • 23. PPP Authentication Configuration (Cont’d)  You can start verifying the configuration with the show interface command, e.g.  Debugging PPP Authentication To display the CHAP authentication process as it occurs between two routers in the network, just use the command debug ppp authentication. DCN330 Fall 2017 27
  • 24. PPP Authentication Configuration (Cont’d)  Example DCN330 Fall 2017 28