Cisco 2621 Router for home use

Reed85Reed85 Registered Users Posts: 1 ■□□□□□□□□□
I'm trying to setup a home network using Cox cable ISP, Cisco 2621 Router, and Cisco 2950 Switch.

I'm pretty sure that I have all the settings correct but no internet...

I'm wondering if I have to set it up as DHCP on the interface going to the cable modem? If so is there any way to get IOS 12.2+ since 12.1 doesn't have this option. (I don't have a CISCO contract)

All workstations are pulling IP's and DNS

Here is a look at my show run

any help would be greatly appreciated


Router#sho run
Building configuration...


Current configuration : 671 bytes
!
version 12.1
no service single-slot-reload-enable
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
!
!
!
!
!
ip subnet-zero
!
ip dhcp pool CLIENT
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server 68.105.28.11 8.8.8.8
!
!
!
!
interface FastEthernet0/0
description WAN
ip address 68.224.150.131 255.255.255.0
ip nat outside
duplex auto
speed auto
!
interface FastEthernet0/1
description LAN
ip address 10.10.10.1 255.255.255.0
duplex auto
speed auto
!
ip classless
ip route 0.0.0.0 0.0.0.0 68.224.150.1
no ip http server
!
!
line con 0
line aux 0

Comments

  • CodeBloxCodeBlox Member Posts: 1,363 ■■■■□□□□□□
    I don't use a cisco product for a home router, but i do know that my DLINK gets a public IP address using DHCP. Are you certain that those public addresses are correct from the ISP? Also, where is the rest of your NAT configuration?? You only have the ip nat outside. I don't see the - most likely - overloaded NAT configured.

    Can you ping anything like google.com from the router??
    Currently reading: Network Warrior, Unix Network Programming by Richard Stevens
  • jibbajabbajibbajabba Member Posts: 4,317 ■■■■■■■■□□
    CodeBlox wrote: »
    most likely - overloaded NAT configured.

    Can you ping anything like google.com from the router??

    Looks like it .. in your case I think it would be
    ip nat inside source list 1 interface FastEthernet0/0 overload
    

    Plus an access list
    access-list 1 permit 10.10.10.0 0.0.0.255
    

    But I only got a Cisco 877 - no real experience with "proper" Cisco stuff ..
    My own knowledge base made public: http://open902.com :p
  • MAC_AddyMAC_Addy Member Posts: 1,740 ■■■■□□□□□□
    I think you need to add, ip default-network xx.xx.xx.xx

    Also, with mine I had to change my link from my router to the modem to half-duplex, you might want to tweek that first.
    2017 Certification Goals:
    CCNP R/S
Sign In or Register to comment.