| Recent
Articles And Top Web News |
Educators
Push Linux Switch In India
Microsoft received a swift punch to the gut from an Indian state government looking to lower education costs by encouraging its school system to switch to Linux-based computers.
Backup / Restoration of Files for Disaster Recovery
Planning a backup and restoration of files is the most important step to protect
data from accidental loss in the event of data deletion or a hard disk failure.
Debugging a Network Failure
As is happening in much of the U.S. right now, we are experiencing extreme heat
in New England, and of course that means high electrical loads from air conditioning,
and also means late afternoon thunderstorms with lightning.
EIGRP Stuck-In-Active Routes
Passing the BSCI exam and earning your CCNP is all about knowing the details,
and when it comes to EIGRP SIA routes, there are plenty of details to know.
Frame Relay End-To-End Keepalives
One of the first things you learned about Frame is that the LMI also serves as
a keepalive, or a heartbeat - and if three consecutive LMIs are missed, the line
protocol goes down.
Configuring And Troubleshooting VTP
Not only is your CCNA exam going to have questions on VLAN trunking protocol,
almost any network that has more than one VLAN is going to have VTP running.
10 ISIS Details You Must Know!
Earning your CCNP certification and passing the BSCI exam depends on knowing the
details of many Cisco technologies, ISIS chief among them.
|
|
08.31.06 Troubleshooting Direct Serial Connections
By
Chris Bryant
A prime topic of your CCNA and CCNP CIT exams will be connecting Cisco routers
directly via their Serial interfaces, and while the configuration is straightforward,
there are some vital details and show commands you must know in order to pass
the exams and configure this successfully in production and home lab networks.
Letīs take a look at a sample configuration.
Connecting Cisco routers directly via their Serial interfaces works really well once you get it running - and getting such a connection up and running is easy enough. You can use show controller serial x to find out which endpoint is acting as the DCE, and itīs the DCE that must be configured with the clockrate command.
R3#show controller serial 1
HD unit 1, idb = 0x11B4DC, driver structure at 0x121868
buffer size 1524 HD unit 1, V.35 DCE cable
R3(config)#int serial1
R3(config-if)#ip address 172.12.13.3 255.255.255.0
R3(config-if)#clockrate 56000
R3(config-if)#no shut
Failure to configure the clockrate has some interesting effects regarding the physical and logical state of the interfaces. Letīs remove the clockrate from R3 and see what happens.
R3(config)#int s1
R3(config-if)#no clockrate 56000
R3(config-if)#
18:02:19: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down
The line protocol doesnīt drop immediately, but it does drop. Letīs run show interface serial1 to compare the physical and logical interface states.
R3#show int serial1
Serial1 is up, line protocol is down
Physically, the interface is fine, so the physical interface is up. Itīs only the logical part of the interface - the line protocol - that is down. Itīs the same situation on R1.
R1#show inter serial1
Serial1 is up, line protocol is down
While a router misconfiguration is the most likely cause of a serial connection issue, thatīs not the only reason for clocking issues. Ciscoīs website documentation mentions CSU/DSU misconfiguration, out-of-spec cables, bad patch panel connections, and connecting too many cables together as other reasons for clocking problems. Still, the number one reason for clocking problems in my experience is simply forgetting to configure the clockrate command!
About the Author: Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of FREE CCNA and CCNP tutorials and daily exam questions, as well as The Ultimate CCNA and CCNP Study Packages.
|