Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help on 2501 router

Status
Not open for further replies.

njang

Technical User
Feb 14, 2000
20
CA
hello I need help when i power up all my routers it gives me administrativly down commands how do i make it so they dont go down?<br>
I have already put in the <br>
<br>
router#no shutdown<br>
<br>
if anyone can help please reply to this messege<br>
<br>
Thanks <br>
Nathan<br>
<br>
<br>
ps here is the messege<br>
<br>
%LINEPROTO-5-UPDOWN: Line protocol on Interface Ethernet0, changed state to down<br>
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down<br>
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down<br>
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up<br>
%LINK-3-UPDOWN: Interface Serial0, changed state to down<br>
%LINK-3-UPDOWN: Interface Serial1, changed state to down<br>
%SYS-5-RESTART: System restarted --<br>
Cisco Internetwork Operating System Software<br>
IOS (tm) 3000 Software (IGS-D-L), Version 10.0(6), RELEASE SOFTWARE (fc1)<br>
Copyright (c) 1986-1994 by cisco Systems, Inc.<br>
Compiled Tue 25-Oct-94 19:22 by dougs<br>
%LINK-5-CHANGED: Interface Ethernet0, changed state to administratively down<br>
%LINK-5-CHANGED: Interface Serial0, changed state to administratively down<br>
%LINK-5-CHANGED: Interface Serial1, changed state to administratively down<br>
<br>
and than sh interface of e0 (note all the e0 s0 and s1 saye this state down thing)<br>
<br>
Router&gt;enable<br>
Router#sh in e0<br>
Ethernet0 is administratively down, line protocol is down<br>
Hardware is Lance, address is 0000.0c09.94d1 (bia 0000.0c09.94d1)<br>
MTU 1500 bytes, BW 10000 Kbit, DLY 1000 usec, rely 252/255, load 1/255<br>
Encapsulation ARPA, loopback not set, keepalive set (10 sec)<br>
ARP type: ARPA, ARP Timeout 4:00:00<br>
Last input never, output 0:00:43, output hang never<br>
Last clearing of &quot;show interface&quot; counters never<br>
Output queue 0/40, 0 drops; input queue 0/75, 0 drops<br>
Five minute input rate 0 bits/sec, 0 packets/sec<br>
Five minute output rate 0 bits/sec, 0 packets/sec<br>
0 packets input, 0 bytes, 0 no buffer<br>
Received 0 broadcasts, 0 runts, 0 giants<br>
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort<br>
0 input packets with dribble condition detected<br>
2 packets output, 195 bytes, 0 underruns<br>
2 output errors, 0 collisions, 3 interface resets, 0 restarts<br>
<br>
<br>
<br>

 
When you are entering the &quot;no shutdown&quot; command, are you doing it from Priv Exec mode &quot;Router#&quot; or from the Interface Config Mode &quot;Router(config-int)#&quot;<br>
<br>
You need to be in the latter mode (conf t, int e0 will get you there) you have to start them up individually.<br>
<br>
The reason I ask that is because of the way you said you entered &quot;Router# no shutdown&quot; says to me you might be trying to do it from Priv Exec rather than Interface Config.<br>
<br>
Now, if you are doing it for each router in the correct location and it's still coming up as admin down, are you saving the running-config to startup-config? after you No shutdown?<br>
<br>
Here is what you should be doing:<br>
<br>
Router&gt;enable<br>
Router#conf t<br>
Router(config)#int e0<br>
Router(config-int)#no shutdown<br>
Router(config-int)#exit<br>
Router(config)#int s0<br>
Router(config-int)#no shutdown<br>
Router(config-int)#exit<br>
Router(config)#int s1<br>
Router(config-int)#no shutdown<br>
Router(config-int)#&lt;Ctrl-Z&gt;<br>
Router#copy run start<br>
<br>
Hope this helps,<br>
Paul Kincaid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top