Well I figured I would turn to good owe techexams.net for some ideals because I'm totally fresh out.
I am doing a contract for a small business and currently installing "cheep" cisco equipment per say to fit their budget so im using a cisco 2610 with a wic-1adsl, cisco 3524XL (non poe).
I am currently using the ios firewall on it, with access lists and the whole nine yards but none of this is the issue.
I have nat setup to overload to dialer1.
The issue is this guys laptop can visit ANY WEBSITE on the internet, while other computers in the business (XP and Vista) cannot visit every website per say. For example news.yahoo.com, fictionpress.com, cannot do streaming videos from news.yahoo.com. ebay.com is REALLY REALLY slow and often does not load. myspace will not load, facebook will not load (yeah social websites but this company is a photography company

) oh yeah and the CISCO website takes like 2 minutes to load one page...
The router is currently running c2600-ik9o3s3-mz.123-23.bin
I have disabled fw, totally removed all access lists, even tried enterprise basic, tried 12.4(17) ip base (yes it will run on a 2610 - little processor intensive but it works) and all ios's do the same thing with nat, the laptop can view any website but the rest of the machines are limited.
to top this one off, the lapto uses wireless which goes through a stinksys (laughs) basically setup as a bridge using wpa and radius authentication. At first i thought it was the wireless so then i tried a network card in the laptop and it still works fine... does not matter what interface, the laptop works 100%, no other machine does.
I have had 4 people look over my config and everyone of them said theirs no reason why it should be doing this.
Config is posted below. please note I've removed most identifiable info for security reasons.
!
version 12.3
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname IM_A_ROUTER
!
boot-start-marker
boot-end-marker
!
no logging on
!
aaa new-model
!
!
aaa authentication fail-message REMOVED
aaa authentication login default group radius local
aaa authentication ppp default if-needed group radius local
aaa authorization exec default group radius if-authenticated
aaa authorization network default group radius if-authenticated
aaa session-id common
ip subnet-zero
ip cef
!
!
no ip domain lookup
ip name-server 192.168.144.97
no ip dhcp conflict logging
!
ip inspect name FIREWALL tcp
ip inspect name FIREWALL udp timeout 15
ip inspect name FIREWALL ftp
ip inspect name FIREWALL h323
ip inspect name FIREWALL smtp
ip inspect name FIREWALL rcmd
ip inspect name FIREWALL cuseeme
ip inspect name FIREWALL tftp timeout 30
ip inspect name FIREWALL netshow
ip inspect name FIREWALL realaudio
ip inspect name FIREWALL rtsp
ip inspect name FIREWALL http
ip inspect name FIREWALL skinny
ip audit po max-events 100
ip dhcp-server 192.168.144.97
vpdn enable
!
vpdn-group 1
request-dialin
protocol pppoe
!
!
no file verify auto
!
!
interface ATM0/0
description ##### aDSL Physical Interface #####
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
pvc 8/35
encapsulation aal5snap
pppoe-client dial-pool-number 1
!
!
interface Ethernet0/0
description ##### Private Internal Interface #####
ip address 192.168.144.254 255.255.255.0
ip access-group 107 in
ip nat inside
ip inspect FIREWALL in
full-duplex
!
interface Dialer1
description ##### aDSL PPPoE Dialer #####
ip address negotiated
ip access-group 112 in
ip mtu 1492
ip nat outside
encapsulation ppp
dialer pool 1
no cdp enable
ppp authentication chap callin
ppp chap hostname username
ppp chap password ohnoyoudont
!
ip nat inside source list 1 interface Dialer1 overload
ip nat inside source static tcp 192.168.144.42 23 interface Dialer1 23
ip nat inside source static tcp 192.168.144.55 80 interface Dialer1 80
ip nat inside source static tcp 192.168.144.97 1723 interface Dialer1 1723
no ip http server
no ip http secure-server
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
!
!
access-list 1 permit any
access-list 72 permit 192.168.144.0 0.0.0.255
access-list 72 deny any
access-list 107 permit tcp 192.168.144.0 0.0.0.255 any
access-list 107 deny ip any any log
access-list 112 permit tcp any any eq www
access-list 112 permit tcp any any eq 1723
access-list 112 permit icmp any any echo-reply
access-list 112 deny ip any any log
cdp timer 90
!
radius-server host 192.168.144.97 auth-port 1645 acct-port 1646
radius-server key INSERTKEYHERE?
!
!
banner login YAY MY LOGIN BANNER
alias exec sir show ip route
alias exec siib show ip int brief
alias exec dsl sh dsl int atm 0/0
alias exec siis show ip inspect ses
!
line con 0
exec-timeout 0 0
line aux 0
line vty 0 4
access-class 72 in
exec-timeout 2 0
!
end
If you have any good ideals I'm open to suggestions. keep in mind, if i totally remove the firewall and the access-lists (except the nat source list) it still does this problem.