Saturday, September 12, 2026

Configuring the static routes between two vendor products Like Mikrotik Router as well as Cisco Router

Introduction:-

Now a days in the in the networking industry, routing and switching are very fast-growing in the world; simultaneously, the hardware equipment is rapidly developing, but in the various types of the vendor products are not communicating with OS, scripting issues or any.. here we are look forward to communicating and developing the routes betweent the two verndor products..  Lets move farword.


Real-world Scenario:

Routing is in the real world, there is path from one network to another network. Here we observe the routing between two vendor products like Cisco router as well as Mikrotik router. Here am not using the real eqipement, by using the images, in grouping together one place in the emulator, we all know the name of the emulator like GNS3.  Here I as using  the Image of MIKROTIK CHR, and for Cisco i am using CISCO IOU image for cisco hardware.





 network addresses


10.0.1.0/30 
20.0.2.0/30
30.0.3.0/30

These are the networks, configure the ip address according the above network diagram.


Goal:

Configure the static routes between the two vendor products like Mirkotik and cisco through the emulator..


Configuration Commands :

Mikrotik R1 
/ip add add address=10.0.1.1/30 interface=ether1
/ip add add address=20.0.1.1/30 interface=ether2
/ip route add dst-add=30.0.2.0/30 gateway=10.0.1.2



Mikrotik R2
/ip add add address=10.0.1.2/30 interface=ether1
/ip add add address=30.0.2.1/30 interface=ether2
/ip route add dst-add=20.0.1.0/30 gateway=10.0.1.1

Cisco R1
ip route 10.0.1.0 255.255.255.252 20.0.1.1
ip route 30.0.2.0 255.255.255.252 10.0.1.2

Cisco R2
ip route 10.0.1.0 255.255.255.252 30.0.2.1
ip route 20.0.1.0 255.255.255.252 10.0.1.2


Video Solution








No comments: