동적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 에서 테스트
'시스템' 카테고리의 다른 글
[Ubuntu] Ubuntu 12.04 에서 tomcat7 설치 (0) | 2015.05.19 |
---|---|
[Ubuntu] 우분투 12.04에서 메일서버 설치하기 (0) | 2015.02.20 |
[Ubuntu] 시스템 종료 (0) | 2015.02.15 |
[Ubuntu] root 계정으로 원격접속 차단하기 (0) | 2015.02.13 |
[Ubuntu] root 계정 사용하기 (0) | 2015.02.11 |