The network is already configured when the server is provisioned and works out of the box. You rarely edit the configs by hand — mostly to add an additional IPv4 or set up IPv6. A mistake in the network config can cut off SSH access: change one parameter at a time and immediately check access from a second window without closing your current session. As a last resort, reinstalling the system will bail you out (it wipes data).
There’s no button in the bot to order an extra IP — an additional IPv4 is issued through support @lumisup_robot. Once they send you the address, netmask, and gateway, set them in the OS.
Ubuntu (Netplan)
Debian (interfaces)
Windows
Modern Ubuntu uses Netplan. The config lives in /etc/netplan/ (a file like 01-netcfg.yaml or 50-cloud-init.yaml). Check the interface name with ip a (often eth0 or ens3) and add the second address to the addresses list:
Here 192.0.2.10 is the primary IP and 192.0.2.11 is the added one. Substitute your own values.Check the syntax and apply:
netplan trynetplan apply
netplan try applies the config temporarily and automatically rolls it back after 120 seconds if you don’t confirm. Handy for not losing access over a typo.
On Debian 12, the eth0:0 alias method via /etc/network/interfaces may not work — it depends on what manages the network (ifupdown, systemd-networkd, or NetworkManager). The safer approach is to first test with ip addr add and then decide how to make it permanent.Temporarily (until reboot):
sudo ip addr add 192.0.2.11/24 dev eth0
Confirm the address came up (ip a) and check that the server is reachable from outside.
Making it permanent depends on the distro’s network stack: ifupdown, systemd-networkd, or NetworkManager — each has its own way. If you’re unsure about your configuration, ask support @lumisup_robot: an additional IPv4 in Lumi is issued through support anyway, and they’ll help with the setup too.
On Windows Server, an extra IP is added through the adapter properties:
1
Open the adapter settings
Win + R → ncpa.cpl → right-click the network adapter → Properties.
2
Open the IPv4 settings
Select Internet Protocol Version 4 (TCP/IPv4) → Properties → Advanced.
3
Add the IP
In the IP addresses section, click Add, enter the address and subnet mask you were given. Save the changes.