13 - Implementing Pt to Pt WANS Flashcards

1
Q

What is CPE?

A

Customer Premise Equipment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does CSU/DSU stand for?

A

Channel Service Unit / Data Service Unit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does a CSU/DSU do?

A

Provides clocking on the line controlling the speed and timing that the router can send each bit over the line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the bit rate for a DS0?

A

64 Kbps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is another name for DS1?

A

T1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the bit rate for a T1?

A

1.544 Mbps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What multiples make up a Fractional T1?

A

Multiples of 64 Kbps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What multiples make up a Fractional T3?

A

Multiples of 1.536 Mbps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the bit rate for a T3?

A

44.736 Mbps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does DCE stand for?

A

Data Circuit-terminating Equipment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the DCE funtion do?

A

Controls the speed of the router’s serial interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does DTE stand for?

A

Data Terminal Equipment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does the DTE do?

A

DTE is the router that is controlled by the DCE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How is Cisco’s HDLC protocol different that ISO’s HDLC?

A

Cisco adds a Type field that allows the serial line to support multiple types of network layer packets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the 6 fields in a Cisco HDLC frame?

A
  • Flag
  • Address
  • Control
  • Type
  • Data
  • FCS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are 2 ways to enable HDLC encapsulation on an interface?

A
  • ‘no encapsulation’ cmd to return to default HDLC or
  • encapsulation HDLC
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What 2 ‘show’ commands that confirm a serial link has been successfully installed?

A
  • show controllers s0/0/0
  • show interfaces s0/0/0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What 5 things does PPP provide?

A
  • defines a header and trailer
  • supports both synchronous and asynchronous
  • Protocol Type field allowing multiple layer 3 protocols
  • Built-in authentication tools
  • control protocols for each higher-layer protocol riding over PPP
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

In PPP frame what does the Type field do?

A

Identifies which L3 protocol is in the frame

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

in PPP what are the 2 categories of Control Protocols?

A
  • Link Control Protocols (LCP)
  • Network Control Protocols (NCP)
21
Q

What are 3 examples of NCPs?

A
  • IPCP
  • IPv6CP
  • CDPCP
22
Q

What are 4 LCPs?

A
  • Looped Link Detection
  • Error Detection
  • Multilink Support
  • Authentication
23
Q

In PPP what are the 2 Authentication protocols?

24
Q

How does the PAP authentication process work?

A
  • The router wanting to be authenticated - R2 - starts the conversation
  • R2 tells R1 username and password in clear text
  • R1 Acknowledges auth successful
25
How does the CHAP process work?
* The router doing the authenticating - R1 - initiates * R1 sends challenge that includes a Random Number to R2 * R2 replies with a MD5 Hash created from the Random Number and the Password * R1 acknowledges auth successful
26
In PPP CHAP what does the Challenging router do if authentication fails?
Leaves interface in Up/Down state
27
What kind of Hash does PPP CHAP use?
MD5
28
What is the command to enable PPP on an interface?
encapsulation ppp
29
What show command verifies that PPP has been enabled?
* show interfaces s0/0/0 * will show encapsulation ppp * also LCP Open * also Open: IPCP, CDPCP
30
What configuration steps are needed on router1 to configure CHAP?
* encapsulation ppp * hostname router1 * username router2 password letmein * interface s0/0/0 * ppp authentication chap
31
What configuration steps are needed on router2 to configure CHAP?
* encapsulation ppp * hostname router2 * username router1 password letmein * interface s0/0/0 * ppp authentication chap
32
When configuring PPP CHAP which two parameters need to match?
* username on local router must match hostname on remote router * passwords must be the same
33
What show command confirms authentication succeeded?
* show ppp all * should show '+' for every protocol that succeeded
34
When configuring PPP PAP which parameters need to match?
* interface s0/0 * ppp pap sent-username r1 password test * * must match username r1 password test on remote router
35
What 'show' command will show if PAP authentication worked?
\* show ppp all \* should show '+' for every protocol that succeeded
36
What configuration steps are needed to configure PAP?
\* interface subcommands \* encapsulation ppp \* ppp authentication pap \* ppp pap sent-username r1 password test \* then on remote router username r1 password test
37
What command will tell a router to try CHAP first and if that doesn't succeed try PAP
\* ppp authentication chap pap
38
Which layer does MLPPP load balance at?
Layer 2
39
Which 2 'show' commands verify MLPPP is working?
\* show interfaces multilink 1 \* show ppp multilink
40
What does an interface state of down/down indicate?
a problem at layer 1
41
What does an interface state of up/down indicate?
a problem at layer 2
42
What does an interface state of up/up indicate?
layer 3 is working
43
What are some possible causes of interfaces in down/down state?
\* cable unplugged \* bad cable \* broken CSU \* problem at telco
44
What could be the problem when interfaces are up/down flapping on both ends?
Mismatched encapsulation commands
45
What could be the problem if one side is up/down and the other side is up/up?
Keepalives disabled on the up/up side
46
What could be the problem when interfaces are up/down on both ends but NO Flapping?
PAP or CHAP Authentication Failure
47
How often are keepalives sent to the remote router by default?
once every 10 seconds
48
What debug command will help diagnose a PPP Authentication Failure?
debug ppp authentication