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

How to set up a 2610 or 2620 to replace a standard home router?

Status
Not open for further replies.

Mizugori

Programmer
May 21, 2007
56
0
0
US
I recently bought two 2600 routers (a 2610 and a 2620; the 2620 has two ethernet ports). Each has a t1 card installed. I also bought a 2900xl catalyst switch.

How could I set this up almost like a small business type office?

can i do:

modem --------> 2620 ethernet port 1

any port on switch --------> 2620 ethernet port 2

? then how do i configure the router? i changed the password when i got it but other than that haven't configured it. also, this means no firewall right? (whereas most home routers have a rudimentary one built in) could i pair it with a cisco pix 501?

thanks!!
 
yes that is possible. you would have to config a fast eth port for static or dhcp address, add in some routes. post a scrubbed config of the router
 
A few of them would be like this:
modem -> 2620 -> Pix -> 2900 -> 2610
modem -> Pix -> 2620 -> 2900 -> 2610
modem -> 2620 (with IOS firewall) -> 2900 -> 2610

Are you using DSL or Cable??

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
cable, what is the advantage to using both routers?
 
well...what do routers do? they route traffic and/or segment networks. so if you have more than one subnet at home, like 192.168.1.0 and 172.16.5.1 and you need those two networks to communicate, a router comes in handy. really depends on what your goal is.
 
what is the advantage to using both routers?
to kind of add to what north said, i assumed that since you purchased two of them that you'd want to use both of them. if you don't want to use both of them then don't, it's up to you.

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Are you from MO?

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Is who from MO?

I bought 2 because you need two to do a lot of the ccna practice labs/activities.

I'm sorry I wasn't clear I just meant, on a small home network, would there realistically be any advantage
 
with one subnet like 192.168.100.1...NO there is not advantage
 
There are disadvantages, such as throughput slowdowns, etc.

Missouri---are YOU from Missouri, Mizugori> The handle looks like maybe you could be. I'm in St. Louis, which is why I ask.

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Oh, no, it's a Japanese word haha. long story.
 
I'll bet...lol

Been there, done that...

chim chim nome nome...lol

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
anyone willing to step in with some config help? here is the current status of the 2620:

Router>show version
Cisco Internetwork Operating System Software
IOS (tm) C2600 Software (C2600-I-M), Version 12.3(9), RELEASE SOFTWARE (fc2)
Copyright (c) 1986-2004 by cisco Systems, Inc.
Compiled Fri 14-May-04 14:37 by dchih
Image text-base: 0x80008098, data-base: 0x80CC08C4

ROM: System Bootstrap, Version 11.3(2)XA4, RELEASE SOFTWARE (fc1)

Router uptime is 6 minutes
System returned to ROM by power-on
System image file is "flash:/c2600-i-mz.123-9.bin"

cisco 2621 (MPC860) processor (revision 0x102) with 61440K/4096K bytes of memory
.
Processor board ID JAB040704TL (3368571963)
M860 processor: part number 0, mask 49
Bridging software.
X.25 software, Version 3.0.0.
2 FastEthernet/IEEE 802.3 interface(s)
1 Serial network interface(s)
32K bytes of non-volatile configuration memory.
8192K bytes of processor board System flash (Read/Write)

Configuration register is 0x2142
 
First off, change the config register to 0x2102. Second, how exactly are you laying things out? You will likely need IP Plus, which I have...that is the feature set necessary (IOS) for what you want to do.

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
ok, here is the show run, can anyone help me configure it as though I were setting up my home as a small office?

thanks a lot for your time and help!!

Current configuration : 524 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
ip cef
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0
no ip address
shutdown
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
no ip http server
ip classless
!
!
!
line con 0
line aux 0
line vty 0 4
login
!
!
end
 
can anyone tell me what the literal commands are to change settings regarding the interfaces? ie how do you set an ip address on the fast ethernet 0/0 interface?

how do i "Set the internal port (e0/0) with a static IP address in the range of the internal network (in this example 192.168.1.0/24), and assign it as the 'inside' NAT interface:"

thanks!
 
router>en
router#conf t
router(config)#hostname r1
r1(config)#int fa0/0
r1(config-if)#ip add 192.168.1.1 255.255.255.0
r1(config-if)#no shut
r1(config-if)#exit
r1(config)#line con 0
r1(config-line)#logg sync
r1(config-line)#login local
r1(config-line)#exit
r1(config)#line vty 0 4
r1(config-line)#login local
r1(config-line)#exit
r1(config)#username xxx priv 15 password yyy
********MAKE UP YOUR OWN USERNAME AND PASSWORD************

Now are you wanting the router to NAT? Also, get 16MB flash for it...I may (actually, do) kknow someone willing to share (moi) an IOS that will let you do a VPN, ssh into it, firewall, IDS, IPS...

/


tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
thanks a lot, can you please email me about that? mizugori AT gmail DOT com
 
You would need to upgrade the router's flash to 16MB...

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top