Same issue as described here: ssh into a server which is connected to a VPN service
However I have no access to the "ip" utility. Just good 'ol ifconfig and route commands as I'm working on an OpenBSD box. How would one do the same task with those commands?
Trying to translate the following commands to ifconfig & route:
ip rule add table 128 from 50.1.2.3
ip route add table 128 to 50.1.2.0/24 dev eth0
ip route add table 128 default via 50.1.2.1
So far ive roughly translated the last two commands to
route add [128] $PUBLICSUBNET/24 vio0
route add [128] $PUBLICSUBNET/24 vio0
but still stuck on the first one.
ipcommands do you want to replace byifconfigandroute?ip rule add table 128 from 50.1.2.3ip route add table 128 to 50.1.2.0/24 dev eth0ip route add table 128 default via 50.1.2.1