09-11-2011 04:41 PM - edited 03-04-2019 01:34 PM
I have three different LANS that I want to be to accessable to each other. Each network has its own router and DHCP pool. Also I have my internet connection that I want pushed out to the 3 LANS. I believe I have my 3660 somewhat configured right, I am just having trouble with the routing config part. So far, this is what I have for my config on the 3660:
hostname Cisco 3660
no ip domain-lookup
interface FastEthernet0/0 ------>Cable Modem
ip address dhcp
ip nat outside
duplex auto
speed 100
interface FastEthernet0/1 ---->Router 1 w/DHCP
ip address 192.168.1.254
ip nat outside
duplex auto
speed auto
interface Ethernet1/0 -----> Router 2 w/DHCP
ip address 192.168.2.254
ip nat ourside
duplex auto
speed auto
interface Ethernet1/1 ------> Router 3 w/DHCP
ip address 192.168.3.254
ip nat ouside
duplex autp
speed auto
09-11-2011 06:04 PM
Here is a diagram of what I am wanting to do.
09-11-2011 07:04 PM
Just have the default gateway on every single device to point to .254 and they should be able to communicate with each other.
The internet can be handled at the 3600 as well and you simply have to add those subnets into the NAT pool list/ACL.
09-11-2011 07:16 PM
Awesome, thanks. One last question, can you provide an example of how add the .254 to the NAT pool list ACL
09-12-2011 07:53 AM
access-list 1 permit 192.168.2.0 0.0.0.255
access-list 1 permit 192.168.3.0 0.0.0.255
access-list 1 permit 192.168.1.0 0.0.0.255
!
ip nat inside source list 1 interface f0/0 overload
!
int e1/1
ip nat in
!
int e1/0
ip nat in
!
int f0/1
ip nat in
!
int f0/0
ip nat out
--
Please remember to rate helpful posts.
Regards,
Edison
09-12-2011 09:14 AM
Awesome thanks, so on each router the default gateway for the WAN port needs to point to 192.168.1.254, 192.168.2.254, 192.168.3.254 for each router, correct?
09-12-2011 09:40 AM
Per your diagram, the Linksys nor the D-link aren't doing routing - just the 3600.
Make sure the hosts are pointing to their respective .254
09-12-2011 09:47 AM
Each router is routing and providing the DHCP pool for each network. Is this still possible to combine all three LANs at the 3600...
I just tried to config the Linksys Router to point to the 3660, but had problems with the internet IP address. The only thing that took was 192.168.1.1 255.255.255.0 default GW 192.168.3.254 That doesn't seem right, since 192.168.1.1 is used in another network.
Hopefully I am not confusing. Thanks for the help
09-12-2011 10:13 AM
You can configure DHCP on the 3600 router and just use the other devices as switches.
Here is a documentation on DHCP w/ IOS
http://www.cisco.com/en/US/docs/ios/12_0t/12_0t1/feature/guide/Easyip2.html
BTW, I re-read your diagram posting and you said 'you wanted to do' - my bad - I thought it was your current config.
09-12-2011 10:17 AM
I am wanting to keep the routers in place, and not have the 3660 do DHCP, unless it just to the routers and not to all the devices. Is there a way to do what I have in the diagram? I know it seems, odd, but this is what I would like to do, if at all possible. Thanks again.
09-12-2011 02:57 PM
If you want to keep the routers in place, then you can't accomplish what you've shown in the diagram.
First instance, you can't have the Linksys router having an interface on 192.168.2.x facing your clients and another interface on the same subnet 192.168.2.x facing the 3600.
You have to place the 3600 on the same subnet as the clients and the linksys won't route in this case but bridge the packets.
You can have the linksys provide the IP address if you want but the default gateway must be .254 - not the Linksys itself. I'm not sure about the D-Link configuration caveats but the end result must be the gateway for all hosts must end up at the 3600 for this to work.
I'm not sure why you don't want to configure DHCP on the 3600, it's fairly easy.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide