Hello, I'm new at Cisco and with the examples I have read here make my own conf
Can someone please check if I there is an error on my config
Thanks
en
conf t
host name CR1
enable secret XXXXXX
no ip domain-lookup
ip classless
ip dhcp pool LAN
network 192.168.0.0 255.255.255.0
default-router 192.168.0.1
dns-server 65.32.1.65 65.32.1.70
interface fastethernet0/0
description ** LAN **
ip address 192.168.0.1 255.255.255.0
ip nat inside
no shutdown
interface fastethernet0/1
description ** Internet **
ip address <ISP Static IP – Subnet Mask>
ip nat outside
no shutdown
ip nat inside source list 1 interface FastEthernet0/1 overload
ip route 0.0.0.0 0.0.0.0 <ISP Gateway>
access-list 1 permit 192.168.0.0 0.0.0.255
ip http server
ip http authentication local
ip http secure-server
ip http timeout-policy idle 60 life 86400 requests 10000
line vty 0 4
access-class 1 in
password Cisco
login
end
wr