Basic static route configuration

By:

Published:

Updated:

Basic Static router configuration

Disclaimer

As an affiliate, we may earn a commission from qualifying purchases. We get commissions for purchases made through links on this website from Amazon and other third parties.

 

Routing is the process of receiving a packet from one device broadcasting it through the network to another device in various networks.

Step 1: putting  ip address to the interface:

configure Router 1:

Router1(config)# interface fastEthernet 0/0

Router1(config-if)#ip add 10.0.0.1  255.0.0.0
Router1(config-if)#no shutdown

Router1(config)#int fa 0/1

Router1(config-if)#ip add 40.0.0.1  255.0.0.0

Router1(config-if)#no shutdown

 

configure Router 2:

Router2(config)#int fa 0/0

Router2(config-if)#ip add 40.0.0.2  255.0.0.0

Router2(config-if)#no shutdown

Router2(config)#int fa 0/1

Router2(config-if)#ip add 20.0.0.1  255.0.0.0

Router2(config-if)#no shutdown

Router2(config)#interface serial 0/0/0
Router2(config-if)#ip add 50.0.0.1 255.0.0.0
Router2(config-if)#clock rate 64000
Router2(config-if)#no shutdown

configure Router 3:

Router3(config)#interface serial 0/0/0

Router3(config-if)#ip add 50.0.0.2  255.0.0.0

Router3(config-if)#no shutdown
Router3(config)#int fa 0/0

Router3(config-if)#ip add 30.0.0.1  255.0.0.0

Router3(config-if)#no shutdown

Step 2: Static Route configuration:
=========================

Router 1
———-
ip route 20.0.0.0  255.0.0.0  40.0.0.2
ip route 30.0.0.0  255.0.0.0  40.0.0.2
ip route 50.0.0.0  255.0.0.0  40.0.0.2

Router 2
———-
ip route 10.0.0.0   255.0.0.0  40.0.0.1
ip route 30.0.0.0   255.0.0.0  50.0.0.2

Router 3
———-
ip route 10.0.0.0 255.0.0.0 50.0.0.1
ip route 40.0.0.0 255.0.0.0 50.0.0.1
ip route 20.0.0.0 255.0.0.0 50.0.0.1

you can the see video Tutorial for better understanding :

About Our Content Creators

Howdy! I’m Arafat Bidyut, Co-founder of a popular tech blog greentechrevolution, and a BSc in Electronics and Telecommunication Engineering.

With a passion for all things related to Wi-Fi routers, network devices, and software troubleshooting, my goal is to unravel the complexities of technology and make it accessible to everyone.

We may earn a commission if you click on the links within this article. Learn more.

Leave a Reply