Cisco CCNA Exam Tutorial: Directly Connected Serial Interfaces

To pass the CCNA exam, you've got to master quiteR1#show controller serial 1
a few services and routing protocols that may beHD unit 1, idb = 0x1DBFEC, driver structure at
new to you. Between RIP, IGRP, EIGRP, OSPF, and0x1E35D0buffer size 1524 HD unit 1, V.35 DTE cable
switching, there are hundreds of details you've got toI left off the 16 or so rows of information that
absorb! It's easy to spend all your time on thosecomes after this, but this is the information we need
topics and not pay proper attention to "easier"right now. If R1's got the DTE cable end, the other
technologies, and then all of a sudden on exam dayrouter should have the DCE end:
you can't quite remember the details of thoseR3#show controller serial 1
particular services.HD unit 1, idb = 0x1C44E8, driver structure at
One setup you've got to be more than familiar with0x1CBAC8buffer size 1524 HD unit 1, V.35 DCE cable
is directly connecting serial interfaces on CiscoWe know now that R3 needs to supply a clock rate
routers. This is also a valuable skill to have in yourto R1. There's a hint of a problem in just that little bit
home lab, since it allows you to add segments toof command output - do you see what it is? Let's
your network setup.run show interface serial1 to get more information.
A Cisco serial interface is operating as a DTE byR3#show int s1
default. The problem is that when you take a cableSerial1 is up, line protocol is down
and connect two routers directly by their serialThe line protocol is down because there is no
interfaces (with a DTE/DCE cable, that is!), they'reclockrate being supplied by R3. If there has been, we
both waiting for the other to send them a clock rate.would have seen that in the output of show
One of the interfaces must act as the DCE and thatcontrollers serial 1.
interface must send the clock rate.This is simple enough to fix, though! We'll use the
If you can see the DTE/DCE cable, you can tell bycommand clockrate 56000 on R3's serial1 interface,
looking which router has the DCE interface connectedand the line protocol will soon come up.
to it - the letters "DTE" or "DCE" will either beR3(config)#int s1
molded into the connector itself, or if it's an olderR3(config-if)#clockrate 56000
cable there should be a little piece of tape on the1w2d: %LINEPROTO-5-UPDOWN: Line protocol on
cable that tells you what the interface type is. ButInterface Serial1, changed state to up
what if you have no access to the cable, or thereThis is a simple concept, but there are a few details
are other cables all around it and you can't see whatyou must keep in mind! For a home lab configuration,
type it is?you'll need a DTE/DCE cable to make this work. If
Run the command "show controller serial x", with xyou cannot see the cable connectors, run show
representing the interface number the cable'scontrollers serial x to see if the router has the DTE
connected to. There will be quite a bit of outputor DCE end of the cable attached. On the interface
from this command, but the information you need iswith the DCE attached, use the clockrate command
right at the top:to bring the line protocol up. It's just that simple!