System/OS
2014.04.05 22:34
[linux] resolv.con 초기화 되는 문제
조회 수 4935 댓글 0
network를 재시작하면, resolv.conf가 자동 초기화 되는 현상을 겪었다.
그러던중 아래와 같은 원인과 해결책을 찾았다.
리눅스에서 DNS 설정을 바꾸려고 아래 파일을 수정한다.
/etc/resolv.conf
그리고 아래와 같이 서비스를 재시작 하거나 리부팅한다.
/sbin/service network restart
하지만 vmware 상에서는 /etc/resolv.conf 수동설정이 안된다.
DHCP 로 ip 를 자동으로 할당 받을때 /sbin/dhclient-script 에 의해서 resolv.conf 파일이 새로 생성되기 때문이다.
(vi /var/log/boot.log 를 보면 dhclient-script 가 /etc/resolv.conf 를 수정하는 것을 알수 있다.)
이 문제를 해결하기 위해서 /sbin/dhclient-script 가 /etc/resolv.conf 를 수정하지 못하도록 파일 속성을 불변으로 바꾼다.
chattr +i /etc/resolv.conf
[참고] 아래와 같은 경고가 나온다면 참고..
Bringing up interface eth0: Determining if ip address 121.78.127.197 is already in use for device eth0...
[해결방법] https://www.hooni.net/xe/39012
-
[ios] NSString URL Encode/Decode (인코딩/디코딩)
-
[ios] 커스텀 폰트 사용하기 (Custom Fonts)
-
[ios] iOS 의 인앱구매 소개
-
[js] Array.splice() 설명
-
[ios] 아이폰에서 진동(Vibrate) 기능 추가하기
-
[ios] iOS 사운드 관련 프레임워크
-
[ios] Sprite Kit & 사운드 재생시 백그라운드 진입시 앱이 비정상적으로 종료됨
-
[ios] DatePicker iOS 6.x 이하 디자인.
-
[ios] UIWebView 캐쉬 삭제
-
[ios] UITableView 특정 Row만 Update
-
[linux] resolv.con 초기화 되는 문제
-
[linux] CentOS 6.5 에서 "Bringing up interface eth0: Determining if ip address 121.78.127.197 is already in use for device eth0..."