OS/Ubuntu

[Ubuntu] 우분투 서버 고정ip 설정하기

Miuna3 2016. 11. 23. 23:41

Change The Ubuntu Server From DHCP to Static IP Address


BASH
nano /etc/network/interfaces



실행하면 다음과 내용이 비슷한 창이 뜰거다.



Primary network interface

말 그대로 주요 인터페이스 어댑터이다.


dhcp 부분을 static으로 바꿔주고 다음 양식에서 주소를 원하는 것으로 바꾼 후 추가한다.

address 주소

netmask 주소

network 주소

broadcast 주소

gateway 주소

dns-nameservers 주소



그리고 서비스 재시작.

BASH
sudo /etc/init.d/networking restart