Skip to main content
ROUTER CONFIGURATION

Router is generally used to connect different networks and share the information. Router is used to connect to multiple networks and forward the packets either in other networks or in its own network.

Steps to Configure: 

1) Connect PCs with switch and further switch with routers.
2) do it twice and ten connect both the routers with each other.
3) Now, assign the IP's and respective gateways to the PCs.
4) Again, assign the IP address to the serial ports for both the routers.
  
Router-1
a) interface serial 0/1/0
b) IP address= 192.168.2.1 and Subnet mask= 255.255.255.0
c) No Shut
d) exit

    same steps with Router-2, but
    a)  interface serial= 0/0/0
    b) IP Address= 192.168.2.2 and Subnet mask= 255.255.255.0

5) Now, assign IP's to interface, connecting switches.

Router-1
a) int gig 0/1
b) IP address= 192.168.110.1 and Subnet mask= 255.255.255.0
c) No Shut
d) exit

Router-2
a) int gig 0/1
b) IP address= 192.168.110.2 and Subnet mask= 255.255.255.0
c) No Shut
d) exit

6) Now, assign IP's and respective gateways to the respective PCs according to their routers.
7) Now, ping any PC.


Comments

Popular posts from this blog

Generate Traffic in Simulation Mode

Objectives Part 1: Generate Network Traffic in Simulation Mode Part 2: Examine the Functionality of the TCP and UDP Protocols Background This simulation activity is intended to provide a foundation for understanding the TCP and UDP in detail. Simulation mode provides the ability to view the functionality of the different protocols. As data moves through the network, it is broken down into smaller pieces and identified in some fashion so that the pieces can be put back together. Each of these pieces is assigned a specific name (protocol data unit [PDU]) and associated with a specific layer. Packet Tracer Simulation mode enables the user to view each of the protocols and the associated PDU. The steps outlined below lead the user through the process of requesting services using various applications available on a client PC.  This activity provides an opportunity to explore the functionality of the TCP and UDP protocols, multiplexing and the function of port numbers in ...

Configuring Open Shortest Path First (OSPF) Protocol

Open Shortest Path First (OSPF) Protocol OSPF is a  Link State protocol   that’s considered may be the most famous protocol among the Interior Gateway Protocol (IGP) family, developed in the mid 1980’s by the OSPF working group of the IETF. When configured, OSPF will listen to neighbors and gather all link state data available to build a topology map of all available paths in its network and then save the information in its topology  database, also known as its  Link-State Database  ( LSDB ). Using the information from its topology database. From the information gathered, it will calculate the best shortest path to each reachable subnet/network using an algorithm called  Shortest Path First  ( SFP ) that was developed by the computer scientist  Edsger W. Dijkstra  in 1956. OSPF will then construct  three tables  to store the following information: Neighbor Table:  Contains all discovered OSPF neighbors  with whom r...