Ask the Cisco Kid! Your one stop for all the networking help you need.

24Jul/090

Basic Router Setup

 

Thank you for your Question.  So a basic setup to get you going and to get all 5 of your computers online you will need a DHCP and NAT. The nice thing is you will only need to configure the Router. I have created from your email what I think is the network you currently have.

CiscoKidNetwork-Ross

 

So to configure the router we have to do a couple of things.

  1. Setup Port on Router for DHCP from Modem
  2. Setup DHCP Server on Router
  3. Setup Nat

To get started console in to the Router, and get in to Config mode.

Router> en
Router# Conf T
Router(config)#

 

Then let’s run some commands.

Hostname YourNameHere

Ip dhcp pool Pool1
Network 192.168.100.0 255.255.255.0
Default-router 192.168.100.1
Dns-server 4.2.2.1 4.2.2.2

 

You now have a DHCP Server running on your router. Time to configure the ports.

interface fa0/0
 description External connection to Modem
 ip address DHCP
 ip nat outside
 ip nat enable
ip virtual-reassembly
duplex auto
 speed auto
 
interface fa0/1
 description internal
 ip address 192.168.100.1 255.255.255.0
 ip nat inside
 ip nat enable
ip virtual-reassembly
duplex auto
 speed auto

 

So your ports are now configured.  As long as your Modem is providing a DHCP address to the router you should be good to go.  There are still a few more things we will have to do to get this up and running.

 

ip default-gateway fa0/0
ip classless
ip route 0.0.0.0 0.0.0.0 fa0/0
ip nat inside source list 7 interface fa0/0 overload

 That’s it. You should be good to go.

Filed under: Routers No Comments
21Apr/090

How to Console to a Cisco Device

How to Console. A Quick little video on how to setup a connection via the console on a Cisco Device.   This is one of the fastest ways to connect to a New cisco Device to allow you to start the configuration process.

preview image

Steps:

  1. Open Hyper Term
  2. File > New Connection
  3. Name the Connection I went with Cisco.
  4. Optional - Change the Icon, if you want to save the connection - recommened.
  5. Select Com1 (my Serial port) yours might be different.
    Settings for the connection:
    • 9600 bps
    • 8 bits
    • none
    • 1 stopbit
    •  no flow control
  6.  Click OK and you are done
  7.  You if the device is on hit "enter" to get a command line.