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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Configuring cisco 1760 routers for point to point.

Status
Not open for further replies.
Joined
May 3, 2006
Messages
1
Location
US
I need to configure 2 cisco 1760 routers for point to point communication. The routers are at different locations within an organization and will be using T1. If anyone might be able to help me or point me in the correct direction I would appreciate any help I could get. Thank You.
 
You haven't provided a lot of info there but I'll assume you have one IP subnet at site B using e.f.g.h/24.

The most basic configuration you need to get this up and running is as follows:

Site A router:

interface fastethernet 0/0
ip address a.b.c.1 255.255.255.0

interface serial 0/0
description *Connected to Site B*
ip address unnumbered

ip route e.f.g.0 255.255.255.0 s0/0



Site B router:

interface fastethernet 0/0
ip address e.f.g.1 255.255.255.0

interface serial 0/0
description *Connected to Site A*
ip address unnumbered

ip route a.b.c.0 255.255.255.0 s0/0
 
Don't forget your clocking setup. Internal on one and external on the other.

Make sure you can ping from end to end via laptop or pc.

If a server is giving DHCP setup a ip-helper address on the remote site router and you may also have to insert a route on the server going back to the remote because of the different network.

“Reserve your right to think, for even to think wrongly is better than not to think at all”

CCNA,CCNP,CIPT, Network+
Tek-TIP Member 19,650
[americanflag]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top