È possibile avere DNS round robin con il file / etc / hosts?


Risposte:


9

dnsmasq include DNS Round-robin pronto all'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

1
dnsmasq può archiviare solo caratteri jolly DNS o RR DNS. Puoi usare bind9 se hai bisogno di entrambe le funzionalità.
okwap

8

No, non funziona.

Anche / etc / hosts è una forma primitiva di mapping nome-> indirizzo che DNS intende sostituire. Se si desidera il DNS round robin, installare un server DNS.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.