Hello
My VPS provider uses KVM with vlan-per-user network environment.
They oficially dont support openbsd but they allow to boot from custom iso.
Im trying to install 7.0 release.
Network interface name appears as vio0.
To set up networking they suggest to do the following:
# ifconfig if_name ${public_ip}/32
# route add -host 10.0.0.1 -interface if_name
# route add default 10.0.0.1
i tried
# route add 10.0.0.1 -iface vio0
route: vio0: bad address
i tried
# route add -host 10.0.0.1 -iface ${public_ip}
route was added with console message
arp_rtrequest: bad gateway value: vio0
and after
# route add default 10.0.0.1
default route was added with console messages (~1 per second)
arpresolve: 10.0.0.1: route contains no arp information
cant ping anything after that
how can i set up a route to 10.0.0.1 ?