1

Normaly, for two subnets connected with one router, i always used to create two routes

per example:

subnet 1: 192.168.1.0/24 subnet 2: 192.168.2.0/24

router interface 1: 192.168.1.99
router interface 2: 192.168.2.99

route 1: dst-adress 192.168.2.0/24 gateway: 192.168.1.99
route 2: dst-adress 192.168.1.0/24 gateway: 192.168.2.99

So far so good, i can ping subnet 1 from subnet 2 and vice versa

i am using routerOS from microtik and just realised, that the routing also works without any static route. Is this an automation from routerOS or is that normal with any router wich has only two network interfaces?

i am confused, Thank you

  • 1
    Routers inherently know about directly attached networks, so static routes for those are not necessary. Routers learn routes in three ways: directly connected networks, statically configured routes, or through a routing protocol. The last two are only necessary for non-attached networks. – Ron Maupin Dec 11 '18 at 15:06
  • @RonMaupin: Post your comment as answer to be upvoted :) – Khaled Dec 11 '18 at 15:13
  • @Khaled, OK, it's done. – Ron Maupin Dec 11 '18 at 15:18

1 Answers1

4

Routers inherently know about directly attached networks, so static routes for those are unnecessary. Routers learn routes in three ways:

  1. Directly connected networks
  2. Statically configured routes
  3. Through a routing protocol

The last two are only necessary for non-attached networks.

Ron Maupin
  • 3,158
  • 1
  • 11
  • 16