एक इंटरफेस में dnsmasq के डीएचसीपी सर्वर को प्रतिबंधित करना


12

मैं dnsmasqकेवल पते पर असाइन करने के लिए कैसे कॉन्फ़िगर करूं eth0, नहीं wlan0?

जवाबों:


14

आदमी पेज यह काफी अच्छी तरह से बताते हैं। यदि यह सिर्फ डीएचसीपी है तो आप उस पर नहीं चलना चाहते हैं wlan0तो आप उपयोग कर सकते हैं --no-dhcp-interface=wlan0। यदि आप dnsmasq को बिल्कुल नहीं सुनना चाहते हैं wlan0तो आप उपयोग कर सकते हैं --except-interface=wlan0

यदि आप केवल सुनना चाहते हैं eth0तो आप उपयोग कर सकते हैं --interface=eth0


12

जो लोग मुझे पसंद करते हैं, उनके लिए यह भ्रम है कि पोर्ट 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.


यह वास्तव में इस तरह की बात है जिसे अनदेखा करना आसान है लेकिन यह अन्य डीएचसीपी समाधानों के साथ काम करने के लिए महत्वपूर्ण है (जैसे मेरे मामले में एक QNAP आंतरिक सेवाओं)। किसी को तीन मुख्य उत्तर लेने चाहिए और उन्हें मर्ज करना चाहिए। इसने मेरा दिन बचाया, धन्यवाद
डैनियलो 1515

11

यह 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=
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.