2015년 4월 27일 월요일

ubuntu, dhcp 를 고정 IP 로 변경

$ cat /etc/network/interfaces
auto lo
iface lo inet loopback

auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 192.168.0.1

$ sudo /etc/init.d/networking restart