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
'OS > Ubuntu' 카테고리의 다른 글
[Ubuntu] 우분투 시스템 명령어 (Shutdown, halt, reboot) (0) | 2016.11.25 |
---|---|
[Ubuntu] 리눅스 프로세스 확인하기 (검색하기) (0) | 2016.11.24 |
[Ubuntu] Gnu Compiler Collection (Include C, C++ Compiler) (0) | 2016.11.23 |
[Ubuntu] [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) (0) | 2016.11.20 |
[Ubuntu] Nginx 소스로 설치하기 (0) | 2016.11.20 |