Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Cisco > Internet to a 2611 through a Linksys WRT54G

Reply
Thread Tools

Internet to a 2611 through a Linksys WRT54G

 
 
tony.dixson@gmail.com
Guest
Posts: n/a
 
      09-14-2006
Hello I am trying to configure a Cisco 2611 router to connect to the
internet using a Linksys WRT54G as a border router. The reason I would
like to keep the linksys router on the outside of the Cisco router is
to prevent wireless clients from accessing my internal network but
allow them access to the internet. When I use the Config posted below
I am able to ping both interfaces on the 2611, and both interfaces on
the Linksys router out to the external interface but I am not able to
get out to the internet. I am some what new to Cisco routers so any
help with the Config would be much appreciated.

The internal network IP is 192.168.x
The network in between the Cisco router and Linksys router is 10.2.3.x
with the internal interface on the Linksys router being 10.2.3.1 and
the external interface on the Cisco router being 10.2.3.5
The internet connection has a DHCP assigned address

Using 896 out of 29688 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log daletime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
ip cef
!
!
!
ip audit po max-events 100
!
!
interface Ethernet0/0
description WAN
ip address 10.2.3.5 255.255.255.0
ip nat outside
full-duplex
!
interface Ethernet0/1
description LAN
ip address 192.168.1.1 255.255.255.0
ip nat inside
full-duplex
!
ip nat pool crossbones 10.2.3.1 10.2.3.254 netmask 255.255.255.0
ip nat inside source list 7 pool crossbones overload
ip http server
no ip http secure-server
ip classless
ip route 0.0.0.0 0.0.0.0 Ethernet0/0
!
!
access-list 7 permit 192.168.1.0 0.0.0.255
access-list 7 permit 10.0.0.0 0.255.255.255
dialer-list 1 protocol ip permit
!
!

line con 0
line aux 0
line vty 0 4
login
!
!
end

 
Reply With Quote
 
 
 
 
James
Guest
Posts: n/a
 
      09-15-2006
Do you have a route to the inside (192.168.1.0 255.255.255.0) network
on the Linksys?

James

wrote:
> Hello I am trying to configure a Cisco 2611 router to connect to the
> internet using a Linksys WRT54G as a border router. The reason I would
> like to keep the linksys router on the outside of the Cisco router is
> to prevent wireless clients from accessing my internal network but
> allow them access to the internet. When I use the Config posted below
> I am able to ping both interfaces on the 2611, and both interfaces on
> the Linksys router out to the external interface but I am not able to
> get out to the internet. I am some what new to Cisco routers so any
> help with the Config would be much appreciated.
>
> The internal network IP is 192.168.x
> The network in between the Cisco router and Linksys router is 10.2.3.x
> with the internal interface on the Linksys router being 10.2.3.1 and
> the external interface on the Cisco router being 10.2.3.5
> The internet connection has a DHCP assigned address
>
> Using 896 out of 29688 bytes
> !
> version 12.3
> service timestamps debug datetime msec
> service timestamps log daletime msec
> no service password-encryption
> !
> hostname Router
> !
> boot-start-marker
> boot-end-marker
> !
> !
> no aaa new-model
> ip subnet-zero
> ip cef
> !
> !
> !
> ip audit po max-events 100
> !
> !
> interface Ethernet0/0
> description WAN
> ip address 10.2.3.5 255.255.255.0
> ip nat outside
> full-duplex
> !
> interface Ethernet0/1
> description LAN
> ip address 192.168.1.1 255.255.255.0
> ip nat inside
> full-duplex
> !
> ip nat pool crossbones 10.2.3.1 10.2.3.254 netmask 255.255.255.0
> ip nat inside source list 7 pool crossbones overload
> ip http server
> no ip http secure-server
> ip classless
> ip route 0.0.0.0 0.0.0.0 Ethernet0/0
> !
> !
> access-list 7 permit 192.168.1.0 0.0.0.255
> access-list 7 permit 10.0.0.0 0.255.255.255
> dialer-list 1 protocol ip permit
> !
> !
>
> line con 0
> line aux 0
> line vty 0 4
> login
> !
> !
> end


 
Reply With Quote
 
 
 
 
James
Guest
Posts: n/a
 
      09-15-2006
Sorry ignore that you are NATing on the 2600.

What happens if you change the default route on the 2600 to:-

ip route 0.0.0.0 0.0.0.0 10.2.3.1

wrote:
> Hello I am trying to configure a Cisco 2611 router to connect to the
> internet using a Linksys WRT54G as a border router. The reason I would
> like to keep the linksys router on the outside of the Cisco router is
> to prevent wireless clients from accessing my internal network but
> allow them access to the internet. When I use the Config posted below
> I am able to ping both interfaces on the 2611, and both interfaces on
> the Linksys router out to the external interface but I am not able to
> get out to the internet. I am some what new to Cisco routers so any
> help with the Config would be much appreciated.
>
> The internal network IP is 192.168.x
> The network in between the Cisco router and Linksys router is 10.2.3.x
> with the internal interface on the Linksys router being 10.2.3.1 and
> the external interface on the Cisco router being 10.2.3.5
> The internet connection has a DHCP assigned address
>
> Using 896 out of 29688 bytes
> !
> version 12.3
> service timestamps debug datetime msec
> service timestamps log daletime msec
> no service password-encryption
> !
> hostname Router
> !
> boot-start-marker
> boot-end-marker
> !
> !
> no aaa new-model
> ip subnet-zero
> ip cef
> !
> !
> !
> ip audit po max-events 100
> !
> !
> interface Ethernet0/0
> description WAN
> ip address 10.2.3.5 255.255.255.0
> ip nat outside
> full-duplex
> !
> interface Ethernet0/1
> description LAN
> ip address 192.168.1.1 255.255.255.0
> ip nat inside
> full-duplex
> !
> ip nat pool crossbones 10.2.3.1 10.2.3.254 netmask 255.255.255.0
> ip nat inside source list 7 pool crossbones overload
> ip http server
> no ip http secure-server
> ip classless
> ip route 0.0.0.0 0.0.0.0 Ethernet0/0
> !
> !
> access-list 7 permit 192.168.1.0 0.0.0.255
> access-list 7 permit 10.0.0.0 0.255.255.255
> dialer-list 1 protocol ip permit
> !
> !
>
> line con 0
> line aux 0
> line vty 0 4
> login
> !
> !
> end


 
Reply With Quote
 
VeeDub
Guest
Posts: n/a
 
      09-15-2006
Yes, I would agree with James that you first should look at the default
route and use a next hop as opposed to an interface (e0/0). Interface
in my experience should only be used on point-to-point links not
multiaccess links like what you have in this case (ethernet). In
addition to this, do you need to have an address pool for your NATing
if you are overloading? Could you not just use the "interface" keyword
so that all devices behind the 2600 at NATed to the IP of the external
2600 interface. Could test this by putting a computer on the network
between th 2600 and Linksys and set up a web server on it. See if you
can browse this serve then atleast. This will test your NATing, and
client default gateways etc are correct.




James wrote:
> Sorry ignore that you are NATing on the 2600.
>
> What happens if you change the default route on the 2600 to:-
>
> ip route 0.0.0.0 0.0.0.0 10.2.3.1
>
> wrote:
> > Hello I am trying to configure a Cisco 2611 router to connect to the
> > internet using a Linksys WRT54G as a border router. The reason I would
> > like to keep the linksys router on the outside of the Cisco router is
> > to prevent wireless clients from accessing my internal network but
> > allow them access to the internet. When I use the Config posted below
> > I am able to ping both interfaces on the 2611, and both interfaces on
> > the Linksys router out to the external interface but I am not able to
> > get out to the internet. I am some what new to Cisco routers so any
> > help with the Config would be much appreciated.
> >
> > The internal network IP is 192.168.x
> > The network in between the Cisco router and Linksys router is 10.2.3.x
> > with the internal interface on the Linksys router being 10.2.3.1 and
> > the external interface on the Cisco router being 10.2.3.5
> > The internet connection has a DHCP assigned address
> >
> > Using 896 out of 29688 bytes
> > !
> > version 12.3
> > service timestamps debug datetime msec
> > service timestamps log daletime msec
> > no service password-encryption
> > !
> > hostname Router
> > !
> > boot-start-marker
> > boot-end-marker
> > !
> > !
> > no aaa new-model
> > ip subnet-zero
> > ip cef
> > !
> > !
> > !
> > ip audit po max-events 100
> > !
> > !
> > interface Ethernet0/0
> > description WAN
> > ip address 10.2.3.5 255.255.255.0
> > ip nat outside
> > full-duplex
> > !
> > interface Ethernet0/1
> > description LAN
> > ip address 192.168.1.1 255.255.255.0
> > ip nat inside
> > full-duplex
> > !
> > ip nat pool crossbones 10.2.3.1 10.2.3.254 netmask 255.255.255.0
> > ip nat inside source list 7 pool crossbones overload
> > ip http server
> > no ip http secure-server
> > ip classless
> > ip route 0.0.0.0 0.0.0.0 Ethernet0/0
> > !
> > !
> > access-list 7 permit 192.168.1.0 0.0.0.255
> > access-list 7 permit 10.0.0.0 0.255.255.255
> > dialer-list 1 protocol ip permit
> > !
> > !
> >
> > line con 0
> > line aux 0
> > line vty 0 4
> > login
> > !
> > !
> > end


 
Reply With Quote
 
Merv
Guest
Posts: n/a
 
      09-15-2006
what are you NATing on the 2600 ?

 
Reply With Quote
 
tony.dixson@gmail.com
Guest
Posts: n/a
 
      09-15-2006

Merv wrote:
> what are you NATing on the 2600 ?

I have several workstations behind the 2600, I also have a web server
that I will be using for personal use, but would like to get to it from
the internet as well as RDP on that server. My plan is also to use NAT
and access lists to allow only my wifes and my laptop wireless access
back through the 2600 to access our internal resources, but I would
like all other wireless clients to only have access to the internet;
however for now if I can just get internet up I would be happy. I am
able to access the internet with my wireless clients who connect
directly to the Linksys. I can also get to the web page that is served
by the linksys router for configuration from behind the 2600. I will
try changing the default route tonigt to see if that helps. I have
several docs for setting up a 2600 to connect to the internet through a
cable modem, all of them differ a bit but none of them have a NAT pool
configured. Thanks for giving me some idea's on this.

 
Reply With Quote
 
Merv
Guest
Posts: n/a
 
      09-16-2006
AFAIK the Linksys WRT54G is capable of perform dynamic routing ( needs
to be enabled) so I would try that out.

It undoubleted use RIP

so config RIP routing on the 2611
config t
router rip
network 10.0.0.0
end

wri mem


Then disable NAT on 2611 and see if WRT54G will perform NAT based on
dynamically learned networks ie your LAN behind teh 2611. If so then
you will not need to configure NAT on 2611 which would result in double
NATting

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Arris Touchstone Modem and Linksys WRT54G - No Internet Over Network kb1jec@gmail.com Wireless Networking 3 12-16-2007 04:47 AM
Can a Linksys WRT54G Router be used as access point with no internet availablilty? reply@this.newsgroup.com Wireless Networking 7 02-20-2005 11:45 PM
LinkSys WPC54G Stopped getting DHCP address from WRT54G after XP SP2 update Marcel Bernards Wireless Networking 4 09-11-2004 08:25 PM
My Wit's End with Wireless (Gateway M1300 Tablet PC and Linksys WRT54G) David Lipetz Wireless Networking 20 09-07-2004 06:00 PM
Gateway M1300 TabletPC & Linksys WRT54G: WLAN Connection Drops David Lipetz Wireless Networking 2 08-26-2004 02:22 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57