본문 바로가기
시스템

[Ubuntu] IP를 동적으로 다시 받기

by 로드러너 2015. 2. 17.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

동적IP를 할당받도록 설정되어 있는 상태에서

랜선이 빠진걸 모르고 시스템을 부팅 ㅡㅡ;


시스템을 재시작 해야 하나? 다음과 같은 방법으로 networking 서비스를 재시작 해주면 됩니다 ^^


 vagrant@ubuntu:~$ sudo service networking restart 



그럼 DHCP에서 동적으로 IP를 할당 받지 않고 고정IP를 지정하고 싶을 때는?

/etc/network/interfaces 파일의 내용을 수정하면 가능합니다. 

아래는 동적IP할당 받는 방법과 고정IP할당하는 방법의 예입니다.


동적IP할당

 # 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 dhcp


고정IP할당

 # 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 XXX.XXX.XXX.XXX

 netmask XXX.XXX.XXX.XXX

 gateway XXX.XXX.XXX.XXX

 dns-nameservers XXX.XXX.XXX.XXX


미리 확인한 ip address, natmask, gateway, dns server 주소를 입력해 준다.


/etc/network/interfaces 파일을 수정했으면 sudo service networking restart 명령을 실행해 주어야 반영됩니다.



* ubuntu 12.04 에서 테스트