Configuring Static IP Address on Ubuntu Server 14.04


ok guys kali ini kita akan belajar membuat ip static pada ubuntu server 14.04. ubuntu server ini saya install di virtual box. langsung saja buka virtual box nya untuk melakukan perubahan konfigurasi jangan lupa untuk masuk ke super user dengan perintah
sudo su
letak file konfigurasi ip address ada pada /etc/network/interfaces. oh iya untuk melihat bedanya coba cek ip saat ini dengan perintah ifconfig kemudian catat.

eth0 Link encap:Ethernet HWaddr 08:00:27:53:f6:34
inet addr:192.168.142.6 Bcast:192.168.142.255 Mask:255.255.255.0 
inet6 addr: fe80::a00:27ff:fe53:f634/64 Scope:Link 
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 
RX packets:528 errors:0 dropped:0 overruns:0 frame:0 
TX packets:181 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:1000 
RX bytes:57120 (57.1 KB) TX bytes:22125 (22.1 KB) 
lo Link encap:Local Loopback 
inet addr:127.0.0.1 Mask:255.0.0.0 
inet6 addr: ::1/128 Scope:Host 
UP LOOPBACK RUNNING MTU:65536 Metric:1 
RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:0 
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
misalkan saat ini ip address adalah 192.168.142.6, kemudian kita akan rubah menjadi 192.168.142.254. untuk merubah konfigurasi ip address pada ubuntu server gunakan perintah
nano /etc/network/interfaces
pada konfigurasi lama tertuliskan iface eth0 inet dhcp, kita ganti menjadi
# This file describes the network interfaces available on your system 
# and how to activate them. For more information, see interfaces(5). 
# The loopback network interface auto lo iface lo inet loopback 
# The primary network interface 
auto eth0 
iface eth0 inet static 
address 192.168.142.254 
netmask 255.255.255.0 
gateway 192.168.142.1
nameservers 192.168.142.1
setelah dilakukan perubahan, kemudian simpan konfigurasi. selanjutnya disable interface dengan perintah
ifdown eth0
selanjutnya aktifkan kembali dengan perintah
ifup eth0
kemudian cek ip address dengan perintah
ifconfig
saat ini ip address sudah berubah menjadi 192.168.142.254
eth0 Link encap:Ethernet HWaddr 08:00:27:53:f6:34 
inet addr:192.168.142.254 Bcast:192.168.142.255 Mask:255.255.255.0 
inet6 addr: fe80::a00:27ff:fe53:f634/64 Scope:Link 
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 
RX packets:528 errors:0 dropped:0 overruns:0 frame:0 
TX packets:181 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:1000 
RX bytes:57120 (57.1 KB) TX bytes:22125 (22.1 KB) 
lo Link encap:Local Loopback 
inet addr:127.0.0.1 Mask:255.0.0.0 
inet6 addr: ::1/128 Scope:Host 
UP LOOPBACK RUNNING MTU:65536 Metric:1 
RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:0 
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
coba ping dari sisi client menggunakan command promt dengan perintah ping 192.168.142.254. server sudah berhasil di ping dari sisi client demikian cara mengkonfigurasi ip static pada ubuntu server 14.04 jangan lupa subscribe dan follow youtube.com/andisaptono twitter.com/andisaptono untuk lebih jelas dapat dilihat pada video berikut ini: