मैं dnsmasq के साथ तेजी से dns रिज़ॉल्यूशन प्राप्त करना चाहता हूं और डिफ़ॉल्ट systemd- रिज़ॉल्यूशन रखना चाहता हूं।
यह करने के लिए एक सुरुचिपूर्ण तरीके की तलाश है
मैं dnsmasq के साथ तेजी से dns रिज़ॉल्यूशन प्राप्त करना चाहता हूं और डिफ़ॉल्ट systemd- रिज़ॉल्यूशन रखना चाहता हूं।
यह करने के लिए एक सुरुचिपूर्ण तरीके की तलाश है
जवाबों:
मैं dnsmasq के साथ तेजी से डीएनएस रिज़ॉल्यूशन प्राप्त करना चाहता था और भविष्य के उपयोग के लिए डिफ़ॉल्ट सिस्टमड-सॉल्यूड / नेटवर्क मैनजर सेटअप को अछूता रखता था। हां, dnsmasq की विशाल डीएनएस कैशिंग ब्राउज़िंग गति में सुधार कर सकती है। हां लक्ष्य 18.04 का डिफ़ॉल्ट रूप से प्रदर्शित डीएनएस सेटअप रखना था
1 - सुडो के साथ
apt-get -y install dnsmasq
2 - सुडो के साथ
tee -a /etc/dnsmasq.conf << ENDdm
interface=lo
bind-interfaces
listen-address=127.0.0.1
# DNS server from OpenDns. Use yours...
server=208.67.222.222
server=208.67.220.220
ENDdm
systemctl restart dnsmasq
systemctl enable dnsmasq
3 - USER के साथ, NetworkManager को कॉन्फ़िगर करें
# Get NM first active profile name
NetManProfile=$(nmcli -t connection show --active | cut -f 01 -d ':')
# remove, if exists, current dns servers
nmcli con mod "$NetManProfile" ipv4.dns ""
# set 'manual' dns server
nmcli con mod "$NetManProfile" ipv4.ignore-auto-dns yes
# set dnsmasq as manually set dns server
nmcli con mod "$NetManProfile" ipv4.dns 127.0.0.1
# i also disabled ip6, do what u want
nmcli con mod "$NetManProfile" ipv6.method ignore
# reconnect to take effect
nmcli connection down "$NetManProfile"
nmcli connection up "$NetManProfile"
4 - सत्यापन की जाँच करें
netstat -antup Proto Recv-Q Send-Q Adresse locale Adresse distante Etat PID/Program name tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 1036/dnsmasq tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 766/systemd-resolve cat /run/systemd/resolve/resolv.conf nameserver 127.0.0.1
मैंने एक उचित समाधान खोजने की कोशिश की और लगता है कि अलग-अलग दृष्टिकोण हैं।
मैं सभी व्यावसायिक आवश्यकताओं को पूरा करते हुए वितरण लेआउट के भीतर रहना चाहता था। यह वही है जो मैंने आसपास इकट्ठा किया और साफ Ubuntu 18.04 और KDE नियॉन स्वाद पर काम करने के लिए परीक्षण किया:
# Install required package and reconfigure service plans (i.e. disablesystemd-resolved, enable dnsmasq
sudo apt-get install dnsmasq
sudo systemctl disable systemd-resolved
sudo systemctl stop systemd-resolved
sudo systemctl enable dnsmasq
# These two lines should work on most environments, but .. :-) - so I kept them commented out for less experienced users
# Just add or change 'dns=dnsmasq' to your NetworkManager.conf to the section [main]
# and yes, the sed expression can be better :-)
#sudo cp /etc/NetworkManager/NetworkManager.conf /etc/NetworkManager/NetworkManager.conf.backup
#sudo bash -c 'cat /etc/NetworkManager/NetworkManager.conf.backup |sed -e "s/^dns=.*//"| sed -e "s/\[main\]/\[main\]\ndns=dnsmasq/" >/etc/NetworkManager/NetworkManager.conf'
# Restart NetworkManager to make the change above applied
sudo systemctl restart NetworkManager
# This removes the systemd resolv.conf link only if it has NetworkManager replacement :-)
ls /var/run/NetworkManager/resolv.conf && sudo rm /etc/resolv.conf
# And add NetworkManager's resolv.conf available for the system resolver
sudo ln -s /var/run/NetworkManager/resolv.conf /etc/resolv.conf
(कृपया ध्यान दें कि उपरोक्त उत्तरों के साथ एकमात्र सामान्य अंतर यह है कि NetworkManager dnsmasq DNS सर्वर असाइनमेंट को स्वचालित रूप से हैंडल करता है
जैसा कि आप जानते हैं, डॉकटर होस्ट /etc/resolv.conf फाइल को कंटेनरों में कॉपी करता है , लेकिन किसी स्थानीय नेमसेवर को हटा देता है।
इस समस्या के लिए मेरे समाधान का उपयोग कर रखना है systemd-resolvd और NetworkManager लेकिन जोड़ने dnsmasq और "आगे" के लिए इसका इस्तेमाल डोकर कंटेनर DNS करने के लिए क्वेरी systemd-resolvd ।
कदम से कदम गाइड:
sudo rm /etc/resolv.conf
sudo touch /etc/resolv.conf
[main]
# NetworkManager will push the DNS configuration to systemd-resolved
dns=systemd-resolved
# NetworkManager won’t ever write anything to /etc/resolv.conf
rc-manager=unmanaged
sudo apt-get -y install dnsmasq
# Use interface docker0
interface=docker0
# Explicitly specify the address to listen on
listen-address=172.17.0.1
# Looks like docker0 interface is not available when dnsmasq service starts so it fails. This option makes dynamically created interfaces work in the same way as the default.
bind-dynamic
# Set systemd-resolved DNS server
server=127.0.0.53
# systemd-resolvd name server
nameserver 127.0.0.53
# docker host ip
nameserver 172.17.0.1
sudo service network-manager restart
sudo service dnsmasq restart
sudo service docker restart
अधिक जानकारी के लिए मेरी पोस्ट (स्पेनिश में) https://rubensa.wordpress.com/2020/02/07/docker-no-usa-los-mismos-dns-que-el-host/ देखें
उबंटू 18.10
IMHO, यदि आपका dnsmasq चल रहा है, तो आपको इसे dhcp से प्राप्त करने के बजाय अपने आईपी पते को सांख्यिकीय रूप से असाइन करना चाहिए। इस तरह से आप सिर्फ एक साथ systemd- हल को निष्क्रिय कर सकते हैं।
sudo apt-get Install dnsmasq
sudo systemctl अक्षम systemd-solve
sudo systemctl stop systemd-solve
मैन्युअल रूप से अपने आईपी पते, गेटवे को असाइन करें, और अपनी मशीन को डीएनएस के रूप में आईपी पते को असाइन करें।
कॉन्फ़िगर करें /etc/dnsmasq.conf (वास्तव में ... RTFM -> आदमी dnsmasq.conf)
sudo systemctl सक्षम dnsmasq
sudo systemctl स्टेटस dnsmasq
अपने dhcp सर्वर पर अपने चमकदार नए dnsmasq सर्वर पर बिंदु dhcp (..if yumpto)