think tank forum

technology » a little problem

Chiken's avatar
18 years ago
link
Chiken
Don't Let Your Walls Down
ok so we are trying to configure this cisco 806 router lucas sold to me for use in our house. we have enabled dhcp and are going to use pat. it assigns dhcp addresses to hosts but when a host tries to ping the e1 int(the one to the internet) we get destination unreachable but when we ping the e0(one to the switch) it pings fine. heres the output of a show run.

Current configuration : 785 bytes
!
version 12.2
no parser cache
no service single-slot-reload-enable
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname BrickYard
!
logging rate-limit console 10 except errors
!
ip subnet-zero
ip dhcp excluded-address 192.168.2.1
!
ip dhcp pool brickyard
network 192.168.2.0 255.255.255.0
!
no ip dhcp-client network-discovery
lcp max-session-starts 0
!
!
interface Ethernet0
ip address dhcp
ip nat inside
!
interface Ethernet1
ip address dhcp
ip nat outside
!
ip nat inside source list 1 interface Ethernet1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 69.146.68.1
ip http server
!
access-list 1 permit 192.168.2.0 0.0.0.255
!
line con 0
stopbits 1
line vty 0 4
login
!
if anyone has any ideas please let us know. cause im kinda stumped right now and we are in desperate need of gettin the internet up and runnin.
 
18 years ago
link
Trent
either that or if anyone had a known working config for an 806 that would be grand as well
 
18 years ago
link
dbrown
first thing i'd do is remove your inside dhcp and see if you can connect to anything. other than that your configs look alright.
what's a show interface look like?
 
18 years ago
link
dbrown
maybe i should be more specific here, remove the dhcp server.
Chiken's avatar
18 years ago
link
Chiken
Don't Let Your Walls Down
Now we got it to work, but the switch will give the hosts an IP address but they cant hit the internet, but they can ping ip addresses. So we are having some kind of DNS issues and the router only allows one DNS server and it has to be statically assigned. when my computer is plugged straight into the modem i get a connection specific DNS suffix and i was wondering if there is anyway of putting that address into the router.
 
18 years ago
link
dbrown
Router(config-dhcp)# dns-server address [address2 ... address8]
you can specify up to eight of them, just put it in after you specify the pool.
Chiken's avatar
18 years ago
link
Chiken
Don't Let Your Walls Down
ohhhhh ok sweet thanks dbrown.