You can follow the offical tutorial in following link but some commands may not work: https://docs.ovh.com/gb/en/dedicated/configuring-vrack-on-dedicated-servers/
-
You need to login to Dashboard of OVH to add the server to the cluster.
-
Show the server's network interfaces by:
sudo ip link show
Generally, OVH will show up 3 items.
- You will concern the interface named
eno2
(or something like that). Add following lines into/etc/network/interfaces
:
sudo vim /etc/network/interfaces
auto eno2
iface eno2 inet static
address 192.168.0.4
netmask 255.255.0.0
192.168.0.4 is static IP of local network. You can set it whatever you want but must be unique with others in the same network.
- Restart network to mark effect the settings:
sudo systemctl restart networking
(ssh will disconnect after this)
- Check by ping another servers' IP. Good luck!