Link to home
Start Free TrialLog in
Avatar of dle266
dle266

asked on

Can't get to proxy server through routers.

Hi,
I have 2 2507 cisco routers connected with a back to back serial cable.
I have 2 networks, 10.10.10.0 and 192.168.1.0
The serial port ip's are 75.75.75.1 and 75.75.75.2
Workstations on the 192. side can log on to a server on the 10. side. All computers on both sides can ping each other.
I have a proxy server (10.10.10.4) with a dial up internet connection. All computers on the 10. side can get to the internet through the proxy server. When a computer on the 192. side tries, the dial up window will pop up on the proxy server and make the connection but the computers on the 192. side never get to the inetenet.
I thought it might be a DNS problem but I have the same info on all computers on both sides and the ones on the 10. side works fine.
Do you think it is a router problem or something else?
Thanks.
Avatar of NicBrey
NicBrey

Looks like a routing problem

Do you have a default route on the 192.168.1.0 router that points to the 10.10.10.0 router?
ip route 0.0.0.0  0.0.0.0  <serial IP of 10.10.10.0>

And on the 10.10.10.0 router you should have defult route pointing to Proxy server
ip route 0.0.0.0  0.0.0.0  10.10.10.4

Also, are the browsers configured with the IP of proxy server?
Avatar of dle266

ASKER

Hi,
This is what the routers look like.
hostname Router1
!
ip subnet-zero
ip host router2 192.168.1.1 75.75.75.2
ip host router1 10.10.10.1 75.75.75.1
!
hub ether 0 1
 link-test
 auto-polarity
!
interface Ethernet0
 ip address 10.10.10.1 255.255.255.0
 no ip mroute-cache
 no mop enabled
!
interface Serial0
 ip address 75.75.75.1 255.255.255.0
 no ip mroute-cache
!
interface Serial1
 no ip address
 no ip mroute-cache
 shutdown
!
router rip
 network 10.0.0.0
 network 75.0.0.0
!
ip classless
ip route 10.10.10.0 255.255.255.0 10.10.10.4
ip route 75.75.75.0 255.255.255.0 10.10.10.4
ip http server
!
line con 0
line aux 0
line vty 0 4
 password cisco1
 login
!
end

hostname Router2
!
ip subnet-zero
ip host router1 10.10.10.1 75.75.75.1
ip host router2 192.168.1.1 75.75.75.2
!
hub ether 0 1
 link-test
 auto-polarity
!
interface Ethernet0
 ip address 192.168.1.1 255.255.255.0
 no ip mroute-cache
 no mop enabled
!
interface Serial0
 ip address 75.75.75.2 255.255.255.0
 no ip mroute-cache
 clockrate 4000000
!
interface Serial1
 no ip address
 no ip mroute-cache
 shutdown
!
router rip
 network 75.0.0.0
 network 192.168.1.0
!
ip classless
ip route 10.10.10.0 255.255.255.0 75.75.75.1
ip http server
!
!
!
line con 0
line aux 0
line vty 0 4
 password cisco1
 login
!
end
I tried adding static routes but I did it wrong. You will notice I have 2 ip routes on router1. Can anyone tell me how to get rid of a static route?
Thanks
Avatar of Les Moore
If you want to get rid of this:
ip route 75.75.75.0 255.255.255.0 10.10.10.4

simply use "no" in front of it

router(config)#no ip route 75.75.75.0 255.255.255.0 10.10.10.4

You might want to add to router 1:
ip route 192.168.1.0 255.255.255.0 75.75.75.2


Is your RIP working?
ASKER CERTIFIED SOLUTION
Avatar of Les Moore
Les Moore
Flag of United States of America image

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
Avatar of dle266

ASKER

Hi,
After I added a static route to the server I removed all static routes from the routers and it still worked.
The server is Windows 98 running FreeProxy.
Now I need to see if there is a way to keep from dropping the static route when the server is rebooted.
But you've got me on the right track!!
Thanks
To make the route change permanent, just use a "-p" flag
c:\>route add -p 192.168.1.0 mask 255.255.255.0 10.10.10.1
                    ^^