Teknik Mengkonfigurasi IP address: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
New page: Edit file /etc/network/interfaces # vi /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...
 
Onnowpurbo (talk | contribs)
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Ubuntu 20.04==
Edit
vi /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
Edit file /etc/network/interfaces


Line 5: Line 38:
Contoh isi
Contoh isi


 
'''IP Dynamic'''
IP Dynamic
  iface eth0 inet dhcp
  iface eth0 inet dhcp


IP Static
'''IP Static'''
  iface eth0 inet static
  iface eth0 inet static
  address 192.168.0.2
  address 192.168.0.2
  netmask 255.255.255.0
  netmask 255.255.255.0
  gateway 192.168.0.1
  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
==Pranala Menarik==
* [[Linux Howto]]
* [[Mengkonfigurasi Interface di Ubuntu Shell]]
[[Category: Linux]]

Latest revision as of 21:18, 7 June 2020

Ubuntu 20.04

Edit

vi /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

# vi /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


Pranala Menarik