Simplest method to connect two Network using Router: Cisco Packet Tracer Lab.
Learn how to communicate computers from different network with each other.
Let’s Learn connecting two PC from Different Network with each other.
This is an Example Lab Showing Basic Network communication using Cisco Packet Tracer.
We have two networks here total:
1.0.0.0/8 and 2.0.0.0/8
This will be your First Routing Lab in CCNA.
This Packet Tracer Lab is meant to make you understand the Basic Concept of Routing.
Routing is required Only when there is any Indirectly Connected network available.
For Directly Connected Network we don’t need to configure any Routing, just assign ip address and gateway ip and that is enough.
Just by reading this article you will understand why we need routing and why we not.
Our task is to make communication possible between these two Networks.
Configuration on Router:
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#
Router(config)#host satish
satish(config)#int fa0/0
satish(config-if)#ip address 1.0.0.1 255.0.0.0
satish(config-if)#no shut
satish(config-if)#exit
satish(config)#int fa0/1
satish(config-if)#ip add 2.0.0.1 255.0.0.0
satish(config-if)#no shut
Now you can ping different network pc with each other and they will ping.