Hey, I need help how to create a route to access a specific device which has a static ip and it’s not possible to change it’s IP.
Basically we need to access 192.168.106.200 from our computer 192.168.1.51
What kind of route should I add?
Thank you

Hey, I need help how to create a route to access a specific device which has a static ip and it’s not possible to change it’s IP.
Basically we need to access 192.168.106.200 from our computer 192.168.1.51
What kind of route should I add?
Thank you

Add additional IP address from the offending device’s IP subnet to router’s LAN interface. And configure the offending device to use router’s (newly configured) IP address as default gateway.
E.g. if router has LAN IP address 192.168.1.1 set on ether3, execute
/ip address add address=192.168.106.1/24 interface=ether3
# any other address 192.168.106.X where X not in {0,200,255} would do
If you can’t configure the offending device to use router as default gateway, you’ll have to set up some src-nat rule for those particular connections … come back if needed.
Thank you, it works