ubuntu server – Rubah IP dhcp menjadi static

untuk rubah setingan IP di linux dari DHCP menjadi Static cara nya pake console aja yak, ada beberapa file yang harus di edit isi nya.
buka file /etc/network/interfaces dan edit isi nya…

sudo vim /etc/network/interfaces

lihat bagian dalam nya:

auto eth0
iface eth0 inet dhcp

ubah menjadi :

auto eth0
iface eth0 inet static
address 192.168.1.12
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

setelah merubah ip network berikut nya rubah setingan DNS server nya, edit file /etc/resolv.conf

 sudo vim /etc/resolv.conf 

pada bagian “nameserver xxx.xxx.xxx.xxx” masukkan alamat ip DNS server kita.

setelah semua selesai jangan lupa untuk restart service network linux :

sudo /etc/init.d/networking restart

selesai selamat menikmati.

sumber :

http://idur.staff.uns.ac.id/2010/07/15/ubuntu-server-rubah-ip-dhcp-menjadi-static/

This entry was posted in ubuntu. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>