티스토리 뷰

Developer

resolve.conf DNS 초기화 문제

rocksea 2012. 12. 6. 10:36

ubuntu에서 network를 static하게 설정 할 경우 resolv.conf가 초기화되는 현상이 있습니다.

그래서 해결하기위해 interfaces에 ip를 설정할때 dns를 같이 설정하는 방법을 소개합니다.


$ sudo vim /etc/network/interfaces

auto eth0
iface eth0 inet static
address 192.168.0.83
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 168.192.63.1 168.192.63.2


위와 같이 dns를 설정하면 됩니다.

설정후 network를 restart합니다.

network restart

$ sudo /etc/init.d/networking restart


ping test

$ ping kr.yahoo.com
PING fd-fp2.wg1.b.yahoo.com (111.67.226.84) 56(84) bytes of data.
64 bytes from ir1.fp.vip.kr3.yahoo.com (111.67.226.84): icmp_req=1 ttl=54 time=4.41 ms
64 bytes from ir1.fp.vip.kr3.yahoo.com (111.67.226.84): icmp_req=2 ttl=54 time=3.87 ms
64 bytes from ir1.fp.vip.kr3.yahoo.com (111.67.226.84): icmp_req=3 ttl=54 time=12.2 ms

이상으로 ubuntu dns설정에 대해 알아보았습니다.

.by rocksea


댓글