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

PPT
Chapter 2 point-to-point protocol (ppp)
PPT
Chapter2 ppp
PPT
Point-to-Point Protocol(PPP) CCN ppt
PPTX
PPP(Point-to-Point Protocol): Components & Characteristics
PDF
CS6551 COMPUTER NETWORKS
PPTX
Point To Point Protocol
PDF
20CS2007 Computer Communication Networks
PDF
Chapter 2 point-to-point protocol (ppp)
Chapter2 ppp
Point-to-Point Protocol(PPP) CCN ppt
PPP(Point-to-Point Protocol): Components & Characteristics
CS6551 COMPUTER NETWORKS
Point To Point Protocol
20CS2007 Computer Communication Networks

What's hot (20)

PPT
Ss7 Introduction Li In
PPTX
Point to point protocol | PPP - Nitish Jadia
PPT
Introduction to PPP
PDF
Ccna 3-discovery-4-0-module-7-100-
PPT
Point to-point-protocol
PDF
Cs8591 Computer Networks
PDF
PDF
Cs8591 Computer Networks
DOCX
PDF
Multicast address
PPSX
SS7 Network Technology
DOCX
MC0087 Internal Assignment (SMU)
PPTX
CN_Lec 5_OSI
PDF
Cisco discovery drs ent module 7 - v.4 in english.
PPT
Ccna4 mod5-frame relay
PPTX
PPP (Point to Point Protocol)
PDF
Cs8591 Computer Networks
PPT
Signaling system 7 (ss7)
Ss7 Introduction Li In
Point to point protocol | PPP - Nitish Jadia
Introduction to PPP
Ccna 3-discovery-4-0-module-7-100-
Point to-point-protocol
Cs8591 Computer Networks
Cs8591 Computer Networks
Multicast address
SS7 Network Technology
MC0087 Internal Assignment (SMU)
CN_Lec 5_OSI
Cisco discovery drs ent module 7 - v.4 in english.
Ccna4 mod5-frame relay
PPP (Point to Point Protocol)
Cs8591 Computer Networks
Signaling system 7 (ss7)
Ad

Similar to Week10 wan-2017(1) (20)

PPT
Wan networks
DOC
Ccna 4 chapter 2 v4.0 answers 2011
PPT
CCNA CHAPTER 9 BY jetarvind kumar madhukar
PPTX
Remote access service
PPT
Chapter14ccna
PPT
Chapter14ccna
PDF
Ccna day5-140715152501-phpapp01
PPT
PPT
Ccna day5
PPT
PDF
Cisco discovery d homesb module 10 final exam - v.4 in english.
PDF
Cisco discovery d homesb module 10 final exam - v.4 in english.
PDF
Frame Relay
DOCX
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docx
PPT
C C N A Day5
PDF
Ccna 4 Chapter 8 V4.0 Answers
PPT
CCNA PPP and Frame Relay
PDF
"Pass Cisco 200-301 CCNA Exam with Certifiedumps – Verified Dumps for Guarant...
PDF
Pass Your Cisco 200-301 CCNA Exam in 2025 with Confidence
Wan networks
Ccna 4 chapter 2 v4.0 answers 2011
CCNA CHAPTER 9 BY jetarvind kumar madhukar
Remote access service
Chapter14ccna
Chapter14ccna
Ccna day5-140715152501-phpapp01
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.
Frame Relay
Chapter 11 Selecting Technologies and Devices for Enterprise Netwo.docx
C C N A Day5
Ccna 4 Chapter 8 V4.0 Answers
CCNA PPP and Frame Relay
"Pass Cisco 200-301 CCNA Exam with Certifiedumps – Verified Dumps for Guarant...
Pass Your Cisco 200-301 CCNA Exam in 2025 with Confidence
Ad

More from trayyoo (20)

PPTX
ops300 Week5 storage
PPTX
ops300 Week8 practical test
PPTX
ops300 Week8 gre
PPTX
ops300 Week9 feedback
PPTX
ops300 Week10 technology evaluation
DOCX
ops300 Research paperrubric
DOCX
ops300 Project(4)
DOCX
ops300 Project(3)
DOCX
ops300 Assignment 02
PPTX
ops300 Week5 storage (1)
PDF
srt311 Project2
DOC
Project papercontent requirement
DOC
Dcn330 project papertemplate(1)
DOCX
Dcn330 project-paper-rubric
PPTX
Introduction(2)
DOC
Report for lab 1
DOC
Report for lab 2(2)
DOC
Report for lab 3(1)
DOC
Report for lab 4 2017(1)
DOC
Report for lab 5 2017
ops300 Week5 storage
ops300 Week8 practical test
ops300 Week8 gre
ops300 Week9 feedback
ops300 Week10 technology evaluation
ops300 Research paperrubric
ops300 Project(4)
ops300 Project(3)
ops300 Assignment 02
ops300 Week5 storage (1)
srt311 Project2
Project papercontent requirement
Dcn330 project papertemplate(1)
Dcn330 project-paper-rubric
Introduction(2)
Report for lab 1
Report for lab 2(2)
Report for lab 3(1)
Report for lab 4 2017(1)
Report for lab 5 2017

Recently uploaded (20)

PDF
Complications of Minimal Access Surgery at WLH
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PPTX
Cell Types and Its function , kingdom of life
PDF
Hazard Identification & Risk Assessment .pdf
PDF
Trump Administration's workforce development strategy
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PPTX
Digestion and Absorption of Carbohydrates, Proteina and Fats
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PDF
Computing-Curriculum for Schools in Ghana
PPTX
Introduction to Building Materials
PDF
RMMM.pdf make it easy to upload and study
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
Unit 4 Skeletal System.ppt.pptxopresentatiom
Complications of Minimal Access Surgery at WLH
Supply Chain Operations Speaking Notes -ICLT Program
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
Practical Manual AGRO-233 Principles and Practices of Natural Farming
Cell Types and Its function , kingdom of life
Hazard Identification & Risk Assessment .pdf
Trump Administration's workforce development strategy
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Orientation - ARALprogram of Deped to the Parents.pptx
Digestion and Absorption of Carbohydrates, Proteina and Fats
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
LDMMIA Reiki Yoga Finals Review Spring Summer
Computing-Curriculum for Schools in Ghana
Introduction to Building Materials
RMMM.pdf make it easy to upload and study
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
Final Presentation General Medicine 03-08-2024.pptx
Unit 4 Skeletal System.ppt.pptxopresentatiom

Week10 wan-2017(1)

  • 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