Jump to content

Ubuntu:Teknik Mengkonfigurasi IP address

From Wiki

Ubuntu 20.04

Edit

vim /etc/netplan/00-installer-config.yaml

Contoh isi:

 # This is the network config written by 'subiquity'
 network:
   ethernets:
     enp0s3:
       dhcp4: true
   version: 2
Untuk IP Static
 network:
   version: 2
   ethernets:
     enp0s3:
       addresses: [192.168.20.160/24]
       gateway4: 192.168.20.2
       nameservers:
         addresses: [192.168.20.2, 8.8.8.8]

Kemudian lakukan

sudo netplan apply
sudo reboot

Ubuntu <18.04

Edit file /etc/network/interfaces

vim /etc/network/interfaces

Contoh isi

IP Dynamic

iface eth0 inet dhcp

IP Static

iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
gateway 192.168.0.1

IPv6

 ### Start IPV6 static configuration
 iface eth0 inet6 static
 pre-up modprobe ipv6
 address 2607:f0d0:2001:000a:0000:0000:0000:0010
 netmask 64
 gateway 2607:f0d0:2001:000a:0000:0000:0000:0001
 ### END IPV6 configuration

Source