मैं dnsmasq
केवल पते पर असाइन करने के लिए कैसे कॉन्फ़िगर करूं eth0
, नहीं wlan0
?
मैं dnsmasq
केवल पते पर असाइन करने के लिए कैसे कॉन्फ़िगर करूं eth0
, नहीं wlan0
?
जवाबों:
आदमी पेज यह काफी अच्छी तरह से बताते हैं। यदि यह सिर्फ डीएचसीपी है तो आप उस पर नहीं चलना चाहते हैं wlan0
तो आप उपयोग कर सकते हैं --no-dhcp-interface=wlan0
। यदि आप dnsmasq को बिल्कुल नहीं सुनना चाहते हैं wlan0
तो आप उपयोग कर सकते हैं --except-interface=wlan0
।
यदि आप केवल सुनना चाहते हैं eth0
तो आप उपयोग कर सकते हैं --interface=eth0
।
जो लोग मुझे पसंद करते हैं, उनके लिए यह भ्रम है कि पोर्ट 53 अभी भी सभी इंटरफेस के लिए खुला है, भले ही आप इसे सीमित करने के लिए कौन सा विकल्प रखें। एक और विकल्प है जिसे चालू करने की आवश्यकता है।
-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.
यह dnsmasq कॉन्फ़िगरेशन फ़ाइल से भी संभव है, और इसे http://www.thekelleys.org.uk/dnsmasq/docs/dnsmasq.conf.example पर साइमन केली की उदाहरण फ़ाइल में दर्ज़ किया गया है :
# If you want dnsmasq to listen for DHCP and DNS requests only on
# specified interfaces (and the loopback) give the name of the
# interface (eg eth0) here.
# Repeat the line for more than one interface.
#interface=
# Or you can specify which interface _not_ to listen on
#except-interface=