1720 won't boot and question about simulating WAN using T1 WICs

wweboywweboy Member Posts: 287 ■■■□□□□□□□
Hey everyone,

I was given some equipment from work to help with labbing. I was able to flash the proper .bin file to two of the three routers. I did the final router and I flashed it and it all seemed to go good but I can't get to the "Press RETURN to get started!" menu

program load complete, entry point: 0x80008000, size: 0x542624
Self decompressing the image : ################################################################################################### [OK]


Smart Init is disabled. IOMEM set to: 25



PMem allocated: 25165824 bytes; IOMem allocated: 8388608 bytes

Restricted Rights Legend

Use, duplication, or disclosure by the Government is
subject to restrictions as set forth in subparagraph
(c) of the Commercial Computer Software - Restricted
Rights clause at FAR sec. 52.227-19 and subparagraph
(c) (1) (ii) of the Rights in Technical Data and Computer
Software clause at DFARS sec. 252.227-7013.

cisco Systems, Inc.
170 West Tasman Drive
San Jose, California 95134-1706



Cisco Internetwork Operating System Software
IOS (tm) C1700 Software (C1700-Y-M), Version 12.3(1a), RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2003 by cisco Systems, Inc.
Compiled Fri 06-Jun-03 20:01 by dchih
Image text-base: 0x80008120, data-base: 0x809DA464

cisco 1720 (MPC860T) processor (revision 0x601) with 24576K/8192K bytes of memory.
Processor board ID JAD06080D5F (1654629681), with hardware revision 0000
MPC860T processor: part number 0, mask 32
Bridging software.
X.25 software, Version 3.0.0.
1 FastEthernet/IEEE 802.3 interface(s)
2 Serial network interface(s)
WIC T1-DSU
32K bytes of non-volatile configuration memory.
8192K bytes of processor board System flash (Read/Write)

no service single-slot-reload-enable
^
% Invalid input detected at '^' marker.

*Mar 1 00:00:06.447: SERVICE_MODULE(Serial0): self test finished: Passed
*Mar 1 00:00:08.579: SERVICE_MODULE(Serial1): self test finished: Passed
*Mar 1 00:00:11.735: %LINK-3-UPDOWN: Interface FastEthernet0, changed state to up
*Mar 1 00:00:11.735: %LINK-3-UPDOWN: Interface Serial0, changed state to down
*Mar 1 00:00:11.739: %LINK-3-UPDOWN: Interface Serial1, changed state to down
00:00:12: %SYS-5-CONFIG_I: Configured from memory by console
00:00:12: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0, changed state to up
00:00:12: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down
00:00:12: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down
00:00:14: %LINK-5-CHANGED: Interface Serial0, changed state to administratively down
00:00:14: %LINK-5-CHANGED: Interface Serial1, changed state to administratively down
00:00:15: %SYS-5-RESTART: System restarted --
Cisco Internetwork Operating System Software
IOS (tm) C1700 Software (C1700-Y-M), Version 12.3(1a), RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2003 by cisco Systems, Inc.
Compiled Fri 06-Jun-03 20:01 by dchih
00:00:15: %SNMP-5-COLDSTART: SNMP agent on host R1 is undergoing a cold start
00:00:15: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0, changed state to down

Hitting enter does nothing I can get into ROMMON but confused as heck as why I can't get past this point. Also all 3 routers have 1 or more T1 WICs is there anyway to use them rather then purchasing some serial WICs and buying hte cables to simulate wan connections?

Thanks everyone for your assistance. Also I hope this isn't posted in the wrong section. If so please move.

Comments

  • theodoxatheodoxa Member Posts: 1,340 ■■■■□□□□□□
    My first thought was that maybe 32 MB of DRAM was too little, but Cisco's Feature Navigator says 32/8 for your IOS, so I don't know. But, as for the T1 WICs, you can absolutely use them for creating WANs. You would connect them together with a T1 Crossover Cable. You can either buy one on eBay (They're cheap compared to Serial Cables) or make your own. It's just like a regular crossover cable except you reverse the Orange and Blue pairs (1,2 and 4,5) instead of Orange and Green (1,2 and 3,6). You can google for a pinout diagram.

    Configuring is relatively easy:

    R1(config)#int s0/0/0
    R1(config-if)#ip address 10.0.0.1 255.255.255.252
    R1(config-if)#service-module t1 timeslots 1-24 (1-24 = Full T1/1.544 Mbps; You could use less timeslots for a Fractional T1/64 Kbps and up)
    R1(config-if)#service-module t1 clock source {line | internal} (line = DTE and internal = DCE)
    R1(config-if)#no shutdown

    You can also set the encapsulation to PPP, Configure Frame Relay, anything you would normally do for Serial.



    The two longer cables from the 2821 to 2 x 1760s are T1 Crossovers (that I made myself) from a WIC-1DSU-T1 V2 (2821) to a WIC-1DSU-T1 (1760). They function just as if I had used a back-to-back serial cable between two WIC-1Ts.
    R&S: CCENT CCNA CCNP CCIE [ ]
    Security: CCNA [ ]
    Virtualization: VCA-DCV [ ]
  • theodoxatheodoxa Member Posts: 1,340 ■■■■□□□□□□
    You could try reinstalling the old IOS from ROMMON.

    ROMMON 1>IP_ADDRESS=192.168.1.201
    ROMMON 2>IP_SUBNET_MASK=255.255.255.0
    ROMMON 3>IP_DEFAULT_GATEWAY=192.168.1.1
    ROMMON 4>TFTP_SERVER=192.168.1.5
    ROMMON 5>TFTP_FILE=c1700-y-mz.123-1.bin
    ROMMON 6>tftpdnld

    Obviously, you would substitute an IP Address, Subnet Mask, TFTP Server, and Default Gateway on your network. You would also substitute the image you want to install for TFTP_FILE. Connect Fa0/0 to your home network before starting and make sure you have a TFTP Server running with a copy of the IOS image you want to install in the root directory.
    R&S: CCENT CCNA CCNP CCIE [ ]
    Security: CCNA [ ]
    Virtualization: VCA-DCV [ ]
  • wweboywweboy Member Posts: 287 ■■■□□□□□□□
    Thanks I actually did what you asked and the print out is what happens after it tries to boot up. I'm going ot look into the T1 cross over cables that is awesome I won't need to purcahse much.

    Thank you again.
Sign In or Register to comment.