Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting Up a Cisco 1605 between 2 networks

Status
Not open for further replies.

bromy

Programmer
Apr 12, 2000
3
US
Hello All,

I am currently setting up a 1605 and have run into a problem. On 10.XXX.XXX.1 this is a corporate network connected to the ETH0 and I have setup a private network of 172.XXX.XXX.2 on ETH1. I have an additional WIC which I am not using. I am able to ping both ports on the router and I believe that I have setup my static routes properly, however when I try to ping the 172.XXX.XXX.2 or 172.XXX.XXX.10 from the 10.XXX.XXX.XXX network I get a request timed out and Destination unreachable from most likely another router on the corporate network. Does everything below look good or am I forgetting anything with my static routes? Any help you can give I would appreciate.

Current configuration:
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname Cisco1605
!
enable password 7 XXXXXXXXXXXXXX
!
!
!
!
!
ip subnet-zero
no ip domain-lookup
!
!
!
process-max-time 200
!
interface Ethernet0
description connected to 10.XXX.0.0 LAN
ip address 10.XXX.43.1 255.255.0.0
no ip directed-broadcast
!
interface Ethernet1
description connected to 172.XXX.XXX.0 LAN_1
ip address 172.XXX.XXX.2 255.255.255.0
no ip directed-broadcast
!
interface Serial0
no ip address
no ip directed-broadcast
shutdown
!
router rip
version 2
network 10.0.0.0
network 172.20.0.0
no auto-summary
!
ip classless
ip route 10.XXX.0.0 255.255.0.0 Ethernet0
ip route 172.20.0.0 255.255.255.0 Ethernet1
no ip http server
!
snmp-server engineID local XXXXXXXXX
snmp-server community public RO
snmp-server location Womens Center
snmp-server contact
!
line con 0
exec-timeout 0 0
password 7 XXXXXXXXXX
login
transport input none
line vty 0 4
password 7 XXXXXXXXXX
login
!
end


-Bromy
 
Bromy,
You dont need the static routes on your router for 10.x.x.x and 172.20.x.x, because they are directly connected to your router via interfaces e0 and e1. The router knows about these two networks and they should appear in the route table.

A common mistake is not having a default gateway configured on the PC which you are initiating the ping from. I would check the PC on the 10.x.x.x network and ensure its default gw is 10.x.43.1. Likewise, devices on 172.20.x.x should have a gw of 172.20.x.2

JimmyZ
 
Yes on the Gateway!! But the computers on the network allready have a gateway. Why? is ether or both the networks connected to the Internet? Or is their gateway an file server? So to test you could hook 1 computer directly to the router with a cross over cable. set the address and gateway, then do the same on the other side, and you will be able to ping both ways. If no Internet issues you can just change the gateway on the pcs on both sides
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top