Skip to content

Instantly share code, notes, and snippets.

@anhtran
Last active April 11, 2023 06:59
Show Gist options
  • Save anhtran/7f4f7996139f378a1be77c2dd1ca0547 to your computer and use it in GitHub Desktop.
Save anhtran/7f4f7996139f378a1be77c2dd1ca0547 to your computer and use it in GitHub Desktop.
How to configure VRack in OVH?

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/

Debian 10 (Buster)

  1. You need to login to Dashboard of OVH to add the server to the cluster.

  2. Show the server's network interfaces by:

sudo ip link show

Generally, OVH will show up 3 items.

  1. 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.

  1. Restart network to mark effect the settings:

sudo systemctl restart networking

(ssh will disconnect after this)

  1. Check by ping another servers' IP. Good luck!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment