É possível ter DNS round-robin com o arquivo / etc / hosts?

13

É possível ter DNS round-robin com a configuração a seguir /etc/hosts?

192.168.4.10 shaakunthala.local
192.168.4.20 shaakunthala.local

Estou no Linux.

Shaakunthala
fonte

Respostas:

9

O dnsmasq exclui o DNS de round-robin pronto para uso

> 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
AndresVia
fonte
1
O dnsmasq pode arquivar apenas dns curinga ou dns RR. Você pode usar o bind9 se precisar dos dois recursos.
OKWAP
8

Não, isso não funciona.

O / etc / hosts também é uma forma primitiva de mapeamento de nome-> endereço que o DNS deve substituir. Se você deseja DNS alternativo, instale um servidor DNS.

ThatGraemeGuy
fonte