cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
983
Views
15
Helpful
3
Replies

Router and HomeRouter Leased Line Help! Cisco PT

PeetNetworking
Level 1
Level 1

Hello guys! 

 

Im currently struggling creating a connection between two different sites. The purpose is that there are two different networks in two different cities. Btw Im pretty new to Cisco Packet Tracer

First site with 1841 Router (IPv4: 192.168.75.1), 2nd Stite is a HomeRouter PT-AC (IPv4: 192.168.76.1). 

 

I want to establish connection with both sites through a leased line. 

I have already configured the router1 (CLI) and router2 (GUI). (Hopefully correct config). 

What kind of modules are recommended for router1?

 

Let me know if there is more information I will need to provide in order to get the best help possible! :) 

 

Anyone out there with experience that would like to help a fellow out? 

Much appreciated, thanks in advance! 

 

 

3 Replies 3

So here you would like use LES circuit. 

 

The configuration is similar to a normal router interface Fast ethernet configuration. 

 

Its just normal cross over cable, 

 

lets assume the following setup

 

RA----------fa1/0-R1-fa0/0-------------fa0/0-R2-fa1/0--------RB

         10.0.0.0                                                                          20.0.0.0

R1 and R2 is your router and RA and RB is other network routers. 

 

R1 Configuration :

 

conf t

interface fa0/0

ip address 192.168.75.1 255.255.0.0

no shutdown

exit

interface fa1/0

ip address 10.0.0.2 255.0.0.0.0

no shutdown

 

ip route 20.0.0.0 0.0.0.255 192.168.76.1

 

 

R2 Configuration :

 

conf t

interface fa0/0

ip address 192.168.76.1 255.255.0.0

no shutdown

exit

interface fa1/0

ip address 20.0.0.2 255.0.0.0.0

no shutdown

 

ip route 10.0.0.0 0.0.0.255 192.168.75.1

Please do not hesitate to click the STAR button if you are satisfied with my answer.

Hello,

 

is this a Packet Tracer project ? If so, post the zipped .pkt file here...

I use GNS3, but i believe you can just copy paste the command in your packet tracer just changing the interface.

Please do not hesitate to click the STAR button if you are satisfied with my answer.