আমি কীভাবে dnsmasq
কেবল ঠিকানা বরাদ্দ করতে কনফিগার করব eth0
, না wlan0
?
আমি কীভাবে dnsmasq
কেবল ঠিকানা বরাদ্দ করতে কনফিগার করব eth0
, না wlan0
?
উত্তর:
Man পৃষ্ঠা এটা বেশ চমত্কারভাবে ব্যাখ্যা করে। যদি এটি কেবল ডিএইচসিপি হয় 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=