Basic network troubleshooting is a vital part of your Cisco CCENT and CCNA exam studies, and it's obviously an important part of what we do as network admins on a day-to-day basis. In today's free Cisco certification training tutorial, we'll take a look at the output of show interface serial under different circumstances, concentrating on the physical and logical state of the interface.
To be an effective troubleshooter, you have to know how things look when all is well, not just when something is broken! When an interface is functioning correctly, this is what we see at the top of the show interface output. I'll use Serial0 for all examples in this section.
Router1#show int serial0
Serial0 is up, line protocol is up
Of course, if the interface looked like that all the time, we wouldn't be troubleshooting, would we? :) Let's take a look at common show interface outputs that do indicate a problem, along with the solutions for these issues.
Router1#show int serial0
Serial0 is administratively down, line protocol is down This one's easy! administratively down means the interface is indeed shut down. Open the interface with no shutdown.
Router1(config)#int serial0
Router1(config-if)#no shutdown
Always give the line protocol a minute or so to come up after opening a serial interface.
Router1#show interface serial0
Serial0 is up, line protocol is up Success! Let's look at another potential readout:
Router1#show interface serial 0
Serial0 is down, line protocol is down The physical interface is again down, but not administratively down. This indicates a physical problem, either with the interface or the cable attached to it. Or not attached, as the case may be.
From years of experience, I can tell you that a cable that looks fully attached to a router may not be. If you see this particular output, check the cable and make sure it's connected. Even if it looks like it's not, give it a little push in anyway. (Don't push it through the other side of the router, that defeats the purpose of troubleshooting!)
A lot of router cabinets are crowded, and if a cable is nudged accidentally by an admin's elbow, that can be enough to bring the connection down. (Not that I've ever done that, you understand!)
After making sure the cable is plugged in....
Router1#
20:14:47: %LINK-3-UPDOWN: Interface Serial0, changed state to up
20:14:48: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up
... the link comes back up. Of course, we'll verify that before moving to the next example!
Router1#show int serial 0
Serial0 is up, line protocol is up
There's one more physical / line protocol combination we have to be ready to troubleshoot, and it's a common one:
Router1#show int serial 0
Serial0 is up, line protocol is down
Page 1 of 2 :: First | Last :: Prev | 1 2 | Next
|