troubleshooting wan implementation issues chapter 16 powered by dj 1

30
Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Upload: charles-melton

Post on 12-Jan-2016

230 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Troubleshooting WAN Implementation Issues

Chapter 16

powered by DJ 1

Page 2: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Chapter ObjectivesAt the end of this Chapter you will be

able to:Configure and verify a PPP connection between Cisco routersConfigure and verify Frame Relay on Cisco routers

powered by DJ 2

Page 3: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

High-Level Data-Link Control (HDLC) Protocol

Introduction The High-Level Data-Link Control (HDLC) protocol is a popular ISO-

standard, bit-oriented, Data Link layer protocol. It specifies an encapsulation method for data on synchronous serial data links using frame characters and checksums.

HDLC is a point-to-point protocol used on leased lines. No authentication can be used with HDLC.

HDLC is the default encapsulation used by Cisco routers over synchronous serial links. And Cisco’s HDLC is proprietary—it won’t communicate with any other vendor’s HDLC implementation.

Figure below shows the Cisco HDLC format.

powered by DJ 3

Page 4: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Cisco HDLC format

Cisco HDLC Frame Formatpowered by DJ 4

Page 5: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Point-to-Point Protocol (PPP)When would you choose to use PPP?

Basic purpose of PPP is to transport layer 3 packets across a Data Link layer point-to-point link,

it’s nonproprietary. So unless you have all Cisco routers, you need PPP on your serial interfaces—the HDLC encapsulation is Cisco proprietary.

since PPP can encapsulate several layer 3 routed protocols and provide authentication, dynamic addressing, and callback.

powered by DJ 5

Page 6: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

PPP Authentication MethodsPPP Authentication Methods

There are two methods of authentication that can be used with PPP links:

Password Authentication Protocol (PAP)

The Password Authentication Protocol (PAP) is the less secure of the two methods. Passwords are sent in clear text, and PAP is only performed upon the initial link establishment. When the PPP link is first established, the remote node sends the username and password back to the originating router until authentication is acknowledged.

powered by DJ 6

Page 7: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti.. Challenge Handshake Authentication Protocol (CHAP)

The Challenge Handshake Authentication Protocol (CHAP) is used at the initial startup of a link and at periodic checkups on the link to make sure 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.

powered by DJ 7

Page 8: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Configuring PPP Encapsulation

Configuring PPP encapsulation on an interface is straightforward. To configure it from the CLI, follow these simple router commands:

Router#config t

Router(config)#int s0

Router(config-if)#encapsulation ppp

Router(config-if)#^Z

Router#

powered by DJ 8

Page 9: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Configuring PPP Authentication

After you configure your serial interface to support PPP encapsulation, you can configure authentication using PPP between routers. First, you need to set the hostname of the router, if it’s not already. Then you set the username and password for the remote router that will be connecting to your router:

Router#config t

Router(config)#hostname RouterA

RouterA(config)#username RouterB password cisco

powered by DJ 9

Page 10: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Now, after you’ve set the hostname, usernames, and passwords, choose the authentication type, either CHAP or PAP:

RouterA#config t

Enter configuration commands, one per line. End with CNTL/Z.

RouterA(config)#int s0

RouterA(config-if)#ppp authentication chap pap

RouterA(config-if)#^Z

RouterA#

powered by DJ 10

Page 11: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Frame Relay

What is Frame Relay?

Frame Relay is still one of the most popular WAN services deployed over the past decade, and there’s a good reason for this—cost.

By default, Frame Relay is classified as a non-broadcast multi-access (NBMA) network, meaning it doesn’t send any broadcasts like RIP updates across the network.

powered by DJ 11

Page 12: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Explaining Frame Relay Technology

Frame Relay is a packet-switched technology. You won’t be using the encapsulation hdlc or encapsulation ppp command to configure it.

Frame Relay doesn’t work like a point-to-point leased line.

Before Frame Relaypowered by DJ 12

Page 13: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

After Frame Relay

powered by DJ 13

Page 14: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Committed Information Rate (CIR)

CIR: The maximum bandwidth of data guaranteed to be delivered. In reality, it’s the average amount that the service provider will allow you to transmit.

Here’s an example: Let’s say that you buy an access rate of T1 (1.544Mbps) and a CIR of 256Kbps. By doing this, the first 256Kbps of traffic you send is guaranteed to be delivered. Anything beyond that is called a “burst”— a transmission that exceeds your guaranteed 256Kbps rate, and can be any amount up to the T1 access rate (if that amount is in your contract). If your combined committed burst (the basis for your CIR) and excess burst sizes, known as the MBR or maximum burst rate

powered by DJ 14

Page 15: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Virtual Circuits

Permanent virtual circuits (PVCs) are by far the most common type in use today. What “permanent” means here is that the telco creates the mappings inside their gear and as long as you pay the bill, they’ll remain in place.

Switched virtual circuits (SVCs) are more like a phone call. The virtual circuit is established when data needs to be transmitted, then it’s taken down when the data transfer is complete.

powered by DJ 15

Page 16: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Data Link Connection Identifiers (DLCIs) Frame Relay PVCs are identified to DTE end devices by Data Link

Connection Identifiers (DLCIs). A Frame Relay service provider typically assigns DLCI values, which are used on Frame Relay interfaces to distinguish between different virtual circuits. Because many virtual circuits can be terminated on one multipoint Frame Relay interface

DLCI on a local computerpowered by DJ 16

Page 17: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti.. RouterA(config-if)#frame-relay interface-dlci ?

<16-1007> Define a DLCI as part of the current

RouterA(config-if)#frame-relay interface-dlci 16

powered by DJ 17

Page 18: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Local Management Interface (LMI) Local Management Interface (LMI) is a signaling standard used

between your router and the first Frame Relay switch it’s connected to. It allows for passing information about the operation and status of the virtual circuit between the provider’s network and the DTE (your router).

RouterA(config-if)#frame-relay lmi-type ?

cisco

ansi

q933a

powered by DJ 18

Page 19: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Frame Relay Implementation

RouterA#config t

RouterA(config)#int s0/0

RouterA(config-if)#encapsulation frame-relay

RouterA(config-if)#ip address 172.16.20.1 255.255.255.0

RouterA(config-if)#frame-relay lmi-type ansi

RouterA(config-if)#frame-relay interface-dlci 101

RouterA(config-if)#^Z

RouterA#

powered by DJ 19

Page 20: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Configuring PPP with Authentication Using SDM

Create New Connection Wizardpowered by DJ 20

Page 21: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

Serial WAN Configuration Wizardpowered by DJ 21

Page 22: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

Configure HDLCpowered by DJ 22

Page 23: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

IP Address Dialogue Boxpowered by DJ 23

Page 24: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

Authentication Dialogue Boxpowered by DJ 24

Page 25: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

Configuration Summarypowered by DJ 25

Page 26: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Configuring Frame Relay with SDM

Configuration Encapsulation Wizardpowered by DJ 26

Page 27: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

Configuring Static IPpowered by DJ 27

Page 28: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

Configure LMI & DLCIpowered by DJ 28

Page 29: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

Conti..

Configuration Summarypowered by DJ 29

Page 30: Troubleshooting WAN Implementation Issues Chapter 16 powered by DJ 1

THANK YOU

powered by DJ 30