How To Configure Static IP Address On Ubuntu 14.042 min read
Now I want to share for static setup on your Ubuntu 14.04. When create any machine on your network, then get IP address from your dhcp server. If you don’t use dhcp server on your network. So use a static IP address for all machines.
★ How To Install Zabbix 5.0 On Centos 7
★ How To Configure Static IP Address On CentOS 7
Step #01: Open network interface file using any editor.
root@ubuntu:~# vi /etc/network/interfaces
Then insert below all lines into this file
Before like as below:
auto lo iface lo inet loopback auto eth1 iface eth1 inet dhcp
Then change dhcp to static and add your network ip address, netmask & gateway etc. Then save it.
auto lo iface lo inet loopback auto eth1 iface eth1 inet static address 10.55.20.10 netmask 255.255.0.0 gateway 10.55.10.1
Esc : wq press Enter for save your config file.
Now reboot your server or interface disable & enable.
For more details goto my YouTube channel see video for setup it.
ube channel see video.
- How To Install Zabbix Server 7.0 On AlmaLinux 8 Server - June 12, 2025
- How To Upgrade Zabbix 6.0 To 6.4 on Ubuntu 22.04 - June 5, 2025
- How To Install Zabbix 7.0 on Debian 12 - April 7, 2025