Jak skonfigurować, dnsmasq
aby przypisywać tylko adresy eth0
, a nie wlan0
?
Strona podręcznika opisuje go całkiem przyjemnie. Jeśli to tylko DHCP, na którym nie chcesz uruchamiać wlan0
, możesz użyć --no-dhcp-interface=wlan0
. Jeśli nie chcesz, aby dnsmasq w ogóle nasłuchiwał wlan0
, możesz użyć --except-interface=wlan0
.
Jeśli chcesz, aby dnsmasq nasłuchiwał eth0
, możesz użyć --interface=eth0
.
Dla tych, którzy mnie lubią, mylą się, dlaczego port 53 jest nadal otwarty dla wszystkich interfejsów, niezależnie od tego, którą opcję ograniczysz. Jest jeszcze jedna opcja, którą należy włączyć.
-z, --bind-interfaces
On systems which support it, dnsmasq binds the wildcard address, even when it is listening on only some interfaces. It then discards requests that it shouldn't reply to. This has the advantage of working even when interfaces come and go and change address. This option forces dnsmasq to really bind only the interfaces it is listening on. About the only time when this is useful is when running another nameserver (or another instance of dnsmasq) on the same machine. Setting this option also enables multiple instances of dnsmasq which provide DHCP service to run in the same machine.
Jest to również możliwe z pliku konfiguracyjnego dnsmasq i jest udokumentowane w przykładowym pliku Simona Kelleya pod adresem http://www.thekelleys.org.uk/dnsmasq/docs/dnsmasq.conf.example :
źródło