0

Configure Static IP Addresses on Ubuntu 18.04 LTS Server (Update on Ubuntu 22.04)

Ubuntu Server 18.04

Untuk mengganti ip pada Ubuntu server 18.04, dapat menggunakan NetPlan. Pertama-tama, lihat network device dengan menggunakan perintah ip addr. Misal yang akan diganti adalah eth0.
Langkah selanjutnya buat file 01-netcfg.yaml di folder /etc/netplan.

sudo nano /etc/netplan/01-netcfg.yaml

Untuk mengganti ip address, tuliskan baris berikut:

# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
 version: 2
 renderer: networkd
 ethernets:
   eth0:
     dhcp4: no
     dhcp6: no
     addresses: [192.168.1.2/24]
     gateway4: 192.168.1.1
     nameservers:
       addresses: [8.8.8.8,8.8.4.4]

Keluar dari editor, kemudian jalankan command berikut ini:

sudo netplan apply

Ubuntu 22.04

Jika menemui error berikut:

`gateway4` has been deprecated, use default routes instead.
See the 'Default routes' section of the documentation for more details.

Solusi:

Ganti gateway4 dengan routes, sehingga menjadi:

# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
 version: 2
 renderer: networkd
 ethernets:
   eth0:
     dhcp4: no
     dhcp6: no
     addresses: [192.168.1.2/24]
     routes:
     - to: default
       via: 192.168.1.1
     nameservers:
       addresses: [8.8.8.8,8.8.4.4]