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!

Cisco 3640 Internet Help! 2

Status
Not open for further replies.

WiseGuy35

Technical User
May 27, 2009
18
0
0
US
Hello all, once again I've managed to hit a road block and this is gonna be a pain to explain.

I just added a Cisco 3640 to my home lab and now I'm trying to get my lab on the internet for test purposes. But I seem to be having problems getting everything working properly. Hers the setup ..

DSL modem....3640 f0
3640 s0....cisco 2620 (this is providing the trunking for VLAN
2620 f0....Cisco 2924 switch----vlans

OK, so the dsl modem is proving DHCP to fo on the router, so i got that set up. s0 on the 3640 is going to s0 on the 2620 and i got the switch connected to the f0. THe fact that the internet is DHCP makes this a little more difficult

I need help config this thing with dns and nat or whatever. I have a windows server with DNS on one of the VLANS. the hosts can ping the server fine but since the server cant get to the internet to resolve dns, nothing is working although i can ping websites ONLY from the 3640.

3640 SHOW
version 12.1
no service single-slot-reload-enable
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname Cisco3640
!
logging rate-limit console 10 except errors
enable secret
!
ip subnet-zero
!
!
no ip finger
ip name-server 192.168.1.4
ip name-server 71.x.x.x
ip name-server 76.x.x.x
!
!
!
!
interface FastEthernet0/0
ip address dhcp
ip nat outside
duplex auto
speed auto
!
interface Serial0/0
ip address 10.1.1.1 255.255.255.0
ip nat inside
encapsulation ppp
service-module t1 clock source internal
service-module t1 timeslots 1-24
!
router rip
network 10.0.0.0
network 74.0.0.0
!
ip nat inside source list 7 interface FastEthernet0/0 overload
ip classless
no ip http server
!
access-list 7 permit 10.1.1.1
access-list 7 permit any
!
line con 0
transport input none
line aux 0
line vty 0 4
login
!
end
----------------------------------------------------------
Cisco3640#

2620 SHOW
version 12.1
no service single-slot-reload-enable
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Cisco2600
!
enable secret
enable password
!
!
!
!
!
ip subnet-zero
ip domain-name Home.local
ip name-server 192.168.1.4
!
!
!
!
!
gateway
!
!
interface FastEthernet0/0
ip address 192.168.1.2 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/0.2
encapsulation dot1Q 2
ip address 192.168.2.1 255.255.255.0
!
interface FastEthernet0/0.3
encapsulation dot1Q 3
ip address 192.168.3.1 255.255.255.0
!
interface FastEthernet0/0.10
encapsulation dot1Q 10
ip address 192.168.10.1 255.255.255.0
!
interface Serial0/0
ip address 10.1.1.2 255.255.255.0
encapsulation ppp
service-module t1 timeslots 1-24
!
router rip
version 2
network 10.0.0.0
network 192.168.1.0
network 192.168.2.0
network 192.168.3.0
network 192.168.10.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 10.1.1.1
ip http server
!
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
!
line con 0
line 33 48
line aux 0
line vty 0 4
password
login
!
ntp clock-period 17180634
ntp server 192.168.1.4
end

Cisco2600#

 
I don't see a default route on the 3640

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
if i do a show ip route on the 3640 it does show a gateway of last resort being the ip address it gets from dhcp on fo.....the problem is the ip address is dhcp so i have no way of assigning a default route right?
 
No, you can assign a default route even on a DHCP client router.

[the other] Bill
 
The modem is NATTing, so the router cannot have the nat config. Also, you need default routes. I would definitely NOT advertise your public NW in RIP!!! May as well put your data on an anonymous FTP server!

/

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!
 
Ummm If I attach a computer directly to the modem it will give the host the public dhcp address...Its just a old simple apeedstream dsl modem, no NAT involved. I took the public network off RIP, thank you!

I have a dafault route set on the 2620 to IP 10.1.1.1 and the 3640 is automatically setting a gateway of last resort to the public ip...but i did set it as a default route anyways. I found the main problem was on my dns server..the network card was set to the wrong gateway so it wasnt serving dns requests. Everything is working great now.

Once again thanks for all the help and your time
 
Ought give Burt and UncleRico some stars (thanks).

[the other] Bill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top