에 다음 구성으로 라운드 로빈 DNS를 사용할 수 /etc/hosts
있습니까?
192.168.4.10 shaakunthala.local
192.168.4.20 shaakunthala.local
저는 Linux에 있습니다.
답변
dnsmasq, 라운드 로빈 DNS 제공
> egrep -m1 '^nameserver' /etc/resolv.conf
nameserver 127.0.0.1
> grep -i rrtest /etc/hosts
1.1.1.1 rrtest
2.2.2.2 rrtest
> /etc/init.d/dnsmasq restart
Shutting down dnsmasq: [ OK ]
Starting dnsmasq: [ OK ]
> nslookup rrtest
Server: 127.0.0.1
Address: 127.0.0.1#53
Name: rrtest
Address: 2.2.2.2
Name: rrtest
Address: 1.1.1.1
> nslookup rrtest
Server: 127.0.0.1
Address: 127.0.0.1#53
Name: rrtest
Address: 1.1.1.1
Name: rrtest
Address: 2.2.2.2
답변
아니요, 작동하지 않습니다.
또한 / etc / hosts는 DNS가 대체 할 기본 형식의 이름-> 주소 매핑입니다. 라운드 로빈 DNS를 원하는 경우 DNS 서버를 설치하십시오.