Link to home
Start Free TrialLog in
Avatar of rgomez101
rgomez101

asked on

Router is not routing the traffic to the Internet

Hi Experts:

I have a Cisco router that has the line:
ip route 0.0.0.0 0.0.0.0 10.3.1.252

There are certain sites that the router can not enroute properly, and I have to "manually" write the Static IP route to that URL.  For instance, if I want to a site like www.travelsite1.com  and I can not ping it, I add the static route and it works.

WHY ?

Here is a portion of the router configuration:
--------------------

router rip
 network 128.300.0.0
!
no ip classless
ip route 0.0.0.0 0.0.0.0 10.3.1.252
ip route 10.0.1.0 255.255.255.0 128.300.123.1
ip route 10.0.4.0 255.255.255.0 128.300.123.1
ip route 10.0.6.0 255.255.255.0 128.300.123.1
ip route 10.0.7.0 255.255.255.0 128.300.123.1
ip route 10.2.0.0 255.255.0.0 128.300.123.1
ip route 10.3.1.0 255.255.255.0 10.3.1.2
ip route 10.4.1.0 255.255.255.0 10.3.1.253
ip route 69.8.201.0 255.255.255.0 10.3.1.253
ip route 69.9.175.3 255.255.255.255 10.3.1.253
ip route 69.18.146.37 255.255.255.255 128.300.123.1
ip route 69.20.14.226 255.255.255.255 10.3.1.253
ip route 69.20.15.50 255.255.255.255 10.3.1.253
ip route 69.20.21.227 255.255.255.255 10.3.1.253
ip route 69.27.109.67 255.255.255.255 10.3.1.253
ip route 69.90.65.111 255.255.255.255 10.3.1.253
ip route 69.90.72.2 255.255.255.255 10.3.1.253
ip route 69.90.77.28 255.255.255.255 10.3.1.253
ip route 69.90.140.0 255.255.255.0 10.3.1.253
ip route 69.90.184.0 255.255.255.0 10.3.1.253
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

It would help to know a little more about the topology. Your default route points to a private IP address while you have some static routes for private IP networks that point to a public IP address.

Can you provide a topology map that shows your path to the internet?

-Don
Avatar of rgomez101
rgomez101

ASKER

The 10.3.1.252 is the firewall.

I am forcing everybody to go thru the firewall. In this way, I am closing the Port 80 and allowing only the Proxy server to go the Internet.

So I now, it seems complicated but is not.

10.3.1.252 is the firewall
10.3.1.253 is a VPN box that is doing nothing but route. It is acting as a gateway
128.300.123.1  is a Frame relay connection that allow us access to some resources

RG
ASKER CERTIFIED SOLUTION
Avatar of pjtemplin
pjtemplin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
IP Classless worked.

Thanks PJ