Routing without GW

Hi,

I have come across following problem on ROS: I route single public IPs directly to CPE routers via private network. Sofar everything is fine, except I have not found a way to create the last hop route on RoS - on Linux this looks like: ip route add 82.133.x.x dev ethX this way the packets find their way to the CPE and they are routed out via default gw which is in the private range. ROS does not allow for such construction, at least I was able to do this. I know it is not really clean implementation, but saves a lot of IPs (1 instead of 4 fo single client).

Is there a way to do this on ROS ?

Thanks, Tom

There’s interface base routing in v3, not sure if this is what you’re after.
/ip ro add x.x.x.x interface=ethx

I guess that sounds like. I’m currently running 2.9 - i guess that would be the reason for upgrade…

Thanks for the pointer. Tom