Link to home
Start Free TrialLog in
Avatar of prophit4024
prophit4024Flag for United States of America

asked on

Cisco 831 problems

Im trying to setup a cisco 831 router and having nothing but problems. Currently right now its up and pingable from the outside world but i cannot access anything behind it. I have a server thats doing some webhosting and email but i cannot access them. Below is my config,

interface Ethernet0
 ip address 192.168.100.6 255.255.255.0
 ip nat inside
 hold-queue 100 out
!
interface Ethernet1
 ip address 173.8.229.169 255.255.255.252
 ip nat outside
!
ip default-gateway 173.8.229.170
ip nat inside source list 1 interface Ethernet1 overload
ip nat inside source static tcp 192.168.100.11 3389 interface Ethernet1 3389
ip nat inside source static tcp 192.168.100.11 25 interface Ethernet1 25
ip nat inside source static tcp 192.168.100.11 21 interface Ethernet1 21
ip nat inside source static tcp 192.168.100.11 60021 interface Ethernet1 60021
ip nat inside source static tcp 192.168.100.11 60025 interface Ethernet1 60025
ip nat inside source static tcp 192.168.100.11 60027 interface Ethernet1 60027
ip nat inside source static tcp 192.168.100.11 80 interface Ethernet1 80
ip classless
ip route 0.0.0.0 0.0.0.0 173.8.229.170
no ip http server
no ip http secure-server
!
access-list 1 permit 10.0.1.0 0.0.0.255
access-list 1 permit 192.168.100.0 0.0.0.255
!
line con 0
 no modem enable
 transport preferred all
 transport output all
line aux 0
 transport preferred all
 transport output all
line vty 0 4
 exec-timeout 120 0
 login local
 length 0
 transport preferred all
 transport input all
 transport output all
!
scheduler max-task-time 5000
!
end

From what i can see this should work but its not. Any help is greatly appricated. Thanks!!!

Avatar of bkepford
bkepford
Flag of United States of America image

Everything looks ok although I have seen people use the extendable keyword after there NAT statements and that tends to help
ip nat inside source static tcp 192.168.100.11 80 interface Ethernet1 80 extendable
Make sure that 192.168.100.11 has its default gateway pointed to 192.168.100.6 and that the personal firewall allows the correct ports.
 


ASKER CERTIFIED SOLUTION
Avatar of prophit4024
prophit4024
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial