Setup IPs – OpenSUSE
Because of our network configuration and the way KVM VPS servers are built, to get any additional IP’s or subnets to ping inside your virtual container and be accessible from the outside you need to add separate network interfaces for each additional IP.
Setup IPs on CentOS check
So setup IPs on Debian, Ubuntu & Fedora
Additional IPs OpenSUSE
To configure additional IPs on OpenSUSE KVM servers just log in to your VPS server control panel and click the “reconfigure networking” tab. We will automatically configure your additional IPs for you. But you must be using the virtio NIC card for this to work and all servers use this NIC card by default.
OpenSUSE IP
First, we backup the network configuration file so if you make any mistakes you can use the VNC console to revert back any changes you have made
cp /etc/sysconfig/network/ifcfg-ens32 /etc/sysconfig/network/ifcfg-ens32.bak
Then you need to edit the file /etc/sysconfig/network/ifcfg-ens32;
IPADDR_1=YOUR_IP
NETMASK_1=255.255.255.255
LABEL_1=ens32:0
IPADDR_2=YOUR_IP2
NETMASK_1=255.255.255.255
LABEL_1=ens32:0
IPADDR_3=YOUR_IP3
NETMASK_1=255.255.255.255
LABEL_1=ens32:0
Finally, restart the network using this command and your additional IPs should now ping from your server. But
/etc/init.d/network restart
/etc/init.d/network restart eth0
Your additional IPs should now resolve from your server. But if they do not you can contact our support team for further assistance.
How was this article – Additional IPs OpenSUSE
More from Linux VPS Servers
How To Install phpIPAM Ubuntu and Debian Servers
phpIPAM is a great tool for managing IP address space. It's a free bit of software that will manage IPv4 …
How to configure additional IPs in a Debian 11 VPS
On Debian 11 instances, we removed the /etc/network/interfaces file and now configure interfaces using Cloud-init on boot. Discovery will send …