Networking Forums

Networking Forums > Network Hardware > Network Routers > Cisco 851 Newbie Help Please!

Reply
Thread Tools Display Modes

Cisco 851 Newbie Help Please!

 
 
Steven Smith
Guest
Posts: n/a

 
      08-01-2007, 10:01 PM
We just bought a Cisco 851 Router for the office to replace a failing D-
Link GamerLounge.

I got all of the configuration done (I thought!) through the web interface,
but it will not route connections to the WAN. I verfied that the DNS server
and T1 line are working fine by direct connection.

The following things are plugged into our 851:
- WAN Port: T1 line with static IP
- Crossover cable connecting to our main switch
- Our server
- Our backup system

The network part works fine. I can ping everybody, and I can VNC to our
server. The Internet, however, doesn't work.

I think it has to do with the fact that the 851 doesn't know how to contact
our ISP's router. There doesn't appear to be any place to input a value for
"default gateway." I tried putting the IP we have for the gateway into the
"last hop" section, but I didn't know if it should be done by interface or
by IP.

Any suggestions? I'm not really an IT guy, but I know the most about IT at
the company, so...


Thanks!

Steven Smith


 
Reply With Quote
 
 
 
 
Peter
Guest
Posts: n/a

 
      08-02-2007, 12:31 AM
Hi Steve,

> I think it has to do with the fact that the 851 doesn't know how to contact
> our ISP's router. There doesn't appear to be any place to input a value for
> "default gateway."


We really need a lot more info here, such a full configuration dump of
the Router, however a first VERY rough guess is that you need to
specify a DEFAULT GATEWAY. If you can see the full Router
configuration, then look for a line that looks like -

ip route 0.0.0.0 0.0.0.0 <next hop address>

where <next hop address> specifies your ISP's Router IP address.
0.0.0.0 0.0.0.0 specifies the DEFAULT Gateway.

> I tried putting the IP we have for the gateway into the
> "last hop" section, but I didn't know if it should be done by interface or
> by IP.


99% of the time by IP address. There are some situations where an
interface can be used but they are fairly specific.

Cheers..................................pk.

--
Peter from Auckland.
 
Reply With Quote
 
Steven Smith
Guest
Posts: n/a

 
      08-02-2007, 03:41 AM
Hi Peter,

Thanks for the advice so far.

I think that the problem IS that the default gateway isn't defined; I
just can't seem to figure out where I need to define it! Is there a
console command I should use, or is there a way to do it through the GUI?

When I went to the tab where you define the connection type
(static/dhcp), I was able to input our IP and netmask, but I didn't see
the usual "default gateway" option. I wondered how it could possibly
work without one, but figured if it were needed, it would be there...

Our external IP is 64.80.9.45, and the ISP's default gateway is
64.80.9.1. Could I telnet into the router and just type:

ip route 0.0.0.0 0.0.0.0 64.80.9.1

Would that work? Or does the 64.80.9.1 need to be .45?


I knew I should have taken those CCNA classes....




"Peter" <(E-Mail Removed)> wrote in
news:nnw7edSM2ZOu-pn2-dsRIrKRklN8N@otis:

> Hi Steve,
>
>> I think it has to do with the fact that the 851 doesn't know how to
>> contact our ISP's router. There doesn't appear to be any place to
>> input a value for "default gateway."

>
> We really need a lot more info here, such a full configuration dump of
> the Router, however a first VERY rough guess is that you need to
> specify a DEFAULT GATEWAY. If you can see the full Router
> configuration, then look for a line that looks like -
>
> ip route 0.0.0.0 0.0.0.0 <next hop address>
>
> where <next hop address> specifies your ISP's Router IP address.
> 0.0.0.0 0.0.0.0 specifies the DEFAULT Gateway.
>
>> I tried putting the IP we have for the gateway into the
>> "last hop" section, but I didn't know if it should be done by
>> interface or by IP.

>
> 99% of the time by IP address. There are some situations where an
> interface can be used but they are fairly specific.
>
> Cheers..................................pk.
>


 
Reply With Quote
 
Peter
Guest
Posts: n/a

 
      08-02-2007, 09:08 AM
Hi Steven,

> I think that the problem IS that the default gateway isn't defined; I
> just can't seem to figure out where I need to define it! Is there a
> console command I should use, or is there a way to do it through the GUI?


I dont use the Cisco GUI at all so I cant say.....;-) However if you
can get into the console ENABLE mode you should end up at a
<routername>#
prompt. From there you can type
show run
to display the full running configuration (careful about posting that
raw here, it may contain sensitive password info etc... ).

Look for lines such as -
<routername># ip route x.x.x.x y.y.y.y d.d.d.d
If x & y = 0.0.0.0 then thats the default gateway.

If there is no such line there, then type =
<routername># config terminal
<routername>-confg# ip route 0.0.0.0 0.0.0.0 64.80.9.1
<routername>-confg# exit
<routername>-confg# copy run start

This adds the defautl gateway , the exits configure mode and saves the
changes to the startup configuration file.

> Our external IP is 64.80.9.45, and the ISP's default gateway is
> 64.80.9.1. Could I telnet into the router and just type:
>
> ip route 0.0.0.0 0.0.0.0 64.80.9.1
>
> Would that work? Or does the 64.80.9.1 need to be .45?


No it should NOT be YOUR IP address. What MASK value is being used on
that interface, that may be a clue.

Good luck....................pk.

--
Peter from Auckland.
 
Reply With Quote
 
Steven Smith
Guest
Posts: n/a

 
      08-02-2007, 11:19 PM
Peter-

It works! Thanks!

-Steven


"Peter" <(E-Mail Removed)> wrote in
news:nnw7edSM2ZOu-pn2-fzywxxn6I7Ff@otis:

> Hi Steven,
>
>> I think that the problem IS that the default gateway isn't defined; I
>> just can't seem to figure out where I need to define it! Is there a
>> console command I should use, or is there a way to do it through the
>> GUI?

>
> I dont use the Cisco GUI at all so I cant say.....;-) However if you
> can get into the console ENABLE mode you should end up at a
> <routername>#
> prompt. From there you can type
> show run
> to display the full running configuration (careful about posting that
> raw here, it may contain sensitive password info etc... ).
>
> Look for lines such as -
> <routername># ip route x.x.x.x y.y.y.y d.d.d.d
> If x & y = 0.0.0.0 then thats the default gateway.
>
> If there is no such line there, then type =
> <routername># config terminal
> <routername>-confg# ip route 0.0.0.0 0.0.0.0 64.80.9.1
> <routername>-confg# exit
> <routername>-confg# copy run start
>
> This adds the defautl gateway , the exits configure mode and saves the
> changes to the startup configuration file.
>
>> Our external IP is 64.80.9.45, and the ISP's default gateway is
>> 64.80.9.1. Could I telnet into the router and just type:
>>
>> ip route 0.0.0.0 0.0.0.0 64.80.9.1
>>
>> Would that work? Or does the 64.80.9.1 need to be .45?

>
> No it should NOT be YOUR IP address. What MASK value is being used on
> that interface, that may be a clue.
>
> Good luck....................pk.
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cisco CCX (Cisco Compatible eXtensions) and Windows Zero Configura Peter Wireless Networks 0 02-14-2008 12:34 PM
SNMP OIDs required for Cisco 1200 and Cisco 1100 series APs NYA Wireless Internet 2 11-08-2006 03:58 PM
IAS to authenticate Cisco VPN Clients & Cisco Device Management CSCee44444 Windows Networking 0 08-27-2005 11:03 PM
WTS FS Cisco 678 ADSL Routers Cisco Refurb Qty 100 adam_cdr@yahoo.com Network Routers 1 03-03-2005 02:33 PM
Q: Non-Cisco wireless client adapters on Cisco AP350 WLAN ? Martin Bilgrav Wireless Internet 3 06-30-2003 02:06 AM



1 2 3 4 5 6 7 8 9 10 11