Here is a diagram of my cisco home lab:
ISP = ISP cable modem in my house
Today I got NAT and ip routing configured so I could have internet access. The problem I am having is that the internet speed seems to have dropped significantly since I added the cisco router and switch to the loop. Websites take at least twice as long to load, if not three or four times longer. Any ideas why???
Here's my run-cfg for Router1:
Building configuration...
Current configuration : 1188 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname Router1
!
boot-start-marker
boot-end-marker
!
!----OMITTED----!
!
no aaa new-model
ip subnet-zero
ip cef
!
!
!----OMITTED----!
ip name-server 8.8.8.8
ip name-server 8.8.4.4
!
ip audit po max-events 100
!
!
interface FastEthernet0/0
ip address dhcp
ip nat outside
speed auto
full-duplex
no cdp enable
!
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.0
ip nat inside
duplex auto
speed auto
!
router rip
version 2
network 192.168.1.0
!
ip nat inside source list 1 interface FastEthernet0/0 overload
ip http server
no ip http secure-server
ip classless
ip route 0.0.0.0 0.0.0.0 FastEthernet0/0
!
!
access-list 1 permit 192.168.1.0 0.0.0.255
dialer-list 1 protocol ip permit
no cdp run
!
snmp-server community public RO
!
!
!
line con 0
exec-timeout 0 0
logging synchronous
line aux 0
line vty 0 4
exec-timeout 30 0
!----OMITTED----!
logging synchronous
login local
transport input ssh
!
!
end