Home » Networking » Creating Static Routing Between Two Different Network

Creating Static Routing Between Two Different Network

WHAT IS STATIC ROUTING?

Static routing is a process of routing where administators are manually create the routing table into the router.routing table consist of a source address ,destination address & gateway address.

PROJECT OVERVIEW:

In this project we use two 1841 series cisco router,and two router are connected together via serial DCE with clockrate 9600. The fast ethernet Fa0/0 port of the organisation 1 is connected with a switch,  the ip address of this port is 172.16.0.1 and mask address 255.255.0.0 ,The fast ethernet Fa0/0 port of the organisation 2 is also connect with a switch  the ip address of this port is 172.17.0.0 mask address 255.255.0.0. This two fast ethernet port of the two organisations create LAN with different network. Here i am showing you how to configure two router and create a routing between 172.16.0.0 network to 172.17.0.0 network…

Here I create a routing  between two different network by the help of cisco packet tracer software.

for more details about packet tracer go to this link  http://en.wikipedia.org/wiki/Packet_Tracer

I connect 172.17.0.1 Via Gateway 192.168.1.2

and  in router 1 connect 172.16.0.1 via gateway 192.168.1.1……

final

 

Configuration for Organisation1 Router:

Router(config)#hostname organisation1

organisation1(config)#enable password organisation1

organisation1(config)#enable secret password

organisation1(config)#int fa0/0

organisation1(config-if)#oip address 172.16.0.1 255.255.0.0

organisation1(config-if)#no shut

organisation1(config-if)#

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

organisation1(config-if)#int s0/0/0

organisation1(config-if)#ip address 192.168.1.1 255.255.255.0

organisation1(config-if)#clock rate 9600

organisation1(config-if)#no shut

%LINK-5-CHANGED: Interface Serial0/0/0, changed state to down

organisation1(config-if)#

organisation1(config-if)#

%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up

organisation1(config-if)#ip routing

organisation1(config)#ip route 172.17.0.0 255.255.0.0 192.168.1.2

organisation1(config)#^Z

organisation1#

Configuration for Organisation2 Router:

Router>en

Router#conf t

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname organisation2

organisation2(config)#enable password organisation2

organisation2(config)#enable secret cisco

organisation2(config)#int fa0/0

organisation2(config-if)#ip address 172.17.0.1 255.255.0.0

organisation2(config-if)#no shut

organisation2(config-if)#

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

organisation2(config-if)#int s0/0/0

organisation2(config-if)#ip address 192.168.1.2 255.255.255.0

organisation2(config-if)#no shut

organisation2(config-if)#

%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up

organisation2(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up

organisation2(config-if)#ip routing

organisation2(config)#ip route 172.16.0.0 255.255.0.0 192.168.1.1

organisation2(config)#^Z

organisation2#

%SYS-5-CONFIG_I: Configured from console by console

organisation2#wr

Building configuration…

Check Also

Configure OpenVPN in pfSence router OS

pfSense is well known router OS for its simplicity and wide options to  take control over …

Leave a Reply

Your email address will not be published. Required fields are marked *