dnsmasqのインストール
# yum install dnsmasq
nsswitch.confをいじって、先にdnsを参照するようにする
# cat /etc/nsswitch.conf | grep hosts:
hosts: dns files
resolv.confをいじって、先にdnsmasqを参照するようにする
# cat /etc/resolv.conf | grep nameserver
nameserver 127.0.0.1
nameserver 192.168.1.1
hostsをいじって、round robinの設定をする
# cat /etc/hosts
192.168.1.11 test.hosts.com
192.168.1.12 test.hosts.com
192.168.1.13 test.hosts.com
dnsmasq 起動
# service dnsmasq start