Static Routing Configuration

Static Route
If We have Network  between two Routers. Then how to configure between them with Static Routing or Static Route.

First we see on which serial interface side is DCE or DTE, 

R# show controllers serial 0/0  (whichever your interface no.)

at which side interface is DCE, we run the following command
Lets suppose This is R1 then. 

R1(config)# int serial 0/0
R1(config-if)# clock rate 64000 (whichever rate you need as per your requirement)

No we need to define the static route for the communication.
On the R1 side
R1(config)# 11.1.1.0   255.255.255.0   150.1.1.2

and 

On the R2 side
R2(config)# 10.1.1.0  255.255.255.255.0  150.1.1.1

now we can see the Routing table to run the below command.

R# Show ip route

its done and communication begin between both hosts.

No comments:

Post a Comment