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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you programm a cisco 7206 for DS3 W/ BNC connectors? 1

Status
Not open for further replies.

jdasn

ISP
Joined
Dec 14, 2004
Messages
1
Location
US
Here is info for router:

The stup command recommended by Cisco is not matching what my screen says. I basically just need to know how to enter static routes and configure the serial cards and I have no idea where to start.

Thanks,

Cisco Internetwork Operating System Software
IOS (tm) 7200 Software (C7200-IS-M), Version 12.2(19a), RELEASE SOFTWARE (fc2)
Copyright (c) 1986-2003 by cisco Systems, Inc.
Compiled Tue 30-Sep-03 00:44 by pwade
Image text-base: 0x60008940, data-base: 0x61306000

ROM: System Bootstrap, Version 11.1(13)CA, EARLY DEPLOYMENT RELEASE SOFTWARE (fc
1)
BOOTLDR: 7200 Software (C7200-BOOT-M), Version 12.0(22)S, EARLY DEPLOYMENT RELEA
SE SOFTWARE (fc2)

 
First do a show int, that will list all of the interfaces that you have available for configuration.

Then you can type config t to get into configuration mode, from here select an interface with one of the names that you listed with the show int command

Like int serial0/0 or such, you'll see the names with show int. Once you've done that you're now configuring the interface. You can add an IP address or descriptions, other various commands. If you wants to see a list to get an idea just type ?.

From the config area you can also add static routes, the command looks like

ip route destinationnet subnet routeinterface

So let's say you know that 192.168.0.0 is available through int serial1/0 the command would be

ip route 192.168.0.0 255.255.255.0 serial1/0

or you could use the IP address of the serial interface, this works if the interfaces are unnumbered, if you have ip's attached to the interfaces you'll add the IP of the serial interface on the other side of the link as the route address, got it?

If you have any specific questions, just let us know. Could maybe help a little more, but that's the basics. You may also want to look at the cisco configmaker tool, it may support the router you're looking at and can help give a really solid config that you can trim up to do what you need.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top